/* ===========================
   CSS Variables & Reset
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
    font-family: 'BwGradual';
    src: url('../fonts/New/BwGradualDEMO-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
    font-family: 'BwGradual-light';
    src: url('../fonts/New/BwGradualDEMO-Light.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

body {
    font-family: 'BwGradual', sans-serif;
}

:root {
    --yellow: #FFDD11;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-text: #555;
    --nav-border: #e8e8e8;
    --badge-bg: #1a1a1a;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
}

body {
    /* font-family: 'Inter', sans-serif; */
    background: #fff;
    color: var(--black);
    overflow-x: hidden;
}

ul,
ol,
dl,
address,
label,
figure {
    margin-bottom: 0;
}

ul {
    padding-left: 0;
}

/* ===========================
                                                NAVBAR
                                                =========================== */
.navbar-custom {
    background: #fff;
    padding: 16px 0;
    position: sticky;
    border-top: 7px solid #000;
    top: 0;
    z-index: 1050;
   





}

.navbar-custom .navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--black) !important;
    text-decoration: none;
    padding: 6px 0;
}

.navbar-custom .brand-top {
    display: flex;
    align-items: center;
    gap: 2px;
}

.navbar-custom .brand-top span.epic {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.navbar-custom .brand-top span.exclaim {
    color: var(--yellow);
    font-size: 1.8rem;
    font-weight: 900;
}

.navbar-custom .brand-bottom {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: lowercase;
    color: var(--black);
}

/* ── NAV LINKS ── */
.navbar-custom .navbar-nav {
    gap: 0;
}

.navbar-custom .nav-link {
    font-family: 'Lato';
    font-size: 16px;
    font-weight: 400;
    color: #0B0B0B !important;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.2s;
    white-space: nowrap;
}

.navbar-custom .nav-link:hover {
    color: var(--black) !important;
}

.navbar-custom .nav-link .caret {
    font-size: 0.6rem;
    margin-left: 3px;
    opacity: 0.6;
    display: inline-block;
    transition: transform 0.25s;
}

/* ── DROPDOWN ── */
.nav-item.has-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 10px 8px;
    min-width: 230px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    pointer-events: none;
    z-index: 999;
}

/* invisible bridge fills the gap between nav-link and dropdown */
.nav-item.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.nav-item.has-dropdown:hover .caret,
.nav-item.has-dropdown.open .caret {
    transform: rotate(180deg);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 9px;
    font-family: 'BwGradual-light', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
    background: #f7f7f7;
    color: var(--black);
}

.nav-dropdown a .dd-icon {
    width: 30px;
    height: 30px;
    background: #f2f2f2;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    transition: background 0.15s;
}

.nav-dropdown a:hover .dd-icon {
    background: var(--yellow);
}

.dd-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 6px 10px;
}

/* ── RIGHT SIDE ── */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-icon {
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    color: #333;
}

.search-icon:hover {
    background: #f5f5f5;
}

.btn-quote {
    background: var(--yellow);
    color: var(--black) !important;
    font-weight: 700;
    font-size: 1.02rem !important;
    padding: 9px 22px !important;
    /* border: none; */
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 39px;
    font-family: 'Lato' !important;
    font-weight: 600 !important;
}

.btn-quote:hover {
    background: #e8d900;
    transform: scale(1.03);
}

/* ── CUSTOM HAMBURGER (replaces Bootstrap toggler) ── */
.navbar-toggler {
    border: none;
    background: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: background 0.2s;
}

.navbar-toggler:hover {
    background: #f5f5f5;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU ── */

/* Desktop: nav panel normal flex row */
.ewl-nav-panel {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

@media (max-width: 991px) {

    /* Mobile: hidden slide-in panel from right */
    .ewl-nav-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100svh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
        transition: right 0.35s cubic-bezier(.4, 0, .2, 1);
        z-index: 1055;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .ewl-nav-panel.show {
        right: 0;
    }

    .mob-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 20px 16px;
        border-bottom: 1px solid #f0f0f0;
        flex-shrink: 0;
    }

    .mob-menu-close {
        width: 36px;
        height: 36px;
        border: none;
        background: #f5f5f5;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #222;
        transition: background 0.2s;
    }

    .mob-menu-close:hover {
        background: #ebebeb;
    }

    .mob-menu-logo {
        font-family: 'BwGradual', sans-serif;
        font-weight: 900;
        font-size: 1.1rem;
        color: var(--black);
        text-decoration: none;
    }

    .navbar-nav {
        padding: 12px 12px 0;
        gap: 2px !important;
        flex-direction: column !important;
        flex: 1;
    }

    .navbar-custom .nav-link {
        padding: 11px 14px !important;
        border-radius: 10px;
        font-size: 0.92rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-custom .nav-link:hover {
        background: #f7f7f7;
    }

    /* Mobile dropdown */
    .nav-dropdown {
        /* position: static; */
        transform: none;
        box-shadow: none;
        border: none;
        background: #fafafa;
        border-radius: 10px;
        padding: 6px 6px;
        margin: 4px 0 4px 8px;
        opacity: 1;
        visibility: visible;
        display: none;
        pointer-events: all;
    }

    .nav-item.has-dropdown.open .nav-dropdown {
        display: block;
    }

    .nav-dropdown a {
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 0.82rem;
    }

    .mob-menu-footer {
        padding: 16px 16px 28px;
        border-top: 1px solid #f0f0f0;
        flex-shrink: 0;
    }

    .mob-menu-footer .btn-quote {
        width: 100%;
        text-align: center;
        display: block;
        padding: 13px 22px !important;
        font-size: 0.9rem;
    }

    .mob-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        /* z-index: 1054; */
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mob-overlay.active {
        opacity: 1;
    }

    /* Hide Bootstrap collapse behavior on desktop — we handle mobile ourselves */
    .nav-icons .btn-quote {
        display: none;
    }
}

/* ===========================
                                                HERO SECTION
                                                =========================== */


/* Mock UI elements inside card */
.mock-ui {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mock-chip {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #222;
    backdrop-filter: blur(4px);
}

.mock-stat {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mock-stat .stat-num {
    font-family: 'BwGradual', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.mock-stat .stat-label {
    font-size: 0.65rem;
    color: #666;
}

.mock-money {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mock-money .money-label {
    font-size: 0.62rem;
    color: #aaa;
}

.mock-money .money-amount {
    font-family: 'BwGradual', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--yellow);
}

/* Swiper pagination & nav */
.swiper-pagination-bullet {
    background: #555 !important;
    opacity: 0.3;
    width: 8px;
    height: 8px;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--yellow) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--black) !important;
    background: var(--yellow);
    width: 38px !important;
    height: 38px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 0.85rem !important;
    font-weight: 900;
}

/* Decorative vertical line */
.hero-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0, 0, 0, 0.06);
    display: none;
}

/* Stats bar at bottom */
.hero-stats {
    border-top: 1px solid #eee;
    margin-top: 16px;
    padding-top: 20px;
    display: flex;
    gap: 32px;
}

.stat-item .stat-number {
    font-family: 'BwGradual', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--black);
}

.stat-item .stat-label {
    font-size: 0.72rem;
    color: #888;
    margin-top: 2px;
}

/* Slide 2 */
.slide-card-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
}

.slide-card-dark h2.card-title {
    color: #fff;
}

.slide-card-dark p.card-sub {
    color: #aaa;
}

.slide-card-dark .card-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #ddd;
}

/* Slide 3 */
.slide-card-warm {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 60%, #ffe082 100%);
}

/* ===========================
                                                FOUNDATIONS SECTION
                                                =========================== */
.foundations-section {
    padding: 217px 0 80px;
    background: #fff;
}

.foundations-eyebrow {
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FFDD11;
    position: relative;
    margin-bottom: 12px;
}

.foundations-eyebrow::before {
    position: absolute;
    content: "";
    height: 9.375rem;
    width: 1px;
    border: 1px dashed #000;
    left: 0;
    right: 0;
    margin: auto;
    top: -10rem;
}

.foundations-title {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--black);
    text-align: center;
    margin-bottom: 16px;
}

.foundations-desc {
    text-align: center;
    font-size: 0.975rem;
    color: #000;
    line-height: 1.7;
    max-width: 51%;
    font-family: 'BwGradual-light';

    margin: 0 auto 44px;

}

/* Grid */
.foundations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
}

/* ---- Base card ---- */
.f-card {
    background: #EFEFEF;
    border-radius: 14px;
    padding: 28px 26px 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.32s cubic-bezier(.22, .68, 0, 1.2),
        box-shadow 0.32s ease,
        background 0.25s ease;
    cursor: pointer;
}

.f-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.09);
    background: #eee;
}

/* Yellow bottom bar on hover */
.f-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    border-radius: 0 0 14px 14px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s ease;
}

.f-card:hover::after {
    transform: scaleX(1);
}

/* ---- Featured card (spans 2 rows) ---- */
.f-card-featured {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    padding: 0;
    background: #e8e8e8;
    display: flex;
    flex-direction: column;
    min-height: 440px;
}

.f-card-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.12);
    background: #e8e8e8;
}

.f-card-featured::after {
    display: none;
}

/* Image placeholder area */
.featured-img-placeholder {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    background: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    transition: transform 0.4s ease;
}

.f-card-featured:hover .featured-img-placeholder {
    transform: scale(1.02);
}

/* Upload hint */
.img-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #888;
    user-select: none;
    pointer-events: none;
}

.img-hint svg {
    width: 40px;
    height: 40px;
    stroke: #aaa;
    stroke-width: 1.4;
    fill: none;
}

.img-hint span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #999;
    text-align: center;
    line-height: 1.5;
}

.img-hint .hint-badge {
    background: var(--yellow);
    color: #000;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Floating "James" badge */
.float-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 4px 12px 4px 5px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.float-badge .fb-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--yellow);
    font-size: 0.58rem;
    font-weight: 800;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-badge span.fb-name {
    font-size: 0.65rem;
    font-weight: 600;
    color: #222;
}

/* Arrow button */
.float-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 30px;
    height: 30px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.float-arrow:hover {
    transform: scale(1.15);
}

.float-arrow svg {
    width: 13px;
    height: 13px;
    stroke: #000;
    stroke-width: 2.5;
    fill: none;
}

/* ® mark */
.reg-mark {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 5;
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    color: rgba(0, 0, 0, 0.45);
    font-weight: 700;
}

/* App icons strip */
.app-icons-strip {
    position: absolute;
    bottom: 12px;
    left: 14px;
    z-index: 5;
    display: flex;
    gap: 8px;
}

.ai-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: #222;
    font-family: 'BwGradual', sans-serif;
    transition: background 0.2s;
}

.ai-icon svg {
    width: 16px;
    height: 16px;
    stroke: #222;
    stroke-width: 1.5;
    fill: none;
}

.ai-icon:hover {
    background: rgba(245, 230, 66, 0.45);
}

/* Text block below image */
.featured-text {
    background: #EFEFEF;
    border-radius: 0 0 14px 14px;
    padding: 20px 22px 22px;
}

.featured-text .f-card-title {
    margin-bottom: 8px;
}

/* ---- Card icon ---- */
.f-card-icon {
    margin-bottom: 16px;
}

.f-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: #333;
    stroke-width: 1.6;
    fill: none;
    transition: stroke 0.25s;
}

.f-card:hover .f-card-icon svg {
    stroke: #000;
}

/* ---- Card title & text ---- */
.f-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 10px;
}

.f-card-body {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.65;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .foundations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .f-card-featured {
        grid-row: auto;
        grid-column: 1 / 3;
        min-height: auto;
    }

    .featured-img-placeholder {
        min-height: 260px;
    }
}

@media (max-width: 575px) {
    .foundations-grid {
        grid-template-columns: 1fr;
    }

    .f-card-featured {
        grid-column: 1 / 2;
    }
}

/* ===========================
                                                OUR SERVICES SECTION
             /* =========================
               SERVICES SECTION — UPDATED
               ========================= */
/* =========================
               SERVICES SECTION — UPDATED
               ========================= */

.services-section {
    padding: 80px 0 60px;
    background: #fff;
    overflow: hidden;
    height: 900px;
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.svc-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FFDD11;
    margin-bottom: 6px;
}

.svc-title {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
}

.btn-svc-started {
    background: var(--yellow);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 11px 26px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}

.btn-svc-started:hover {
    background: #e8d900;
    transform: scale(1.04);
    color: #000;
}

/* ── Swiper ── */
.svc-swiper {
    overflow: visible !important;
    padding-left: max(12px, calc((100vw - 1200px) / 2)) !important;
    padding-bottom: 4px !important;
}

/* Swiper wrapper — top-align all slides */
.svc-swiper .swiper-wrapper {
    align-items: flex-start !important;
}

