
/* VARIABLES & BASE STYLES */
:root {
  --navy: #0B1F4B;
  --blue: #1A56DB;
  --sky: #3B82F6;
  --teal: #06B6D4;
  --green: #10B981;
  --orange: #F59E0B;
  --light: #F0F6FF;
  --white: #FFFFFF;
  --gray: #6B7280;
  --dark: #111827;
  --border: #E2EAF6;
  --purple: #8B5CF6;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; color:var(--dark); background:var(--white); overflow-x:hidden; }
h1,h2,h3,h4 { font-family:'Sora',sans-serif; }

/* ANIMATIONS */
.fade-up { opacity:0; transform:translateY(28px); transition:all .65s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* TOP BAR */
.top-bar { background:var(--navy); padding:8px 5%; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px; }
.top-bar-left { display:flex; gap:20px; flex-wrap:wrap; }
.tb-item { display:flex; align-items:center; gap:6px; font-size:12px; color:rgba(255,255,255,.7); }
.tb-item a { color:rgba(255,255,255,.7); text-decoration:none; }
.tb-item a:hover { color:var(--teal); }
.top-bar-right { display:flex; gap:8px; }
.tb-btn { padding:4px 12px; border-radius:50px; font-size:11px; font-weight:600; text-decoration:none; }
.tb-btn.teal { background:var(--teal); color:white; }
.tb-btn.out { border:1px solid rgba(255,255,255,.3); color:rgba(255,255,255,.8); }

/* NAV */
nav { position:sticky; top:0; width:100%; z-index:1000; background:rgba(255,255,255,.97); backdrop-filter:blur(12px); border-bottom:1px solid var(--border); padding:0 50px; display:flex; align-items:center; justify-content:space-between; height:68px; overflow:visible; }
.logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo-icon {
    width: 85px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ya cover */
}.logo-text { font-family:'Sora',sans-serif; font-weight:700; font-size:18px; color:var(--navy); }
.logo-text span { color:var(--blue); }
.nav-links { display:flex; gap:28px; list-style:none; align-items:center; margin:0; padding:0; }
.nav-links > li { display:flex; align-items:center; }
.nav-links a { text-decoration:none; color:var(--dark); font-size:14px; font-weight:500; transition:color .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--blue); }
.nav-links .caret { font-size:11px; line-height:1; }

/* Mid-range desktop: tighten spacing so 8 items never overflow before
   the mobile breakpoint kicks in */
@media (min-width:993px) and (max-width:1180px) {
    nav { padding:0 24px; }
    .nav-links { gap:18px; }
    .nav-links a { font-size:13.5px; }
}
.nav-cta { display:flex; gap:12px; align-items:center; }
.btn-nav-out { padding:8px 20px; border:2px solid var(--blue); color:var(--blue); border-radius:8px; font-weight:600; font-size:14px; background:transparent; transition:all .2s; text-decoration:none; }
.btn-nav-out:hover { background:var(--blue); color:white; }
.nav-toggle { display:none; background:transparent; border:none; width:44px; height:44px; align-items:center; justify-content:center; cursor:pointer; border-radius:8px; }
.nav-toggle .hamburger { width:24px; height:2px; background:var(--navy); display:block; position:relative; transition:all .25s; }
.nav-toggle .hamburger::before, .nav-toggle .hamburger::after { content:''; position:absolute; left:0; width:24px; height:2px; background:var(--navy); transition:all .25s; }
.nav-toggle .hamburger::before { top:-7px; }
.nav-toggle .hamburger::after { top:7px; }
.nav-toggle.open .hamburger { background:transparent; }
.nav-toggle.open .hamburger::before { transform:rotate(45deg) translate(5px,5px); top:0; }
.nav-toggle.open .hamburger::after { transform:rotate(-45deg) translate(5px,-5px); top:0; }


@media(max-width:600px) {
  .logo-text { font-size:16px; }
  .btn-nav-pri { padding:8px 14px; font-size:13px; }
  .nav-cta.open { bottom:12px; border-radius:12px; left:12px; right:12px; }
}
.btn-nav-pri { padding:9px 12px; background:linear-gradient(135deg,var(--blue),var(--teal)); color:white; border:none; border-radius:8px; font-weight:600; font-size:14px; cursor:pointer; transition:all .2s; text-decoration:none; display:inline-block; }
.btn-nav-pri:hover { opacity:.9; transform:translateY(-1px); }
/* ===================== */
/*    DROPDOWN STYLES    */
/* ===================== */

.nav-links .dropdown {
    position: relative;
    display: inline-block;
}

.nav-links .dropdown .dropbtn {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

/* Dropdown Content Box */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 260px;
    max-width: min(720px, 92vw);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-radius: 12px;
    border: 1px solid var(--border);
    z-index: 1001;
    padding: 18px;
    margin-top: 8px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Wide mega-menus (Products / Solutions) center under the nav so they
   never run off the right edge of the screen */
.dropdown.mega .dropdown-content {
    min-width: 640px;
    left: 50%;
    transform: translateX(-50%);
}

/* Right-aligned menus near the end of the bar open toward the left */
.dropdown.align-right .dropdown-content {
    left: auto;
    right: 0;
}

/* Open ONLY on click toggle (.open) — no hover, no focus-within.
   This makes the menu click-to-open / click-to-close on every device. */
.dropdown.open > .dropdown-content {
    display: flex;
    animation: fadeIn 0.25s ease;
}

/* Active / open dropdown button gets highlighted so the user can see
   which menu is currently open */
.nav-links .dropdown.open > .dropbtn {
    color: var(--blue);
}
.nav-links .dropdown.open > .dropbtn .caret {
    transform: rotate(180deg);
}
.nav-links .dropbtn .caret {
    display: inline-block;
    transition: transform .25s ease;
}

.dropdown-column {
    flex: 1 1 200px;
    min-width: 180px;
}

/* Titles above each column */
.dropdown-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 8px;
    padding: 0 12px 8px;
    border-bottom: 1px solid #eaeaea;
}

/* Dropdown Links */
.dropdown-content a {
    color: var(--dark) !important;
    padding: 9px 12px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-radius: 6px;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: var(--light, #f4f4f4);
    color: var(--blue) !important;
}

.dropdown-content a.active {
    background-color: var(--light, #f4f4f4);
    color: var(--blue) !important;
    font-weight: 700;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Preserve horizontal centering for mega menus during fade */
.dropdown.mega.open > .dropdown-content {
    animation: megaFadeIn 0.25s ease;
}
@keyframes megaFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===================== */
/*    MOBILE STYLES      */
/* ===================== */
@media(max-width:992px) {
    /* Mobile nav behavior */
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 68px; left: 0; right: 0;
        background: white; flex-direction: column; gap: 0;
        padding: 8px 12px 24px; display: none;
        border-bottom: 1px solid var(--border);
        z-index: 1002; max-height: calc(100vh - 68px); overflow-y: auto;
        box-shadow: 0 16px 32px rgba(0,0,0,.12);
    }
    .nav-links.open { display: flex; }
    .nav-links > li { width: 100%; border-bottom: 1px solid #f1f4fa; }
    .nav-links > li:last-child { border-bottom: none; }
    .nav-links a { display: block; padding: 13px 10px; }

    /* The Login / Book-a-Demo CTA lives in the always-visible top bar,
       so it stays put on mobile — no fixed bottom bar needed. */

    nav { padding: 0 4%; }

    /* Mobile dropdown = accordion. All variants reset to full-width stack. */
    .dropdown-content,
    .dropdown.mega .dropdown-content,
    .dropdown.align-right .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 8px;
        padding: 4px 0 8px;
        margin: 0;
        display: none;
        background: #f7f9fd;
        min-width: 100%;
        max-width: 100%;
        left: 0; right: auto;
        flex-direction: column;
        gap: 6px;
    }

    .dropdown.open > .dropdown-content {
        display: flex;
        animation: none;
    }

    .dropdown .dropbtn {
        width: 100%; justify-content: space-between;
        text-align: left; padding: 13px 10px;
    }
    /* Caret rotates when the accordion is open */
    .dropdown .dropbtn .caret { transition: transform .25s; }
    .dropdown.open > .dropbtn .caret { transform: rotate(180deg); }

    .dropdown-column { min-width: 100%; padding: 0 6px; }
    .dropdown-title { padding-left: 10px; }
    .dropdown-content a { padding: 11px 14px; white-space: normal; }
}

/* BREADCRUMB */
.breadcrumb { background:var(--light); padding:11px 5%; border-bottom:1px solid var(--border); }
.bc-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; gap:8px; font-size:13px; color:var(--gray); }
.bc-inner a { color:var(--blue); text-decoration:none; font-weight:500; }
.bc-sep { color:var(--border); }
.bc-cur { color:var(--navy); font-weight:600; }


/* ===== FOOTER BASE REDESIGN ===== */
    footer {
        background: #0a235e;
        /* Deep Royal Blue */
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        color: #8A94A6;
        font-size: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    footer a {
        color: #8A94A6;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    /* ===== MAIN GRID LAYOUT ===== */
    .footer-grid {
        display: grid;
        /* 5 columns set kiye gaye hain HTML ke hisaab se */
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
        gap: 32px;
        max-width: 1300px;
        margin: 0 auto;
        padding: 60px 5% 40px;
    }

    /* ===== BRAND INFO ===== */
    .footer-brand .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .footer-brand .logo-icon img {
        height: 40px;
        width: auto;
    }

    .footer-brand .logo-text {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
    }

    .footer-brand .logo-text span {
        color: #00C2FF;
        /* Cyan Highlight */
    }

    .footer-brand p {
        line-height: 1.8;
        max-width: 320px;
    }

    /* ===== SOCIAL ICONS ===== */
    .footer-social {
        display: flex;
        gap: 12px;
        margin-top: 24px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-social a:hover {
        background: rgba(0, 194, 255, 0.1);
        color: #00C2FF;
        border-color: #00C2FF;
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 194, 255, 0.2);
    }

    /* ===== COLUMN LINKS & HEADINGS ===== */
    .footer-col h4 {
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 20px 0;
        letter-spacing: 0.5px;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-col li {
        margin-bottom: 14px;
    }

    .footer-col ul a {
        display: inline-block;
    }

    /* Link Hover Slide Effect */
    .footer-col ul a:hover,
    .footer-col ul a.active {
        color: #00C2FF;
        transform: translateX(4px);
    }

    /* ===== CTA BUTTONS ===== */
    .footer-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .btn-footer-outline {
        display: inline-block;
        text-align: center;
        padding: 10px 24px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #E2E8F0;
        border-radius: 50px;
        font-weight: 500;
    }

    .btn-footer-outline:hover {
        background: rgba(0, 194, 255, 0.1);
        color: #00C2FF;
        border-color: #00C2FF;
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 194, 255, 0.2);
    }

    /* ===== CONTACT PILL DESIGN (Adapted from .c-info) ===== */
    .footer-contact .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        background: rgba(255, 255, 255, 0.05);
        padding: 12px 18px;
        border-radius: 20px;
        /* Pill Shape */
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        margin-bottom: 12px;
        line-height: 1.5;
        font-size: 13px;
        color: #E2E8F0;
    }

    .footer-contact .contact-item i {
        margin-top: 3px;
        color: #8A94A6;
        transition: color 0.3s ease;
    }

    /* Contact Hover Glow */
    .footer-contact .contact-item:hover {
        background: rgba(0, 194, 255, 0.1);
        border-color: #00C2FF;
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 194, 255, 0.2);
    }

    .footer-contact .contact-item:hover i,
    .footer-contact .contact-item:hover a {
        color: #00C2FF;
    }

    /* ===== BOTTOM BAR ===== */
    .footer-bottom {
        max-width: 1300px;
        margin: 0 auto;
        padding: 10px 5%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-copy p {
        margin: 4px 0;
    }

    .footer-tagline {
        color: #00C2FF;
        font-weight: 500;
        margin-top: 8px;
    }

    .footer-legal .sep {
        margin: 0 10px;
        opacity: 0.5;
    }

    .footer-legal a:hover {
        color: #00C2FF;
    }

    /* ===== BACK TO TOP BUTTON ===== */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
        background: #00C2FF;
        color: #0a235e;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 194, 255, 0.4);
        transition: all 0.3s ease;
        z-index: 99;
    }

    .back-to-top:hover {
        background: #ffffff;
        transform: translateY(-3px);
    }

    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 1100px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .footer-brand {
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            padding: 30px 5% 10px;
        }

        .footer-bottom {
            flex-direction: column-reverse;
            text-align: center;
            justify-content: center;
        }
    }

    /* END FOOTER STYLES */

/* WHATSAPP BUTTON */
.wa-btn { position:fixed; bottom:28px; right:28px; z-index:999; width:56px; height:56px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(37,211,102,.4); text-decoration:none; animation:wap 2s ease-in-out infinite; }
@keyframes wap { 0%,100% { box-shadow:0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow:0 4px 32px rgba(37,211,102,.7); } }
.wa-btn:hover { transform:scale(1.1); }
.wa-btn svg { width:28px; height:28px; fill:white; }

/* RESPONSIVE COMMON ELEMENTS */
@media(max-width:768px) {
  .footer-grid { grid-template-columns:1fr; }
}

/* COMMON ERP PAGE STYLES */

  .cta-section{background:linear-gradient(135deg,var(--blue) 0%,var(--navy) 100%);padding:80px 5%;text-align:center;position:relative;overflow:hidden}
  .cta-section::before{content:'';position:absolute;top:-50%;left:-10%;width:400px;height:400px;background:radial-gradient(circle,rgba(6,182,212,0.2) 0%,transparent 70%);border-radius:50%}
  .cta-section h2{font-size:44px;font-weight:800;color:white;margin-bottom:16px;position:relative}
  .cta-section p{font-size:18px;color:rgba(255,255,255,0.8);margin-bottom:36px;position:relative;max-width:560px;margin-left:auto;margin-right:auto}
  .cta-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;position:relative}
  .btn-cta-white{padding:16px 36px;background:white;color:var(--blue);border:none;border-radius:10px;font-weight:700;font-size:16px;cursor:pointer;transition:all 0.2s;text-decoration:none;display:inline-block}
  .btn-cta-white:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.2)}
  .btn-cta-outline{padding:16px 36px;border:2px solid rgba(255,255,255,0.4);color:white;border-radius:10px;font-weight:600;font-size:16px;cursor:pointer;background:transparent;transition:all 0.2s;text-decoration:none;display:inline-block}
  .btn-cta-outline:hover{border-color:white;background:rgba(255,255,255,0.1)}
 
