.hero {
    position: relative;
    height:auto;
    background: #0b0b0b;
    display: flex;
    align-items: flex-start;
    padding-top: 30px;
    padding-left: 80px;
    padding-bottom: 40px;
    overflow: hidden;
}

/* MAIN TEXT */
.hero-main {
    position: relative;
    z-index: 2;
}

.hero-main h1 {
    text-transform: uppercase;
    line-height: 1.05;
}
/* LINE 1 */
.l1 {
    display: block;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 6px;
    color: #ffffff;
}

.l2 {
    display: block;
    font-size: 60px; 
    margin-left: 60px;  /* 🔥 reduced */
    font-weight: 600;
    color: #ffffff;
}

.l3 {
    display: block;
    font-size: 60px; 
    margin-left: 120px;  /* 🔥 reduced */
    font-weight: 600;
    color: #ffffff;
}
/* & TILTED */
.amp {
    color: #ff6a00;
    display: inline-block;
    transform: rotate(-20deg);
    margin: 0 10px;
    font-weight: 800;
}

/* AGENCY LIGHTER */
.agency {
    font-weight: 400;
    color: #ffffff;
}

/* GHOST TEXT */
.hero-ghost {
    position: absolute;
    left: 200px;
    margin-top: 140px;
    font-size: 60px;
    font-weight: 800;

    color: transparent;
    -webkit-text-stroke: 1px rgba(244, 236, 236, 0.901);

    opacity: 1;
    z-index: 1;
    pointer-events: none;
}
/* DEPTH */
.hero-main span {
    text-shadow:
        0 8px 30px rgba(0,0,0,0.9),
        0 0 20px rgba(255,255,255,0.05);
}
.slider {
    margin-top: 20px;
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 800px;
    margin: 0px auto 0;
    overflow: hidden;
    border-radius: 6px;
}

/* SLIDES */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* ACTIVE SLIDE */
.slide.active {
    opacity: 1;
}

/* DARK OVERLAY */
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

/* TEXT CENTER */
.slider-text {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    text-align: center;
}

.slider-text h2 {
    font-size: 28px;
    font-weight: 700;
}

.slider-text p {
    margin: 10px 0;
    opacity: 0.8;
}

.slider-text h3 {
    font-size: 30px;
    font-weight: 700;
}

/* ORANGE STRIP */
.right-strips {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: #ff6a00;
    z-index: 3;
}
.bottom-strip {
    position: absolute;
    bottom: 0;   /* 🔥 FIX */
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff6a00;
    z-index: 3;
}
/* SECTION */
.why-section {
    background: #0b0b0b;
    padding: 80px 60px;
    color: #ffffff;
}

/* CONTAINER */
.why-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.why-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: 3px;
}

/* GRID (THIS FIXES YOUR LIFE) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.why-card {
    position: relative;
    padding: 30px 25px;
    border-radius: 8px;

    background: #111111;

    transition: all 0.35s ease;
}

/* NUMBER */
.why-number {
    font-size: 28px;
    font-weight: 700;
    color: #ff6a00;
    display: block;
    margin-bottom: 15px;
    text-align: center;
}

/* TEXT */
.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.why-card p {
    font-size: 14px;
    opacity: 1;
    line-height: 1.6;
}

/* HOVER (SUBTLE, NOT CHILDISH GLOW SPAM) */
.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,106,0,0.4);
    box-shadow: 0 15px 40px rgba(255,106,0,0.15);
}
.stats-section {
    background: #0b0b0b;
    padding: 50px 60px;
}

/* GRID (DON'T BREAK THIS) */
.stats-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 120px;
}

/* ITEM */
.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* NUMBER (GRADIENT MAGIC) */
.stat-number {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffcc33, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LABEL */
.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    max-width: 180px;
}

.stat-label span {
    display: block;
    color: #9ca3af;
    font-size: 16px;
}