/* ── Each slide ── */
.svc-slide {
    width: 260px !important;
    height: auto;
}

/* Odd slides stay at top */
.svc-slide:nth-child(odd) {
    transform: translateY(0px);
}



/* ── Card shell ── */
.svc-card {
    background: transparent;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Yellow bottom bar on hover */
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    border-radius: 0 0 14px 14px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s ease;
    pointer-events: none;
}

.svc-card:hover::after {
    transform: scaleX(1);
}

/* ── Image box ── */
.svc-card__img-box {
    width: 100%;
    height: 260px;
    /* even cards — choti image */
    border-radius: 16px;
    overflow: hidden;
    background: #e0e0e0;
    flex-shrink: 0;
}

/* Odd cards — badi image */
/* .svc-slide:nth-child(odd) .svc-card__img-box {
                height: 360px;
            } */

.svc-card__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.svc-card:hover .svc-card__img-box img {
    transform: scale(1.04);
}

/* ── Card text area ── */
.svc-card__title {
    font-family: lato;
    font-weight: 700;
    font-size: 1rem;
    color: #111;
    margin: 14px 4px 10px;
    line-height: 1.3;
}

/* ── Tags ── */
.svc-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 4px 20px;
}

.svc-card__tag {
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #666;
    padding: 4px 10px;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.svc-card:hover .svc-card__tag {
    border-color: #999;
    color: #222;
}

/* ===========================
                                                TESTIMONIAL SECTION
                                                =========================== */
.testimonial-section {
    padding: 60px 0;
    background: #fff;
}

.testimonial-card {
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

/* Avatar area */
.testi-avatar-wrap {
    position: relative;
    flex-shrink: 0;
    width: 130px;
    height: 130px;
}

.testi-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Upload hint inside avatar */
.testi-avatar-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #aaa;
}

.testi-avatar-hint svg {
    width: 28px;
    height: 28px;
    stroke: #bbb;
    stroke-width: 1.4;
    fill: none;
}

.testi-avatar-hint span {
    font-size: 0.55rem;
    color: #bbb;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

/* Yellow blob behind avatar */
.testi-blob {
    position: absolute;
    top: -10px;
    left: -14px;
    width: 68px;
    height: 68px;
    background: var(--yellow);
    border-radius: 60% 40% 50% 50% / 50% 55% 45% 50%;
    z-index: 1;
}

/* Text area */
.testi-content {
    flex: 1;
}

.testi-quote {
    font-size: 1.05rem;
    color: #111;
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 14px;
    max-width: 620px;
}

.testi-role {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 18px;
}

/* Bottom row */
.testi-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.testi-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #111;
}

.testi-brand svg {
    width: 20px;
    height: 16px;
    fill: #111;
}

.testi-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testi-stat {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.testi-stat-num {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--yellow);
    line-height: 1;
}

.testi-stat-label {
    font-size: 0.75rem;
    color: #888;
}

.testi-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f0f1a;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.testi-cta:hover {
    background: #1a1a2e;
    transform: scale(1.03);
    color: #fff;
}

.testi-cta-icon {
    width: 28px;
    height: 28px;
    background: #1e1e3a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-cta-icon svg {
    width: 16px;
    height: 16px;
    stroke: #6699ff;
    fill: none;
    stroke-width: 1.8;
}

@media (max-width: 767px) {
    .testimonial-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 24px;
    }

    .testi-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.testi-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 20px;
    text-align: center;
}

.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc !important;
    opacity: 1;
    transition: background 0.3s, width 0.3s;
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--black) !important;
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
                                                GSAP STACK — built from scratch
                                                #stackWrap      : scroll container  (height = 200vh set by JS)
                                                #whySection     : Panel 1 — position:sticky, 100vh
                                                #pricingSection : Panel 2 — position:fixed, starts off-screen,
                                                                  GSAP translates it up as user scrolls
                                                ============================================================ */

/* Wrapper — JS will set height to window.innerHeight * 2       */
#stackWrap {
    position: relative;
}

/* Panel 1 ─ sticky so it stays visible while wrapper scrolls  */
#whySection {
    /* position: sticky;
                                               top: 0; */
    width: 100%;
    height: 122vh;
    background: #000;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

/* Panel 2 ─ fixed, GSAP moves it from translateY(100%) → 0    */
#pricingSection {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    overflow-y: auto;
    z-index: 10;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -16px 60px rgba(0, 0, 0, 0.85);
    /* JS sets transform:translateY(100%) on init */
    visibility: hidden;
    /* hidden until JS activates */
}

/* ── Why content ─────────────────────────────────────── */
.why-eyebrow {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    font-family: "Lato", sans-serif;
}

.why-title {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.why-cta {
    text-align: center;
    margin-bottom: 36px;
}

.btn-why {
    display: inline-block;
    background: var(--yellow);
    color: #000;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
}

.btn-why:hover {
    background: #e8d800;
    color: #000;
}

.why-table-wrap {
    width: 100%;
    border: 1px solid #1e1e1e;
    border-radius: 14px;
    overflow: hidden;
    margin: 0 auto;
}

.why-table-head,
.why-epic-row,
.why-feat-row {
    display: grid;
    grid-template-columns: 3.4fr 1fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #1e1e1e;
}

.why-table-head {
    background: #fff;
}

.why-epic-row {
    background: var(--yellow);
}

.why-head-logo {
    display: flex;
    align-items: center;
    padding: 14px 18px;
}

.logo-circle {
    width: 38px;
    height: 38px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: #000;
}

.why-head-col {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* border-left: 1px solid #e8e8e8; */
    padding: 14px 8px;
    text-align: center;
}

.why-epic-label {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background-color: #000;
}

.why-epic-logo {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: #000;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.why-epic-logo small {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.why-epic-check {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #000;
    padding: 40px 8px;
    /* margin: 30px; */
    /* border-radius: 13px; */
}

.why-epic-check svg {
    width: 24px;
    height: 24px;
    stroke: #000;
    stroke-width: 2;
    fill: none;
}

.why-feat-row:last-child {
    border-bottom: none;
}

.why-feat-row:hover {
    background: #111;
}

.why-feat-label {
    padding: 16px 18px;
}

.why-feat-title {
    font-size: 1.42rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: "Lato", sans-serif;
}

.why-feat-desc {
    font-size: 1rem;
    color: #fff;
    line-height: 1.45;
    font-family: "Lato", sans-serif;
    width: 79%;
}

.why-feat-check {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #1e1e1e;
    padding: 12px 8px;
}

.why-feat-check svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 1.8;
    fill: none;
}

/* ── Pricing content ──────────────────────────────────── */
.pricing-eyebrow {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 14px;
    font-family: "Lato", sans-serif;
}

.pricing-title {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.pricing-sub {
    text-align: center;
    font-size: 1.12rem;
    color: #fff;
    margin-bottom: 32px;
    font-family: "Lato", sans-serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.price-card {
    background: #111;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #222;
    transition: all 0.25s ease-in-out;
    width: 95%;
    height: 600px;
}

.price-card:hover {
    background: var(--white);
    color: #000;
    transition: 0.8s;
    transform: scale(1.01);
    /* thora bara */

}

/* Ye add karein */
.price-card:hover .price-list li {
    color: #000;
    /* ya jo bhi color chahiye */
}


.price-card-featured {
    background: #161616;
    border: 2px solid #333;
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.price-card-featured:hover {
    border-color: #555;
}

.price-name-bar {
    display: block;
    background: var(--yellow);
    color: #000;
    font-size: 1.45rem;
    font-weight: 700;
    text-align: center;
    padding: 7px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
}

.price-amount {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--yellow);
    line-height: 1;
    text-align: center;
    margin: 0 auto;
}

.price-right {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.price-original {
    font-size: 0.78rem;
    color: #666;
    text-decoration: line-through;
}

.price-only {
    font-size: 0.7rem;
    color: #888;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    /* border-top: 1px solid #222; */
    padding-top: 14px;
    margin-top: 15px;
}

.price-list li,
.price-item {
    font-size: 0.92rem;
    color: #bbb;
    padding: 4px 0 4px 18px;
    position: relative;
    line-height: 1.4;
}

.price-list li::before,
.price-item::before {
    content: '▷';
    position: absolute;
    left: 0;
    font-size: 0.58rem;
    color: var(--yellow);
    top: 5px;
    font-size: 14px;
}

.price-card-featured .price-item {
    color: #ddd;
}

.price-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #222;
}

.btn-get-quote {
    display: inline-block;
    background: var(--yellow);
    color: #000;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 37px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-get-quote:hover {
    background: #e8d800;
    color: #000;
}

.live-chat-link {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.live-chat-link svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #666;
    stroke-width: 1.6;
}

.live-chat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.live-chat-text .lc-hint {
    font-size: 0.58rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-chat-text .lc-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #888;
}

.price-card-featured .live-chat-link svg {
    stroke: #999;
}

.price-card-featured .lc-hint {
    color: #999;
}

.price-card-featured .lc-label {
    color: #aaa;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card-featured {
        transform: none;
    }

    .why-table-head,
    .why-epic-row,
    .why-feat-row {
        grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr;
    }
}

/* ===========================
                                                TRUSTED BRANDS SECTION
                                                =========================== */
.trusted-section {
    background: linear-gradient(90deg, #e8c800 0%, #f5e642 30%, #fff9c4 55%, #f5e642 75%, #d4a800 100%);
    padding: 28px 0 24px;
    overflow: hidden;
    position: relative;
}

.trusted-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #d4a800, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #d4a800, transparent);
}

.marquee-track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track .brand-logo {
    display: flex;
    align-items: center;
    white-space: nowrap;
    opacity: 0.75;
    transition: opacity 0.2s;
    user-select: none;
}

.marquee-track .brand-logo:hover {
    opacity: 1;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===========================
                                                PROCESS SECTION
                                                =========================== */
.process-section {
    padding: 90px 0 80px;
    background: #fff;
}

.process-eyebrow {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FFDD11;
    margin-bottom: 14px;
}

.process-title {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--black);
    text-align: center;
    margin-bottom: 22px;
}

.process-cta-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.btn-process {
    background: var(--yellow);
    color: #000;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 11px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}

.btn-process:hover {
    background: #e8d900;
    transform: scale(1.04);
    color: #000;
}

/* Grid layout */
.process-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.process-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Base process card */
.p-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.p-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.p-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.06) 40%,
            rgba(255, 255, 255, 0.13) 50%,
            rgba(255, 255, 255, 0.06) 60%,
            transparent 100%);
    z-index: 10;
    pointer-events: none;
    transition: none;
}

.p-card:hover::before {
    left: 150%;
    transition: left 0.6s ease;
}

/* Mock UI screenshot area */
.p-card-screen {
    width: 100%;
    padding: 29px 40px 0;
    background: #111;
}

.p-mock-window {
    background: #1a1a1a;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    min-height: 180px;
    position: relative;
}

.p-mock-bar {
    background: #222;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #2a2a2a;
}

.p-mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.p-mock-dot:nth-child(1) {
    background: #ff5f57;
}

.p-mock-dot:nth-child(2) {
    background: #febc2e;
}

.p-mock-dot:nth-child(3) {
    background: #28c840;
}

.p-mock-bar-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.6rem;
    color: #666;
    letter-spacing: 0.5px;
}

.p-mock-body {
    padding: 14px 14px 0;
}

.p-mock-field {
    background: #252525;
    border-radius: 6px;
    height: 28px;
    margin-bottom: 8px;
    border: 1px solid #2e2e2e;
}

.p-mock-label {
    font-size: 0.55rem;
    color: #555;
    margin-bottom: 4px;
    padding: 0 2px;
}

.p-mock-media-row {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    align-items: center;
}