section{padding:80px 5%}
.section-tag{display:inline-block;background:var(--light);color:var(--blue);padding:6px 16px;border-radius:50px;font-size:13px;font-weight:600;margin-bottom:16px}
.section-title{font-size:38px;font-weight:800;color:var(--navy);line-height:1.2;margin-bottom:16px}
.section-sub{font-size:17px;color:var(--gray);max-width:560px;line-height:1.7}
.text-center{text-align:center}
.text-center .section-sub{margin:0 auto}
.hero{min-height:100vh;padding:120px 5% 80px;background:linear-gradient(135deg,#0B1F4B 0%,#1A3A7A 50%,#0E3460 100%);position:relative;overflow:hidden;display:flex;align-items:center}
.hero::before{content:'';position:absolute;top:-100px;right:-100px;width:600px;height:600px;background:radial-gradient(circle,rgba(6,182,212,0.15) 0%,transparent 70%);border-radius:50%}
.hero::after{content:'';position:absolute;bottom:-150px;left:-100px;width:500px;height:500px;background:radial-gradient(circle,rgba(59,130,246,0.12) 0%,transparent 70%);border-radius:50%}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;max-width:1200px;margin:0 auto;position:relative;z-index:2;width:100%}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(6,182,212,0.15);border:1px solid rgba(6,182,212,0.3);padding:6px 16px;border-radius:50px;margin-bottom:24px}
.hero-badge span{font-size:13px;color:var(--teal);font-weight:600}
.hero h1{font-size:52px;font-weight:800;line-height:1.15;color:white;margin-bottom:20px}
.hero h1 .accent{color:var(--teal)}
.hero p{font-size:18px;color:rgba(255,255,255,0.75);line-height:1.7;margin-bottom:36px;max-width:480px}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap}
.btn-hero-primary{padding:14px 32px;background:linear-gradient(135deg,var(--teal),var(--sky));color:white;border:none;border-radius:10px;font-weight:700;font-size:16px;cursor:pointer;transition:all .2s;text-decoration:none;display:inline-block}
.btn-hero-primary:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(6,182,212,0.4)}
.btn-hero-outline{padding:14px 32px;border:2px solid rgba(255,255,255,0.3);color:white;border-radius:10px;font-weight:600;font-size:16px;cursor:pointer;background:transparent;transition:all .2s;text-decoration:none;display:inline-block}
.btn-hero-outline:hover{border-color:white;background:rgba(255,255,255,0.1)}
.hero-stats{display:flex;gap:40px;margin-top:48px}
.stat-num{font-family:'Sora',sans-serif;font-size:32px;font-weight:800;color:white}
.stat-label{font-size:13px;color:rgba(255,255,255,0.6);margin-top:2px}
.hero-visual{position:relative}
.hero-card-main{background:rgba(255,255,255,0.08);backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,0.15);border-radius:20px;padding:28px;animation:float 4s ease-in-out infinite}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.card-header{display:flex;align-items:center;gap:12px;margin-bottom:20px}
.card-icon{width:42px;height:42px;background:linear-gradient(135deg,var(--teal),var(--sky));border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:20px}
.card-title{font-family:'Sora',sans-serif;font-weight:700;color:white;font-size:16px}
.card-sub{font-size:12px;color:rgba(255,255,255,0.5)}
.module-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.module-item{background:rgba(255,255,255,0.07);border-radius:10px;padding:12px;display:flex;align-items:center;gap:10px}
.module-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}
.module-name{font-size:13px;color:rgba(255,255,255,0.8);font-weight:500}
.floating-badge{position:absolute;background:white;border-radius:12px;padding:10px 16px;box-shadow:0 8px 32px rgba(0,0,0,0.2);display:flex;align-items:center;gap:8px}
.fb1{top:-20px;right:-20px;animation:float 3s ease-in-out infinite .5s}
.fb2{bottom:-16px;left:-20px;animation:float 3.5s ease-in-out infinite 1s}
.fb-text{font-size:12px;font-weight:700;color:var(--navy)}
.fb-sub{font-size:11px;color:var(--gray)}
.trust-bar{background:white;border-bottom:1px solid var(--border);padding:18px 5%}
.trust-inner{display:flex;align-items:center;justify-content:center;gap:48px;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:8px;font-size:14px;font-weight:500;color:var(--gray)}
.trust-item .dot{width:8px;height:8px;border-radius:50%;background:var(--green)}
.pricing-banner{background:linear-gradient(135deg,var(--teal) 0%,var(--blue) 100%);padding:60px 5%;text-align:center;position:relative;overflow:hidden}
.pricing-banner::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.pricing-banner h2{font-size:36px;font-weight:800;color:white;margin-bottom:12px;position:relative}
.pricing-banner>p{font-size:18px;color:rgba(255,255,255,0.85);margin-bottom:36px;position:relative;max-width:600px;margin-left:auto;margin-right:auto}
.pricing-cards{display:flex;gap:24px;justify-content:center;flex-wrap:wrap;margin-bottom:36px;position:relative}
.price-card{background:white;border-radius:20px;padding:28px 36px;min-width:200px;text-align:center;box-shadow:0 8px 32px rgba(0,0,0,0.12);position:relative}
.price-card.featured{background:var(--navy);border:2px solid var(--teal)}
.price-card .badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--teal);color:white;font-size:11px;font-weight:700;padding:3px 14px;border-radius:50px;white-space:nowrap}
.price-card .inst{font-size:12px;font-weight:700;color:var(--gray);text-transform:uppercase;letter-spacing:0.5px;margin-bottom:8px}
.price-card.featured .inst{color:rgba(255,255,255,0.55)}
.price-card .amount{font-family:'Sora',sans-serif;font-size:46px;font-weight:800;color:var(--blue);line-height:1}
.price-card.featured .amount{color:var(--teal)}
.price-card .per{font-size:13px;color:var(--gray);font-weight:500;margin-top:4px}
.price-card.featured .per{color:rgba(255,255,255,0.5)}
.pricing-features{display:flex;gap:28px;justify-content:center;flex-wrap:wrap;margin-bottom:28px;position:relative}
.pf-item{display:flex;align-items:center;gap:8px;color:white;font-size:15px;font-weight:500}
.pf-item::before{content:'✓';background:rgba(255,255,255,0.2);width:22px;height:22px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;flex-shrink:0}
.features-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:48px}
.feature-card{background:white;border-radius:20px;padding:32px;border:1px solid var(--border);transition:all 0.3s;position:relative;overflow:hidden}
.feature-card::before{content:'';position:absolute;top:0;left:0;width:4px;height:100%;background:linear-gradient(180deg,var(--blue),var(--teal))}
.feature-card:hover{box-shadow:0 12px 40px rgba(26,86,219,0.1);transform:translateY(-4px)}
.feature-icon{width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:16px}
.feature-card h3{font-size:20px;font-weight:700;color:var(--navy);margin-bottom:10px}
.feature-card p{font-size:15px;color:var(--gray);line-height:1.7}
.modules-section{background:var(--light)}
.modules-outer{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:48px}
.module-block{background:white;border-radius:20px;overflow:hidden;border:1px solid var(--border)}
.module-block-header{padding:18px 24px;display:flex;align-items:center;gap:12px}
.module-block-header h3{font-family:'Sora',sans-serif;font-size:16px;font-weight:700;color:white}
.module-block-body{padding:20px 24px}
.module-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.module-list li{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--dark);font-weight:500}
.m-check{width:20px;height:20px;border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:10px;color:white;flex-shrink:0}

