@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/* ═══════════════════════════════════════════════════
   SAMBHAV / JGS — Unified Design System
   Shared across: index.html, AboutUs.html,
                  Pricing.html, ContactUs.html
   ═══════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────── */
:root {
    /* Brand Colors */
    --navy: #011349;
    --navy-dark: #05174D;
    --navy-mid: #162D72;
    --dark: #1F253D;
    --dark-alt: #021831;
    --cyan: #3b82f6;
    --blue: #0075DD;
    --blue-brand: #2A4F97;
    --green: #3D863F;
    --green-dark: #2A7437;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --soft-gray: #F9F9F9;
    --gray-100: #F6F6F6;
    --gray-200: #EEEEEE;
    --gray-300: #DDDDDD;
    --gray-400: #CBCBCB;
    --gray-500: #9B9B9B;
    --gray-600: #797979;
    --gray-700: #6C6C6C;
    --gray-800: #625B71;
    --text: #1F253D;
    --text-muted: #625B71;
    --text-light: #9B9B9B;
    /* Gradients */
    --gradient-btn: linear-gradient(141deg, #3b8bff 0%, #2563EB 100%);
    --gradient-navy: linear-gradient(324deg, #011349 0%, #162D72 47%, #05174D 100%);
    --gradient-star: linear-gradient(315deg, #FF6F47 0%, #FFCD0F 100%);
    --gradient-form: linear-gradient(200deg, rgba(0,83,112,0.70) 0%, rgba(0,58,87,0.70) 100%);
    /* Fonts */
    --font-main: 'Open Sans', sans-serif;
    --font-serif: 'PT Serif', serif;
    --font-lato: 'Lato', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    /* Spacing & Layout */
    --section-pad: 100px 7%;
    --container-max: 1200px;
    --container-pad: 0 24px;
    /* Radii */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 29px;
    --radius-full: 1000px;
    /* Shadows */
    --shadow: 0 5px 15px rgba(0, 0, 0, .1);
    --shadow-lg: 0 6px 24px rgba(0, 0, 0, .15);
    --shadow-card: 0 3px 5px -1px rgba(0,0,0,.2), 0 5px 8px rgba(0,0,0,.14), 0 1px 14px rgba(0,0,0,.12);
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ── Reset & Base ──────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── Container ─────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-pad);
}

/* ── Utility ───────────────────────────────────── */
.accent, .text-accent {
    color: var(--cyan) !important;
}

.teal {
    color: var(--cyan);
}

.text-dark {
    color: var(--dark);
}

.text-teal {
    color: var(--cyan);
}

.white {
    color: var(--white) !important;
}

.muted {
    color: var(--text-muted);
}

.center {
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.875rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
}

/* ── Buttons ───────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 48px;
    font-size: 19px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast), filter var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    border: none;
    font-family: var(--font-main);
}

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left var(--transition);
    }

    .btn:hover::before {
        left: 100%;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
        filter: brightness(1.06);
    }

    .btn:active {
        transform: scale(0.97);
    }

.btn-primary,
.btn-gradient {
    background: var(--gradient-btn);
    color: var(--white);
    
    outline-offset: -0.75px;
}

    .btn-primary:hover,
    .btn-gradient:hover {
        box-shadow: 0 6px 24px rgba(0,117,221,0.35);
    }

.btn-outline {
   background: linear-gradient(120deg, #fdfbfb 0%, #f6f6f6 100%);
    color: black;
    border: 1.5px solid rgb(20 19 19 / 50%);
}

    .btn-outline.dark {
        color: var(--text);
        border-color: var(--gray-300);
    }

        .btn-outline.dark:hover {
            border-color: var(--cyan);
            color: var(--cyan);
        }

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Shimmer variant (login / CTA) */
.btn-login,
.login-btn,
.btn-request,
.btn-send {
    background: var(--gradient-btn);
    color: var(--white) !important;
    border-radius: var(--radius-pill);
    font-weight: 600;
    outline: 0.75px solid rgba(255,255,255,0.5);
    outline-offset: -0.75px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    transition: filter var(--transition-fast), transform var(--transition-fast);
}

    .btn-login::after,
    .login-btn::after,
    .btn-request::after {
        content: '';
        position: absolute;
        top: -38px;
        left: -74px;
        width: 20px;
        height: 105px;
        background: rgba(255,255,255,0.6);
        transform: rotate(15deg);
        transition: 0.5s;
    }

    .btn-login:hover::after,
    .login-btn:hover::after,
    .btn-request:hover::after {
        left: 120%;
    }

    .btn-login:hover,
    .login-btn:hover,
    .btn-request:hover {
        filter: brightness(1.08);
        transform: scale(1.02);
    }

/* ═══════════════════════════════════════════════════
   NAVBAR  (used by index.html)
   ═══════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin-inline: auto;               /* center without transform */
    width: min(90%, 1200px);
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    /* transform + backdrop-filter removed on purpose. Either one makes .navbar the
       containing block for the position:fixed mobile drawer (.nav-links), trapping the
       drawer inside the pill so it peeked on-screen instead of parking off-viewport. */
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 0; /* reset so Bootstrap's .navbar padding can't distort the pill on pages that also load Bootstrap */
    transition: top 0.3s ease, box-shadow 0.3s ease, transform 0.4s ease, opacity 0.3s ease !important;
}

    .navbar.scrolled {
        top: 10px;
        box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    }

    /* Hides navbar when scrolling DOWN */
    .navbar.hidden {
        transform: translateY(-150%) !important;
        opacity: 0;
        pointer-events: none;
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px;
}

/* Logo variants */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: auto;
    height: 51px;
    object-fit: contain;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-serif);
}

.logo-sub {
    font-size: 8px;
    color: var(--gray-600);
    display: block;
    line-height: 1.2;
    max-width: 100px;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 32px;
}

    .nav-links a, .nav-links li a {
        font-family: 'Poppins', sans-serif;
        font-size: 17px;
        font-weight: 600;
        color: var(--dark);
        transition: color var(--transition-fast);
        position: relative;
        padding-bottom: 2px;
    }

        .nav-links a::after, .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--cyan);
            transition: width var(--transition-fast);
        }

        .nav-links a:hover,
        .nav-links a.active,
        .nav-links li a:hover {
            color: var(--cyan);
        }

            .nav-links a:hover::after,
            .nav-links a.active::after,
            .nav-links li a:hover::after {
                width: 100%;
            }

.btn-login {
    font-family: 'Poppins', sans-serif;
    padding: 10px 32px;
    font-size: 15px;
}

/* Mobile toggle / hamburger */
.nav-toggle,
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

    .nav-toggle span,
    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: all var(--transition);
    }

    /* Hamburger X state */
    .nav-toggle.active span:nth-child(1),
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2),
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3),
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile hamburger (30px variant used by AboutUs) */
    .hamburger span {
        width: 30px;
        height: 3px;
        border-radius: 6px;
    }

/* ═══════════════════════════════════════════════════
   SITE HEADER  (used by AboutUs.html)
   ═══════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    /* backdrop-filter removed: same containing-block trap for the fixed nav drawer */
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-svg {
    width: 86px;
    height: 48px;
    background: transparent;
}

    .logo-svg svg {
        width: 100%;
        height: 100%;
    }

/* Mobile drawer (AboutUs style) */
@media (max-width: 768px) {
    .site-header .hamburger {
        display: flex;
    }

    .site-header .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(8px);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: 99;
    }

        .site-header .nav-links.active {
            transform: translateX(0);
        }

        .site-header .nav-links ul {
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

    .login-btn {
        width: fit-content;
        margin: 0 auto;
    }
}

/* ═══════════════════════════════════════════════════
   CONTACT / PRICING NAVBAR  (pill variant)
   ═══════════════════════════════════════════════════ */
.navbar.pill-nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 960px;
    background: var(--white);
    border-radius: var(--radius-pill);
    outline: 1px solid var(--green-dark);
    outline-offset: -1px;
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Mobile menu (contact/pricing drawer) */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0 8px;
    border-top: 1px solid var(--gray-300);
    margin-top: 10px;
}

    .mobile-menu a {
        padding: 10px 16px;
        font-family: var(--font-roboto);
        font-weight: 600;
        color: var(--dark-alt);
        border-radius: 8px;
        transition: background var(--transition), color var(--transition);
    }

        .mobile-menu a:hover {
            background: var(--soft-gray);
            color: var(--cyan);
        }

    .mobile-menu .btn {
        margin: 8px 16px 0;
        justify-content: center;
    }

    .mobile-menu.open {
        display: flex;
    }