.p-mock-thumb {
    width: 54px;
    height: 38px;
    border-radius: 6px;
    background: linear-gradient(135deg, #3a3a3a, #555);
    flex-shrink: 0;
}

.p-mock-thumb:nth-child(2) {
    background: linear-gradient(135deg, #444, #667);
}

.p-mock-add {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px dashed #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1rem;
    flex-shrink: 0;
}

.p-mock-btn {
    background: #2563eb;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
}

.p-mock-table {
    padding: 10px 14px;
}

.p-mock-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #2a2a2a;
}

.p-mock-th {
    font-size: 0.52rem;
    color: #555;
    font-weight: 600;
}

.p-mock-row {
    display: grid;
    grid-template-columns: 40px 1fr 1fr 1fr;
    gap: 4px;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #1e1e1e;
}

.p-mock-row-img {
    width: 34px;
    height: 28px;
    border-radius: 4px;
    background: linear-gradient(135deg, #3a3a8a, #6655aa);
}

.p-mock-row-img.orange {
    background: linear-gradient(135deg, #8a4a00, #cc7700);
}

.p-mock-row-img.green {
    background: linear-gradient(135deg, #1a5a1a, #3a8a3a);
}

.p-mock-cell {
    font-size: 0.52rem;
    color: #777;
}

.p-mock-badge {
    font-size: 0.48rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
}

.p-mock-badge.blue {
    background: #1e3a6e;
    color: #6699ff;
}

.p-mock-badge.orange {
    background: #4a2800;
    color: #ff9900;
}

.p-mock-badge.green {
    background: #1a3a1a;
    color: #44cc44;
}

.p-mock-render {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.p-mock-render-inner {
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #1a1a3e 0%, #2a2a5e 50%, #3a3a8e 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.p-mock-3d-shape {
    position: absolute;
    border-radius: 8px;
}

.shape-orange {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff6600, #ff9900);
    top: 10px;
    left: 16px;
    transform: rotate(12deg);
}

.shape-pink {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ff66cc, #cc44aa);
    top: 20px;
    right: 20px;
    border-radius: 50%;
}

.shape-blue {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3366ff, #6699ff);
    bottom: 10px;
    left: 40px;
    transform: rotate(-8deg);
}

.p-app-grid {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    align-items: center;
    justify-items: center;
}

.p-app-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    font-family: 'BwGradual', sans-serif;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.icon-gdrive {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.icon-figma {
    background: linear-gradient(135deg, #f24e1e, #a259ff);
}

.icon-canva {
    background: #00c4cc;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 0.7rem;
}

.icon-ppt {
    background: #d04423;
}

.icon-pr {
    background: #00005b;
    color: #9999ff;
}

.icon-ai {
    background: #ff7c00;
    color: #330000;
}

.icon-xd {
    background: #ff2bc2;
    color: #fff;
}

.icon-ai2 {
    background: #cc1100;
    color: #ffaa00;
}

.icon-ae {
    background: #00005b;
    color: #9999ff;
}

.icon-ps {
    background: #001e36;
    color: #31a8ff;
}

.p-download-btn {
    background: #2563eb;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    display: table;
    margin: 0 auto 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.p-download-btn:hover {
    background: #1d4ed8;
}

.p-card-text {
    padding: 20px 22px 24px;
    margin-left: 23px;
    font-family: 'Lato';
    color: #fff;
}

.p-card-num-title {
    font-family: 'Lato';
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.p-card-body {
    font-size: 1rem;
    color: #fff;
    line-height: 1.65;
    font-family: 'Lato';
}

.p-card-text-only {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
}

.p-card-text-only .p-card-num-title {
    font-size: 1.55rem;
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .process-grid-top {
        grid-template-columns: 1fr;
    }

    .process-grid-bottom {
        grid-template-columns: 1fr;
    }
}

/* ===========================
                                                CLIENTS ACHIEVE SECTION
                                                =========================== */
.clients-section {
    background: #0a0a0a;
    padding: 80px 0 80px;
    color: #fff;
}

.clients-eyebrow {
    font-size: 1.15rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    font-family: "Lato", sans-serif;
}

.clients-title {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.5px;
    font-size: 5rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.clients-desc {
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 48px;
    font-family: "Lato", sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 48px;
}

.stat-block {
    padding: 28px 0 24px;
    border-bottom: 1px dashed #fff;
}

.stat-block:nth-child(1),
.stat-block:nth-child(2) {
    border-top: 1px dashed #2a2a2a;
}

.stat-block:nth-child(odd) {
    padding-right: 40px;
    /* border-right: 1px dashed #2a2a2a; */
}

.stat-block:nth-child(even) {
    padding-left: 40px;
}

.stat-headline {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
}

.stat-number {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label-inline {
    font-size: 1.42rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-left: 12px;
    font-family: "Lato", sans-serif;
}

.stat-body {
    font-size: 1rem;
    color: #fff;
    line-height: 1.65;
    /* max-width: 340px; */
    width: 65%;
    font-family: "Lato", sans-serif;
}

.img-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.img-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    background: #e7e7e7;
    transition: transform 0.32s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.32s ease;
    cursor: pointer;
}

.img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.img-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1e1e1e;
    transition: background 0.25s;
}

.img-card:hover .img-card-placeholder {
    background: #252525;
}

.img-card-placeholder svg {
    width: 36px;
    height: 36px;
    stroke: #444;
    stroke-width: 1.4;
    fill: none;
}

.img-card-placeholder .ph-text {
    font-size: 0.7rem;
    color: #555;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.img-card-placeholder .ph-badge {
    background: var(--yellow);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.img-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 55%);
    z-index: 2;
    pointer-events: none;
}

.name-badge {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 3px 10px 3px 7px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.name-badge .nb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
}

.name-badge span {
    font-size: 0.6rem;
    font-weight: 600;
    color: #fff;
}

.img-card-3 .img-card-placeholder {
    background: #3a1a6e;
}

.img-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: -1px 0px;
}

.img-card-stat {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: 4.4rem;
    color: #fff;
    line-height: 1;
    margin-left: 16px;
    margin-bottom: 8px;
}

.img-card-stat sup {
    font-size: 51px;
    font-weight: 700;
    color: #fff;
    vertical-align: super;
    margin-left: 2px;
    margin-top: 32px !important;
    font-weight: 900;
}

.img-card-caption {
    font-size: 0.95rem;
    color: #fff;
    background: #0b0c0b1a;
    /* backdrop-filter: blur(4px); */
    display: inline-block;
    width: 100%;
    padding: 28px;
    margin: 0ox;
    font-family: 'Lato';
}

.rating-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 6px;
}

.rating-stars span {
    color: var(--yellow);
    font-size: 1rem;
}

.rating-stat {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: 4.4rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    margin-left: 22px;
}

.rating-stat sup {
    color: var(--yellow);
    font-size: 1.2rem;
}

.epic-chip {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    background: #111;
    border-radius: 8px;
    padding: 4px 8px;
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--yellow);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 1px;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-block:nth-child(odd) {
        padding-right: 0;
        border-right: none;
    }

    .stat-block:nth-child(even) {
        padding-left: 0;
    }

    .stat-block:nth-child(1) {
        border-top: 1px dashed #2a2a2a;
    }

    .stat-block:nth-child(2) {
        border-top: none;
    }

    .img-cards-row {
        grid-template-columns: 1fr;
    }

    .img-card {
        min-height: 240px;
    }
}

@media (max-width: 575px) {
    .stat-number {
        font-size: 2.8rem;
    }
}

/* ===========================
                                                RESPONSIVE
                                                =========================== */
@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0 30px;
    }

    .hero-left {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 28px;

    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        justify-content: center;
    }

    .badge-pill {
        margin: 0 auto 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-left {
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .badge-pill {
        margin: 0 0 18px;
    }

    .navbar-custom .nav-link {
        padding: 0.6rem 0 !important;
    }
}

/* ===========================
                                                HELPING SINCE DAY ONE SECTION
                                                =========================== */
.helping-section {
    padding: 80px 0 60px;
    background: #fff;
    overflow: hidden;
}

.helping-header {
    margin-bottom: 40px;
}

.helping-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FFDD11;
    margin-bottom: 10px;
}

.helping-title {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
}

/* ---- Swiper outer clips overflow ---- */
.helping-swiper-outer {
    width: 100%;
    overflow: hidden;
}

.swiper-helping {
    overflow: visible !important;
    padding-left: max(12px, calc((100vw - 1200px) / 2)) !important;
    padding-bottom: 50px !important;
}

/* Each slide — fixed width, shows peek of next */
.swiper-helping .swiper-slide {
    width: 580px !important;
}

@media (max-width: 768px) {
    .swiper-helping .swiper-slide {
        width: calc(100vw - 48px) !important;
    }
}

/* ---- Card layout: image left + stats right ---- */
.helping-card {
    display: flex;
    gap: 0;
    align-items: stretch;
    height: 400px;
}

/* Image side */
.hc-img-wrap {
    width: 280px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
    cursor: pointer;
}

/* Placeholder */
.hc-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #d0d0d0;
    z-index: 1;
    transition: transform 0.4s ease;
}

.hc-img-wrap:hover .hc-img-placeholder {
    transform: scale(1.04);
}

.hc-img-placeholder svg {
    width: 34px;
    height: 34px;
    stroke: #999;
    stroke-width: 1.4;
    fill: none;
}

.hc-ph-text {
    font-size: 0.68rem;
    color: #888;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.hc-ph-badge {
    background: var(--yellow);
    color: #000;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Dark overlay on hover — shows brand logo centered */
.hc-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hc-img-wrap:hover .hc-overlay {
    opacity: 1;
}

.hc-brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.3px;
}

.hc-brand-logo svg {
    fill: #fff;
    flex-shrink: 0;
}

/* Stats side */
.hc-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 0 0 0 36px;
}

.hc-stat-item {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.hc-stat-item:first-child {
    border-top: 1px solid #eee;
}

.hc-stat-num {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -1px;
    -webkit-text-stroke: 0.5px #b8a000;
}

.hc-stat-label {
    font-size: 0.78rem;
    color: #666;
    margin-top: 2px;
    line-height: 1.4;
}

.hc-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--yellow);
    color: #000;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    align-self: flex-start;
    transition: background 0.2s, transform 0.15s;
}

.hc-read-more:hover {
    background: #e8d900;
    transform: scale(1.04);
    color: #000;
}

/* ---- Custom pagination ---- */
.helping-pagination-wrap {
    margin-top: 8px;
}

.helping-pagination {
    position: relative !important;
    bottom: auto !important;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 6px;
}

.helping-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #ccc !important;
    opacity: 1;
    border-radius: 50%;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
    margin: 0 !important;
}

.helping-pagination .swiper-pagination-bullet-active {
    background: var(--yellow) !important;
    width: 28px !important;
    border-radius: 5px !important;
}

@media (max-width: 767px) {
    .helping-card {
        flex-direction: column;
        height: auto;
    }

    .hc-img-wrap {
        width: 100%;
        height: 220px;
    }

    .hc-stats {
        padding: 20px 0 0;
    }
}

/* ===========================
                                                INSIGHTS SECTION
                                                =========================== */
.insights-section {
    background: #0a0a0a;
    padding: 90px 0 100px;
    margin-top: 4%;
}

.insights-header {
    margin-bottom: 40px;
}

.insights-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.insights-title {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.insights-desc {
    font-size: 1rem;
    color: #fff;
    font-family: 'Lato';
    line-height: 1.6;
}

/* Grid: card 1 is wider (featured), cards 2+3 equal */
.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}

/* ── Base card ─────────────────────────────────────── */
.insight-card {
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #1e1e1e;
    transition: border-color 0.25s, transform 0.25s;
    /* cursor: pointer; */
}

.insight-card:hover {
    border-color: #333;
    transform: translateY(-4px);
}

/* Image block */
.insight-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1a1a1a;
}

.insight-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1c1c1c;
    color: #555;
    text-align: center;
}

.insight-img-placeholder svg {
    width: 36px;
    height: 36px;
}

.insight-ph-text {
    font-size: 0.7rem;
    color: #555;
    line-height: 1.4;
}

.insight-ph-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.62rem;
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

/* Yellow stat bar — featured card only */
.insight-stat-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--yellow);
    padding: 10px 16px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.insight-stat-num {
    font-family: 'BwGradual', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #000;
    line-height: 1;
}

.insight-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #222;
}

/* Meta / text area */
.insight-meta {
    padding: 18px 18px 20px;
}

.insight-tag {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Lato';
    margin-bottom: 10px;
}

.insight-meta .insight-title {
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.45;
    margin: 0;
    font-family: 'Lato';
}

.insight-card:hover .insight-meta .insight-title {
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .insights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .insight-card-featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-card-featured {
        grid-column: auto;
    }
}




.wrapper {
    width: 100%;
    max-width: 1300px;
    padding: 0 24px;
}