/* ==========================================================================
   2. HERO CONTENT SECTION (Text & Dashboard - Top)
   ========================================================================== */
.hero-home {
    min-height: 90vh;
    padding: 140px 5% 80px;
    position: relative; /* Now acts as a standalone block */
    display: flex;
    align-items: center;
    z-index: 2;
    /* Solid Dark Background so text is clearly visible */
    background: linear-gradient(135deg, rgba(11,31,75,0.95) 0%, rgba(26,58,122,0.90) 50%, rgba(6,18,43,0.98) 100%);
}

.hero-home::before {
    content: ''; 
    position: absolute; 
    top: -150px; 
    right: -100px; 
    width: 700px; 
    height: 700px;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%); 
    border-radius: 50%;
    z-index: 0; /* Behind the text */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-badge { margin-bottom: 16px; }
.hero-badge span { 
    background: rgba(255,255,255,0.1); 
    padding: 6px 14px; 
    border-radius: 50px; 
    color: white; 
    font-size: 13px; 
    font-weight: 600; 
    border: 1px solid rgba(255,255,255,0.2); 
    display: inline-block;
}

.hero-home h1 { font-size: 54px; font-weight: 800; line-height: 1.15; color: white; margin-bottom: 24px; }
.hero-home h1 .accent { color: var(--teal, #14b8a6); background: -webkit-linear-gradient(0deg, var(--teal, #14b8a6), var(--sky, #0ea5e9)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-home .hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 16px; }

.hero-stat-strip { display: flex; gap: 0; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); margin-top: 40px;}
.hero-stat { flex: 1; background: rgba(255,255,255,.07); backdrop-filter: blur(10px); padding: 20px 10px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.hero-stat:last-child { border-right: none; }
.hero-stat .hn { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; color: white; margin-bottom: 4px; }
.hero-stat .hl { font-size: 12px; color: rgba(255,255,255,.55); }

/* Hero Dashboard Visuals */
.hero-visual { position: relative; }
.hero-dashboard {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: floatUp 6s ease-in-out infinite;
    width: 100%; 
}
.dash-top { background: rgba(0,0,0,0.2); padding: 12px 20px; display: flex; align-items: center; gap: 12px; }
.dash-top .dots { display: flex; gap: 6px; }
.dash-top .d { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.dash-top .d:nth-child(1) { background: #EF4444; }
.dash-top .d:nth-child(2) { background: #F59E0B; }
.dash-top .d:nth-child(3) { background: #10B981; }
.dash-title { color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 600; letter-spacing: 1px; }
.dash-inner { padding: 24px; }
.dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.d-card { background: rgba(255,255,255,0.08); padding: 16px; border-radius: 12px; text-align: center; }
.d-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; margin: 0 auto 10px; color: white; }
.d-val { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: white; margin-bottom: 4px; }
.d-lbl { font-size: 11px; color: rgba(255,255,255,0.6); }

.dash-chart { background: rgba(0,0,0,0.15); border-radius: 12px; padding: 20px; }
.chart-title { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 16px; font-weight: 600; text-transform: uppercase; }
.chart-bars { display: flex; justify-content: space-between; align-items: flex-end; height: 100px; gap: 10px; }
.bar-group { display: flex; gap: 4px; align-items: flex-end; height: 100%; flex: 1; }
.bar { width: 100%; border-radius: 4px 4px 0 0; }
.b-rev { background: var(--teal, #14b8a6); }
.b-exp { background: var(--blue, #3b82f6); }

.floating-alert { position: absolute; background: white; border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 12px 32px rgba(0,0,0,0.15); z-index: 4; }
.fa-1 { top: -20px; right: -30px; animation: floatUp 4s ease-in-out infinite 0.5s; }
.fa-2 { bottom: -20px; left: -30px; animation: floatUp 5s ease-in-out infinite 1s; }
.fa-icon { font-size: 24px; }
.fa-title { font-size: 13px; font-weight: 700; color: var(--navy, #0f172a); }
.fa-sub { font-size: 11px; color: var(--gray, #64748b); margin-top: 2px; }

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==========================================================================
   HERO IMAGE SLIDER - FIXED
   ========================================================================== */

.hero-slider-section {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 15 / 10;
    /* height: 600px; */
    overflow: hidden;
    background: #f0f4ff;
}


.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    animation: heroSlide 20s infinite;
}


.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center center;
    display: block;
}


/* .hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
} */

/* Slide animation timing */
.hero-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-slider .slide:nth-child(2) { animation-delay: 5s; }
.hero-slider .slide:nth-child(3) { animation-delay: 10s; }
.hero-slider .slide:nth-child(4) { animation-delay: 15s; }

@keyframes heroSlide {
    0% { opacity: 0; visibility: hidden; }
    3% { opacity: 1; visibility: visible; }
    22% { opacity: 1; visibility: visible; }
    25% { opacity: 0; visibility: hidden; }
    100% { opacity: 0; visibility: hidden; }
}

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

@media (max-width: 992px) {
    .hero-slider {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }
    .hero-slider .slide img {
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        aspect-ratio: 16 / 10;
    }
    .hero-slider .slide img {
        object-fit: cover;
    }
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 992px) {

    .hero-slider {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .hero-slider .slide img {
        object-fit: contain;
    }
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 576px) {

    .hero-slider-section {
        padding: 0;
    }

    .hero-slider {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .hero-slider .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* ==========================================================================
   4. MOBILE RESPONSIVENESS (All combined)
   ========================================================================== */
@media(max-width: 992px) {
    /* Mobile Nav rules are defined once in the DROPDOWN/MOBILE STYLES
       section above — intentionally not duplicated here. */

    /* Hero Section Fixes */
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-home { padding-top: 120px; padding-bottom: 60px; }
    .hero-home h1 { font-size: 40px; }
    .hero-home .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-stat-strip { flex-wrap: wrap; }
    .hero-stat { flex: 1 1 30%; border-bottom: 1px solid rgba(255,255,255,.1); }
    .floating-alert { display: none; }
}

@media(max-width: 576px) {
    /* Hero Micro Adjustments */
    .hero-home h1 { font-size: 32px; }
    .hero-btns { flex-direction: column; gap: 12px; width: 100%; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; text-align: center; box-sizing: border-box; }
    .hero-stat { flex: 1 1 45%; }
    .hero-stat:nth-child(even) { border-right: none; }
    
    /* Dashboard Fixes */
    .dash-cards { grid-template-columns: 1fr; gap: 12px; }
    .dash-inner { padding: 16px; }
    .d-card { display: flex; align-items: center; text-align: left; gap: 16px; padding: 12px; }
    .d-icon { margin: 0; }
    .d-val { font-size: 18px; margin-bottom: 0; }
}

/* END HERO SECTION */



/* TRUST STRIP */
.home-trust-strip {
    background: #f8fafc;
    padding: 40px 0;
    overflow: hidden;
}

.home-trust-strip p {
    font-size: 13px;
    font-weight: 700;
    /* color: #6b7280; */
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Slider */
.trust-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.trust-track {
    display: flex;
    width: max-content;
    animation: scrollClients 35s linear infinite;
}

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

.t-logo {
    flex-shrink: 0;
    margin: 0 40px;
    white-space: nowrap;
}

.t-logo a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    color: #6b7280;
    transition: .3s;
}

.t-logo a:hover {
    color: #0f2d69;
}

@keyframes scrollClients {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* SOLUTIONS GRID */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.sol-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sol-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(26,86,219,0.08);
  border-color: var(--blue);
}
.sol-card.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 8px 24px rgba(6,182,212,0.1);
}
.sol-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: white; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 50px; text-transform: uppercase;
}
.sol-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  margin-bottom: 20px; color: white;
}
.sol-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.sol-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.sol-link { font-size: 13px; font-weight: 700; color: var(--blue); margin-top: auto; }
.sol-card:hover .sol-link { color: var(--teal); }

/* CORE FEATURES */

 /* Core Grid Styling */
    .core-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
        gap: 30px;
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 10px;
    }

    .core-box {
        background: var(--white);
        padding: 40px;
        border-radius: 20px;
        border: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(11, 31, 75, 0.05);
        text-align: center;
        transition: all 0.3s ease;
    }

    .core-box:hover {
        transform: translateY(-10px);
        border-color: var(--blue);
        box-shadow: 0 20px 40px rgba(11, 31, 75, 0.1);
    }
/* .core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.core-box { text-align: left; } */
.cb-icon {
  width: 48px; height: 48px; background: white; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px; border: 1px solid var(--border);
}
.core-box h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.core-box p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* MODULE SPLIT SECTION */
.module-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ms-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.ms-list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--dark); }
.ms-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; background: rgba(16,185,129,0.15); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: bold; }
.grid-layout-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gl-item {
  padding: 32px 20px;
  border-radius: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.3s;
}
.gl-item:hover { transform: scale(1.05); }

/* ONBOARDING STEPS */
.steps-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
  position: relative;
}
.steps-row::before {
  content: ''; position: absolute; top: 24px; left: 10%; right: 10%;
  height: 2px; background: rgba(255,255,255,0.1); z-index: 1;
}
.step-item {
  flex: 1; text-align: center; position: relative; z-index: 2;
}
.si-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); color: white; font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; border: 4px solid var(--navy);
}
.step-item h4 { color: white; font-size: 16px; margin-bottom: 10px; }
.step-item p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; }

/* FINAL CTA */
.cta-home {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  padding: 100px 5%; position: relative; overflow: hidden; color: white;
}
.cta-home h2 { font-size: 48px; font-weight: 800; margin-bottom: 16px; }
.cta-home p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 40px; }

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .hero-grid, .module-split-grid { grid-template-columns: 1fr; }
  .hero-home { padding-top: 100px; text-align: center; }
  .hero-home .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .floating-alert { display: none; } /* Hide floating badges on mobile for cleaner look */
  
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .core-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { flex-direction: column; gap: 40px; }
  .steps-row::before { display: none; }
}

@media (max-width: 600px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .core-grid { grid-template-columns: 1fr; }
  .hero-home h1 { font-size: 38px; }
}

    .hero-stat-strip{display:flex;gap:0;border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,.15);}