/* HOVER (SUBTLE) */
.stat-item:hover .stat-number {
    transform: scale(1.05);
    transition: 0.3s;
}
.highlight {
    color: #ff6a00;
}
.cta-section {
    position: relative;
    background: #0b0b0b;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

/* CONTENT */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content p {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 28px;
    border-radius: 50px;

    border: 1px solid #ff6a00;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;

    transition: all 0.3s ease;
}

/* ICON SIZE */
.cta-btn i {
    width: 18px;
    height: 18px;
}

/* HOVER */
.cta-btn:hover {
    background: #ff6a00;
    color: #0b0b0b;
    box-shadow: 0 10px 30px rgba(255,106,0,0.3);
    transform: translateY(-2px);
}
.clients-strip-section {
    position: relative;
    background: #0b0b0b;
    height: 400px;
    overflow: hidden;
}

/* STRIPS */
.strip {
    position: absolute;
    width: 100%;
    overflow: hidden;
}

.strip-top {
    top: 60px;
}

.strip-bottom {
    bottom: 60px;
}

/* TRACK */
.strip-track {
    display: flex;
    gap: 80px;
    width: max-content;
}

/* LOGOS */
.strip-track img {
    height: 60px;
    object-fit: contain;
    opacity: 0.85;
    transition: 0.3s;
}

.strip-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ANIMATIONS */
.left {
    animation: moveLeft 25s linear infinite;
}

.right {
    animation: moveRight 25s linear infinite;
}

@keyframes moveLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes moveRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* CENTER TEXT */
.clients-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.clients-center h2 {
    font-size: 42px;
    font-weight: 700;
}

.clients-center span {
    display: block;
    color: #ff6a00;
    font-size: 20px;
    margin-bottom: 5px;
}
/* SECTION */
.services-section {
    background: #0b0b0b;
    padding: 60px 80px;
    color: #ffffff;
}

/* HEADER */
.services-header {
    max-width: 900px;
    margin-bottom: 60px;
}

.services-header h2 {
    position: relative;
}

/* TOP TEXT */
.services-header .top {
    display: block;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 4px;
}

/* DESC */
.services-header p {
    margin-top: 20px;
    color: #9ca3af;
    line-height: 1.6;
}

/* CONTAINER */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ITEM */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* NUMBER */
.service-number {
    font-size: 32px;
    font-weight: 700;
    color: #ff6a00;
    min-width: 50px;
}

/* CONTENT */
.service-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.6;
}
/* FEATURED BLOCK RESET */
.service-item.featured {
    position: relative;
    flex-direction: column;
    border-bottom: none;
    padding: 20px 0;
}

/* 🔥 TOP CENTER STRIP */
.service-top {
    display: flex;
    justify-content: center;   /* CENTER FIX */
    align-items: center;
    gap: 15px;
    margin:0 auto 20px;
    text-align: center;
}

.service-top h3 {
    font-size: 30px;
}

.service-number {
    font-size: 60px;   /* BIG like image */
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #ff6a00; /* 🔥 outline style */
}

/* MAIN BODY */
.service-body {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 🔥 important */
    gap: 60px;
}

/* IMAGE */
.service-image {
    width: 50%;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
}

/* FIXED TEXT BOX */
.service-info {
    width: 50%;
    position: relative; /* ❌ remove absolute */
    top: auto;
    transform: none;

    padding: 40px;

    border-radius: 12px;

    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);

    line-height: 1.7;
}
.service-info:hover{
    border: 1px solid rgba(251, 66, 5, 0.929);
}
/* TEXT */
.service-info p {
    color: #9ca3af;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* HIGHLIGHT */
.highlight-text span {
    color: #ff6a00;
}
.service-actions {
    margin-top: 20px;
}

/* LINK */
.service-link {
    display:block;
    margin: 15px 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #9ca3af;
    text-decoration: none;
}

/* BUTTON */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 22px;
    border: 1px solid #ff6a00;
    border-radius: 40px;

    color: #ffffff;
    text-decoration: none;

    transition: 0.3s;
}