/* Pill */
.trusted-pill {
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(to right,
            #ffffff 0%,
            #fffef5 5%,
            #fffacc 12%,
            #fff176 22%,
            #ffe500 40%,
            #ffe000 50%,
            #ffe500 60%,
            #fff176 78%,
            #fffacc 88%,
            #fffef5 95%,
            #ffffff 100%);
    padding: 52px 0 52px 0;
    overflow: hidden;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

/* Heading */
.trusted-heading {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

/* Swiper */
.brandSwiper {
    width: 100%;
    overflow: hidden;
}

.brandSwiper .swiper-wrapper {
    align-items: center;
}

.brandSwiper .swiper-slide {
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

/* COX AUTOMOTIVE */
.logo-cox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.cox-top {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cox-bottom {
    font-size: 7px;
    font-weight: 500;
    color: #111;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* 7 */
.logo-seven {
    font-size: 30px;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

/* MELTWATER */
.logo-meltwater {
    display: flex;
    align-items: center;
    gap: 7px;
}

.logo-meltwater span {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}

.mw-svg {
    width: 26px;
    height: 26px;
}

/* TRAINUAL */
.logo-trainual {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 21px;
    color: #111;
    letter-spacing: -0.01em;
}

/* PROGRAMETRIX */
.logo-programetrix {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.01em;
}

.pm-star {
    width: 13px;
    height: 13px;
    margin-left: 1px;
}

/* ELM */
.logo-elm {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    letter-spacing: 0.05em;
}

/* SMART */
.logo-smart {
    font-size: 25px;
    font-weight: 900;
    color: #111;
    letter-spacing: -0.04em;
    line-height: 1;
}

.main-logo-slider-section {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}

.main-encw {
    margin-top: 10px;
    border-radius: 20px;
}


/* ===========================
                                                    RESET & BASE
                                                 =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
}

/* ===========================
                                                    SECTION WRAPPER
                                                    Fixed height so cards
                                                    overflow top & bottom like image
                                                 =========================== */
.svc-section {
    width: 100%;
    overflow: hidden;
    /* tall enough to show the tallest card + text */
    height: 620px;
    position: relative;
}

/* ===========================
                                                    SWIPER
                                                 =========================== */
.svc-swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
    padding: 0 40px !important;
}

/* swiper-wrapper must not stretch — cards sit at custom Y */
.svc-swiper .swiper-wrapper {
    align-items: flex-start;
    height: 100%;
}

/* ===========================
                                                    SLIDE BASE
                                                 =========================== */
.svc-slide {
    width: 295px !important;
    flex-shrink: 0;
    position: relative;
    height: 100%;
    /* each slide positions its card via absolute child */
}

/* ===========================
                                                    CARD
                                                    position: absolute so we
                                                    can offset vertically per card
                                                 =========================== */
.svc-card {
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    cursor: grab;
    transition: top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-card:active {
    cursor: grabbing;
}

/*
                                                   Stagger pattern (repeating per image):
                                                   odd  slides  (1,3,5…) → low  (top: ~220px)  — image partially cut at top, text below
                                                   even slides (2,4,6…) → mid  (top: ~40px)   — full card visible
                                                   active center         → top  (top: ~0px)    — tallest, image starts from very top
                                                 */

/* DEFAULT — all cards: mid position */
.svc-slide .svc-card {
    /* top: 40px; */
}

/* ODD slides — lower position */
.svc-slide:nth-child(odd) .svc-card {
    /* top: 200px; */
}

/* EVEN slides — mid position */
.svc-slide:nth-child(even) .svc-card {
    /* top: 40px; */
}

/* ACTIVE slide — highest position (center of attention) */
.svc-slide.swiper-slide-active .svc-card {
    /* top: 0px !important; */
}

/* prev/next also adjust slightly */
.svc-slide.swiper-slide-prev .svc-card,
.svc-slide.swiper-slide-next .svc-card {
    /* top: 40px !important; */
}

/* ===========================
                                                    IMAGE BOX
                                                 =========================== */
.svc-card__img-box {
    width: 100%;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    background: #e8e8e8;
    margin-bottom: 20px;
    transition: box-shadow 0.4s ease, height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active card image taller */
.svc-slide.swiper-slide-active .svc-card__img-box {
    height: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
}

.svc-card__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.svc-slide.swiper-slide-active .svc-card__img-box img {
    transform: scale(1.03);
}

/* ===========================
                                                    TITLE
                                                 =========================== */
.svc-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* ===========================
                                                    TAGS
                                                 =========================== */
.svc-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-card__tag {
    display: inline-block;
    font-size: 10.7px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000;
    background: #e7e7e7;
    /* border: 1px solid #e0e0e0; */
    border-radius: 999px;
    padding: 10.8px 21.3px;
    white-space: nowrap;
    line-height: 1.4;
    border: none;
    font-family: 'Lato';
}

.svc-slide.swiper-slide-active .svc-card__tag {
    background: #e8e8e8;
    border-color: #ccc;
}

/* ===========================
                                                    RESPONSIVE
                                                 =========================== */
@media (max-width: 768px) {
    .svc-section {
        height: 520px;
    }

    .svc-swiper {
        padding: 0 20px !important;
    }

    .svc-slide {
        width: 240px !important;
    }

    .svc-card__img-box {
        height: 260px;
    }

    .svc-slide.swiper-slide-active .svc-card__img-box {
        height: 310px;
    }

    .svc-card__title {
        font-size: 17px;
    }

    .svc-slide:nth-child(odd) .svc-card {
        top: 0px;
    }
}

@media (max-width: 480px) {
    .svc-section {
        height: 460px;
    }

    .svc-slide {
        width: 200px !important;
    }

    .svc-card__img-box {
        height: 220px;
    }

    .svc-slide.swiper-slide-active .svc-card__img-box {
        height: 260px;
    }

    .svc-slide:nth-child(odd) .svc-card {
        top: 0px;
    }
}




/* ════════════════════════════
                                                    FOOTER MAIN (white area)
                                                 ════════════════════════════ */
.ft-main {
    background: #ffffff;
    padding: 74px 0px;
    border-top: 1px solid #ebebeb;
}

/* ── TOP ROW: subscribe + badges + social ── */
.ft-top {
    padding-bottom: 28px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 32px;
}

/* Subscribe block */
.ft-subscribe__label {
    font-size: 19.5px;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px;
    font-family: 'Lato';
}

.ft-subscribe__sub {
    font-size: 13.5px;
    color: #666;
    margin-bottom: 12px;
    font-family: 'Lato';
}

.ft-subscribe__form {
    display: flex;
    align-items: center;
    /* border: 1.5px solid #d0d0d0; */
    /* border-radius: 6px; */
    overflow: hidden;
    width: 384px;
}

.ft-subscribe__input {
    flex: 1;
    /* border: none; */
    outline: none;
    padding: 17px 14px !important;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #333;
    border: 1px solid #000;
    background: transparent;
    border-radius: 36px;
}

.ft-subscribe__input::placeholder {
    color: #aaa;
}

.ft-subscribe__btn {
    background: transparent;
    border: none;
    padding: 13px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    transition: background 0.2s;
    margin-left: 15px;
    border-radius: 50px;
}

.ft-subscribe__btn:hover {
    background: #333;
}

.ft-subscribe__btn svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

/* Badges */
.ft-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 57px;
    margin-top: 70px;
}

.ft-badge {
    width: 56px;
    height: 68px;
    background: #f5f5f5;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 4px;
    border: 1px solid #e8e8e8;
}

.ft-badge__stars {
    display: flex;
    gap: 1px;
    margin-bottom: 4px;
}

.ft-badge__star {
    color: #f0a500;
    font-size: 9px;
}

.ft-badge__label {
    font-size: 7.5px;
    font-weight: 700;
    color: #333;
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.ft-badge__sub {
    font-size: 6.5px;
    color: #888;
    text-align: center;
    margin-top: 2px;
}

/* Social icons */
.ft-social__label {
    font-size: 12px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.ft-social__icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ft-social__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
    flex-shrink: 0;
    background: var(--black);
}

.ft-social__icon:hover {
    opacity: 0.8;
}

.ft-social__icon--fb {}

.ft-social__icon--x {}

.ft-social__icon--in {}

.ft-social__icon--ig {}

.ft-social__icon--yt {}

.ft-social__icon--tt {}

/* ── LINKS GRID ── */
.ft-links {}

.ft-col__heading {
    font-size: 16.8px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 42px;
    font-family: 'Lato';
    position: relative;
}

.ft-col__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-col__list li {
    margin-bottom: 17px;
}

.ft-col__list a {
    font-size: 14px;
    color: #333;
    text-decoration: none !important;
    transition: color 0.18s;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lato';
}

.ft-col__list a:hover {
    color: #111;
    text-decoration: underline;
}

/* contact icons */
.ft-contact-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.ft-contact-icon--email {
    /* background: #fff3cd; */
    color: #b8860b;
}

.ft-contact-icon--phone {
    /* background: #d4edda; */
    color: #155724;
}

.ft-contact-icon--chat {
    /* background: #cce5ff; */
    color: #004085;
}

.ft-contact-icon--help {
    /* background: #f8d7da; */
    color: #721c24;
}

.ft-contact-icon--status {
    /* background: #e2e3e5; */
    color: #383d41;
}

.ft-col__list a.ft-link--underline {
    text-decoration: underline;
    color: #111;
}

/* ════════════════════════════
                                                    FOOTER BOTTOM (yellow bar)
                                                 ════════════════════════════ */
.ft-bottom {
    background: #f5c800;
    padding: 14px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.ft-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.ft-logo__text {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    letter-spacing: -0.03em;
    /* margin-left: 40px; */
    line-height: 1;
}

.ft-logo__text span {
    color: #111;
    font-size: 11px;
    font-weight: 700;
    display: block;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    margin-top: -2px;
}

.ft-logo__exclaim {
    color: #111;
}

/* AI Summary pill */
.ft-ai-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border-radius: 999px;
    padding: 0px 11px;
    font-size: 12.5px;
    font-weight: 600;
    color: #111;
    margin-left: 16px;
    cursor: pointer;
    border: 1px solid #000;
    transition: background 0.2s;
}

.ft-ai-pill:hover {
    background: #f0f0f0;
}

.ft-ai-pill__star {
    font-size: 14px;
    color: #f0c800;
}

.ft-ai-pill__caret {
    font-size: 11px;
    color: #555;
    margin-left: 2px;
}

/* Bottom links */
.ft-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ft-bottom-links a {
    font-size: 12px;
    color: #111;
    text-decoration: none;
    font-weight: 500;
    transition: text-decoration 0.15s;
}

.ft-bottom-links a:hover {
    text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .ft-main {
        padding: 32px 24px 28px 24px;
    }

    .ft-bottom {
        padding: 14px 24px;
    }
}

@media (max-width: 768px) {
    .ft-subscribe__form {
        width: 100%;
    }

    .ft-top {
        flex-direction: column;
        gap: 24px;
    }

    .ft-bottom {
        flex-wrap: wrap;
        gap: 12px;
    }
}



/* ══════════════════════════════
                                                    SECTION WRAPPER
                                                 ══════════════════════════════ */
.clt-section {
    width: 100%;
    padding: 60px 0 70px 0;
    background: #fff;
}

/* ── Heading block ── */
.clt-heading-wrap {
    padding: 0 0 40px 240px;
}

.clt-eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f0c800;
    font-family: "Lato", sans-serif;
    margin-bottom: 6px;
}

.clt-title {
    font-family: 'BwGradual', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #111;
    letter-spacing: -0.01em;
    line-height: 1;
    text-transform: uppercase;
}

/* ══════════════════════════════
                                                    SWIPER WRAPPER
                                                 ══════════════════════════════ */
.clt-swiper-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.clt-swiper {
    width: 100%;
    overflow: visible;
    padding-left: 240px !important;
}

.clt-swiper .swiper-wrapper {
    align-items: stretch;
}

/* ══════════════════════════════
                                                    SLIDE
                                                 ══════════════════════════════ */
.clt-slide {
    width: 740px !important;
    display: flex;
    gap: 36px;
    align-items: flex-start;
    flex-shrink: 0;
}

/* ══════════════════════════════
                                                    IMAGE BLOCK
                                                 ══════════════════════════════ */
.clt-img-block {
    flex-shrink: 0;
    width: 390px;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease-in-out;
}

.clt-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blue overlay on image */
.clt-img-block__overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 60, 130, 0.52);
    border-radius: 16px;
    width: 90%;
    height: 90%;
    margin: 0 auto;
    top: 22px;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
}

.clt-img-block:hover .clt-img-block__overlay,
.clt-img-block:hover .clt-img-block__logo {
    transform: scale(1);
}

/* Logo on image */
.clt-img-block__logo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    transform: scale(0);
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.clt-img-block__logo-text {
    font-family: 'Lato';
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

/* People icon group (like commit logo) */
.clt-logo-icon {
    display: flex;
    gap: 3px;
    align-items: flex-end;
}

.clt-logo-icon span {
    display: block;
    background: #fff;
    border-radius: 50% 50% 0 0;
}

.clt-logo-icon span:nth-child(1) {
    width: 10px;
    height: 16px;
}

.clt-logo-icon span:nth-child(2) {
    width: 10px;
    height: 20px;
}

.clt-logo-icon span:nth-child(3) {
    width: 10px;
    height: 24px;
}

.clt-logo-icon span:nth-child(4) {
    width: 10px;
    height: 20px;
}

/* Dotted vertical line on image */
.clt-img-block__line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: repeating-linear-gradient(to bottom,
            #fff 0px,
            #fff 4px,
            transparent 4px,
            transparent 8px);
    opacity: 0.6;
}

/* ══════════════════════════════
                                                    STATS BLOCK
                                                 ══════════════════════════════ */
.clt-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10px;
    gap: 56px;
}

.clt-stat {}

.clt-stat__number {
    font-family: 'BwGradual', sans-serif;
    font-size: 51.4px;
    font-weight: 900;
    color: #f0c800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.clt-stat__label {
    font-size: 15px;
    font-weight: 400;
    color: #111;
    margin-top: 4px;
    letter-spacing: -0.01em;
}

/* Read more button */
.clt-btn {
    display: inline-block;
    background: #f0c800;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: 4px;
    transition: background 0.2s;
    width: fit-content;
}

.clt-btn:hover {
    background: #e0b800;
}

/* ══════════════════════════════
                                                    PAGINATION
                                                 ══════════════════════════════ */
.clt-pagination-wrap {
    padding: 14px 0 0 0px;
}

.clt-swiper .swiper-pagination {
    position: static !important;
    display: flex;
    gap: 8px;
    align-items: center;
}

.clt-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.clt-swiper .swiper-pagination-bullet-active {
    background: #f0c800;
    transform: scale(1.25);
}

/* ══════════════════════════════
                                                    PREV/NEXT ARROWS (sides)
                                                 ══════════════════════════════ */
.clt-nav-prev,
.clt-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.clt-nav-prev {
    left: 160px;
}

.clt-nav-next {
    right: 20px;
}

.clt-nav-prev svg,
.clt-nav-next svg {
    width: 28px;
    height: 28px;
}

/* ══════════════════════════════
                                                    RESPONSIVE
                                                 ══════════════════════════════ */
@media (max-width: 1100px) {

    .clt-heading-wrap,
    .clt-swiper,
    .clt-pagination-wrap {
        padding-left: 40px !important;
    }

    .clt-nav-prev {
        left: 0;
    }

    .clt-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .clt-slide {
        width: 85vw !important;
        flex-direction: column;
        gap: 20px;
    }

    .clt-img-block {
        width: 100%;
        height: 260px;
    }

    .clt-stat__number {
        font-size: 50px;
    }

    .clt-title {
        font-size: 27px;
    }

    .clt-heading-wrap,
    .clt-swiper,
    .clt-pagination-wrap {
        padding-left: 20px !important;
    }
}



/* ══ CTA BANNER ══ */
.cta-banner {
    background: #f5c800;
    border-radius: 18px;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    gap: 17px;
    width: 63%;
    margin: 0 auto;
    margin-top: 118px;
}

/* ── Icon Box ── */
.cta-banner__icon-box {
    width: 117px;
    height: 123px;
    background: #111;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Intercom-style icon: 4 bars + smile arc */
.cta-banner__icon-box svg {
    width: 52px;
    height: 52px;
}

/* ── Text Block ── */
.cta-banner__body {
    margin-left: 0;
}

.cta-banner__title {
    font-size: 27px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.25;
    font-family: 'Lato';
}

.cta-banner__desc {
    font-size: 22px;
    font-weight: 400;
    color: #111;
    line-height: 1.55;
    margin-bottom: 16px;
    font-family: 'Lato';
}

.cta-banner__link {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    /* border-bottom: 2px solid #111; */
    padding-bottom: 1px;
    transition: opacity 0.2s;
    display: inline-block;
}

.cta-banner__link:hover {
    opacity: 0.65;
}

/* ── Responsive ── */
@media (max-width: 560px) {
    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px;
        gap: 18px;
        width: 93%;
    }

    .cta-banner__title {
        font-size: 17px;
    }

    .cta-banner__desc {
        font-size: 13.5px;
    }
}


.pricing-section {
    background-color: #000;
    padding: 5%;
}



.tsm-section {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 3% 3%;
}

/* ══════════════════════════
                                                SWIPER
                                             ══════════════════════════ */
.tsm-swiper {
    width: 100%;
    overflow: hidden;
}

/* ══════════════════════════
                                                SLIDE
                                             ══════════════════════════ */
.tsm-slide {
    display: flex;
    align-items: center;
    gap: 52px;
    padding: 10px 0 20px 0;
}

/* ══════════════════════════
                                                LEFT — Avatar block
                                             ══════════════════════════ */
.tsm-avatar-wrap {
    flex-shrink: 0;
    position: relative;
    width: 210px;
    height: 240px;
}

/* Yellow blob — top-right corner, organic splat shape */
.tsm-avatar-wrap__blob {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 78px;
    height: 68px;
    /* background: #f5c800; */
    /* organic irregular blob */
    border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
    z-index: 0;
}

/* 
                                               Exact shape from image:
                                               - Left side: nearly flat / very slight curve
                                               - Top: fully rounded
                                               - Right side: large outward curve (bulges right)
                                               - Bottom-right: tapers to a soft point
                                               Achieved with clip-path SVG polygon approximation
                                             */
.tsm-avatar-wrap__img {
    position: relative;
    z-index: 1;
    width: 190px;
    height: 225px;
    overflow: hidden;
    clip-path: path('M 80,0 C 130,0 190,38 190,105 C 190,165 148,222 85,225 C 40,226 0,195 0,145 C 0,65 30,0 80,0 Z');
}

.tsm-avatar-wrap__img img {
    width: 100%;
    height: 93%;
    object-fit: contain;
    /* object-position: center top; */
    display: block;
}

/* ══════════════════════════
                                                RIGHT — Content block
                                             ══════════════════════════ */
.tsm-content {
    flex: 1;
    min-width: 0;
}

/* Quote text */
.tsm-quote {
    font-size: 22px;
    font-weight: 400;
    color: #111;
    line-height: 1.55;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

/* Attribution */
.tsm-attribution {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 24px;
}

/* ── Bottom row: logo + stat + button ── */
.tsm-bottom-row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

/* Company logo text */
.tsm-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.tsm-logo__icon {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
}

.tsm-logo__icon span {
    display: block;
    background: #111;
    border-radius: 3px 3px 0 0;
}

.tsm-logo__icon span:nth-child(1) {
    width: 5px;
    height: 12px;
}

.tsm-logo__icon span:nth-child(2) {
    width: 5px;
    height: 16px;
}

.tsm-logo__icon span:nth-child(3) {
    width: 5px;
    height: 20px;
}

.tsm-logo__icon span:nth-child(4) {
    width: 5px;
    height: 16px;
}

.tsm-logo__text {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}

/* Spacer pushes stat+btn right */
.tsm-bottom-spacer {
    flex: 1;
}

/* Stat */
.tsm-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
}

.tsm-stat__num {
    font-size: 28px;
    font-weight: 800;
    color: #f0c800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.tsm-stat__label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

/* Read case study button */
.tsm-case-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: var(--yellow);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato';
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.tsm-case-btn:hover {
    background: #333;
    color: #fff;
}

/* Book icon inside button */
.tsm-case-btn__icon {
    width: 28px;
    height: 28px;
    background: #2a3a80;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tsm-case-btn__icon svg {
    width: 16px;
    height: 16px;
}

/* ══════════════════════════
                                                NAVIGATION arrows
                                             ══════════════════════════ */
.tsm-nav {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 28px;
}

.tsm-nav__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.tsm-nav__btn:hover {
    border-color: #111;
    background: #f9f9f9;
}

.tsm-nav__btn svg {
    width: 16px;
    height: 16px;
}

/* Pagination bullets */
.tsm-swiper .swiper-pagination {
    position: static;
    display: flex;
    gap: 7px;
    align-items: center;
    margin-top: 24px;
}

.tsm-swiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    transition: background 0.25s, transform 0.25s;
}

.tsm-swiper .swiper-pagination-bullet-active {
    background: var(--yellow);
    transform: scale(1.3);
}

/* ══════════════════════════
                                                RESPONSIVE
                                             ══════════════════════════ */
@media (max-width: 768px) {
    .tsm-slide {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .tsm-quote {
        font-size: 17px;
    }

    .tsm-avatar-wrap {
        width: 140px;
        height: 160px;
    }

    .tsm-avatar-wrap__img {
        width: 130px;
        height: 150px;
    }

    .tsm-stat__num {
        font-size: 22px;
    }

    .tsm-bottom-spacer {
        display: none;
    }
}


.sdimve {
    display: flex;
    justify-content: space-between;
}



/*  */


/* ─── SECTION 1: HERO ─── */
#hero {
    min-height: 68vh;
    padding: 120px 48px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14.2px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    background: #000;
    border-radius: 100px;
    padding: 11px 14px;
    margin-bottom: 26px;
    font-family: 'Lato';
}

.badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--yellow);
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.95;
    letter-spacing: 1px;
    color: var(--black);
    margin-bottom: 28px;
    width: 138%;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #424242;
    font-family: 'Lato';
    margin-bottom: 38px;
    width: 85% !important;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 230, 66, .4);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid #ccc;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.btn-outline:hover {
    border-color: var(--black);
    background: #f5f5f5;
}

/* ─── LAPTOP ─────────────────────────────────────────────────────── */
.hero-right {
    position: relative;
    z-index: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/new/Laptop\ E.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 77%;
}



laptop {
    position: relative;
    width: 600px;
    /* adjust */
    margin: auto;
}

.laptop-img {
    width: 100%;
    display: block;
}





/* =============================================================
                        RESPONSIVE FIXES — All Pages
                        Added: Mobile-first fixes for hero, process, why, pricing,
                        stats, insights, footer, inner-pages
                        ============================================================= */

/* ── HERO (index) ── */
@media (max-width: 991px) {
    #hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        gap: 40px;
        min-height: auto;
    }

    .hero-right {
        justify-content: center;
    }

    .laptop-wrap {
        max-width: 440px;
        margin: 0 auto;
    }

    .scroll-cue {
        display: none;
    }
}