.hero-stat{flex:1;background:rgba(255,255,255,.07);backdrop-filter:blur(10px);padding:20px 24px;text-align:center;border-right:1px solid rgba(255,255,255,.1);}
.hero-stat:last-child{border-right:none;}
.hero-stat .hn{font-family:'Sora',sans-serif;font-size:30px;font-weight:800;color:white;margin-bottom:4px;}
.hero-stat .hl{font-size:13px;color:rgba(255,255,255,.55);}

/* ==========================================================================
   BUTTON STYLES (GLOBAL)
   ========================================================================== */

/* 1. General Buttons */
.btn-primary { 
    padding: 9px 22px; 
    background: linear-gradient(135deg, var(--blue), var(--teal)); 
    color: white !important; 
    border: none; 
    border-radius: 8px; 
    font-weight: 600; 
    font-size: 14px; 
    cursor: pointer; 
    transition: all 0.2s; 
    text-decoration: none; 
    display: inline-block; 
}
.btn-primary:hover { 
    opacity: 0.9; 
    transform: translateY(-1px); 
    box-shadow: 0 4px 16px rgba(26,86,219,0.3); 
}

.btn-outline { 
    padding: 8px 20px; 
    border: 2px solid var(--blue); 
    color: var(--blue) !important; 
    border-radius: 8px; 
    font-weight: 600; 
    font-size: 14px; 
    cursor: pointer; 
    background: transparent; 
    transition: all 0.2s; 
    text-decoration: none; 
    display: inline-block; 
}
.btn-outline:hover { 
    background: var(--blue); 
    color: white !important; 
}