.service-btn:hover {
    background: #ff6a00;
    color: #0b0b0b;
}
/* CTA SECTION */
.cta-free {
    background: #0b0b0b;
    text-align: center;
    padding: 40px 20px;
}

/* BIG TEXT */
.cta-big {
    font-size: 70px;
    font-weight: 900;
    letter-spacing: 8px;
    color: rgba(251, 249, 249, 0.919);
    margin-bottom: 10px;
}

/* SUB TEXT */
.cta-sub {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-sub span {
    color: #ff6a00;
    font-weight: 700;
}

/* BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 28px;
    border-radius: 40px;

    border: 1px solid #ff6a00;
    color: #ffffff;
    text-decoration: none;

    transition: 0.3s;
}

.cta-btn:hover {
    background: #ff6a00;
    color: #0b0b0b;
}
/* SPLIT VARIANT */
.service-item.split {
    flex-direction: column;
    border-bottom: none;
    padding: 0px 0;
}

/* DESC BOX */
.service-desc-box {
    border: 1px solid rgba(255,106,0,0.3);
    padding: 20px;
    margin: 30px auto;
    max-width: 1000px;
    color: #9ca3af;
    line-height: 1.6;
}

.service-desc-box span {
    color: #ff6a00;
}

/* MAIN SPLIT */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.service-left {
    flex: 1;
}

.service-left h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-left h4 span {
    color: #ff6a00;
}

.service-left p {
    color: #9ca3af;
    margin-bottom: 15px;
}

/* LIST */
.service-left ul {
    margin: 15px 0;
    padding-left: 18px;
}

.service-left li {
    margin-bottom: 8px;
    color: #9ca3af;
}

/* CTA */
.service-cta {
    margin-top: 30px;
}

.service-cta p {
    margin-bottom: 15px;
}

.service-cta span {
    color: #ff6a00;
}

/* RIGHT IMAGE */
.service-right {
    flex: 1;
}

.service-right img {
    width: 100%;
    border-radius: 10px;
}
/* WRAPPER */
.seo-geo-section {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

/* BOTH BOXES */
.seo-box,
.geo-box {
    flex: 1;
    padding: 30px;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;

    background: #111111;
    backdrop-filter: blur(4px);

    transition: 0.3s;
}

/* HOVER */
.seo-box:hover,
.geo-box:hover {
    border-color: rgba(255,106,0,0.4);
    box-shadow: 0 10px 40px rgba(255,106,0,0.15);
}

/* HEADINGS */
.seo-box h4,
.geo-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.seo-box span,
.geo-box span {
    color: #ff6a00;
}

/* TEXT */
.seo-box p,
.geo-box p {
    color: #9ca3af;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* LIST */
.seo-box ul,
.geo-box ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.seo-box li,
.geo-box li {
    margin-bottom: 6px;
    color: #9ca3af;
}
/* PPC SECTION */
.service-ppc {
    margin-top: 20px;
}

/* TITLE */
.ppc-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 50px;
}

.ppc-title span {
    color: #ff6a00;
}

/* BODY */
.ppc-body {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.ppc-left {
    flex: 1;
}

.ppc-left p {
    color: #9ca3af;
    margin-bottom: 15px;
}

.ppc-left h5 {
    margin: 20px 0 10px;
}

/* LIST */
.ppc-left ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.ppc-left li {
    margin-bottom: 6px;
    color: #9ca3af;
}

/* RIGHT IMAGE */
.ppc-right {
    flex: 1;
    position: relative;
}

.ppc-right img {
    width: 100%;
    border-radius: 10px;
}

/* SECTION */
.service-influencer {
    margin-top: 40px;
}

/* TITLE */
.inf-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 50px;
}

.inf-title span {
    color: #ff6a00;
}

/* BODY */
.inf-body {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE */
.inf-left {
    flex: 1;
    position: relative;
}

.inf-left img {
    width: 100%;
    border-radius: 10px;
}

/* RIGHT CONTENT */
.inf-right {
    flex: 1;
}

.inf-right p {
    color: #9ca3af;
    margin-bottom: 15px;
}

.inf-right h5 {
    margin: 20px 0 10px;
}

.inf-right ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.inf-right li {
    margin-bottom: 6px;
    color: #9ca3af;
}

/* GRID VARIANT */
.service-item.grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    border-bottom: none;
}

/* TITLE */
.grid-title {
    margin: 0px 0;
    font-size: 22px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    margin-top: 0px;
    padding: 40px;

    border-radius: 10px;
}

/* ITEM */
.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 140px;
    background-color: rgba(255, 255, 255, 0.05);
}
.grid-item:hover{
    border: 1px solid rgba(255, 106, 0, 0.4);
}
/* ICON */
.grid-item i {
    width: 32px;
    height: 32px;
}

/* TEXT */
.grid-item p {
    font-size: 18px;
    color: #9ca3af;
    text-align: center;
    max-width: 420px;
}

/* CENTER LINK */
.center-link {
    display: block;
    margin: 20px auto;
}

/* CTA */
.grid-cta {
    margin-top: 40px;
    position: relative;
}

/* CTA TEXT */
.grid-cta p {
    margin-bottom: 20px;
}

.grid-cta span {
    color: #ff6a00;
}
.marquee-section {
    background: linear-gradient(90deg, #2b0d00, #5a1f00);
    padding: 20px 0;
    margin-bottom: 40px;
    overflow: hidden;
}

/* MAIN WRAPPER */
.marquee {
    width: 100%;
    overflow: hidden;
}

/* MOVING TRACK */
.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;

    animation: scrollLeft 30s linear infinite;
}

/* TEXT STYLE */
.marquee-track span {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ANIMATION */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.testimonial-section {
    background: #0b0b0b;
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.test-title {
    font-size: 40px;
    letter-spacing: 4px;
    margin-bottom: 60px;
}

/* BOX */
.testimonial-box {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 60px 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.testimonial-box:hover{
    border: 1px solid rgba(255, 106, 0, 0.4);
}
/* TEXT */
.test-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* IMAGE */
.test-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 20px 0;
}

/* NAME */
.testimonial h4 {
    font-size: 20px;
    margin-top: 10px;
}

.testimonial span {
    font-size: 14px;
    opacity: 0.8;
}

/* HIDE ALL */
.testimonial {
    display: none;
}

/* SHOW ACTIVE */
.testimonial.active {
    display: block;
}

/* NAV BUTTONS */
.test-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
}

.prev { left: 15px; }
.next { right: 15px; }
@media (max-width: 1024px) {

    /* ================= HERO ================= */
    .hero {
        padding-left: 50px;
    }

    .l1 { font-size: 40px; }
    .l2 { font-size: 50px; margin-left: 40px; }
    .l3 { font-size: 50px; margin-left: 80px; }

    .hero-ghost {
        font-size: 50px;
        left: 120px;
    }

    /* ================= SLIDER ================= */
    .slider {
        width: 95%;
        height: 70vh;
    }

    .slider-text h2 { font-size: 24px; }
    .slider-text h3 { font-size: 26px; }

    /* ================= WHY ================= */
    .why-section {
        padding: 60px 40px;
    }

    .why-title {
        font-size: 34px;
    }

    .why-grid {
        gap: 25px;
    }

    .why-card {
        padding: 25px 20px;
    }

    /* ================= STATS ================= */
    .stats-container {
        gap: 60px 80px;
    }

    .stat-number {
        font-size: 60px;
    }

    .stat-label {
        font-size: 16px;
    }

    /* ================= SERVICES ================= */
    .services-section {
        padding: 50px 40px;
    }

    .services-header .top {
        font-size: 34px;
    }

    .service-top h3 {
        font-size: 26px;
    }

    .service-number {
        font-size: 48px;
    }
    .service-bo
    /* FEATURED BOX */
    .service-info {
        width: 50%;
        padding: 25px;
    }

    /* SPLIT */
    .split-layout {
        gap: 40px;
    }

    /* SEO GEO */
    .seo-geo-section {
        gap: 25px;
    }

    /* PPC */
    .ppc-body {
        gap: 40px;
    }

    /* INFLUENCER */
    .inf-body {
        gap: 40px;
    }

    /* GRID */
    .services-grid {
        gap: 20px;
        padding: 25px;
    }

    .grid-item {
        height: 120px;
    }

    .grid-item p {
        font-size: 16px;
    }

    /* ================= MARQUEE ================= */
    .marquee-track span {
        font-size: 22px;
    }

    /* ================= TESTIMONIAL ================= */
    .testimonial-section {
        padding: 70px 20px;
    }

    .test-title {
        font-size: 32px;
    }

    .testimonial-box {
        padding: 40px 25px;
        max-width: 700px;
    }

    .test-text {
        font-size: 16px;
    }

    .test-img {
        width: 70px;
        height: 70px;
    }

    .testimonial h4 {
        font-size: 18px;
    }

    .testimonial span {
        font-size: 13px;
    }

}
@media (max-width: 768px) {

    /* ================= GLOBAL SPACING ================= */
    .services-section,
    .why-section,
    .stats-section {
        padding: 50px 20px;
    }

    /* ================= HERO ================= */
    .hero {
        padding: 30px 20px;
    }

    .l1 { font-size: 28px; }
    .l2 { font-size: 36px; margin-left: 20px; }
    .l3 { font-size: 36px; margin-left: 40px; }

    .hero-ghost {
        display: none;
    }

    /* ================= SLIDER ================= */
    .slider {
        width: 100%;
        height: 60vh;
    }

    /* ================= WHY ================= */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ================= STATS ================= */
    .stats-container {
        grid-template-columns: repeat(2, 1fr); /* 🔥 2/2 */
        gap: 30px 20px;
    }

    .stat-item {
        justify-content: flex-start; /* ❌ remove center */
        align-items: center;
        gap: 15px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 14px;
        max-width: 120px;
    }
    /* ================= SERVICE (MAIN FIX) ================= */
    .service-body,
    .split-layout,
    .ppc-body,
    .inf-body {
        flex-direction: column;
        gap: 30px;
    }

    /* TEXT PART */
    .service-info,
    .service-left,
    .ppc-left,
    .inf-right {
        width: 85%;
        text-align: left;
    }

    /* REMOVE FLOAT BOX EFFECT */
    .service-info {
        position: relative;
        transform: none;
        top: auto;
        padding: 25px;
    }

    /* IMAGE PART */
    .service-image,
    .service-right,
    .ppc-right,
    .inf-left {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* IMAGE SIZE CONTROL (IMPORTANT) */
    .service-image img,
    .service-right img,
    .ppc-right img,
    .inf-left img {
        width: 75%;   /* 🔥 NOT FULL WIDTH */
        max-width: 400px;
    }

    /* ================= SEO / GEO ================= */
    .seo-geo-section {
        flex-direction: column;
        gap: 20px;
    }

    /* ================= GRID ================= */
.services-grid {
    grid-template-columns: repeat(2, 1fr); /* 🔥 2 per row */
    gap: 15px;
    padding: 15px;
}
    .grid-item {
    height: 110px;            /* fixed height for clean rows */
    padding: 15px;
    justify-content: center;
    text-align: center;
}
    .grid-item p {
    font-size: 14px;    
    }
    /* ================= MARQUEE ================= */
    .marquee-track span {
        font-size: 18px;
    }

    /* ================= TESTIMONIAL ================= */
    .testimonial-box {
        padding: 30px 20px;
    }

    .test-text {
        font-size: 15px;
    }

    /* ================= CTA ================= */
    .cta-big {
        font-size: 40px;
        letter-spacing: 4px;
    }

}
/* =======================
   MOBILE (480px) FINAL CLEAN SYSTEM
   ======================= */
/* =======================
   MOBILE (480px) FINAL CLEAN
   ======================= */
@media (max-width: 480px) {

    /* ===== GLOBAL SPACING SYSTEM ===== */
    section {
        padding: 15px 15px !important;
    }

    h2 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    /* ===== HERO ===== */
    .hero {
        padding: 15px;
    }

    .l1 { font-size: 18px; letter-spacing: 2px; }
    .l2, .l3 { font-size: 22px; margin-left: 0; }

    /* ===== SLIDER ===== */
    .slider {
        height: 38vh;
    }

    .slider-text h2 { font-size: 16px; }
    .slider-text h3 { font-size: 18px; }

    /* ===== WHY ===== */
    .why-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .why-card {
        padding: 15px;
    }

    .why-card h3 { font-size: 15px; }

    /* ===== STATS ===== */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* ===== CLIENT LOGOS ===== */
    .clients-strip-section {
        height: 300px;
    }

    .strip-track {
        gap: 20px;
    }

    .strip-track img {
        height: 28px;
        max-width: 70px;
    }

    /* ===== SERVICES ===== */
    .services-header {
        margin-bottom: 10px;
    }

    .services-header .top {
        font-size: 20px;
    }

    .services-header p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    /* NUMBER + TITLE (FIXED CLEAN) */
    .service-top {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        margin-bottom: 10px;
    }

    .service-number {
        font-size: 30px;
        -webkit-text-stroke: 1px #ff6a00;
    }

    .service-top h3 {
        font-size: 17px;
        text-align: center;
        line-height: 1.3;
    }

    /* CONTENT */
    .service-body,
    .split-layout,
    .ppc-body,
    .inf-body {
        flex-direction: column;
        gap: 15px;
    }

    .service-info,
    .service-left,
    .ppc-left,
    .inf-right {
        width: 100%;
        font-size: 13px;
    }

    .service-image img,
    .service-right img,
    .ppc-right img,
    .inf-left img {
        width: 100%;
        max-width: 220px;
    }

    /* FIX HUGE GAP ISSUE */
    .service-item.split {
        padding: 25px 0 !important;
    }

    /* ===== GRID ===== */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 6px;
    }

    .grid-item {
        height: 80px;
    }

    .grid-item p {
        font-size: 11px;
    }

    /* ===== MARQUEE ===== */
    .marquee-track span {
        font-size: 12px;
    }

    /* ===== TESTIMONIAL ===== */
    .testimonial-section {
        padding: 15px 15px;
    }

    .test-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .testimonial-box {
        padding: 15px;
        padding-bottom: 20px;
    }

    .test-text {
        font-size: 13px;
    }

    .test-img {
        width: 48px;
        height: 48px;
    }

    /* ===== CTA ===== */
    .cta-free .cta-btn {
    padding: 4px 10px !important;
    font-size: 10px !important;
    gap: 3px;
    border-radius: 16px;
}
    .cta-free .cta-btn i {
    width: 9px !important;
    height: 9px !important;
}

    .cta-content {
        margin: 0;
    }

    .cta-big {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .cta-sub {
        font-size: 12px;
        margin-bottom: 10px;
    }

 /* FORCE ALL BUTTONS SMALL (480 ONLY) */
.cta-btn,
.service-btn,
.btn-primary {
    padding: 5px 10px !important;
    font-size: 10px !important;
    gap: 4px !important;
    border-radius: 16px !important;
}

/* ICONS */
.cta-btn i,
.service-btn i,
.btn-primary i {
    width: 10px !important;
    height: 10px !important;
}

}