@media (max-width: 575px) {
    #hero {
        padding: 80px 16px 50px;
        gap: 32px;
    }

    .hero-title {
        font-size: clamp(38px, 10vw, 60px);
    }

    .hero-desc {
        font-size: 14px;
        width: 100% !important;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .laptop-wrap {
        max-width: 100%;
    }
}

/* ── BRAND LOGO SLIDER ── */
@media (max-width: 575px) {
    .main-logo-slider-section {
        padding: 24px 0;
    }

    .trusted-pill {
        padding: 16px 12px;
    }

    .trusted-heading {
        font-size: 13px;
    }
}

/* ── FOUNDATIONS SECTION ── */
@media (max-width: 767px) {
    .foundations-section {
        padding: 126px 0 !important;
    }

    .foundations-title {
        font-size: clamp(26px, 6vw, 40px);
    }

    .f-card {
        padding: 24px 20px;
    }
}

/* ── CLIENTS / STATS SECTION ── */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .img-cards-row {
        flex-direction: column;
        gap: 16px;
    }

    .img-card {
        width: 100%;
        min-height: 220px;
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: clamp(36px, 10vw, 56px);
    }

    .clients-title {
        font-size: clamp(26px, 7vw, 40px);
        text-align: center;
    }
}

/* ── PROCESS SECTION ── */
@media (max-width: 991px) {
    .process-grid-top {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .process-grid-bottom {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .process-grid-top {
        grid-template-columns: 1fr;
    }

    .process-title {
        font-size: clamp(24px, 6vw, 38px);
    }

    .p-card {
        padding: 20px 16px;
    }
}

/* ── WHY SECTION ── */
@media (max-width: 991px) {
    #whySection {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }

    .why-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .why-table-head,
    .why-epic-row,
    .why-feat-row {
        min-width: 640px;
    }

    .why-title {
        font-size: clamp(28px, 5vw, 48px);
    }
}

@media (max-width: 575px) {
    .why-title {
        font-size: clamp(24px, 7vw, 36px);
    }

    #whySection .container {
        padding: 0 16px;

    }
}

/* ── PRICING SECTION ── */
@media (max-width: 991px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .pricing-title {
        font-size: clamp(26px, 5vw, 42px);
    }
}

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    #whySection{
        display: none;
    }
}

/* ── INSIGHTS SECTION ── */
@media (max-width: 991px) {
    .insights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .insights-title {
        font-size: clamp(26px, 5vw, 42px);
        text-align: center;
    }
}