/* 2. Hero Section Buttons */
.hero-btns { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
}
.btn-hero-primary { 
    padding: 14px 32px; 
    background: linear-gradient(135deg, var(--teal), var(--sky)); 
    color: white !important; 
    border: none; 
    border-radius: 10px; 
    font-weight: 700; 
    font-size: 16px; 
    cursor: pointer; 
    transition: all 0.2s; 
    text-decoration: none; 
    display: inline-block; 
}
.btn-hero-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 24px rgba(6,182,212,0.4); 
}

.btn-hero-outline { 
    padding: 14px 32px; 
    border: 2px solid rgba(255,255,255,0.3); 
    color: white !important; 
    border-radius: 10px; 
    font-weight: 600; 
    font-size: 16px; 
    cursor: pointer; 
    background: transparent; 
    transition: all 0.2s; 
    text-decoration: none; 
    display: inline-block; 
}
.btn-hero-outline:hover { 
    border-color: white; 
    background: rgba(255,255,255,0.1); 
}

/* 3. CTA (Call To Action) Bottom Section Buttons */
.cta-btns { 
    display: flex; 
    gap: 16px; 
    justify-content: center; 
    flex-wrap: wrap; 
    position: relative; 
}
.btn-cta-w, .btn-cta-white { 
    padding: 16px 36px; 
    background: white; 
    color: var(--blue) !important; 
    border: none; 
    border-radius: 10px; 
    font-weight: 700; 
    font-size: 16px; 
    cursor: pointer; 
    transition: all 0.2s; 
    text-decoration: none; 
    display: inline-block; 
}
.btn-cta-w:hover, .btn-cta-white:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 24px rgba(0,0,0,0.2); 
}