/* Pricing page navbar (full-width sticky) */
.navbar.top-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-placeholder {
    width: 86px;
    height: 48px;
    background: linear-gradient(135deg, #3D863F 0%, #203F8A 100%);
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-cta {
    padding: 8px 24px;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal,
.reveal-text,
.reveal-text-delay {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}


    .reveal.active,
    .reveal.visible,
    .reveal-text.revealed,
    .reveal-text-delay.revealed {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-text-delay {
    transition-delay: 0.2s;
}

/* ═══════════════════════════════════════════════════
   HERO  (index.html)
   ═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: white;
    text-align: center;
}

/* VIDEO BACKGROUND */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* DARK OVERLAY */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18,35,74,0.7);
    z-index: 2;
}

/* SHAPES */
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* CONTENT */
.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 4;
    max-width: 1200px;
    width: 100%;
    padding-top: 120px;
}

/* TITLE */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* DASHBOARD IMAGE */
.hero-dashboard {
    position: relative;
    margin-top: 60px;
    z-index: 6;
    width: 100%;
    max-width: 1200px;
}

    .hero-dashboard img {
        width: 100%;
        max-width: 1200px;
        border-radius: 20px;
    }

/* BOTTOM CURVE */
.hero-curve {
    position: absolute;
    bottom: -420px;
    left: 50%;
    transform: translateX(-50%);
    width: 102%;
    height: 900px;
    background: white;
    border-radius: 50%;
    z-index: 4;
}

/* ═══════════════════════════════════════════════════
   HERO — CONTACT PAGE
   ═══════════════════════════════════════════════════ */
.contact-hero {
    min-height: 260px;
    padding: 140px 24px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,187,200,0.07), transparent 70%);
        pointer-events: none;
    }

    .contact-hero .hero-content {
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .contact-hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .contact-hero p {
        font-size: clamp(1rem, 2vw, 1.25rem);
        color: var(--dark);
    }

/* ═══════════════════════════════════════════════════
   HERO — PRICING PAGE
   ═══════════════════════════════════════════════════ */
.hero.pricing-hero {
    background: var(--white);
    min-height: auto;
    padding: var(--section-pad);
    margin-top: 60px;
}

    .hero.pricing-hero .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero.pricing-hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 1.5rem;
        color: var(--text);
    }

.hero-subtitle.dark {
    color: rgba(2,24,49,0.7);
}

/* ═══════════════════════════════════════════════════
   HERO — ABOUT PAGE  (parallax)
   ═══════════════════════════════════════════════════ */
.hero-parallax {
    background: var(--off-white);
    padding: 60px 0;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.31rem);
    font-weight: 700;
    line-height: 1.1;
}

.hero-subhead {
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0 1.5rem;
}

.hero-description ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}

.hero-description li {
    margin: 0.3rem 0;
}

/* ═══════════════════════════════════════════════════
   BRAND LOGOS TICKER
   ═══════════════════════════════════════════════════ */
.brands {
    padding: 60px 7%;
    text-align: center;
}