@media (max-width: 575px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insights-header {
        text-align: left;
    }

    .insight-img-wrap img {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
}

/* ── FOOTER ── */
@media (max-width: 575px) {
    .ft-main {
        padding: 28px 16px;
    }

    .ft-subscribe__form {
        flex-direction: column;
        gap: 10px;
    }

    .ft-subscribe__input {
        width: 100%;
        border-radius: 8px;
        padding: 12px 14px;
    }

    .ft-subscribe__btn {
        width: 90% !important;
        border-radius: 8px;
        padding: 12px;
        justify-content: center;
        margin-right: 36px;
    }

    .ft-badges {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: 12px;
        margin-top: 36px;
    }

    .ft-bottom-links {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
        text-align: center;
        margin: 0 auto;
    }

    .sdimve {
        flex-direction: column;
        gap: 16px;
    }
}

/* ── INNER PAGES: BANNER ── */
@media (max-width: 991px) {
    .inner-banner {
        padding: 3em 0;
    }

    .inner-banner .hero-title {
        font-size: clamp(28px, 6vw, 52px);
        width: 95%;
    }

    .shape-one,
    .shape-two {
        width: 160px;
        height: 400px;
    }
}

@media (max-width: 575px) {
    .inner-banner {
        padding: 2em 0;
    }

    .inner-banner .hero-title {
        font-size: clamp(24px, 8vw, 40px);
    }

    .shape-one,
    .shape-two {
        display: none;
    }

    .padd-y {
        padding: 3em 0;
    }
}

/* ── INNER PAGES: SERVICE PILLS ── */
@media (max-width: 767px) {
    .ser-slide-pills {
        gap: 0.5rem;
    }

    .ser-slide-pills li {
        padding: 0.5em 0.875em;
    }

    .ser-slide-pills li span {
        font-size: 0.875rem;
    }
}

/* ── INNER PAGES: QUBI ── */
@media (max-width: 767px) {
    .qubi-content h5 {
        font-size: 1.375rem;
        margin-bottom: 3rem;
    }

    .qubi-content p {
        font-size: 1rem;
    }
}

/* ── INNER PAGES: FIREPOWER ── */
@media (max-width: 767px) {
    .firepower-heading {
        margin-bottom: 2rem;
    }

    .firepower-card {
        padding: 1.25rem;
    }

    .firepower-card__content h4 {
        font-size: 1.125rem;
    }
}

/* ── INNER PAGES: DECIDE ── */
@media (max-width: 767px) {
    .decide-card__content {
        padding: 1rem 1.25rem;
    }

    .decide-card__content span {
        font-size: 1.125rem;
    }
}

/* ── INNER PAGES: WE-MISS STATS ── */
@media (max-width: 767px) {
    .we-miss .stat-body {
        font-size: 1rem;
    }
}

/* ── SERVICES SWIPER  ── */
@media (max-width: 575px) {
    .svc-slide {
        width: 80vw !important;
    }

    .svc-card__title {
        font-size: 16px;
    }
}

/* ── SVC SECTION HEADER ── */
@media (max-width: 767px) {
    .services-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .svc-title {
        font-size: clamp(28px, 6vw, 44px);
    }
}

/* ── PROCESS SECTION TITLE ── */
@media (max-width: 575px) {

    .process-eyebrow,
    .svc-eyebrow,
    .why-eyebrow,
    .pricing-eyebrow,
    .insights-eyebrow,
    .clients-eyebrow,
    .foundations-eyebrow {
        font-size: 11px;
    }
}

/* ── GENERAL IMAGE OVERFLOW FIX ── */
img {
    max-width: 100%;
    height: auto;
}

/* ── PREVENT HORIZONTAL SCROLL ── */
body,
.wrapper {
    overflow-x: hidden;
}

/* ─── Text Animation Helpers ─── */
.ew-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.15;
}

.ew-inner {
    display: inline-block;
}




.price-list li {
    color: #fff;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-tabs a {
    color: var(--yellow);
    border: 2px solid var(--yellow);
    padding: 10px;
    text-decoration: none;

}


/* .price-list-new{
                 height: 350px;
                 overflow-y: scroll;
               } */

/* Scrollbar track (background) */
.price-list::-webkit-scrollbar-track {
    background: var(--badge-bg);
}

/* Scrollbar thumb (jo move hota hai) */
.price-list::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 6px;
}

/* Scrollbar width */
.price-list::-webkit-scrollbar {
    width: 8px;
}


.price-list {
    height: 300px;
    overflow-y: scroll;
}

/*  */



/* ══ LEFT ══ */
.hero-left {
    position: relative;
    z-index: 2;
    margin-left: 34.6%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14.2px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    background: #000;
    border-radius: 100px;
    padding: 11px 14px;
    margin-bottom: 26px;
    font-family: 'Lato';
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

.hero-title {
    font-family: 'BwGradual', sans-serif;
    font-size: 4.1rem;
    font-weight: 900;
    line-height: .93;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 26px;
}



.hero-btns {
    display: flex;
    gap: 12px;
}

.btn-primary {
    font-size: 14px;
    font-weight: 600;
    padding: 13px 30px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 240, 65, .5);
}

.btn-outline {
    font-size: 14px;
    font-weight: 500;
    padding: 13px 30px;
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
    border-radius: 100px;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

/* ══ RIGHT ══ */


.laptop-wrap {
    width: 100%;
    max-width: 770px !important;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .16));
}

/* laptop outer shell */
.laptop-shell {
    background: linear-gradient(160deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 14px 14px 0 0;
    padding: 12px 14px 0;
    border: 1.5px solid rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}

.laptop-notch-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 9px;
}

.laptop-camera {
    width: 7px;
    height: 7px;
    background: #3a3a3a;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
}

.laptop-camera::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
}

/* browser chrome */
.browser-chrome {
    background: #ececec;
    border-radius: 6px 6px 0 0;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #d8d8d8;
}

.chrome-dots {
    display: flex;
    gap: 5px;
}

.chrome-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.chrome-dot:nth-child(1) {
    background: #ff5f57;
}

.chrome-dot:nth-child(2) {
    background: #febc2e;
}

.chrome-dot:nth-child(3) {
    background: #28c840;
}

.chrome-url {
    flex: 1;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 9px;
    color: #666;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    white-space: nowrap;
}

.lock-icon {
    font-size: 8px;
    flex-shrink: 0;
}

.chrome-btns {
    display: flex;
    gap: 5px;
}

.chrome-btn {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #666;
    cursor: pointer;
}




/* slides */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(28px) scale(.98);
    will-change: opacity, transform;
}



.s1-topnav {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    padding: 7px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    flex-shrink: 0;
}

.s1-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 900;
    color: #111;
    letter-spacing: .5px;
}

.s1-nav-links {
    display: flex;
    gap: 10px;
}

.s1-nav-link {
    font-size: 7.5px;
    color: #888;
    font-weight: 500;
}

.s1-nav-ctas {
    display: flex;
    gap: 5px;
}

.s1-ncta {
    font-size: 7px;
    padding: 3px 9px;
    border-radius: 100px;
    border: 1px solid #ccc;
    background: none;
    cursor: pointer;
    color: #555;
}

.s1-ncta.dark {
    background: #111;
    color: #fff;
    border-color: #111;
}

.s1-body {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    gap: 12px;
}

.s1-copy {
    flex: 1;
}

.s1-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 7.5px;
    font-weight: 700;
    color: #333;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 100px;
    padding: 3px 8px;
    margin-bottom: 8px;
}

.s1-pill-dot {
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
}

.s1-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
    color: #111;
    margin-bottom: 5px;
}

.s1-p {
    font-size: 7.5px;
    color: #777;
    line-height: 1.5;
}

.s1-phone {
    width: 68px;
    flex-shrink: 0;
    background: #0d0d0d;
    border-radius: 10px;
    padding: 6px 5px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .3), 0 2px 6px rgba(0, 0, 0, .2);
}

.s1-phone-notch {
    width: 20px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    margin: 0 auto 6px;
}

.s1-p-screen {
    background: linear-gradient(160deg, #1a2e1a 0%, #0d180d 100%);
    border-radius: 6px;
    padding: 8px;
}

.s1-ps-lbl {
    font-size: 6px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 2px;
}

.s1-ps-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.s1-ps-tag {
    font-size: 6px;
    color: #3be87a;
    margin-top: 2px;
}

.s1-ps-div {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 5px 0;
}

.s1-ps-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3px;
}

.s1-ps-k {
    font-size: 5.5px;
    color: rgba(255, 255, 255, .35);
}

.s1-ps-v {
    font-size: 5.5px;
    color: #fff;
    font-weight: 600;
}

.s1-cards {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.s1-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 9px;
    padding: 8px 11px;
    min-width: 105px;
}

.s1-card-title {
    font-size: 7.5px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.s1-card-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.s1-card-sub {
    font-size: 6.5px;
    color: var(--green);
    margin-top: 2px;
}

.s1-card-bar {
    height: 3px;
    background: #eee;
    border-radius: 2px;
    margin-top: 6px;
}

.s1-card-bar-fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, #3be87a, var(--yellow));
    border-radius: 2px;
}

/* ─── SLIDE 2: Portfolio ─── */
.slide-2 {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    gap: 10px;
}

.s2-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s2-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 900;
    color: #111;
}

.s2-badge {
    font-size: 7px;
    color: #888;
    background: #f2f2f2;
    padding: 3px 8px;
    border-radius: 4px;
}

.s2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.s2-card {
    background: #f8f8f8;
    border: 1px solid #efefef;
    border-radius: 8px;
    padding: 8px 9px;
}

.s2-cn {
    font-size: 6.5px;
    color: #aaa;
    margin-bottom: 4px;
}

.s2-cv {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #111;
}

.s2-cc {
    font-size: 7px;
    font-weight: 600;
    margin-top: 2px;
}

.up {
    color: var(--green);
}

.s2-chart {
    flex: 1;
}

.s2-cl {
    font-size: 7.5px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.s2-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 52px;
}

.s2-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: #111;
    animation: grow .6s ease-out forwards;
    transform-origin: bottom;
}

.s2-bar:nth-child(even) {
    background: var(--yellow);
}

@keyframes grow {
    from {
        transform: scaleY(0)
    }

    to {
        transform: scaleY(1)
    }
}

/* ─── SLIDE 3: Gaming ─── */
.slide-3 {
    background: #080808;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.slide-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 20% 60%, rgba(212, 240, 65, .1) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(255, 100, 100, .08) 0%, transparent 65%);
}

.s3-sub {
    font-size: 7.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    z-index: 1;
}

.s3-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: .9;
    text-align: center;
    letter-spacing: -1px;
    z-index: 1;
}

.s3-title em {
    color: var(--yellow);
    font-style: normal;
}

.s3-stats {
    display: flex;
    gap: 20px;
    z-index: 1;
}

.s3-stat {
    text-align: center;
}

.s3-n {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}

.s3-l {
    font-size: 6.5px;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s3-prog {
    width: 72%;
    z-index: 1;
}

.s3-prog-row {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 4px;
}

.s3-track {
    height: 4px;
    background: rgba(255, 255, 255, .07);
    border-radius: 4px;
    overflow: hidden;
}

.s3-fill {
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, var(--yellow), #a8c400);
    border-radius: 4px;
}

/* ─── SLIDE 4: SaaS ─── */
.slide-4 {
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    padding: 12px 14px;
    gap: 8px;
}

.s4-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s4-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 900;
    color: #111;
    letter-spacing: .5px;
}

.s4-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 7.5px;
    color: var(--green);
    font-weight: 600;
}

.s4-live-dot {
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.s4-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.s4-metric {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 9px 10px;
}

.s4-mv {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: #111;
}

.s4-ml {
    font-size: 6.5px;
    color: #aaa;
}

.s4-mc {
    font-size: 7px;
    font-weight: 600;
    margin-top: 2px;
}

.dn {
    color: var(--red);
}

.s4-graph {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px 10px;
}

.s4-gl {
    font-size: 7.5px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.s4-svg {
    width: 100%;
    height: 42px;
}

/* ══ LAPTOP BASE ══ */
.laptop-base {
    background: linear-gradient(180deg, #232323 0%, #181818 100%);
    height: 12px;
    border-radius: 0 0 3px 3px;
    border: 1.5px solid rgba(255, 255, 255, .07);
    border-top: none;
    position: relative;
}

.laptop-base::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 3px;
    width: 48px;
    height: 3px;
    background: rgba(255, 255, 255, .05);
    border-radius: 4px;
}

.laptop-foot {
    height: 10px;
    background: #141414;
    border-radius: 0 0 22px 22px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .2), 0 4px 10px rgba(0, 0, 0, .12);
}

.laptop-glow {
    width: 75%;
    height: 18px;
    margin: 0 auto;
    background: radial-gradient(ellipse, rgba(0, 0, 0, .1) 0%, transparent 72%);
}

/* ══ NEXT PREVIEW CARD (right edge peek) ══ */


#next-preview .np-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    transform-origin: top left;
    position: relative;
}

#next-preview .np-inner>* {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: top left;
}

/* label badge on preview */
#next-preview .np-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
    z-index: 10;
}