.btn-cta-o, .btn-cta-outline { 
    padding: 16px 36px; 
    border: 2px solid rgba(255,255,255,0.4); 
    color: white !important; 
    border-radius: 10px; 
    font-weight: 600; 
    font-size: 16px; 
    cursor: pointer; 
    background: transparent; 
    transition: all 0.2s; 
    text-decoration: none; 
    display: inline-block; 
}
.btn-cta-o:hover, .btn-cta-outline:hover { 
    border-color: white; 
    background: rgba(255,255,255,0.1); 
}

end home page

/* CONTACT */
.contact-section { background:var(--light); }
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:60px; align-items:start; margin-top:48px; }
.contact-info-panel { background:linear-gradient(145deg,var(--navy),#1A3060); border-radius:24px; padding:36px; color:white; }
.contact-info-panel h3 { font-size:24px; font-weight:800; margin-bottom:10px; color:white; }
.contact-info-panel > p { font-size:15px; color:rgba(255,255,255,0.65); line-height:1.7; margin-bottom:32px; }
.contact-details { display:flex; flex-direction:column; gap:16px; }
.contact-detail { display:flex; align-items:center; gap:14px; }
.cd-icon { width:40px; height:40px; border-radius:12px; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.cd-label { font-size:11px; color:rgba(255,255,255,0.45); margin-bottom:2px; font-weight:600; text-transform:uppercase; letter-spacing:0.5px; }
.cd-value { font-size:14px; color:white; font-weight:600; }
.contact-form-panel { background:white; border-radius:24px; padding:36px; border:1px solid var(--border); box-shadow:0 4px 20px rgba(26,86,219,0.05); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:6px; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:12px 14px; border:1.5px solid var(--border); border-radius:10px; font-family:'DM Sans',sans-serif; font-size:14px; color:var(--dark); background:var(--light); transition:border-color 0.2s; outline:none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--blue); background:white; }
.form-group textarea { resize:vertical; min-height:100px; }
.btn-submit { width:100%; padding:15px; background:linear-gradient(135deg,var(--blue),var(--teal)); color:white; border:none; border-radius:10px; font-family:'Sora',sans-serif; font-weight:700; font-size:16px; cursor:pointer; transition:all 0.2s; box-shadow:0 4px 16px rgba(26,86,219,0.3); }
.btn-submit:hover { opacity:0.92; transform:translateY(-1px); }

/* --- NEW MAP STYLING --- */
.contact-map-wrapper { 
  margin-top: 48px; 
  background: white; 
  padding: 12px; 
  border-radius: 24px; 
  border: 1px solid var(--border); 
  box-shadow: 0 4px 20px rgba(26,86,219,0.05);
}
.contact-map-wrapper iframe { 
  width: 100%; 
  height: 400px; 
  border: none; 
  border-radius: 16px; 
  display: block; 
}

/* Responsive */
@media(max-width:768px) {
  .contact-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .contact-map-wrapper iframe { height: 300px; } /* Map thoda chhota ho jayega mobile par */
}

/* END CONTACT */

/* PRICING BANNER */
.pricing-banner { 
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%); 
  padding: 80px 5%; 
  text-align: center; 
  position: relative; 
  overflow: hidden; 
}
.pricing-banner::before { 
  content: ''; 
  position: absolute; 
  top: 0; left: 0; right: 0; bottom: 0; 
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); 
}
.pricing-banner h2 { 
  font-size: 40px; 
  font-weight: 800; 
  color: white; 
  margin-bottom: 12px; 
  position: relative; 
}
.pricing-banner > p { 
  font-size: 18px; 
  color: rgba(255,255,255,0.85); 
  margin-bottom: 48px; 
  position: relative; 
  max-width: 640px; 
  margin-left: auto; 
  margin-right: auto; 
}
/* END PRICING BANNER */