.brands-label {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.logo-ticker {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-track {
    display: flex;
    gap: 60px;
    align-items: center;
    width: max-content;
    animation: ticker 30s linear infinite;
}

.brand-logo {
    height: 36px;
    width: auto;
   
    transition: all var(--transition);
}

    .brand-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

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

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

/* ═══════════════════════════════════════════════════
   SOLUTIONS CAROUSEL
   ═══════════════════════════════════════════════════ */
/* .solutions {
    padding: var(--section-pad);
}

.solutions-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.carousel-nav {
    display: flex;
    gap: 14px;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--gray-500);
    font-size: 22px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    cursor: pointer;
    background: none;
}

    .arrow-btn:hover {
        border-color: var(--cyan);
        color: var(--cyan);
        background: rgba(0,187,200,0.05);
    }

.solutions-track-wrap {
 overflow-x: auto !important;
    border: 2px solid red;
}

.solutions-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

    .solutions-track::-webkit-scrollbar {
        display: none;
    }

.sol-card {
    min-width: 300px;
    max-width: 340px;
    flex: 0 0 auto;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 20px;
    transition: transform var(--transition), box-shadow var(--transition);
     border: 1px solid blue;
}

    .sol-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.sol-card-img {
    border-radius: 4px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 267px;
    margin-bottom: 15px;
}

    .sol-card-img img {
        max-height: 180px;
        width: auto;
    }

.sol-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.sol-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
} */


.t-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.solutions {
    padding: 60px 5%;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.solutions-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.carousel-nav {
    display: flex;
    gap: 12px;
}

.arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    font-size: 24px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-btn:hover:not(:disabled) {
    border-color: #00BBC8;
    color: #00BBC8;
    background: rgba(0,187,200,0.05);
}

.arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.solutions-track-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.solutions-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

/* Card styles */
.sol-card {
    flex: 0 0 460px; /* Fixed width, don't grow or shrink */
    background: linear-gradient(180deg, #DAF4FF 0%, #CBFFFB 100%);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.sol-card-img {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    padding: 20px;
}
    
.sol-card-img img {
    min-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.sol-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1F253D;
}

.sol-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}
/* ═══════════════════════════════════════════════════
   FEATURES SECTION - CARD CAROUSEL
   ═══════════════════════════════════════════════════ */

.features {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* STAGE Container */
.stage {
    position: relative;
    width: 100%;
    max-width: 1300px;
    min-height: 700px;
    margin: 0 auto;
}

/* Ghost Cards - Background Effect */
.ghost {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ghost-1 {
    transform: scale(0.97) translateY(14px);
    opacity: 0.5;
    z-index: 1;
    background: linear-gradient(145deg, #dedede, #dedede);
}

.ghost-2 {
    transform: scale(0.94) translateY(26px);
    opacity: 0.25;
    z-index: 0;
    background: linear-gradient(145deg, #f0f5ff, #e8f0fe);
}

/* Main Card */
.card {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    padding: 48px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 187, 200, 0.1);
}

    .card.active {
        opacity: 1;
        pointer-events: auto;
        
        
    }

/* Card Body Layout */
.card-body {
    display: flex;
    gap: 60px;
    flex: 1;
    align-items: center;
}

/* Left Visual Section */
.card-visual {
    flex: 5.2;
    max-width: 50%;
    background-color:#FFFFFF;
    height: 100%;
 
}

.visual-inner {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #f8faff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Card 1 - CRM Automation */
.visual-avatar {
    background: white;   
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    .visual-avatar img {
        width: 100%;
        border-radius: 20px;
        max-width: 280px;
        height: auto;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    }

/* Card 2 - Sales Funnel */
.visual-funnel {
    background: #ffffff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.funnel-header {
    font-size: 14px;
    font-weight: 700;
    color: #1F2937;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.funnel-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

    .funnel-stats div {
        flex: 1;
        min-width: 100px;
    }

    .funnel-stats small {
        display: block;
        font-size: 11px;
        color: #6B7280;
        margin-bottom: 4px;
    }

    .funnel-stats span {
        font-size: 18px;
        font-weight: 700;
        color: #10B981;
    }

.funnel-checks {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.check-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-badge {
    background: #3B82F6;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.revenue-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.rev-label {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 4px;
}

.rev-amount {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
}

    .rev-amount sup {
        font-size: 14px;
        font-weight: 400;
        color: #9CA3AF;
    }

.legend {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: #6B7280;
}

    .legend span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

.dot-purple {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6366F1;
}

.dot-orange {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F97316;
}

.yearly-btn {
    font-size: 11px;
    color: #6B7280;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    background: #F3F4F6;
}

.chart-wrap {
    width: 100%;
    margin-top: 15px;
}

    .chart-wrap svg {
        width: 100%;
        height: auto;
        max-height: 120px;
    }

/* Card 3 - Shipping */


/* Right Content Section */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    .card-content h2 {
        font-size: clamp(24px, 3vw, 36px);
        font-weight: 700;
        color: #1F2937;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .card-content p {
        font-size: 16px;
        color: #6B7280;
        line-height: 1.6;
    }

/* Checklist Styling */
.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .checklist li {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 16px;
        font-weight: 500;
        color: #1F2937;
    }

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #00BBC8, #0075DD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 187, 200, 0.2);
}

    .check-icon svg {
        width: 14px;
        height: 14px;
        stroke: white;
    }

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 10px 0;
}

.feature-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F9FAFB;
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

    .feature-cell:hover {
        background: #ffffff;
        border-color: #00BBC8;
        box-shadow: 0 4px 12px rgba(0, 187, 200, 0.1);
        transform: translateY(-2px);
    }

.pie-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1F2937, #374151);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .pie-icon svg {
        width: 22px;
        height: 22px;
    }

.feature-cell span {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.3;
}

/* Action Buttons */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 40px;
    border: 2px solid #E5E7EB;
    background: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

    .action-btn:hover {
        background: linear-gradient(135deg, #00BBC8, #0075DD);
        color: white;
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 187, 200, 0.3);
    }

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot-btn {
    height: 10px;
    border-radius: 20px;
    background: #D1D5DB;
    border: none;
    cursor: pointer;
    width: 10px;
    transition: all 0.3s ease;
    padding: 0;
}

    .dot-btn.active {
        width: 30px;
        background: linear-gradient(90deg, #00BBC8, #0075DD);
    }

.swipe-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 40px;
}

    .swipe-btn:hover {
        color: #00BBC8;
        background: #F3F4F6;
        transform: translateX(5px);
    }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1200px) */
@media (max-width: 1200px) {
    .stage {
        min-height: 650px;
    }

    .card {
        padding: 40px;
    }

    .card-body {
        gap: 40px;
    }

    .card-visual {
        min-height: 400px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .features {
        min-height: auto;
        padding: 60px 20px;
    }

    .stage {
        min-height: auto;
        height: auto;
    }

    .card {
        position: relative;
        inset: auto;
        margin-bottom: 20px;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    .ghost {
        display: none;
    }

    .card-body {
        flex-direction: column;
        gap: 30px;
    }

    .card-visual {
        max-width: 100%;
        width: 100%;
        min-height: 350px;
    }

    .card-content {
        width: 100%;
    }

        .card-content h2 {
            text-align: center;
        }

        .card-content p {
            text-align: center;
        }

    .checklist {
        max-width: 500px;
        margin: 0 auto;
    }

    .action-btn {
        margin: 10px auto 0;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }

    .funnel-stats {
        justify-content: center;
    }

        .funnel-stats div {
            text-align: center;
        }

    .funnel-checks {
        justify-content: center;
    }
    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        display: none;
    }
}



/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .card {
        padding: 30px 20px;
    }

    .card-body {
        gap: 25px;
    }

    .card-visual {
        min-height: 300px;
    }

    .visual-inner {
        padding: 15px;
    }

    .visual-avatar img,
    .visual-ship img {
        max-width: 200px;
    }

    .card-content h2 {
        font-size: 24px;
    }

    .checklist li {
        font-size: 15px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .feature-cell {
        padding: 12px;
    }

    .pie-icon {
        width: 36px;
        height: 36px;
    }

        .pie-icon svg {
            width: 18px;
            height: 18px;
        }

    .funnel-stats {
        flex-direction: column;
        gap: 15px;
    }

        .funnel-stats div {
            min-width: auto;
        }

    .revenue-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .legend {
        justify-content: center;
    }

    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        display: none;
    }

    .dots {
        order: 2;
    }

    .swipe-btn {
        order: 1;
    }

    /* Hide chart tooltip on mobile */
    .chart-wrap rect,
    .chart-wrap circle {
        display: none;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .features {
        padding: 40px 15px;
    }

    .card {
        padding: 20px 15px;
        border-radius: 24px;
    }

    .card-visual {
        min-height: 250px;
    }

    .visual-inner {
        padding: 10px;
    }

    .visual-avatar img,
    .visual-ship img {
        max-width: 160px;
    }

    .visual-funnel {
        padding: 15px;
    }

    .card-content h2 {
        font-size: 22px;
    }

    .checklist {
        gap: 12px;
    }

        .checklist li {
            font-size: 14px;
            gap: 10px;
        }

    .check-icon {
        width: 20px;
        height: 20px;
    }

        .check-icon svg {
            width: 12px;
            height: 12px;
        }

    .feature-cell {
        padding: 10px;
    }

        .feature-cell span {
            font-size: 13px;
        }

    .pie-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

        .pie-icon svg {
            width: 16px;
            height: 16px;
        }

    .action-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    .rev-amount {
        font-size: 24px;
    }

    .funnel-header {
        font-size: 13px;
        text-align: center;
    }

    .funnel-stats span {
        font-size: 16px;
    }

    .purchase-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .dot-btn {
        width: 8px;
        height: 8px;
    }

        .dot-btn.active {
            width: 24px;
        }

    .swipe-btn {
        font-size: 14px;
        padding: 6px 12px;
    }

    /* Hide axis labels on very small screens */
    .chart-wrap text {
        display: none;
    }
}

/* Small Mobile (360px) */
@media (max-width: 360px) {
    .card-visual {
        min-height: 200px;
    }

    .visual-avatar img,
    .visual-ship img {
        max-width: 140px;
    }

    .card-content h2 {
        font-size: 20px;
    }

    .checklist li {
        font-size: 13px;
    }

    .feature-cell {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

        .feature-cell span {
            font-size: 12px;
        }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .action-btn:hover {
        background: #ffffff;
        color: #1F2937;
        border-color: #E5E7EB;
        transform: none;
        box-shadow: none;
    }

    .feature-cell:hover {
        background: #F9FAFB;
        border-color: #E5E7EB;
        transform: none;
        box-shadow: none;
    }

    .swipe-btn:hover {
        color: #6B7280;
        background: none;
        transform: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .card,
    .card.active,
    .action-btn,
    .feature-cell,
    .swipe-btn {
        transition: none !important;
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .features {
        min-height: auto;
        padding: 20px;
    }

    .ghost {
        display: none;
    }

    .card {
        position: relative;
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
    }

    .action-btn,
    .swipe-btn,
    .dots {
        display: none;
    }
}
/* ===============================
   OUR STORY SECTION
================================ */

.story-section {
    padding: 100px 20px;
    text-align: center;
}

.story-container {
    max-width: 1200px;
    margin: auto;
}

/* Title */
.story-title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 800;
    color: #1e293b;
}

    .story-title span {
        color: #0284c7;
    }

/* Subtitle */
.story-subtitle {
    margin-top: 10px;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

/* Image */
.story-image {
    max-width: 1100px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

  .story-image img
 {
    width: 102%;
    height: 445px;
    object-fit: fill;
    display: block;
}

/* Text */
.story-text {
    max-width: 1000px;
    margin: 40px auto 0;
}

    .story-text p {
        font-size: 14px;
        line-height: 1.8;
        color: #374151;
        margin-bottom: 0px;
    }

    .story-text strong {
        font-weight: 700;
    }

/* ═══════════════════════════════════════════════════
   DATA / RESULTS  (AboutUs)
   ═══════════════════════════════════════════════════ */
.results-section {
    padding: 80px 20px;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .results-grid {
        grid-template-columns: 1fr 1.35fr;
        gap: 33px;
    }
}

.collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 295px;
    gap: 15px;
    will-change: transform;
}

.collage-item {
    overflow: hidden;
    border-radius: var(--radius);
}

    .collage-item img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        display: block;
    }

.results-text h2 {
    font-size: clamp(2.5rem, 6vw, 2rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.results-sub {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.results-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}
/* ═══════════════════════════════════════════════════
   TESTIMONIALS - UPDATED TO MATCH REFERENCE IMAGE
   ═══════════════════════════════════════════════════ */

/* Main Testimonials Section */
.testimonials {
    background: var(--gradient-navy);
    padding: 80px 7%;
    overflow: hidden;
    position: relative;
}

.testimonials-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Left Header Section */
.testimonials-header {
    flex: 1;
    margin-bottom:150px;
    min-width: 300px;
}

.section-title.white {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.875rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-title.white br {
    display: block;
}

/* Star Row - Matching Image Style */
.star-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.star-logo1,
.star-logo2,
.star-logo3,
.star-logo4,
.star-logo5 {
    height: auto;
    width: auto;
    position: relative;
    transition: transform 0.3s ease;
}

.star-logo1 {
    height: 38.3px;
}

.star-logo2 {
    height: 45.9px;
}

.star-logo3 {
    height: 53.6px;
}

.star-logo4 {
    height: 45.9px;
}

.star-logo5 {
    height: 38.3px;
}

.star-row img:hover {
    transform: scale(1.1);
}

/* Right Cards Area - Phone Stack */
.testimonial-cards-area {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 300px;
}

.testimonial-cards-area img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Ticker Container */
.testimonial-ticker {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 30px;
}

.testimonial-ticker::before,
.testimonial-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--gradient-navy), transparent);
}

.testimonial-ticker::after {
    right: 0;
    background: linear-gradient(-90deg, var(--gradient-navy), transparent);
}

/* Track for Cards */
.testimonial-track {
    display: flex;
    gap: 24px;
    animation: scrollTestimonials 40s linear infinite;
    width: max-content;
    padding: 10px 0;
}

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

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px)); /* Half of total width minus half the gap */
    }
}

/* Individual Testimonial Card */
.t-card {
    min-width: 380px;
    max-width: 420px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.t-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.t-card.active {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 187, 200, 0.2);
    border: 1px solid var(--cyan);
}

/* User Avatar Section */
.t-card-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 100px;
    text-align: center;
}

.t-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 187, 200, 0.3);
    position: relative;
    overflow: hidden;
}

.t-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
}

.t-card-user strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    display: block;
    line-height: 1.3;
}

.t-card-user small {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 400;
    display: block;
}

/* Card Body Content */
.t-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.t-card-body strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
    position: relative;
}

.t-card-body strong::before {
    content: '"';
    font-size: 24px;
    color: var(--cyan);
    margin-right: 2px;
    opacity: 0.5;
}

.t-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0;
}