/* ══ FLY-IN CLONE ══ */
#fly-clone {
    position: fixed;
    z-index: 9999;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .35), 0 8px 24px rgba(0, 0, 0, .2);
    outline: 2px solid rgba(212, 240, 65, .6);
    display: none;
    will-change: transform, opacity, border-radius, width, height, top, left;
}

#fly-clone .clone-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    transform-origin: top left;
}

#fly-clone .clone-inner>* {
    width: 100%;
    height: 100%;
    transform-origin: top left;
}

/* ══ DOTS ══ */
.slide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .15);
    cursor: pointer;
    transition: all .25s;
}

.dot.active {
    background: var(--black);
    transform: scale(1.35);
}

/* ══ SLIDE TAG ══ */
.slide-tag {
    position: absolute;
    bottom: 52px;
    right: -4px;
    background: var(--black);
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 100px;
    opacity: 0;
    transform: translateX(8px);
    transition: all .3s ease;
}

.slide-tag.show {
    opacity: 1;
    transform: translateX(0);
}

/* ══ SCROLL CUE ══ */
.scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #bbb;
    z-index: 5;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, #bbb, transparent);
    animation: sc 1.8s infinite;
}

@keyframes sc {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1)
    }

    50% {
        opacity: .25;
        transform: scaleY(.4)
    }
}

/* ══ NEXT SECTIONS ══ */
.next-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .12);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 820px) {
    #hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
    }

    .hero-right {
        order: -1;
    }

    .laptop-wrap {
        max-width: 360px;
    }

    .hero-title {
        font-size: 46px;
    }

    nav {
        padding: 14px 24px;
    }

    .nav-links {
        display: none;
    }
}

sup {
    top: -0.1em;
}


.insight-img-wrap img,
.img-card-placeholder img,
.p-card-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packageSlider {
    padding: 1rem 0;
}




/*  */




/* Main Banner Css Start */
.main-content h3 {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffdd11;
    background-color: var(--black);
    width: fit-content;
    padding: 0.5rem 1.125rem 0.5rem 1.125rem;
    border-radius: 50px;
}

.main-content .btn-group {
    gap: 0.75rem;
}

.main-content .btn-group .themeBtn:last-child {
    background-color: transparent;
    border: 1px solid;
}

.main-content h1 {
    font-size: 4.375rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin: 0.57rem 0 0.75rem 0;
    font-family: "bwgradual";
}

.main-content p {
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--black);
}

.form-inline a {
    color: var(--black);
    font-size: 1.125rem;
}

.form-inline .themeBtn {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
}

.mainslider {
    margin-right: -28rem;
}

.main-content .themeBtn {
    margin-top: 1.875rem;
}

.main-img img {
    width: 675px;
}

/* Main Banner Css End */

/* Brand Sec Css Start */

.brand-img {
    text-align: center;
}

.brand-overlay {
    background: linear-gradient(291deg, #fff, rgb(255 221 17 / 75%), #fff);
    padding: 3.125rem 3rem 3.125rem 2rem;
    border-radius: 100px;
    border: 1px solid rgb(255 221 17 / 25%);
}

.brand-overlay h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    margin: 0 0 2.25rem 0;
}

.brand-sec {
    padding: 6rem 0 6rem 0;
}

/* Brand Sec Css End */

/* Work Sec Css Start */
.subHead {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffdd11;
}

.mainHead {
    font-size: 3.75rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    font-family: "bwgradual";
}

.fun-top .mainHead {
    margin: 0.5rem 0 0.25rem 0;
    font-family: "bwgradual";
}

.fun-top p {
    color: var(--black);
    font-family: lato;
}

.fun-top {
    margin-bottom: 2.5rem;
}

.fun-box h5 {
    font-size: 5.1875rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffdd11;
    line-height: 1;
    font-family: "bwgradual";
}

.fun-box p {
    font-size: 1.25rem;
    color: var(--black);
    margin: 2rem 0 0 0;
    font-family: lato;
}

.fun-box {
    border-bottom: 1px dashed var(--black);
    padding: 1rem 0 1.25rem 0;
    margin: 0 0 2.5rem 0;
    transition: 0.6s ease;
}

.fun-sec {
    padding: 8rem 0 5rem 0;
}

.work-sec {
    background-color: var(--black);
    padding: 8rem;
}

section.review-sec {
    padding-top: 5rem;
    padding-bottom: 8rem;
}

.work-top {
    text-align: center;
    margin: 0 0 3.525rem 0;
}

.work-imag {
    text-align: center;
    margin: 0 0 4rem 0;
}

.work-top .mainHead {
    margin: 0.5rem 0 0.5rem 0;
    color: #f3f3f3;
}

.work-top p {
    width: 76%;
    margin: 0 auto 0;
    color: #c4c4c4;
    line-height: 1.5;
}

.work-wrap {
    border-radius: 12px;
    background-color: #1a1a1a;
    padding: 2rem 30px 1.875rem 30px;
    height: 355px;
    margin-bottom: 1rem;
}

.work-wrap h3 {
    margin: 1.25rem 0 0.625rem 0;
    font-size: 26px;
    font-weight: bold;
    color: var(--white);
}

.work-wrap p {
    color: #c4c4c4;
    line-height: 1.5;
}

/* Work Sec Css End */

/* Review Sec Css Start */

.review-content {
    text-align: center;
}

.review-content h3 {
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: capitalize;
    margin: 1rem 0 1.259rem 0;
}

.review-content p {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--black);
    font-family: lato;
    width: 92%;
    margin: 0 auto 0;
}

.review-img {
    margin: 0 auto 0;
    width: fit-content;
    position: relative;
}

.review-img::before {
    position: absolute;
    content: "";
    height: 9.375rem;
    width: 1px;
    border: 1px dashed;
    left: 0;
    right: 0;
    margin: auto;
    top: -10rem;
}

/* Review Sec Css End */

/* Mission Sec Css Start */

.mission-sec {
    background-color: var(--black);
    padding: 6rem 0 7rem 0;
}

.mission-top h2 {
    color: #f3f3f3;
    margin: 0.75rem 0 0.525rem 0;
}

.mission-top p {
    line-height: 1.5;
    color: #c4c4c4;
    width: 65%;
}

.mission-box h2 {
    font-size: 5.25rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffdd11;
    line-height: 1;
    font-family: "bwgradual";
}

.mission-box p {
    font-size: 1.25rem;
    line-height: 1.6;
    font-family: lato;
    color: #c4c4c4;
    margin-top: 1.09rem;
}

.mission-box {
    border-bottom: 1px dashed #c4c4c4;
    padding: 2.5rem 0 1.5625rem 0;
    height: 100%;
}

/* Mission Sec Css End */

/* Team Sec Css Start */

.team-sec {
    padding: 17.1875rem 0 6.5rem 0;
}

.team-top {
    text-align: center;
    margin: 0 0 3.75rem 0;
    position: relative;
}

.team-top .mainHead {
    margin: 0.5rem 0 1.25rem 0;
}

.team-img {
    text-align: center;
}

/* Team Sec Css End */

/* Blog Sec Css Start */

.blog-sec {
    background-color: var(--black);
    padding: 7rem 0 7rem 0;
}

.blog-top p,
.blog-top h2,
.blog-top h3 {
    color: var(--white);
}

.blog-top h2 {
    margin: 0.75rem 0 1.05rem;
}

.blog-top {
    margin: 0 0 3.125rem 0;
}

.blog-wrap h5 {
    background-color: #ffdd11;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem 0.75rem 1.25rem;
    font-size: 1.6875rem;
    font-weight: 800;
    color: #1f291c;
    font-family: "Inter Tight";
}

.blog-wrap h5 span {
    font-size: 1rem;
    font-weight: 400;
    font-family: "Lato";
}

.blog-content {
    background-color: #090909;
    padding: 1.5rem 2.3125rem 2.5rem 1.5rem;
}

.blog-content h3 {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 0.625rem 0;
}

.blog-content p {
    line-height: 1.5;
    color: var(--white);
}

.reviewslider {
    padding: 14.75rem 0 0 0;
}

.team-top::before {
    position: absolute;
    content: "";
    height: 9.375rem;
    width: 1px;
    border: 1px dashed;
    left: 0;
    right: 0;
    margin: auto;
    top: -10rem;
}


/*  */




/* Images ko screen ke andar fit karo */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ← image poori screen cover kare */
    display: block;
    pointer-events: none;
}

/* Pehli slide visible rakho by default */
.slide:first-child {
    opacity: 1;
}

.new-btn {
    background-color: var(--yellow);
    font-size: 1rem;
    color: #000;
    text-transform: capitalize;
    font-weight: bold;
    display: inline-block;
    padding: 0.875rem 2.875rem;
    line-height: normal;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.new-btn:hover {
    text-decoration: none;
}




.form-card {
    border: 1px solid #000;
    padding: 2.0625rem 2.0625rem 2.0625rem 2.0625rem;
    border-radius: 20px;
}

.form-heading {
    font-size: 26px;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-family: lato;
}

.form-label {
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 0.4rem;
    font-family: lato;
}

.privacy-text {
    color: var(--black);
    line-height: 1.5;
    font-family: lato;
}

.privacy-text a {
    color: #2c3aff;
    text-decoration: underline !important;
}

.custom-control-label::before,
.custom-control-label::after {
    top: 0.15rem;
}

.captcha-box {
    border-color: #d1d5db !important;
    width: fit-content;
    gap: 74px;
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
    border: 1px solid #000 !important;
    border-radius: 12px;
}

.theme-btn {
    background-color: #fde047;
    border-color: #fde047;
    font-size: 1rem;
    color: #000;
    border: unset;
    margin-top: 1.75rem !important;
}

.theme-btn:hover {
    background-color: #facc15;
    border-color: #facc15;
    color: #000;
}

.talks-content span {
    color: #686868;
    font-size: 0.875rem;
}

.talks-content p {
    line-height: 1.5;
    color: var(--black);
    margin: 1.25rem 0 1.25rem 0;
    width: 97%;
    font-family: latox;
}

.talks-content .mainHead {
    margin-bottom: 1rem;
}

.awards-text::before,
.awards-text::after {
    right: 0;
    position: absolute;
    content: "";
    height: 1px;
    width: 3.5625rem;
    border: 1px dashed;
    top: 0;
    bottom: 0;
    margin: auto;
}

.talks-content {
    padding: 0 3rem 0 0;
}

.awards-text::before {
    right: unset;
    left: 0;
}

.card.form-card .form-control {
    height: 3rem;
    border-radius: 12px;
    border: 1px solid var(--black);
    outline: unset;
    box-shadow: unset;
}

.card.form-card .form-control::placeholder {
    font-size: 1rem;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--black);
}

.custom-checkbox {
    margin: 1.05rem 0 1rem 0;
}

.privacy-text.text-left {
    font-size: 0.875rem;
    font-style: italic;
    margin: 2.8rem 0 1rem 0;
}

.brand-sec h3 {
    font-family: lato;
    margin-bottom: 30px;
}

.feef {
    width: 100%;
}

.fefefe {
    margin-left: 10px;
}

.fefefsa {
    margin-left: 10px;
}

.cta-banner img {
    width: 153px;
    height: 125px;
    object-fit: contain;
}

.ft-col__heading:before {
    content: "";
    position: absolute;
    top: 35px;
    width: 96%;
    left: 0;
    border-bottom: 2px dashed #686868;
}



.ewl-hero-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Laptop */
.ewl-laptop {
    position: relative;
    width: 860px;
    z-index: 1;
}

.ewl-laptop-img {
    width: 100%;
}

/* Screen */
.ewl-laptop-screen {
    position: absolute;
    top: 2%;
    left: 9.2%;
    width: 82%;
    height: 83%;
    overflow: hidden;
    border-radius: 12px;
}

/* Swiper */
.ewl-hero-swiper,
.ewl-hero-swiper .swiper-wrapper,
.ewl-hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.ewl-hero-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 🔥 RIGHT PREVIEW */
.ewl-next-preview {
    position: absolute;
    top: 45%;
    right: -200px;
    /* start off-screen */
    transform: translateY(-50%) scale(0.9);

    width: 250px;
    height: 400px;

    border-radius: 16px;
    overflow: hidden;
    opacity: 0.8;

    transition: all 0.6s ease;
}

.ewl-next-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ACTIVE ANIMATION */
.ewl-next-preview.active {
    right: -195px;
    opacity: 1;
    transform: translateY(-50%) scale(1);
}


/* SECOND PREVIEW (peeche wala) */
.ewl-preview-2 {
    right: -320px;
    /* thoda aur peeche */
    top: 45%;
    transform: translateY(-50%) scale(0.85);

    opacity: 0.5;
    z-index: 1;
}