/* PRICING CARDS */
.pricing-cards { 
  display: flex; 
  gap: 24px; 
  justify-content: center; 
  flex-wrap: wrap; 
  margin-bottom: 60px; 
  position: relative; 
}
.price-card { 
  background: white; 
  border-radius: 20px; 
  padding: 36px 32px; 
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  text-align: center; 
  box-shadow: 0 12px 40px rgba(0,0,0,0.15); 
  position: relative; 
  display: flex;
  flex-direction: column;
}
.price-card.featured { 
  background: var(--navy); 
  border: 2px solid var(--teal); 
  transform: scale(1.05);
  z-index: 2;
}
.price-card.custom { 
  background: linear-gradient(135deg, var(--navy), #1A3A7A); 
  border: 2px solid rgba(255,255,255,0.15); 
}
.price-card .badge { 
  position: absolute; 
  top: -14px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: var(--teal); 
  color: white; 
  font-size: 12px; 
  font-weight: 700; 
  padding: 6px 18px; 
  border-radius: 50px; 
  white-space: nowrap; 
}
.price-card .inst { 
  font-size: 14px; 
  font-weight: 700; 
  color: var(--gray); 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  margin-bottom: 12px; 
}
.price-card.featured .inst, .price-card.custom .inst { color: rgba(255,255,255,0.6); }
.price-card .amount { 
  font-family: 'Sora', sans-serif; 
  font-size: 48px; 
  font-weight: 800; 
  color: var(--blue); 
  line-height: 1; 
}
.price-card.featured .amount { color: var(--teal); }
.price-card.custom .amount { color: white; font-size: 40px; margin-bottom: 8px; }
.price-card .per { 
  font-size: 14px; 
  color: var(--gray); 
  font-weight: 500; 
  margin-top: 6px; 
}
.price-card.featured .per, .price-card.custom .per { color: rgba(255,255,255,0.5); }
.card-desc {
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.price-card.featured .card-desc, .price-card.custom .card-desc {
  border-top-color: rgba(255,255,255,0.1);
}

/* DETAILED PRICING CONTAINER */
.pricing-container {
  background: white;
  border-radius: 24px;
  padding: 48px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.pc-header {
  text-align: center;
  margin-bottom: 40px;
}
.pc-header h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.pc-header p {
  font-size: 16px;
  color: var(--gray);
}
.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.pc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pc-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.pc-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.pc-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.pc-footer {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* Responsive Overrides */
@media(max-width: 900px) {
  .pc-grid { grid-template-columns: 1fr; gap: 24px; }
  .pricing-container { padding: 32px 24px; }
}
@media(max-width: 768px) {
  .pricing-cards { flex-direction: column; align-items: center; }
  .price-card.featured { transform: scale(1); }
  .price-card { min-width: 100%; max-width: 100%; }
}
/* end PRICING */




/* SECTIONS (Common) */
section{padding:80px 5%;}
.max-w{max-width:1200px;margin:0 auto;}
.section-tag{display:inline-block;background:var(--light);color:var(--blue);padding:6px 16px;border-radius:50px;font-size:13px;font-weight:600;margin-bottom:16px;}
.teal-tag{background:rgba(6,182,212,.12);color:var(--teal);}
.green-tag{background:rgba(16,185,129,.12);color:var(--green);}
.orange-tag{background:rgba(245,158,11,.12);color:var(--orange);}
.purple-tag{background:rgba(139,92,246,.12);color:var(--purple);}
.section-title{font-size:38px;font-weight:800;color:var(--navy);line-height:1.2;margin-bottom:16px;}
.section-sub{font-size:17px;color:var(--gray);max-width:580px;line-height:1.8;}
.text-center{text-align:center;}.text-center .section-sub{margin:0 auto;}
/* end SECTIONS (Common) */

/* VISION MISSION */
.vm-section{background:var(--navy);}
.vm-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:48px;}
.vm-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:20px;padding:36px;}
.vm-icon{font-size:44px;margin-bottom:20px;}
.vm-card h3{font-family:'Sora',sans-serif;font-size:26px;font-weight:800;color:white;margin-bottom:14px;}
.vm-card p{font-size:16px;color:rgba(255,255,255,.7);line-height:1.8;}

/* end VISION MISSION */

/* WHY CHOOSE */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:48px;}
.why-card{background:var(--light);border-radius:20px;padding:28px;text-align:center;transition:all .3s;border:1px solid var(--border);}
.why-card:hover{background:white;box-shadow:0 8px 32px rgba(26,86,219,.08);transform:translateY(-4px);}
.why-num{font-family:'Sora',sans-serif;font-size:40px;font-weight:800;color:var(--blue);opacity:.15;line-height:1;margin-bottom:6px;}
.why-icon{font-size:32px;margin-bottom:14px;}
.why-card h3{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:8px;}
.why-card p{font-size:13px;color:var(--gray);line-height:1.65;}

/* WHY CHOOSE  */

/* TIMELINE */
.timeline-section{background:linear-gradient(135deg,#F0F6FF,#E8F4FF);}
.timeline{position:relative;margin-top:52px;}
.timeline::before{content:'';position:absolute;left:50%;top:0;bottom:0;width:3px;background:linear-gradient(180deg,var(--blue),var(--teal));transform:translateX(-50%);border-radius:2px;}
.tl-item{display:flex;gap:0;margin-bottom:48px;position:relative;}
.tl-item:nth-child(odd){flex-direction:row;}
.tl-item:nth-child(even){flex-direction:row-reverse;}
.tl-content{width:calc(50% - 40px);background:white;border-radius:20px;padding:28px;border:1px solid var(--border);box-shadow:0 4px 20px rgba(26,86,219,.06);transition:all .3s;}
.tl-content:hover{box-shadow:0 8px 32px rgba(26,86,219,.1);transform:translateY(-2px);}
.tl-item:nth-child(odd) .tl-content{margin-right:auto;}
.tl-item:nth-child(even) .tl-content{margin-left:auto;}
.tl-dot{position:absolute;left:50%;top:24px;transform:translateX(-50%);width:44px;height:44px;background:linear-gradient(135deg,var(--blue),var(--teal));border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;border:4px solid white;box-shadow:0 4px 12px rgba(26,86,219,.3);z-index:1;}
.tl-year{font-family:'Sora',sans-serif;font-size:13px;font-weight:700;color:var(--teal);margin-bottom:8px;text-transform:uppercase;letter-spacing:1px;}
.tl-content h3{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:8px;}
.tl-content p{font-size:14px;color:var(--gray);line-height:1.7;}

/* END TIMELINE */

/* FOUNDER */
.founder-section{background:white;}
.founder-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:64px;align-items:start;margin-top:48px;}
.founder-cards{display:flex;flex-direction:column;gap:20px;}
.founder-card{background:var(--light);border-radius:24px;padding:32px;border:1px solid var(--border);text-align:center;}
.f-avatar{width:80px;height:80px;border-radius:50%;background:linear-gradient(135deg,var(--blue),var(--teal));display:flex;align-items:center;justify-content:center;font-size:32px;margin:0 auto 16px;}
.founder-card h3{font-size:18px;font-weight:800;color:var(--navy);margin-bottom:4px;}
.founder-card .role{font-size:13px;color:var(--teal);font-weight:600;margin-bottom:12px;}
.founder-card p{font-size:14px;color:var(--gray);line-height:1.7;}
.awards-list{display:flex;flex-direction:column;gap:8px;margin-top:16px;}
.award-item{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--dark);font-weight:500;}
.award-item::before{content:'🏆';font-size:14px;}
.founder-story h3{font-size:26px;font-weight:800;color:var(--navy);margin-bottom:16px;}
.founder-story p{font-size:16px;color:var(--gray);line-height:1.85;margin-bottom:16px;}
.founder-story p:last-child{margin-bottom:0;}
/* end FOUNDER */

/* RECOGNITION */
.recognition-section{background:var(--navy);}
.recognition-section .section-title{color:white;}
.recognition-section .section-sub{color:rgba(255,255,255,.6);}
.awards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px;}
.award-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:20px;padding:28px;text-align:center;transition:all .3s;}
.award-card:hover{background:rgba(255,255,255,.1);transform:translateY(-4px);}
.award-emoji{font-size:40px;margin-bottom:16px;}
.award-card h3{font-size:16px;font-weight:700;color:white;margin-bottom:8px;}
.award-card p{font-size:13px;color:rgba(255,255,255,.55);line-height:1.6;}
/* end RECOGNITION */

/* RESPONSIVE */
@media(max-width:1024px){
  .about-grid,.vm-grid,.founder-grid { grid-template-columns:1fr; gap:32px; }
  .why-grid,.awards-grid { grid-template-columns:1fr 1fr; }
  .section-title { font-size:32px; }
}

@media(max-width:768px){
  .about-grid,.vm-grid,.founder-grid { grid-template-columns:1fr; gap:28px; }
  .why-grid,.awards-grid { grid-template-columns:1fr; }
  .timeline::before{left:20px;}
  .tl-item,.tl-item:nth-child(even){flex-direction:column;}
  .tl-content,.tl-item:nth-child(odd) .tl-content,.tl-item:nth-child(even) .tl-content{width:calc(100% - 40px);margin:0 0 0 40px;}
  .tl-dot{left:20px;}
  .founder-card,.vm-card,.award-card,.why-card{padding:22px;}
}