/* Quote Icon Style */
.quote-icon {
    font-size: 24px;
    color: var(--cyan);
    margin-bottom: 8px;
    opacity: 0.7;
}
/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .testimonials-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .testimonials-header {
        width: 100%;
    }

    .testimonial-cards-area {
        width: 100%;
        justify-content: center;
    }

    .t-card {
        min-width: 340px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }

    .section-title.white br {
        display: none;
    }

    .star-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .star-logo1,
    .star-logo5 {
        height: 30px;
    }

    .star-logo2,
    .star-logo4 {
        height: 36px;
    }

    .star-logo3 {
        height: 42px;
    }

    .testimonial-track {
        animation: scrollTestimonials 25s linear infinite;
    }

    .t-card {
        min-width: 300px;
        padding: 20px;
    }

    .t-card-user {
        min-width: 80px;
    }

    .t-avatar {
        width: 60px;
        height: 60px;
    }

    .t-card-user strong {
        font-size: 14px;
    }

    .t-card-body strong {
        font-size: 16px;
    }

    .t-card-body p {
        font-size: 13px;
    }

    .testimonial-ticker::before,
    .testimonial-ticker::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .t-card {
        min-width: 260px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }

    .t-card-user {
        margin-bottom: 10px;
    }

    .t-card-body strong::before {
        display: none;
    }

    .star-logo1,
    .star-logo5 {
        height: 25px;
    }

    .star-logo2,
    .star-logo4 {
        height: 30px;
    }

    .star-logo3 {
        height: 35px;
    }

    .testimonial-track {
        gap: 16px;
    }
}

/* Optional: Add a subtle pattern overlay to match image style */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.testimonials-inner,
.testimonial-ticker {
    position: relative;
    z-index: 1;
}
/* ═══════════════════════════════════════════════════
   RATINGS
   ═══════════════════════════════════════════════════ */
.rating-section {
    padding: 80px 0;
}

.rating-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr;
    align-items: center;
    gap: 60px;
}

/* ── LEFT ── */
.rating-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rating-title {
   font-size: 75px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

.gradient-word {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-line {
    width: 48px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    margin-top: 8px;
}

.rating-subtitle {
    font-size: 20px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    font-weight: 550;
}

.rating-tagline {
    font-size: 20px;
    color: #1e293b;
    margin: 0;
}

/* ── RIGHT ── */
.rating-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-left: 66px;
}

/* STAT CARD */
.stat-card {
    background: linear-gradient(145deg, #f0f7ff 0%, #f0e4f0 100%);
    border: 1.5px solid #bfdbfe;
    border-radius: 22px;
    padding: 35px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.rating-number {
    font-size: 7.1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.04em;
    line-height: 1;
}

.rating-text {
    font-size: 2rem;
    font-weight: 600;
    color: #0f172a;
}

/* BRANDS ROW */
.rating-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.rating-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
}

.rating-divider-v {
    width: 1px;
    height: 48px;
    background: #e2e8f0;
    flex-shrink: 0;
    margin: 0 16px;
}

.rating-logo {
    height: 38px;
    object-fit: contain;
    width: 151px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.star-icon {
    width: 19px;
    height: 19px;
   
}

.rating-score {
    margin-left: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
}

.rating-score sub {
    font-size: 0.7em;
    font-weight: 500;
    color: #94a3b8;
    vertical-align: baseline;
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
    .rating-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .rating-right {
        margin-left: 20px;
    }

    .rating-title {
        font-size: 56px;
    }

    .rating-number {
        font-size: 5.5rem;
    }

    .rating-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 820px) {
    .rating-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        justify-items: center; /* wrapper ke andar sab center */
        text-align: center;
    }

    /* LEFT */
    .rating-left {
        align-items: center; /* left content center */
        width: 100%;
    }

    .accent-line {
        margin: 8px auto 0; /* line bhi center */
    }

    /* RIGHT */
    .rating-right {
        margin-left: 0;
        align-items: center; /* right content center */
        width: 100%;
    }

    .stat-card {
        width: 100%;
        max-width: 480px;
        padding: 28px 20px;
    }

    .rating-logos {
        width: 100%;
        max-width: 480px;
        justify-content: center;
    }

    .rating-item {
        align-items: center; /* har brand center */
    }

    .rating-title {
        font-size: 48px;
    }

    .rating-number {
        font-size: 4.5rem;
    }

    .rating-text {
        font-size: 1.4rem;
    }

    .rating-subtitle,
    .rating-tagline {
        font-size: 17px;
    }

    .rating-logo {
        width: 110px;
        height: 30px;
    }

    .star-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .rating-section {
        padding: 50px 0;
    }

    .rating-wrapper {
        gap: 24px;
    }

    .rating-title {
        font-size: 38px;
    }

    .rating-number {
        font-size: 3.5rem;
    }

    .rating-text {
        font-size: 1.2rem;
    }

    .rating-subtitle,
    .rating-tagline {
        font-size: 15px;
    }

    .stat-card {
        padding: 24px 16px;
        border-radius: 16px;
        max-width: 100%;
    }

    .rating-logos {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr; /* 3 equal columns */
        place-items: center; /* har cell center */
        gap: 12px;
        max-width: 100%;
    }

    .rating-divider-v {
        display: none;
    }

    .rating-item {
        align-items: center;
        width: 100%;
    }

    .rating-logo {
        width: 70px;
        height: 24px;
    }

    .star-icon {
        width: 13px;
        height: 13px;
    }

    .rating-score {
        font-size: 0.75rem;
    }
}

@media (max-width: 380px) {
    .rating-title {
        font-size: 30px;
    }

    .rating-number {
        font-size: 2.8rem;
    }

    .rating-text {
        font-size: 1rem;
    }

    .rating-subtitle,
    .rating-tagline {
        font-size: 13px;
    }

    .rating-logos {
        grid-template-columns: 1fr 1fr 1fr; /* 320px pe bhi 3 column */
        gap: 8px;
    }

    .rating-logo {
        width: 55px;
        height: 20px;
    }

    .star-icon {
        width: 11px;
        height: 11px;
    }

    .rating-score {
        font-size: 0.65rem;
    }

    .stat-card {
        padding: 20px 12px;
    }
}



/* ═══════════════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════════════ */
.pricing {
    padding: var(--section-pad);
    background: var(--white);
}

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

.pricing-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 40px rgba(0,0,0,0.1);
    }

    .pricing-card.featured {
        background: linear-gradient(189deg, #EDF7FF 0%, var(--white) 100%);
        transform: scale(1.05);
        z-index: 1;
    }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

.pricing-card-header {
    padding: 2rem;
    border-bottom: 1px solid #F1F2F9;
}

.plan-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-name {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.popular-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(41deg, rgba(1,84,113,0.8) 21%, rgba(2,160,215,0.8) 100%);
    color: var(--white);
    border-radius: 5px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.price-period {
    display: flex;
    flex-direction: column;
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-card-body,
.pricing-card-footer {
    padding: 2rem;
}

.plan-description {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.features-title {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.features-subtitle {
    color: var(--gray-700);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
}

    .features-list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        color: var(--gray-700);
        font-size: 0.875rem;
    }

/* Plan check icons */
.check-icon.green {
    background: #388038;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

.check-icon.blue {
    background: #015AC0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

.check-icon.dark-blue {
    background: #294B95;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.faq {
    padding: var(--section-pad);
    background: var(--soft-gray);
}

.section-header {
    text-align: center;
    max-width: 940px;
    margin: 0 auto 3rem;
}

    .section-header h2 {
        font-size: clamp(2.8rem, 6vw, 4rem);
        margin-bottom: 1rem;
    }

.section-subtitle {
    color: #625B71;
    font-size: 1.25rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid #F1F2F9;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
    font-family: var(--font-main);
}

    .faq-question:hover {
        background-color: rgba(0,0,0,0.02);
    }

.faq-icon {
    width: 18px;
    height: 10.5px;
    background: var(--text-light);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 2rem;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   CONTACT INFO CARDS
   ═══════════════════════════════════════════════════ */
.contact-info {
   padding: 26px 0 60px;
    background: var(--white);
}

.info-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-card {
    background: var(--soft-gray);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    width: 310px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

    .info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    }

.info-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

    .info-icon img {
        width: 36px;
        height: 36px;
        object-fit: contain;
    }

.info-text {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.6;
}

    .info-text strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

/* ═══════════════════════════════════════════════════
   CONTACT FORM SECTION
   ═══════════════════════════════════════════════════ */
.contact-form-section {
    padding: 80px 0;
    background: var(--soft-gray);
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.form-media {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.map-placeholder {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

    .map-placeholder iframe {
        height: 390px;
        width: 100%;
        border: none;
        border-radius: var(--radius);
    }

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(31,37,61,0.7);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

    .social-btn:hover {
        background: var(--cyan);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0,187,200,0.3);
    }

.form-container {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--navy);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: inherit;
        font-size: 14px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--cyan);
        }

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gradient-btn);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,187,200,0.3);
    }

/* Toast */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--white);
    border: 1px solid var(--green);
    border-radius: 100px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 9999;
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
    pointer-events: none;
}

    .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

/* ═══════════════════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════════════════ */
.video-section {
    padding: var(--section-pad);
    background: var(--soft-gray);
}

.video-wrapper,
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

    .video-wrapper iframe,
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

/* ═══════════════════════════════════════════════════
   CTA BANNER  (shared across all pages)
   ═══════════════════════════════════════════════════ */
.cta-banner,
.cta-section,
.cta-inner {
    background: var(--gradient-navy);
    border-radius: var(--radius);
    text-align: center;
    color: var(--white);
}

/* Container-wrapped banner */
.cta-banner {
    padding: 3rem 2rem;
    margin: 4rem 0;
}

    .cta-banner h2 {
        font-size: clamp(2.5rem, 6vw, 3.875rem);
        font-weight: 700;
        line-height: 1.2;
    }

    .cta-banner p {
        color: var(--gray-400);
        font-size: 1.1rem;
        margin: 1.5rem 0 2rem;
    }

/* Section-level CTA */
.cta-section {
    padding: 80px 0 100px;
    background: var(--white);
    border-radius: 0;
}

.cta-card {
    background: var(--gradient-navy);
    border-radius: var(--radius);
    padding: 60px 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,187,200,0.15), transparent 70%);
    top: -100px;
    right: -80px;
    pointer-events: none;
    border-radius: 50%;
}

.cta-card h2,
.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
}