/* FIRST preview upar rahe */
.ewl-next-preview {
    z-index: 2;
}

/* animation */
.ewl-preview-2.active {
    opacity: 4;
    /* transform: translateY(-50%) scale(0.9); */
}




/* dss */




/* inner-pages */
.padd-y {
    padding: 5em 0;
  }
  
  .inner-banner {
    position: relative;
    padding: 5em 0;
  }
  
  .inner-banner__content {
    position: relative;
    z-index: 1;
  }
  
  .shape-one,
  .shape-two {
    width: 286px;
    height: 755px;
    opacity: 15%;
    background: #FFDD11;
    border-radius: 100%;
    filter: blur(50px);
    position: absolute;
    top: 0;
  }
  
  .shape-one {
    right: 10%;
    rotate: 25deg;
  }
  
  .shape-two {
    right: 12%;
    rotate: -25deg;
  }
  
  .ser-slide {
    position: relative;
    padding-bottom: 5rem;
    overflow: hidden;
  }
  
  .ser-slide-pills {
    display: flex;
    gap: .75rem;
    white-space: nowrap;
    width: max-content;
    flex-shrink: 0;
  }
  
  .ser-slide-pills li {
    display: flex;
    align-items: center;
    gap: .5rem;
    background-color: var(--black);
    padding: .75em 1.25em;
    border-radius: .75rem;
    flex-shrink: 0;
    margin-left: 10px;
  }
  
  .ser-slide-pills li span {
    color: var(--white);
    font-size: 1rem;
  }
  
  /* qubi-section */
  .qubi-line {
    margin-bottom: 0.875rem;
  }
  
  .qubi-client {
    margin-bottom: 1.75rem;
  }
  
  .qubi-content p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
  }
  
  .qubi-content h5 {
    font-size: 2rem;
    margin-bottom: 5.625rem;
  }
  
  /* firepower-section */
  .firepower-heading {
    margin-bottom: 4rem;
  }
  
  .firepower-card {
    background: var(--black);
    border-radius: .75rem;
    padding: 2rem;
  }
  
  .firepower-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .firepower-card__content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F3F3F3;
    margin: 0 0 0.625rem;
  }
  
  .firepower-card__content p {
    font-size: 1rem;
    color: #C4C4C4;
    margin: 0;
  }
  
  /* decide-section */
  .decide-heading :is(p, h2) {
    text-align: left;
  }
  
  .decide-card {
    border-radius: .75rem;
    overflow: hidden;
  }
  
  .decide-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .75rem .75rem 0 0;
  }
  
  .decide-card__content {
    background: var(--black);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .decide-card__content span {
    font-size: 1.563rem;
    font-weight: 500;
    color: #F3F3F3;
  }
  
  /* .we-miss */
  .we-miss {
    background: transparent;
  }
  
  .we-miss .clients-eyebrow,
  .inner-pricing .pricing-eyebrow {
    color: var(--yellow);
  }
  
  .we-miss .clients-title,
  .inner-pricing .pricing-title {
    color: var(--black);
  }
  
  .we-miss .stat-body {
    color: var(--black);
    font-size: 1.25rem;
    max-width: 100%;
    line-height: normal;
  }
  
  .we-miss .stat-label-inline {
    color: var(--black);
  }
  
  /* =============================================================
     RESPONSIVE FIXES — All Pages
     Added: Mobile-first fixes for hero, process, why, pricing,
     stats, insights, footer, inner-pages
     ============================================================= */
  
  /* ── HERO (index) ── */
  @media (max-width: 991px) {
    #hero {
      grid-template-columns: 1fr;
      padding: 100px 24px 60px;
      gap: 40px;
      min-height: auto;
    }
    .hero-right {
      justify-content: center;
    }
    .laptop-wrap {
      max-width: 440px;
      margin: 0 auto;
    }
    .scroll-cue {
      display: none;
    }
  }
  
  @media (max-width: 575px) {
    #hero {
      padding: 80px 16px 50px;
      gap: 32px;
    }
    .hero-title {
      font-size: clamp(38px, 10vw, 60px);
      width: 95%;
    }
    .hero-desc {
      font-size: 14px;
      width: 100% !important;
    }
    .hero-btns {
      flex-direction: column;
      gap: 10px;
    }
    .btn-primary,
    .btn-outline {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
    .laptop-wrap {
      max-width: 100%;
    }
  }
  
  /* ── BRAND LOGO SLIDER ── */
  @media (max-width: 575px) {
    .main-logo-slider-section {
      padding: 24px 0;
    }
    .trusted-pill {
      padding: 16px 12px;
    }
    .trusted-heading {
      font-size: 13px;
    }
  }
  
  /* ── FOUNDATIONS SECTION ── */
  @media (max-width: 767px) {
    .foundations-section {
      padding: 50px 0;
    }
    .foundations-title {
      font-size: clamp(26px, 6vw, 40px);
    }
    .f-card {
      padding: 24px 20px;
    }
  }
  
  /* ── CLIENTS / STATS SECTION ── */
  @media (max-width: 991px) {
    .stats-grid {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .img-cards-row {
      flex-direction: column;
      gap: 16px;
    }
    .img-card {
      width: 100%;
      min-height: 220px;
    }
  }
  
  @media (max-width: 575px) {
    .stats-grid {
      grid-template-columns: 1fr;
    }
    .stat-number {
      font-size: clamp(36px, 10vw, 56px);
    }
    .clients-title {
      font-size: clamp(26px, 7vw, 40px);
    }
  }
  
  /* ── PROCESS SECTION ── */
  @media (max-width: 991px) {
    .process-grid-top {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .process-grid-bottom {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }
  
  @media (max-width: 575px) {
    .process-grid-top {
      grid-template-columns: 1fr;
    }
    .process-title {
      font-size: clamp(24px, 6vw, 38px);
    }
    .p-card {
      padding: 20px 16px;
    }
  }
  
  /* ── WHY SECTION ── */
  @media (max-width: 991px) {
    #whySection {
      height: auto;
      min-height: auto;
      padding: 60px 0;
    }
    .why-table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .why-table-head,
    .why-epic-row,
    .why-feat-row {
      min-width: 640px;
    }
    .why-title {
      font-size: clamp(28px, 5vw, 48px);
    }
  }
  
  @media (max-width: 575px) {
    .why-title {
      font-size: clamp(24px, 7vw, 36px);
    }
    #whySection .container {
      padding: 0 16px;
    }
  }
  
  /* ── PRICING SECTION ── */
  @media (max-width: 991px) {
    .pricing-section {
      padding: 60px 0;
    }
    .pricing-grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .pricing-title {
      font-size: clamp(26px, 5vw, 42px);
    }
  }
  
  @media (max-width: 767px) {
    .pricing-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 0 auto;
    }
  }
  
  /* ── INSIGHTS SECTION ── */
  @media (max-width: 991px) {
    .insights-grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .insights-title {
      font-size: clamp(26px, 5vw, 42px);
    }
  }
  
  @media (max-width: 575px) {
    .insights-grid {
      grid-template-columns: 1fr;
    }
    .insights-header {
      text-align: left;
    }
    .insight-img-wrap img {
      height: 200px;
      object-fit: cover;
      width: 100%;
    }
  }
  
  /* ── FOOTER ── */
  @media (max-width: 575px) {
    .ft-main {
      padding: 28px 16px;
    }
    .ft-subscribe__form {
      flex-direction: column;
      gap: 10px;
    }
    .ft-subscribe__input {
      width: 100%;
      border-radius: 8px;
      padding: 12px 14px;
    }
    .ft-subscribe__btn {
      width: 100%;
      border-radius: 8px;
      padding: 12px;
      justify-content: center;
    }
    .ft-badges {
      gap: 12px;
    }
    .ft-bottom-links {
      flex-wrap: wrap;
      gap: 8px;
      font-size: 12px;
    }
    .sdimve {
      flex-direction: column;
      gap: 16px;
    }
  }
  
  /* ── INNER PAGES: BANNER ── */
  @media (max-width: 991px) {
    .inner-banner {
      padding: 3em 0;
    }
    .inner-banner .hero-title {
      font-size: clamp(28px, 6vw, 52px);
    }
    .shape-one,
    .shape-two {
      width: 160px;
      height: 400px;
    }
  }
  
  @media (max-width: 575px) {
    .inner-banner {
      padding: 2em 0;
    }
    .inner-banner .hero-title {
      font-size: clamp(24px, 8vw, 40px);
    }
    .shape-one,
    .shape-two {
      display: none;
    }
    .padd-y {
      padding: 3em 10px ;
    }
  }
  
  /* ── INNER PAGES: SERVICE PILLS ── */
  @media (max-width: 767px) {
    .ser-slide-pills {
      gap: 0.5rem;
    }
    .ser-slide-pills li {
      padding: 0.5em 0.875em;
    }
    .ser-slide-pills li span {
      font-size: 0.875rem;
    }
  }
  
  /* ── INNER PAGES: QUBI ── */
  @media (max-width: 767px) {
    .qubi-content h5 {
      font-size: 1.375rem;
      margin-bottom: 3rem;
    }
    .qubi-content p {
      font-size: 1rem;
    }
  }
  
  /* ── INNER PAGES: FIREPOWER ── */
  @media (max-width: 767px) {
    .firepower-heading {
      margin-bottom: 2rem;
    }
    .firepower-card {
      padding: 1.25rem;
    }
    .firepower-card__content h4 {
      font-size: 1.125rem;
    }
  }
  
  /* ── INNER PAGES: DECIDE ── */
  @media (max-width: 767px) {
    .decide-card__content {
      padding: 1rem 1.25rem;
    }
    .decide-card__content span {
      font-size: 1.125rem;
    }
  }
  
  /* ── INNER PAGES: WE-MISS STATS ── */
  @media (max-width: 767px) {
    .we-miss .stat-body {
      font-size: 1rem;
    }
  }
  
  /* ── SERVICES SWIPER  ── */
  @media (max-width: 575px) {
    .svc-slide {
      width: 80vw !important;
    }
    .svc-card__title {
      font-size: 16px;
    }
  }
  
  /* ── SVC SECTION HEADER ── */
  @media (max-width: 767px) {
    .services-header {
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
    }
    .svc-title {
      font-size: clamp(28px, 6vw, 44px);
    }
  }
  
  /* ── PROCESS SECTION TITLE ── */
  @media (max-width: 575px) {
    .process-eyebrow,
    .svc-eyebrow,
    .why-eyebrow,
    .pricing-eyebrow,
    .insights-eyebrow,
    .clients-eyebrow,
    .foundations-eyebrow {
      font-size: 11px;
      text-align: center;
    }
  }
  
  /* ── GENERAL IMAGE OVERFLOW FIX ── */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* ── PREVENT HORIZONTAL SCROLL ── */
  body, .wrapper {
    overflow-x: hidden;
  }
  
  /* ─── Text Animation Helpers ─── */
  .ew-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.15;
  }
  .ew-inner {
    display: inline-block;
  }
  
  .inner-banner__content .hero-title{
      width: 80%;
  }

  .newpricing-section{
    background-color: #fff !important;
  }
  .newpricing-section h2{
    color: #000 !important;
  }

  .newpricing-section p{
    color: #000 !important;
  }


 


/*  */



.portfolioInnerSec {
    padding: 5% 0 3rem;
}

.portfolio-Box {
    display: block;
    height: 300px;
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.portfolio-Box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-Box:hover img {
    transform: scale(1.2);
}

.portfolioInnerSec .row .row {
    gap: 2rem 0;
}

.portfolioInnerSec .nav-tabs {
    border-bottom: 0;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.portfolioInnerSec .heading {
    color: var(--white);
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

.portfolioInnerSec .nav-tabs .nav-link.active {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
    filter: none;
}


.portfolioInnerSec .nav-tabs {
    border-bottom: 0;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
    margin-top: 3rem;
}

.portfolioInnerSec .nav-tabs .nav-link {
    background: var(--yellow);
    color: var(--black) !important;
    font-weight: 700;
    font-size: 1.02rem !important;
    padding: 9px 22px !important;
    /* border: none; */
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 39px;
    font-family: 'Lato' !important;
    font-weight: 600 !important;

}

.portfolioInnerSec .nav-tabs .nav-item.show .nav-link,
.portfolioInnerSec .nav-tabs .nav-link.active,
.portfolioInnerSec .nav-tabs .nav-link:hover {
    color: var(--yellow);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    filter: none;
}

/* portfolio page end */
.packagesCard .themeBtn:hover {
    color: var(--secondary-color);
    box-shadow: 0 0 0 2px var(--secondary-color);
}
.portfolioInnerSec h2{
  color: #000 !important;
}
.portfolioInnerSec p{
    color: #000 !important;
}