@media(max-width:576px){
  .section-title{font-size:28px;line-height:1.25;}
  .section-sub{font-size:15px;line-height:1.75;}
  .about-grid{margin-top:32px;gap:24px;}
  .ah-item{padding:16px;gap:12px;align-items:flex-start;}
  .ah-icon{width:40px;height:40px;font-size:18px;}
  .ah-item h4{font-size:14px;}
  .ah-item p{font-size:12px;}
  .vm-card{padding:20px;}
  .vm-card h3{font-size:22px;}
  .why-grid,.awards-grid{gap:16px;margin-top:32px;}
  .why-card,.award-card{padding:18px;}
  .founder-grid{gap:24px;margin-top:32px;}
  .founder-card{padding:20px;}
  .founder-story h3{font-size:22px;}
  .timeline{margin-top:36px;}
  .tl-content{padding:18px;margin-left:36px;}
  .tl-content h3{font-size:16px;}
  .tl-content p{font-size:13px;}
}
/* END RESPONSIVE */



/* FEATURES GRID & CARDS */
.features-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
  margin-top: 48px; 
}
.feature-card { 
  background: white; 
  border-radius: 20px; 
  padding: 32px; 
  border: 1px solid var(--border); 
  transition: all 0.3s; 
  position: relative; 
  overflow: hidden; 
}
/* Card Left Border Gradient */
.feature-card::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 4px; 
  height: 100%; 
  background: linear-gradient(180deg, var(--blue), var(--teal)); 
}
/* Hover Animation */
.feature-card:hover { 
  box-shadow: 0 12px 40px rgba(26,86,219,0.1); 
  transform: translateY(-4px); 
}
.feature-icon { 
  width: 52px; 
  height: 52px; 
  border-radius: 14px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 24px; 
  margin-bottom: 16px; 
}
.feature-card h3 { 
  font-size: 20px; 
  font-weight: 700; 
  color: var(--navy); 
  margin-bottom: 10px; 
}
.feature-card p { 
  font-size: 15px; 
  color: var(--gray); 
  line-height: 1.7; 
}

/* WHY CHOOSE / HOW IT WORKS / TESTIMONIALS */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.why-card { background: white; border-radius: 20px; padding: 28px; border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(26, 86, 219, 0.06); transition: all 0.3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26, 86, 219, 0.10); }
.why-num { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800; color: var(--blue); opacity: 0.16; line-height: 1; margin-bottom: 6px; }
.why-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 28px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--teal), var(--blue)); opacity: 0.18; z-index: 0; }
.step-card { background: white; border-radius: 20px; padding: 28px 20px; text-align: center; border: 1px solid var(--border); position: relative; z-index: 1; transition: all 0.3s; }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(26, 86, 219, 0.10); border-color: var(--sky); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--teal)); color: white; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.step-icon { font-size: 30px; margin-bottom: 10px; }
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)); border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; padding: 28px; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18); }
.testimonial-card p { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--blue)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; color: white; margin-bottom: 2px; }
.author-role { font-size: 12px; color: rgba(255,255,255,0.72); }
.stars { color: #FBBF24; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }

/* RESPONSIVE DESIGN FOR MOBILE */
@media(max-width: 1024px) {
  .why-grid, .steps-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}

@media(max-width: 768px) {
  .features-grid, .why-grid, .steps-grid, .testimonials-grid { grid-template-columns: 1fr; }
}

/* end FEATURES GRID & CARDS */



    /* ==========================================================================
   COMMON INNER PAGE HERO (ANIMATED)
   ========================================================================== */

    .common-hero {
        position: relative;
        padding: 160px 5% 100px;
        overflow: hidden;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 480px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* ---------------------------------
   THEMES (Dark / Light)
   --------------------------------- */
    .dark-hero {
        background: linear-gradient(135deg, #0B1F4B 0%, #1A3A7A 50%, #0E3460 100%);
    }

    .dark-hero .ch-title {
        color: white;
    }

    .dark-hero .ch-title .accent {
        color: var(--teal);
    }

    .dark-hero .ch-breadcrumb {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .dark-hero .ch-breadcrumb a {
        color: white;
    }

    .dark-hero .ch-breadcrumb .sep {
        color: rgba(255, 255, 255, 0.4);
    }

    /* Background Floating Shapes (For Dark) */
    .dark-hero .ch-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 0;
        animation: slowFloat 8s ease-in-out infinite;
    }

    .dark-hero .ch-shape-1 {
        width: 500px;
        height: 500px;
        background: rgba(6, 182, 212, 0.12);
        /* Teal Glow */
        top: -150px;
        left: -100px;
    }

    .dark-hero .ch-shape-2 {
        width: 400px;
        height: 400px;
        background: rgba(26, 86, 219, 0.12);
        /* Blue Glow */
        bottom: -150px;
        right: -100px;
        animation-delay: -4s;
    }

    /* Light Theme Variables */
    .light-hero {
        background: var(--light);
    }

    .light-hero .ch-title {
        color: var(--navy);
    }

    .light-hero .ch-title .accent {
        color: var(--blue);
    }

    .light-hero .ch-breadcrumb {
        background: white;
        border: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(26, 86, 219, 0.05);
    }

    .light-hero .ch-breadcrumb a {
        color: var(--navy);
    }

    .light-hero .ch-breadcrumb .sep {
        color: var(--gray);
    }

    /* ---------------------------------
   CONTENT STYLING (Badge, Title, Breadcrumb)
   --------------------------------- */
    .ch-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Home Page jaisa Badge */
    .ch-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(6, 182, 212, 0.15);
        border: 1px solid rgba(6, 182, 212, 0.3);
        padding: 6px 18px;
        border-radius: 50px;
        margin-bottom: 24px;
    }

    .ch-badge span {
        font-size: 13px;
        color: var(--teal);
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    /* Title Styling */
    .ch-title {
        font-size: 46px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 28px;
    }

    /* Breadcrumb Styling */
    .ch-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 12px 28px;
        border-radius: 50px;
    }

    .ch-breadcrumb a {
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s;
    }

    .ch-breadcrumb a:hover {
        color: var(--teal) !important;
        transform: translateY(-1px);
    }

    .ch-breadcrumb .sep {
        font-size: 16px;
        font-family: Arial, sans-serif;
        /* For clean arrow */
    }

    .ch-breadcrumb .current {
        color: var(--teal);
        font-size: 14px;
        font-weight: 700;
    }

    /* ---------------------------------
   CONTINUOUS FLOATING ANIMATION
   --------------------------------- */
    @keyframes slowFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-40px);
        }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .ch-title {
            font-size: 34px;
        }

        .common-hero {
            padding: 130px 5% 70px;
            min-height: 420px;
            background-position: center center;
        }
    }