.cta-card p,
.cta-content p {
    color: var(--gray-400);
    font-size: 1.05rem;
}

/* index.html cta-inner */
.cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 80px;
}

    .cta-inner h2 {
        font-size: clamp(2rem, 5vw, 3.875rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .cta-inner p {
        font-size: 17px;
        color: var(--gray-400);
        margin-bottom: 30px;
    }

/* ═══════════════════════════════════════════════════
   FOOTER  (shared across all pages)
   ═══════════════════════════════════════════════════ */
.footer {
    background: #f2f2f2;
    padding: 30px 0;
    font-family: var(--font-main);
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-links {
    color: var(--gray-700);
    font-size: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .footer-links a {
        text-decoration: none;
        color: var(--gray-700);
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--blue);
        }

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer .social-icons {
    display: flex;
    gap: 20px;
}

.footer .social,
.social {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

    .footer .social:hover,
    .social:hover {
        background: var(--blue);
        color: var(--white);
    }

.copyright {
    color: #79767D;
    font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════
   POPUP
   ═══════════════════════════════════════════════════ */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .popup-overlay.active {
        display: flex;
        opacity: 1;
    }

/* Popup Card */
.popup-card {
    width: fit-content;
    max-width: 960px;
    border-radius: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 30px;
    background: var(--gradient-navy);
    box-shadow: 0 25px 50px -8px rgba(0,0,0,0.6);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}



/* Illustration */
.illustration {
    width: 350px;
    height: 244px;
    position: relative;
    flex-shrink: 0;
}

    .illustration img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* Form Card */
.form-card {
    width: 385px;
    background: white;
    border-radius: 24px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 35px -5px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.logo-round {
    width: 200px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-round img {
        width: 100%;
        height: auto;
    }

.title-main {
    color: #1F253D;
    font-size: 28px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.title-sub {
    color: #1F253D;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-align: center;
}

.input-field {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #F9F9F9;
    border-radius: 50px;
    border: 1px solid rgba(4,193,219,0.3);
}

    .input-field input {
        border: none;
        outline: none;
        background: transparent;
        font-size: 16px;
        width: 100%;
        color: #021831;
    }

.input-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.login-btn {
    width: 345px;
    max-width: 100%;
    padding: 12px 36px;
    background: var(--gradient-btn);
    border-radius: 29px;
    border: none;
    outline: 0.75px solid white;
    outline-offset: -0.75px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.1s ease;
    box-shadow: 0 6px 14px rgba(0,123,200,0.3);
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: white;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.3px;
}

    .login-btn .gloss {
        width: 20px;
        height: 105px;
        background: rgba(255, 255, 255, 0.6);
        position: absolute;
        left: -20px;
        top: -38px;
        transform: rotate(15deg);
        transition: left 0.4s ease-out;
    }

    .login-btn:hover .gloss {
        left: 120%;
    }

    .login-btn:active {
        transform: scale(0.98);
    }

.close-popup {
    position: absolute;
    top: 5px;
    right: 8px;
    background: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

    .close-popup:hover {
        background: #f0f0f0;
    }

.text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════ */

/* Large Desktop (1200px - 1440px) */
@media (max-width: 1200px) {
    :root {
        --section-pad: 80px 5%;
    }

    .container {
        padding: 0 20px;
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
        grid-column: span 2;
    }

        .pricing-card.featured:hover {
            transform: translateY(-10px);
        }

    .form-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-placeholder iframe {
        height: 350px;
    }

    .card-body {
        flex-direction: column;
        gap: 32px;
    }

    .card-visual {
        max-width: 100%;
        width: 100%;
    }

    .visual-inner {
        min-height: 300px;
    }

    .testimonial-section {
        padding: 4rem 3rem;
    }

    .top-row {
        gap: 1.5rem;
    }

    .main-heading {
        font-size: 3.2rem;
    }

    .phone-left {
        width: 140px;
        height: 300px;
    }

    .phone-center {
        width: 170px;
        height: 340px;
        transform: translateY(-4px) scale(1.02);
    }

    .phone-right {
        width: 140px;
        height: 300px;
    }

    .cards-row {
        gap: 1rem;
    }

    /* Results section — tablet: collage full-width, taller rows */
    .results-section {
        padding: 60px 20px;
    }

    .collage {
        grid-template-rows: 210px 210px;
        gap: 12px;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    :root {
        --section-pad: 60px 20px;
    }

    /* Navbar: mobile menu handled by the right-side drawer unit at end of file (≤1199px) */
    .nav-toggle {
        display: flex !important;
    }

    .navbar.pill-nav .nav-links,
    .navbar.pill-nav .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar.pill-nav {
        border-radius: 16px;
        top: 12px;
    }

    /* Hero */
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-dashboard {
        margin-top: 30px;
    }

    .hero-curve {
        height: 60px;
        bottom: -200px;
    }

    /* Contact Hero */
    .contact-hero {
        padding: 120px 20px 60px;
    }

    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        grid-column: span 1;
    }

    .pricing-card {
        max-width: 450px;
        margin: 0 auto;
    }

    /* Features/Cards */
    .stage {
        min-height: auto;
        height: auto;
    }

    .card {
        position: relative;
        inset: auto;
        margin-bottom: 20px;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto;
    }

    .ghost {
        display: none;
    }

    .card-body {
        flex-direction: column;
        gap: 24px;
    }

    .card-content {
        width: 100%;
    }

        .card-content h2 {
            font-size: 24px;
            text-align: center;
        }

        .card-content p {
            text-align: center;
        }

    .checklist {
        align-items: center;
    }

        .checklist li {
            width: 100%;
            max-width: 320px;
        }

    .action-btn {
        margin: 0 auto;
    }

    .card-footer {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        display:none;
    }

    /* Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 20px;
    }

    .testimonial-section {
        padding: 2.5rem 1.5rem;
        gap: 2.5rem;
        border-radius: 1.5rem;
    }

    .top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .left-col {
        align-items: center;
        text-align: center;
    }

    .main-heading {
        font-size: 2.8rem;
        text-align: center;
    }

    .star-row {
        justify-content: center;
    }

    .right-col {
        justify-content: center;
        margin-top: 0.5rem;
        min-height: auto;
    }

    .phone-stack {
        justify-content: center;
        flex-wrap: wrap;
    }

    .phone-left,
    .phone-right {
        display: none;
    }

    .phone-center {
        width: 200px;
        height: 404px;
        transform: none;
        position: relative;
    }

    .cards-row {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 450px;
    }

    /* Ratings */
    .rating-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .rating-logos {
        justify-content: center;
    }

    /* CTA */
    .cta-card {
        padding: 40px 30px;
    }

    .cta-inner {
        padding: 40px 30px;
    }

    /* Contact Info */
    .info-cards {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        width: 100%;
        max-width: 350px;
    }

    /* Footer */
    .footer-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-right {
        align-items: flex-start;
    }

    /* Popup */
    .popup-card {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
        width: 90%;
    }

    .illustration {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .form-card {
        width: 100%;
    }

    /* Touch targets */
    .btn,
    .action-btn,
    .nav-links a,
    .swipe-btn,
    .dot-btn,
    .social-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    :root {
        --section-pad: 40px 16px;
    }

    /* Typography */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Navbar */
    .navbar {
        width: 95%;
        top: 10px;
    }

    .nav-inner {
        padding: 8px 16px;
    }

    .logo-sub {
        display: none;
    }

    .btn-login {
        padding: 8px 20px;
        font-size: 13px;
    }

    .navbar.pill-nav {
        width: calc(100% - 24px);
        top: 8px;
    }

    /* Cards */
    .card {
        padding: 24px 20px;
    }

    .visual-inner {
        min-height: 200px;
    }

    .visual-avatar img,
    .visual-avatar svg {
        max-width: 200px;
    }

    .visual-ship img,
    .visual-ship svg {
        max-width: 200px;
    }

    .checklist li {
        font-size: 14px;
    }

    .feature-cell {
        padding: 10px 12px;
    }

        .feature-cell span {
            font-size: 13px;
        }

    /* Testimonials */
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .card-right {
        align-items: center;
    }

    .quote-icon::before {
        left: 0;
    }

    .main-heading {
        font-size: 2.3rem;
    }

    .star--lg {
        width: 40px;
        height: 38.3px;
    }

    .star--md {
        width: 36px;
        height: 34.5px;
    }

    .star--sm {
        width: 32px;
        height: 30.6px;
    }

    /* CTA */
    .cta-card {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .cta-inner {
        padding: 30px 20px;
    }

        .cta-inner h2 {
            font-size: 1.5rem;
        }

    /* Form */
    .form-container {
        padding: 20px;
    }

    .map-placeholder iframe {
        height: 260px;
    }

    /* Brands */
    .brands {
        padding: 40px 16px;
    }

    .brands-label {
        font-size: 15px;
    }

    .logo-track {
        gap: 30px;
    }

    .brand-logo {
        height: 28px;
    }

    /* Solutions */
    .solutions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .sol-card {
        min-width: 260px;
        max-width: 260px;
    }

    .sol-card-img {
        height: 200px;
        padding: 20px;
    }

    /* Story Section */
    .story-title {
        font-size: 28px;
    }

    .story-image img {
        height: 200px;
    }

    .story-text p {
        font-size: 14px;
    }

    /* Results */
    .results-section {
        padding: 40px 16px;
    }

    .collage {
        grid-template-rows: 170px 170px;
        gap: 10px;
    }

    .results-text h2 {
        font-size: 2rem;
    }

    /* Popup */
    .illustration {
        transform: scale(0.8);
    }

    .title-main {
        font-size: 24px;
    }

    .title-sub {
        font-size: 16px;
    }

    .login-btn {
        font-size: 16px;
        padding: 10px 24px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .btn:hover::before {
        left: -100%;
    }

    .btn:hover {
        transform: none;
    }

    .pricing-card:hover {
        transform: none;
    }

    .sol-card:hover {
        transform: none;
    }

    .info-card:hover {
        transform: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .logo-track {
        animation: none;
    }
}

/* Focus states */
.btn:focus-visible,
.nav-links a:focus-visible,
.faq-question:focus-visible,
.input-group input:focus-visible,
.custom-select-trigger:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .site-header,
    .video-section,
    .cta-banner,
    .cta-section,
    .footer,
    .popup-overlay,
    .hero-video,
    .hero::after,
    .hero-curve {
        display: none;
    }

    .hero {
        min-height: auto;
        margin-top: 0;
        padding: 20px;
    }

    .card {
        position: relative;
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .ghost {
        display: none;
    }

    * {
        color: black !important;
        background: white !important;
    }
}


/* Additional styles for ASP.NET controls */
.input-field input[type="text"],
.input-field input[type="password"] {
    flex: 1 1 auto;   /* fill remaining flex space without overflowing */
    min-width: 0;     /* allows flex shrink below intrinsic width */
    width: auto;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    padding: 8px 0;
}

/* ── Popup input fields: white bg, clean border ── */
.popup-card .input-field {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}
.popup-card .input-field:focus-within {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}

/* ── Password eye toggle ── */
.pwd-eye-btn {
    background: none;
    border: none;
    padding: 0 2px;
    cursor: pointer;
    color: #94a3b8;
    font-size: 17px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
    outline: none;
    line-height: 1;
}
.pwd-eye-btn:hover { color: #2563EB; }

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.forgot-password {
    text-align: right;
    margin: 10px 0;
}

    .forgot-password a {
        color: #00BBC8;
        text-decoration: none;
        font-size: 14px;
        font-family: 'Open Sans', sans-serif;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }

/* Password change panel styles */
.password-change-panel {
    padding: 20px;
}

    .password-change-panel h4 {
        color: #f1624b;
        font-size: 18px;
        margin-bottom: 20px;
        font-family: 'Open Sans', sans-serif;
    }

    .password-change-panel .input-field {
        margin-bottom: 15px;
    }

.password-change-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00BBC8 0%, #1F253D 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
}

    .password-change-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,187,200,0.3);
    }

.disableBtn {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Consent modal styles */
.consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.consent-container {
    width: 70%;
    max-height: 80vh;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 30px;
    overflow-y: auto;
}

    .consent-container h2 {
        color: #1F253D;
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .consent-container h3 {
        color: #00BBC8;
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .consent-container ul {
        margin-left: 20px;
        margin-bottom: 15px;
    }

    .consent-container li {
        margin-bottom: 5px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
    }

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

    .checkbox-container input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .checkbox-container label {
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: #1F253D;
        cursor: pointer;
    }

.consent-btn {
    background: linear-gradient(135deg, #00BBC8 0%, #1F253D 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .consent-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,187,200,0.3);
    }

    .consent-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.d-none {
    display: none !important;
}

.seller-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

    .seller-info p {
        margin: 5px 0;
        font-family: 'Open Sans', sans-serif;
    }

/* ── Contact Hero ── */
.contact-hero {
    width: 100%;
    padding: 20px 0 40px;
}

.contact-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    padding: 0 20px;
}

.title-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    gap: clamp(5px, 1vw, 15px);
    width: 100%;
    margin-top: clamp(30px, 8vw, 100px);
    padding: 0 15px;
}

.contact-line {
    color: #1F253D;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 8vw, 64px);
    line-height: 1.1;
    text-align: center;
}

.us-line {
    color: #00BBC8;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(30px, 7.8vw, 64px);
    line-height: 1.1;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #1F253D;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 3vw, 20px);
    max-width: 700px;
}

/* ── Info Grid ── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 5px -1px rgba(0,0,0,.15), 0 5px 8px rgba(0,0,0,.10);
    transition: transform 0.3s;
}

    .info-card:hover {
        transform: translateY(-6px);
    }

.info-icon {
    width: 72px;
    height: 72px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

    .info-icon i {
        font-size: 28px;
        color: #00BBC8;
    }

.info-card h3 {
    margin-bottom: 10px;
    color: #011349;
    font-size: 1.1rem;
}

.info-card p {
    color: #625B71;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── Form Section ── */
.contact-form-section {
    padding: 60px 0 80px;
    background: #f9f9f9;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .form-layout {
        grid-template-columns: 1fr;
    }
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 5px -1px rgba(0,0,0,.2);
    min-height: 400px;
}

    .map-container iframe {
        width: 100%;
        height: 470px;
        border: none;
    }

/* Form wrapper – white card */
.form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 3px 5px -1px rgba(0,0,0,.15);
}

    .form-wrapper h4 {
        font-size: 1.35rem;
        color: #011349;
        margin-bottom: 6px;
    }

    .form-wrapper p.form-desc {
        font-size: 0.9rem;
        color: #625B71;
        margin-bottom: 22px;
    }

    /* ASP.NET DropDownList / TextBox uniform style */
    .form-wrapper select,
    .form-wrapper input[type="text"],
    .form-wrapper input[type="email"],
    .form-wrapper input[type="tel"] {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: inherit;
        font-size: 14px;
        transition: border-color 0.3s;
        margin-bottom: 16px;
        box-sizing: border-box;
        appearance: none;
        background: #fff;
    }

        .form-wrapper select:focus,
        .form-wrapper input:focus {
            outline: none;
            border-color: #00BBC8;
            box-shadow: 0 0 0 3px rgba(0,187,200,0.12);
        }

/* Override ASP.NET-generated TextBox/DropDownList class */
.contact-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
    margin-bottom: 16px;
    display: block;
    box-sizing: border-box;
}

    .contact-input:focus {
        outline: none;
        border-color: #00BBC8;
        box-shadow: 0 0 0 3px rgba(0,187,200,0.12);
    }

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(141deg, #00BBC8 0%, #0075DD 100%);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, filter 0.2s;
    margin-top: 4px;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,187,200,0.3);
        filter: brightness(1.06);
    }

    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* Alert / message panel */
.alert-panel {
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Validation highlights */
.is-invalid {
    border-color: #dc3545 !important;
}

.is-valid {
    border-color: #28a745 !important;
}

/* Social links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(31,37,61,0.7);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

    .social-icon:hover {
        background: #00BBC8;
        color: #fff;
        transform: translateY(-3px);
    }


.close-popup:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

    .illustration img {
        min-width: 136%;
        height: auto;
    }

.form-card {
    flex: 1;
    padding: 48px 40px;
    background: #fff;
}

.logo-round {
    width: 200px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .logo-round img {
        width: auto;
        height: auto;
    }

.text-group {
    text-align: center;
    margin-bottom: 30px;
}

.title-main {
    color: #1F253D;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.title-sub {
    color: #666;
    font-size: 14px;
}

.input-field {
    position: relative;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    background: #f9f9f9;
    transition: border-color 0.3s;
}

    .input-field:focus-within {
        border-color: #00BBC8;
        box-shadow: 0 0 0 3px rgba(0,187,200,0.1);
    }

.input-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(141deg, #00BBC8 0%, #0075DD 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 20px 0 10px;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,187,200,0.3);
    }

@media (max-width: 380px) {
    .title-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-line, .us-line {
        font-size: 28px;
    }
}

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

    .social-links {
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .popup-card {
        flex-direction: column;
        max-width: 450px;
    }

    .illustration {
        display: none;
    }
}

/* Success Popup Styles */
.success-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .success-popup-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.success-popup-card {
    width: 90%;
    max-width: 450px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    animation: popupScale 0.3s ease;
}

@keyframes popupScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00BBC8 0%, #1F253D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
}

.success-popup-card h3 {
    color: #1F253D;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-popup-card p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.success-popup-btn {
    background: linear-gradient(135deg, #00BBC8 0%, #1F253D 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

    .success-popup-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,187,200,0.3);
    }

.close-success-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: #1F253D;
    transition: all 0.3s;
}

    .close-success-popup:hover {
        background: #e0e0e0;
        transform: scale(1.1);
    }

/* ===== SHARED CTA + FOOTER (added for all pages) ===== */
        .nc-cta-wrap {
            background: #eef3fb;
            padding: clamp(16px, 2.2vw, 30px);
            width: 100%;
        }

        .nc-cta {
            position: relative;
            max-width: 1680px;
            margin: 0 auto;
            min-height: clamp(360px, 40vw, 540px);
            border-radius: 30px;
            overflow: hidden;
            isolation: isolate;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(120,160,255,0.16);
            box-shadow: 0 30px 80px rgba(8,20,55,0.30);
            background: radial-gradient(70% 55% at 88% 62%, rgba(40,95,210,0.42) 0%, rgba(40,95,210,0) 60%), radial-gradient(130% 95% at 50% -8%, #16387a 0%, #0d2657 28%, #08193d 56%, #050f2b 80%, #040b22 100%);
        }

        /* faint perspective grid, stronger toward edges/corners */
        .nc-grid {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image: linear-gradient(rgba(125,165,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(125,165,255,0.07) 1px, transparent 1px);
            background-size: 48px 48px;
            -webkit-mask-image: radial-gradient(115% 85% at 50% 38%, transparent 48%, #000 92%);
            mask-image: radial-gradient(115% 85% at 50% 38%, transparent 48%, #000 92%);
            opacity: .7;
        }

        /* ambient bloom behind text */
        .nc-glow {
            position: absolute;
            left: 50%;
            top: 42%;
            transform: translate(-50%,-50%);
            width: 70%;
            height: 60%;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(ellipse at center, rgba(48,120,255,0.20) 0%, rgba(48,120,255,0) 70%);
            filter: blur(10px);
        }

        .nc-inner {
            position: relative;
            z-index: 3;
            width: 100%;
            padding: clamp(26px,3.6vw,46px) clamp(20px,5vw,64px) clamp(88px,11vw,128px);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .nc-badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 9px 18px;
            border-radius: 999px;
            background: rgba(11,26,60,0.55);
            border: 1px solid rgba(120,160,255,0.28);
            box-shadow: 0 0 22px rgba(45,120,255,0.22), inset 0 0 0 1px rgba(255,255,255,0.02);
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
            color: #d3def6;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .18em;
            margin-bottom: clamp(22px,3.2vw,38px);
        }

            .nc-badge svg {
                width: 15px;
                height: 15px;
                display: block;
            }

        .nc-title {
            color: #f4f8ff;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: clamp(38px,6.4vw,82px);
            line-height: 1.04;
            letter-spacing: -0.02em;
            margin: 0 0 clamp(18px,2.2vw,28px);
            text-shadow: 0 2px 30px rgba(0,0,0,0.25);
        }

        .nc-grad {
           
            background: linear-gradient(96deg,#46c8ff 0%,#3a93ff 48%,#2f6dff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .nc-sub {
            color: #9fb2d6;
            font-family: 'Poppins', sans-serif;
            font-size: clamp(14px,1.45vw,19px);
            font-weight: 400;
            line-height: 1.55;
            max-width: 620px;
            margin: 0 0 clamp(28px,3.4vw,40px);
        }

        .nc-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nc-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            border-radius: 999px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            border: 1px solid transparent;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
        }

            .nc-btn i {
                font-size: 13px;
                transition: transform .2s ease;
            }

            .nc-btn:hover i {
                transform: translateX(3px);
            }

        .nc-btn-primary {
            background: linear-gradient(180deg,#3b8bff 0%,#2563EB 100%);
            color: #fff;
            box-shadow: 0 12px 30px rgba(37,99,235,0.50), inset 0 1px 0 rgba(255,255,255,0.45);
        }

            .nc-btn-primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 16px 38px rgba(37,99,235,0.6), inset 0 1px 0 rgba(255,255,255,0.5);
            }

        .nc-btn-ghost {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(150,180,255,0.32);
            color: #e3ebff;
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
        }

            .nc-btn-ghost:hover {
                transform: translateY(-2px);
                background: rgba(255,255,255,0.1);
            }

        /* ════ HORIZON GLOW (signature effect) ════ */
        .nc-horizon {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 60%;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

            .nc-horizon::before {
                content: "";
                position: absolute;
                left: 50%;
                bottom: -46%;
                transform: translateX(-50%);
                width: 150%;
                height: 100%;
                border-radius: 50%;
                background: radial-gradient(60% 100% at 50% 0%, rgba(60,140,255,0.30) 0%, rgba(60,140,255,0) 62%);
                box-shadow: 0 -1px 0 1px rgba(170,210,255,0.55), 0 -10px 50px 4px rgba(70,150,255,0.55), 0 -28px 110px 14px rgba(45,115,240,0.45);
            }



        @media (max-width: 560px) {
            .nc-title {
                font-size: clamp(34px,9vw,46px);
            }

            .nc-sub br {
                display: none;
            }
        }
        .footer.jf-foot {
            background: radial-gradient(130% 95% at 50% -8%, #16387a 0%, #0d2657 28%, #08193d 56%, #050f2b 80%, #040b22 100%);
            padding: clamp(38px,3.6vw,52px) 0 0;
            font-family: 'Poppins', 'Open Sans', sans-serif;
            color: #ffffff;
        }

        .jf-inner {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 36px;
        }

        .jf-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 48px;
            flex-wrap: wrap;
            padding-bottom: clamp(26px,2.8vw,36px);
        }

        .jf-brand {
            max-width: 340px;
        }

        .jf-logo {
            height: 40px;
            width: auto;
            display: block;
            margin-bottom: 16px;
        }

        .jf-brand p {
            color: rgba(255,255,255,0.82);
            font-size: 14px;
            line-height: 1.6;
            margin: 0 0 20px;
        }

        .jf-social {
            display: flex;
            gap: 10px;
        }

        .jf-soc {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25);
            box-shadow: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 15px;
            text-decoration: none;
            transition: transform .2s ease, background .2s ease, color .2s ease;
        }

            .jf-soc:hover {
                transform: translateY(-2px);
                background: #ffffff;
                color: #2563EB;
            }

        .jf-cols {
            display: flex;
            gap: clamp(48px,7vw,96px);
        }

        .jf-col h4 {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            margin: 4px 0 16px;
        }

        .jf-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

            .jf-links a {
                color: rgba(255,255,255,0.88);
                font-size: 14.5px;
                font-weight: 500;
                text-decoration: none;
                transition: color .18s ease;
            }

                .jf-links a:hover {
                    color: #8CE7FF;
                }

        .jf-bottom {
            border-top: 1px solid rgba(255,255,255,0.16);
            padding: 18px 0 22px;
        }

            .jf-bottom p {
                color: rgba(255,255,255,0.65);
                font-size: 13px;
                margin: 0;
                text-align:center;
            }

        /* ── Tablet & mobile: stack brand over links, centered, symmetric grid ── */
        @media (max-width: 1024px) {
            .jf-inner {
                padding: 0 28px;
            }

            .jf-top {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 34px;
            }

            .jf-brand {
                max-width: 460px;
            }

            .jf-logo {
                margin-left: auto;
                margin-right: auto;
            }

            .jf-brand p {
                margin-left: auto;
                margin-right: auto;
            }

            .jf-social {
                justify-content: center;
            }

            .jf-cols {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 30px 28px;
                width: 100%;
                max-width: 560px;
                margin: 0 auto;
                text-align: left;
            }

            .jf-col {
                text-align: left;
            }
        }

        /* ── Small phone: single centered column ── */
        @media (max-width: 480px) {
            .jf-inner {
                padding: 0 22px;
            }

            .jf-cols {
                grid-template-columns: 1fr;
                justify-items: center;
                gap: 28px;
                max-width: 320px;
                text-align: center;
            }

            .jf-col {
                text-align: center;
            }

            .jf-links {
                align-items: center;
            }
        }

/* ===== Demo modal submit button (blue) — shared across pages ===== */
.demo-form-submit{
  width:100%;
  margin-top:6px;
  padding:14px 22px;
  border:none;
  border-radius:12px;
  font-size:15px;
  font-weight:700;
  font-family:inherit;
  color:#ffffff;
  background:linear-gradient(135deg,#2563eb 0%,#4f46e5 100%);
  cursor:pointer;
  letter-spacing:.3px;
  transition:transform .2s, box-shadow .2s, filter .2s;
}
.demo-form-submit:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 24px -6px rgba(37,99,235,.45);
  filter:brightness(1.05);
}

/* ═══════════════════════════════════════════════════
   NAVBAR MARKETPLACE DROPDOWN
   ═══════════════════════════════════════════════════ */
.nav-has-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: flex !important; align-items: center; gap: 6px; }
.nav-has-dropdown:hover > .nav-dropdown-toggle { background: rgba(37,99,235,0.11); padding: 5px 11px; border-radius: 8px; margin: -5px -11px; color: #2563eb; }
.nav-chev { font-size: 10px; transition: transform .25s ease; }
.nav-has-dropdown:hover .nav-chev,
.nav-has-dropdown.open .nav-chev { transform: rotate(180deg); }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid rgba(0,20,80,.10);
    border-radius: 14px;
    padding: 8px;
    min-width: 210px;
    list-style: none;
    box-shadow: 0 16px 48px rgba(0,20,80,.14);
    z-index: 9999;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}
.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    width: 13px; height: 13px;
    background: #fff;
    border-left: 1px solid rgba(0,20,80,.10);
    border-top: 1px solid rgba(0,20,80,.10);
    transform: translateX(-50%) rotate(45deg);
}
@keyframes dropIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-has-dropdown:hover .nav-dropdown-menu,
.nav-has-dropdown.open .nav-dropdown-menu { display: block; animation: dropIn .18s ease; }
.nav-dropdown-menu li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    transition: background .2s, color .2s;
    white-space: nowrap;
    text-decoration: none;
}
.nav-dropdown-menu li a::after { display: none !important; content: none !important; }
.nav-dropdown-menu li a:hover { background: #eff6ff; color: #2563eb !important; }
.nav-dropdown-menu li a .nav-dd-icon {
    width: 30px; height: 30px; min-width: 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #fff;
}
.nav-dropdown-menu li a .nav-dd-text { display: flex; flex-direction: column; }
.nav-dropdown-menu li a .nav-dd-label { font-size: 14px !important; font-weight: 600 !important; line-height: 1.2; }
.nav-dropdown-menu li a .nav-dd-sub { font-size: 11px !important; font-weight: 400 !important; color: #94a3b8 !important; margin-top: 1px; }

/* Login modal - small-screen fit (overrides later desktop rules that leak into mobile) */
@media (max-width: 768px) {
    .popup-overlay { padding: 16px; }
    .popup-card { width: 100%; max-width: 380px; padding: 18px; gap: 16px; }
    .popup-card .illustration { flex: none; width: 100%; max-width: 220px; padding: 0; }
    .popup-card .illustration img { min-width: 0; width: 100%; height: auto; }
    .popup-card .form-card { flex: none; width: 100%; padding: 24px 18px; align-items: stretch; box-sizing: border-box; }
    .popup-card .form-card > .text-group { align-self: center; }
    .popup-card .form-card > div { width: 100%; box-sizing: border-box; }
    .popup-card .form-card > .logo-round { align-self: center; width: 200px; }
    .popup-card .input-field { width: 100%; box-sizing: border-box; }
    .popup-card .login-btn { width: 100%; box-sizing: border-box; }
    .popup-card .password-change-btn { width: 100%; box-sizing: border-box; }
    .popup-card .otp-panel { width: 100%; box-sizing: border-box; }
    .popup-card .input-field input { min-width: 0; }
}

/* Footer brand: taller logo + tagline underneath */
.jf-foot .jf-logo { height: 60px; margin-bottom: 8px; }
.jf-foot .jf-tagline {
    font-size: 12px;
    font-weight: 500;
    color: rgb(255 255 255 / 81%);
    letter-spacing: .02em;
    position: relative;
    bottom: 9px;
    margin-bottom: 12px; 
}
    /* ===== Nav right-side drawer for 769-1200px (tablet landscape / small desktop) ===== */
    /* drawer-only elements hidden by default (desktop >=1200 and phone <=768 unaffected) */
    .nav-drawer-head, .nav-drawer-login, .nav-drawer-overlay {
        display: none;
    }

    .nav-links .nav-ico {
        display: none;
    }

    @media (max-width: 1199px) {
        .nav-toggle {
            display: flex !important;
        }

        .navbar .nav-inner {
            justify-content: space-between;
        }

            .navbar .nav-inner .btn-login {
                margin-left: auto;
                margin-right: 6px;
            }

        .navbar .nav-links {
            display: flex !important;
            flex-direction: column;
            align-items: stretch;
            gap: 2px;
            position: fixed;
            top: 0;
            right: 0;
            left: auto; /* guard: legacy mobile rules set left:0 which would pin the closed drawer on-screen */
            height: 100vh;
            height: 100dvh;
            width: min(340px, 86vw);
            background: #fff;
            padding: 16px 16px 28px;
            box-shadow: -22px 0 60px rgba(8,16,40,.22);
            border-radius: 20px 0 0 20px;
            transform: translateX(105%);
            visibility: hidden;        /* safeguard: never visible when closed, even if a future ancestor filter re-creates a containing block */
            pointer-events: none;
            transition: transform .32s cubic-bezier(.4,0,.2,1), visibility 0s linear .32s;
            z-index: 1200;
            overflow-y: auto;
        }

            .navbar .nav-links.open {
                transform: translateX(0);
                visibility: visible;
                pointer-events: auto;
                transition: transform .32s cubic-bezier(.4,0,.2,1), visibility 0s;
            }

            .navbar .nav-links > li {
                width: 100%;
            }

            /* hairline separators between drawer items (mockup style) */
            .navbar .nav-links > li:not(.nav-drawer-head):not(.nav-drawer-login) {
                border-bottom: 1px solid #f1f5f9;
            }

                .navbar .nav-links > li > a,
                .navbar .nav-dropdown-toggle {
                    display: flex;
                    align-items: center;
                    gap: 13px;
                    width: 100%;
                    padding: 13px 12px;
                    border-radius: 12px;
                    font-size: 15px;
                    font-weight: 600;
                    color: #0f2350;
                }

                    .navbar .nav-links > li > a::after {
                        display: none !important;
                    }

                    .navbar .nav-links > li > a:hover,
                    .navbar .nav-dropdown-toggle:hover {
                        background: #f2f6ff;
                        color: #2563eb;
                    }

        .nav-links .nav-ico {
            display: inline-flex;
            width: 22px;
            justify-content: center;
            color: #2563eb;
            font-size: 15px;
            flex: 0 0 auto;
        }

        .nav-drawer-head {
            display: flex !important;
            align-items: center;
            justify-content: space-between;
            padding: 6px 6px 14px;
            margin-bottom: 6px;
            border-bottom: 1px solid #eef2f7;
        }

        .nav-drawer-logo {
            height: 34px;
            width: auto;
        }

        .nav-drawer-close {
            border: none;
            background: none;
            font-size: 26px;
            line-height: 1;
            color: #0f2350;
            cursor: pointer;
            padding: 2px 8px;
        }

        .navbar .nav-has-dropdown {
            flex-direction: column;
            align-items: stretch;
        }

        .navbar .nav-dropdown-toggle {
            justify-content: flex-start;
            cursor: pointer;
        }

        .navbar .nav-chev {
            margin-left: auto;
            transition: transform .2s ease;
            font-size: 12px;
        }

        .navbar .nav-has-dropdown.open .nav-chev {
            transform: rotate(180deg);
        }

        .navbar .nav-dropdown-menu {
            position: static !important;
            transform: none !important;
            display: none;
            box-shadow: none;
            border: none;
            background: #f6f9fe;
            border-radius: 12px;
            padding: 4px;
            margin: 2px 0 4px;
            min-width: 0;
            width: 100%;
        }

            .navbar .nav-dropdown-menu::before,
            .navbar .nav-dropdown-menu::after {
                display: none !important;
            }

        .navbar .nav-has-dropdown:hover .nav-dropdown-menu {
            display: none;
        }

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

        .nav-drawer-login {
            display: block !important;
            margin-top: 14px;
        }

            .nav-drawer-login .btn-login-drawer {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                padding: 13px 16px;
                border: none;
                border-radius: 12px;
                background: linear-gradient(141deg, #3b8bff 0%, #2563eb 100%);
                color: #fff;
                font-size: 15px;
                font-weight: 700;
                font-family: inherit;
                cursor: pointer;
                box-shadow: 0 8px 20px rgba(37,99,235,.35);
            }

        .nav-drawer-overlay {
            display: block;
            position: fixed;
            inset: 0;
            background: rgba(8,16,40,.45);
            opacity: 0;
            visibility: hidden;
            transition: opacity .3s ease;
            z-index: 1150;
        }

            .nav-drawer-overlay.is-open {
                opacity: 1;
                visibility: visible;
            }

        body.nav-drawer-lock {
            overflow: hidden;
        }
    }ize: 15px;
                font-weight: 700;
                font-family: inherit;
                cursor: pointer;
                box-shadow: 0 8px 20px rgba(37,99,235,.35);
            }

        .nav-drawer-overlay {
            display: block;
            position: fixed;
            inset: 0;
            background: rgba(8,16,40,.45);
            opacity: 0;
            visibility: hidden;
            transition: opacity .3s ease;
            z-index: 1150;
        }

            .nav-drawer-overlay.is-open {
                opacity: 1;
                visibility: visible;
            }

        body.nav-drawer-lock {
            overflow: hidden;
        }
    }
/* end nav responsive drawer unit */
