    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
     :root {
        --primary: #29B6E8;
        --primary-dark: #1a9fd0;
        --text-dark: #1a1a2e;
        --text-mid: #444;
        --text-light: #666;
        --border: #e8f0fe;
        --shadow: 0 8px 40px rgba(41, 182, 232, 0.12), 0 2px 12px rgba(0, 0, 0, 0.07);
        --nav-height: 70px;
    }
    
    body {
        font-family: 'Outfit', sans-serif;
        min-height: 100vh;
    }
    
    nav {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 2px 20px rgba(41, 182, 232, 0.07);
        height: var(--nav-height);
    }
    
    .nav-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        flex-shrink: 0;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }
    
    .logo-name {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
        letter-spacing: -0.3px;
    }
    
    .logo-img {
        max-width: 180px;
        height: auto;
        display: block;
    }
    
    .logo-name span {
        color: var(--primary);
    }
    
    .logo-tagline {
        font-size: 9px;
        font-weight: 400;
        color: var(--text-light);
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2px;
        list-style: none;
        margin: 0;
        margin-left: auto;
        padding: 0;
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 8px 14px;
        border-radius: 8px;
        font-size: 14.5px;
        font-weight: 500;
        color: var(--text-mid);
        text-decoration: none;
        cursor: pointer;
        transition: all 0.18s ease;
        white-space: nowrap;
        border: none;
        background: none;
    }
    
    .nav-link:hover,
    .nav-item:hover>.nav-link {
        color: var(--primary);
        background: rgba(41, 182, 232, 0.07);
    }
    
    .chevron {
        width: 13px;
        height: 13px;
        stroke: currentColor;
        transition: transform 0.22s ease;
        flex-shrink: 0;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    
    .nav-item:hover>.nav-link .chevron {
        transform: rotate(180deg);
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .nav-signin {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 18px;
        background: rgba(41, 182, 232, 0.07);
        color: var(--primary);
        font-size: 14px;
        font-weight: 600;
        border: 1.5px solid var(--primary);
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .nav-signin:hover {
        color: #fff;
        border-color: var(--primary-dark);
        background: var(--primary);
        box-shadow: 0 4px 15px rgba(41, 182, 232, 0.35);
        transform: translateY(-1px);
    }

    .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 22px;
        background: var(--primary);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(41, 182, 232, 0.35);
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .nav-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 22px rgba(41, 182, 232, 0.45);
        background: var(--primary-dark);
    }
    /* DROPDOWN */
    
    .nav-item {
        padding-bottom: 12px;
        margin-bottom: -12px;
    }

    .dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        background: #fff;
        border: 1px solid #e5eef8;
        border-radius: 18px;
        box-shadow: var(--shadow);
        padding: 18px 16px;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
        min-width: 220px;
    }

    .nav-item:hover>.dropdown {
        opacity: 1;
        pointer-events: all;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0s;
    }
    
    .dropdown.channels {
        width: 810px;
        transform: translateX(-55%) translateY(8px);
    }

    .nav-item:hover>.dropdown.channels {
        transform: translateX(-55%) translateY(0);
    }

    .nav-item:hover {
        transition-delay: 0s;
    }
    
    .dropdown-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0 6px;
    }
    
    .dropdown-col-title {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.1px;
        text-transform: uppercase;
        color: #94a3b8;
        padding: 2px 10px 10px;
        margin-bottom: 4px;
        border-bottom: 1.5px solid #f1f5f9;
        display: block;
        width: 100%;
    }
    
    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 6px 8px;
        border-radius: 9px;
        text-decoration: none;
        color: var(--text-dark);
        font-size: 13px;
        font-weight: 400;
        transition: all 0.15s ease;
        cursor: pointer;
        margin-top: 2px;
        line-height: 1.3;
    }
    
    .dropdown-item:hover {
        background: rgba(41, 182, 232, 0.08);
        color: var(--primary);
    }
    
    .ibox {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: transform 0.15s ease;
    }
    
    .ibox svg {
        width: 17px;
        height: 17px;
        display: block;
    }
    
    .dropdown-item:hover .ibox {
        transform: scale(1.1);
    }
    
    .solutions-list {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    /* HAMBURGER */
    
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 6px;
        border-radius: 8px;
        background: none;
        border: none;
    }
    
    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text-dark);
        border-radius: 2px;
        transition: all 0.25s ease;
    }
    
    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    /* MOBILE */
    
    .mobile-nav {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        overflow-y: auto;
        z-index: 999;
        padding: 12px 20px 32px;
        flex-direction: column;
        gap: 2px;
    }
    
    .mobile-nav.open {
        display: flex;
    }
    
    .msec-title {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.3px;
        text-transform: uppercase;
        color: var(--primary);
        padding: 14px 8px 6px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 4px;
    }
    
    .mlink {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 8px;
        border-radius: 9px;
        text-decoration: none;
        color: var(--text-dark);
        font-size: 13.5px;
        transition: background 0.15s;
    }
    
    .mlink:hover {
        background: rgba(41, 182, 232, 0.08);
        color: var(--primary);
    }
    
    .mlink-plain {
        display: block;
        padding: 10px 8px;
        border-radius: 8px;
        text-decoration: none;
        color: var(--text-mid);
        font-size: 14.5px;
        font-weight: 500;
        transition: background 0.15s;
    }
    
    .mlink-plain:hover {
        background: rgba(41, 182, 232, 0.07);
        color: var(--primary);
    }
    
    .msignin {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
        padding: 12px;
        background: rgba(41, 182, 232, 0.07);
        color: var(--primary);
        font-weight: 600;
        font-size: 15px;
        border: 1.5px solid var(--primary);
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .msignin:hover {
        color: #fff;
        background: var(--primary);
        border-color: var(--primary-dark);
    }

    .mcta {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        padding: 13px;
        background: var(--primary);
        color: #fff;
        font-weight: 600;
        border-radius: 12px;
        font-size: 15px;
        text-decoration: none;
    }
    
    .page-content {
        max-width: 1280px;
        margin: 0 auto;
    }
    
    @media (max-width: 960px) {
        .nav-links,
        .nav-actions {
            display: none;
        }
        .hamburger {
            display: flex;
        }
        .nav-inner {
            padding: 0 20px;
        }
    }
    /* =========================
   HERO SECTION
========================= */
    /* ══ HERO ══ */
    
    .hero {
        width: 100%;
        position: relative;
        overflow: hidden;
        min-height: 500px;
        display: flex;
        align-items: center;
    }
    /* FIXED background — never changes */
    
    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        background: linear-gradient(135deg, #90ceff21 0%, #03A9F4 100%);
    }
    
    .hero-rings {
        position: absolute;
        right: -60px;
        top: 50%;
        transform: translateY(-50%);
        width: 580px;
        height: 580px;
        z-index: 1;
        pointer-events: none;
    }
    
    .hero-rings circle {
        fill: none;
        stroke: rgba(255, 255, 255, 0.14);
        stroke-width: 1.3;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1347px;
        margin: 0 auto;
        padding: 35px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 52px;
        align-items: center;
    }
    
    .left-col {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .svc-badge {
        display: inline-flex;
        align-items: center;
        padding: 6px 18px;
        border-radius: 33px;
        font-family: 'Sora', sans-serif;
        font-weight: 700;
        font-size: 1.88rem;
        width: fit-content;
        color: #FF5722;
        border: 2.5px solid #ffffff;
        backdrop-filter: blur(6px);
        transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }

    .left-col h2 {
        font-family: 'Sora', sans-serif;
        font-size: clamp(1.9rem, 3.6vw, 3rem);
        font-weight: 800;
        line-height: 1.1;
        text-shadow: 0 2px 20px rgb(0 0 0 / 0%);
        background: linear-gradient(90deg, #000000 0%, #000000 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }

    .left-col .sub {
        font-size: 1rem;
        color: #3c3a3ae0;
        line-height: 1.72;
        max-width: 400px;
        transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }
    
    .cta-btn {
        display: inline-block;
        padding: 14px 36px;
        border-radius: 50px;
        font-family: 'Sora', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        color: #333;
        background: #fff;
        border: none;
        cursor: pointer;
        width: fit-content;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        transition: transform 0.4s ease, box-shadow 0.2s, opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        letter-spacing: 0.02em;
    }

    .cta-btn:hover {
        transform: scale(1.04);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    }
    
    .tabs {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom:30px;
    }
    
    .tab-pill {
        padding: 7px 12px;
        border-radius: 50px;
        font-family: 'Sora', sans-serif;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        border: 1.5px solid rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.16);
        color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(4px);
        transition: all 0.25s;
    }
    
    .tab-pill.active,
    .tab-pill:hover {
        background: rgba(255, 255, 255, 0.96);
        color: #222;
        border-color: transparent;
    }
    
    .right-col {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .img-display {
        width: 100%;
        width: 667px;
        position: relative;
        z-index: 2;
        transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }
    
    .img-display img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 18px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
        object-fit: cover;
    }
    
    .msg-bubble {
        padding: 9px 13px;
        border-radius: 14px;
        font-size: 0.84rem;
        line-height: 1.5;
        max-width: 86%;
    }
    
    .msg-bubble.in {
        background: #f0f0f2;
        color: #1c1c1e;
        align-self: flex-start;
        border-bottom-left-radius: 3px;
    }
    
    .rcs-carousel {
        display: flex;
        gap: 8px;
        overflow: hidden;
    }
    
    .rcs-card {
        background: #f8f9fb;
        border-radius: 12px;
        padding: 12px 10px;
        min-width: 108px;
        border: 1px solid #eee;
        text-align: center;
        flex: 1;
    }
    
    .bot-bubble {
        display: flex;
        gap: 7px;
        align-items: flex-start;
    }
    
    .bot-bubble.user {
        flex-direction: row-reverse;
    }
    
    .bot-icon {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.62rem;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .bot-text {
        padding: 8px 12px;
        border-radius: 12px;
        font-size: 0.8rem;
        line-height: 1.45;
        max-width: 82%;
    }
    
    .quick-replies {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 5px;
        margin-left: 33px;
    }
    
    .qr-chip {
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 0.72rem;
        font-weight: 600;
        border: 1.5px solid;
        cursor: pointer;
    }
    
    .email-tag {
        padding: 3px 9px;
        border-radius: 20px;
        font-size: 0.68rem;
        font-weight: 600;
    }
    
    @media (max-width: 920px) {
        .hero-content {
            grid-template-columns: 1fr;
            padding: 48px 32px;
            gap: 36px;
        }
        .visual-card {
            max-width: 100%;
        }
        .hero-rings {
            width: 360px;
            height: 360px;
            right: -40px;
        }
    }
    
    @media (max-width: 580px) {
        .hero-content {
            padding: 36px 20px;
            display:block;
        }
        .left-col h2 {
            font-size: 1.75rem;
        }
        .hero-rings {
            display: none;
        }
    }
    /**************************logo**********************/
    
    .navbar-brand {
        display: flex;
        align-items: center;
    }
    
    .logo-img {
        width: 132px;
        /* Increased Size */
        height: auto;
        object-fit: contain;
        animation: logoFloat 3s ease-in-out infinite;
    }
    /* Logo Animation */
    
    @keyframes logoFloat {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-6px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    /* Responsive */
    
    @media(max-width:768px) {
        .logo-img {
            width: 70px;
        }
    }
    /* =========================
   BRAND SECTION
========================= */
    
    .brand-section {
        background: #ffffff;
        padding: 50px 0 50px;
        overflow: hidden;
    }
    /* =========================
   STATS
========================= */
    
    .stats-box {
        transition: 0.4s;
    }
    
    .stats-box:hover {
        transform: translateY(-8px);
    }
    
    .stats-box h2 {
        font-size: 40px;
        font-weight: 800;
        color: #001b44;
        margin-bottom: 10px;
    }
    
    .stats-box p {
        font-size: 17px;
        color: #5f6d85;
        margin: 0;
    }
    /* =========================
   DIVIDER
========================= */
    
    .brand-divider {
        width: 100%;
        height: 1px;
        background: #dfe5ee;
        margin: 55px 0 18px;
    }
    /* =========================
   TITLE
========================= */
    
    .brand-title {
        text-align: center;
        font-size: 14px;
        letter-spacing: 4px;
        color: #4d6488;
        font-weight: 700;
        margin-bottom: 45px;
    }
    /* =========================
   LOGO SLIDER
========================= */
    
    .logo-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .logo-slider::before,
    .logo-slider::after {
        content: "";
        position: absolute;
        top: 0;
        width: 120px;
        height: 100%;
        z-index: 2;
    }
    
    .logo-slider::before {
        left: 0;
        background: linear-gradient(to right, #f7f8fa, transparent);
    }
    
    .logo-slider::after {
        right: 0;
        background: linear-gradient(to left, #f7f8fa, transparent);
    }
    
    .logo-track {
        display: flex;
        align-items: center;
        width: max-content;
        animation: scrollLogo 28s linear infinite;
        will-change: transform;
        transform: translateZ(0);
    }
    
    .logo-slider:hover .logo-track {
        animation-play-state: paused;
    }
    /* =========================
   LOGO ITEM
========================= */
    
    .logo-item {
        font-size: 38px;
        font-weight: 700;
        color: #98a3b3;
        margin: 0 55px;
        white-space: nowrap;
        transition: 0.4s;
        position: relative;
    }

    .logo-item img {
        height: 64px;
        width: 75%;
        max-width: 200px;
        object-fit: contain;
        display: block;
        backface-visibility: hidden;
        transform: translateZ(0);
        image-rendering: -webkit-optimize-contrast;
    }

    .logo-item span {
        color: #c3cad6;
    }

    .logo-item:hover {
        color: #0d47a1;
        transform: scale(1.08);
    }
    /* Floating Animation */

    .logo-item:nth-child(odd) {
        animation: floatLogo 3s ease-in-out infinite;
    }

    .logo-item:nth-child(even) {
        animation: floatLogo 4s ease-in-out infinite;
    }
    /* =========================
   ANIMATIONS
========================= */

    @keyframes scrollLogo {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }

    @keyframes floatLogo {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-6px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    /* =========================
   RESPONSIVE
========================= */
    
    @media(max-width:991px) {
        .stats-box h2 {
            font-size: 42px;
        }
        .logo-item {
            font-size: 30px;
            margin: 0 35px;
        }
        .logo-item img {
            height: 58px;
        }
    }

    @media(max-width:576px) {
        .brand-section {
            padding: 50px 0 35px;
        }
        .stats-box h2 {
            font-size: 32px;
        }
        .stats-box p {
            font-size: 14px;
        }
        .brand-title {
            font-size: 11px;
            letter-spacing: 2px;
            padding: 0 10px;
        }
        .logo-item {
            font-size: 22px;
            margin: 0 24px;
        }
        .logo-item img {
            height: 42px;
        }
        .logo-slider::before,
        .logo-slider::after {
            width: 50px;
        }
    }
    /*******************************************************************cards************************/
    /*===============================
 CHANNEL SUITE SECTION
================================*/
    
    .channel-suite-section {
        position: relative;
        padding: 50px 0;
        overflow: hidden;
        background: #fff9f194;
    }
    /* Background Glow */
    
    .blur-circle {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        z-index: 0;
    }
    
    .blur1 {
        width: 300px;
        height: 300px;
        background: rgba(0, 102, 255, 0.18);
        top: -100px;
        left: -80px;
    }
    
    .blur2 {
        width: 260px;
        height: 260px;
        background: rgba(0, 200, 150, 0.15);
        bottom: -100px;
        right: -80px;
    }
    /* Heading */
    
    .section-heading {
        max-width: 760px;
        margin: auto;
        margin-bottom: 41px;
        position: relative;
        z-index: 2;
    }
    
    .mini-badge {
        display: inline-block;
        padding: 8px 18px;
        border-radius: 50px;
        background: rgba(0, 102, 255, 0.08);
        color: #0057ff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 25px;
        animation: floatBadge 3s ease-in-out infinite;
    }
    
    .section-heading h2 {
        font-size: 40px;
        line-height: 1.1;
        font-weight: 800;
        color: #071c3d;
        margin-bottom: 22px;
    }
    
    .section-heading p {
        font-size: 18px;
        line-height: 1.8;
        color: #5b6780;
    }
    /* Grid */
    
    .channel-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        position: relative;
        z-index: 2;
    }
    /* Card */
    
    .channel-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 28px;
        padding: 35px 28px;
        transition: 0.4s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    /* Hover Glow */
    
    .channel-card::before {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        background: #15aaff;
        border-radius: 50%;
        top: -70px;
        right: -70px;
        transition: 0.5s;
        z-index: -1;
    }
    .channel-grid .channel-card:nth-child(2n)::before {
        background: #fa494a;
    }
    .channel-grid .channel-card:nth-child(3)::before {
        background: #fdc733;
    }
    .channel-grid .channel-card:nth-child(4)::before {
        background: #4ad348;
    }
    .channel-grid .channel-card:nth-child(6)::before {
        background: #fa494a;
    }
    .channel-grid .channel-card:nth-child(7)::before {
        background: #fdc733;
    }
    .channel-grid .channel-card:nth-child(8)::before {
        background: #4ad348;
    }
    
    .channel-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }
    
    .channel-card:hover::before {
        transform: scale(1.5);
    }
    /* Icon */
    
    .icon-box {
        width: 65px;
        height: 65px;
        border-radius: 18px;
        background: rgba(0, 102, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 28px;
        font-size: 28px;
        color: #0057ff;
        transition: 0.4s;
    }
    
    .icon-box.green {
        background: rgba(0, 200, 150, 0.12);
        color: #00a87e;
    }
    
    .icon-box.blue {
        background: rgba(0, 102, 255, 0.12);
        color: #0057ff;
    }
    
    .channel-card:hover .icon-box {
        transform: rotate(-8deg) scale(1.08);
    }
    /* Text */
    
    .channel-card h4 {
        font-size: 18px;
        font-weight: 700;
        color: #071c3d;
        margin-bottom: 16px;
    }
    
    .channel-card p {
        font-size: 14px;
        line-height: 1.8;
        color: #5f6d85;
        margin-bottom: 28px;
    }
    
    .channel-card a {
        text-decoration: none;
        color: #0057ff;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
        margin-top: auto;
    }
    
    .channel-card a:hover {
        gap: 14px;
    }
    /* Animation */
    
    @keyframes floatBadge {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-6px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    /*===============================
 RESPONSIVE
================================*/
    
    @media(max-width:1200px) {
        .channel-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .section-heading h2 {
            font-size: 52px;
        }
    }
    
    @media(max-width:768px) {
        .channel-suite-section {
            padding: 80px 0;
        }
        .channel-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
        }
        .section-heading h2 {
            font-size: 38px;
        }
        .section-heading p {
            font-size: 16px;
        }
        .channel-card {
            padding: 28px 24px;
        }
          .channel-card::before {
        content: "";
        position: absolute;
        width: 140px;
        height: 150px;
        background: #15aaff;
        border-radius: 50%;
        top: -70px;
        right: -70px;
        transition: 0.5s;
        z-index: -1;
    }
    }
    /***********************************************************Real use cases. Real outcomes./  .nimbus-industry-section {
         /* SECTION */
    
    .nimbus-industry-section {
        padding: 50px 20px;
    }
    
    .nimbus-container {
        max-width: 1333px;
        margin: auto;
    }
    
    .nimbus-top-tag {
        width: fit-content;
        margin: auto;
        padding: 10px 18px;
        border-radius: 50px;
        border: 1px solid #d7e5ff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #0059d6;
        background: #fff;
        margin-bottom: 25px;
        animation: nimbusFadeUp 0.8s ease;
    }
    /* TITLE */
    
    .nimbus-section-title {
        text-align: center;
        font-size: 40px;
        line-height: 1.1;
        font-weight: 800;
        margin-bottom: 22px;
        animation: nimbusFadeUp 1s ease;
    }
    
    .nimbus-section-desc {
        text-align: center;
        max-width: 760px;
        margin: auto;
        font-size: 18px;
        line-height: 1.7;
        color: #5d6b82;
        animation: nimbusFadeUp 1.2s ease;
    }
    /* TABS */
    
    .nimbus-industry-tabs {
        display: flex;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 24px;
        margin-bottom: 45px;
    }
    
    .nimbus-industry-tab {
        padding: 14px 24px;
        border-radius: 50px;
        background: #fff;
        border: 1px solid #e6edf7;
        color: #081c3f;
        font-weight: 600;
        cursor: pointer;
        transition: 0.35s;
        user-select: none;
    }
    
    .nimbus-industry-tab:hover {
        transform: translateY(-3px);
    }
    
    .nimbus-industry-tab.active {
        background: linear-gradient(90deg, #005ed9, #00c2ff);
        color: #fff;
        border: none;
        box-shadow: 0 10px 25px rgba(0, 102, 255, 0.25);
    }
    /* CARD */
    
    .nimbus-industry-card {
        background: #fff;
        border-radius: 40px;
        border: 1px solid #dbe6f4;
        padding: 33px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 80px;
        position: relative;
        overflow: hidden;
        /* height: 550px; */
    }
    
    .nimbus-industry-card.animate {
        animation: nimbusFadeUp 0.5s ease;
    }
    
    .nimbus-industry-card::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(0, 170, 255, 0.08);
        border-radius: 50%;
        top: -100px;
        right: -80px;
        animation: nimbusPulse 5s infinite linear;
    }
    /* LEFT */
    
    .nimbus-card-left {
        flex: 1;
        z-index: 2;
    }
    
    .nimbus-mini-title {
        font-size: 13px;
        font-weight: 700;
        color: #0059d6;
        letter-spacing: 3px;
        margin-bottom: 20px;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nimbus-card-title {
        line-height: 1.2;
        font-weight: 800;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nimbus-card-desc {
        font-size: 14px;
        color: #617089;
        line-height: 1.7;
        margin-bottom: 35px;
        max-width: 580px;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    /* FEATURES */
    
    .nimbus-features-wrap {
        width: 100%;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    
    .nimbus-feature {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: -6px;
        animation: nimbusFadeLeft 1s ease;
    }
    
    .nimbus-feature-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        border-radius: 50%;
        background: #e9f2ff;
        color: #0059d6;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-top: 3px;
    }
    
    .nimbus-feature h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .nimbus-feature p {
        color: #7a879d;
        font-size: 12px;
    }
    /* EXPLORE BUTTON */

    .nimbus-explore-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 30px;
        padding: 12px 28px;
        background: linear-gradient(135deg, #0059d6, #00aaff);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        border-radius: 50px;
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
        animation: nimbusFadeLeft 0.8s ease;
        position: relative;
        overflow: hidden;
        z-index: 2;
    }

    .nimbus-explore-btn svg {
        transition: transform 0.3s ease;
    }

    .nimbus-explore-btn:hover {
        background: linear-gradient(135deg, #003fa3, #0090dd);
        box-shadow: 0 8px 24px rgba(0, 89, 214, 0.35);
        transform: translateY(-2px);
    }

    .nimbus-explore-btn:hover svg {
        transform: translateX(4px);
    }

    .nimbus-explore-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: nimbusShimmer 3s infinite;
    }

    @keyframes nimbusShimmer {
        0% { left: -100%; }
        100% { left: 100%; }
    }

    /* RIGHT */

    .nimbus-card-right {
        flex: 1;
        position: relative;
        z-index: 2;
    }

    .nimbus-industry-image {
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .nimbus-live-box {
        height: 420px;
        border-radius: 28px;
        background: linear-gradient(135deg, #dff4ff, #bff1ea);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nimbus-live-box::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        top: -250px;
        right: -180px;
        animation: nimbusRotate 16s linear infinite;
    }
    
    .nimbus-live-badge {
        position: absolute;
        top: 24px;
        left: 24px;
        background: #fff;
        color: #0059d6;
        font-size: 12px;
        font-weight: 700;
        padding: 8px 16px;
        border-radius: 30px;
        letter-spacing: 1px;
    }
    
    .nimbus-icon-box {
        width: 150px;
        height: 150px;
        background: #fff;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 20px 60px rgba(0, 90, 200, 0.15);
        animation: nimbusFloat 4s ease-in-out infinite;
    }
    
    .nimbus-icon-box img {
        width: 70px;
    }
    
    .nimbus-delivery-status {
        position: absolute;
        bottom: 24px;
        right: 24px;
        background: #fff;
        padding: 14px 22px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        color: #0b2447;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    }
    /* ANIMATION */
    
    @keyframes nimbusFadeUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes nimbusFadeLeft {
        from {
            opacity: 0;
            transform: translateX(-40px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes nimbusFloat {
        0%,
        100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-16px);
        }
    }
    
    @keyframes nimbusRotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
    
    @keyframes nimbusPulse {
        0%,
        100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
    }
    /* RESPONSIVE */
    
    @media(max-width:1100px) {
        .nimbus-industry-card {
            flex-direction: column;
        }
        .nimbus-section-title {
            font-size: 46px;
        }
        .nimbus-card-title {
            font-size: 40px;
        }
    }
    
    @media(max-width:768px) {
        .nimbus-industry-section {
            padding: 60px 15px;
        }
        .nimbus-section-title {
            font-size: 34px;
        }
        .nimbus-section-desc {
            font-size: 18px;
        }
        .nimbus-industry-card {
            padding: 30px 22px;
        }
        .nimbus-card-title {
            font-size: 30px;
        }
        .nimbus-card-desc {
            font-size: 17px;
        }
        .nimbus-feature h4 {
            font-size: 18px;
        }
        .nimbus-live-box {
            height: 320px;
        }
        .nimbus-icon-box {
            width: 120px;
            height: 120px;
        }
        .nimbus-icon-box img {
            width: 55px;
        }
    }
    
    @media(max-width:480px) {
        .nimbus-section-title {
            font-size: 28px;
        }
        .nimbus-industry-tab {
            width: 100%;
            text-align: center;
        }
        .nimbus-card-title {
            font-size: 26px;
        }
        .nimbus-feature h4 {
            font-size: 16px;
        }
        .nimbus-feature p {
            font-size: 14px;
        }
        .nimbus-live-box {
            height: 260px;
        }
    }
    /****************************************************************************************Always reach the customer. Never overspend.*****************************************/
    /* ===== SECTION ===== */
    
     :root {
        --bg: #dff4fc;
        --card-bg: #ffffff;
        --icon-bg: #e6eef7;
        --icon-clr: #4a7abf;
        --vayu-a: #29b5d3;
        --vayu-b: #0076be;
        --dot-clr: #00bdb5;
        --dash-clr: #dedede;
        --lbl: #1a2535;
        --sub: #9aaabb;
        --bdg-bg: rgba(255, 255, 255, .9);
        --bdg-txt: #5a6a7a;
        --head: #0d1520;
        --subt: #8899ab;
    }
    
    .so-wrapper {
        font-family: 'Outfit', sans-serif;
        background: var(--bg);
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 20px
    }
    
    .so-section {
        width: 100%;
        max-width: 920px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px
    }
    
    .so-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center
    }
    
    .so-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: var(--bdg-bg);
        border: 1px solid rgba(0, 0, 0, .07);
        border-radius: 999px;
        padding: 5px 14px 5px 10px;
        font-size: 10.5px;
        font-weight: 600;
        letter-spacing: .09em;
        color: var(--bdg-txt);
        text-transform: uppercase
    }
    
    .so-badge-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #22c55e;
        flex-shrink: 0
    }
    
    .so-heading {
        font-size: 40px;
        font-weight: 800;
        color: var(--head);
        line-height: 1.12;
        letter-spacing: -.025em
    }
    
    .so-subtitle {
        font-size: 18px;
        color: var(--subt);
        line-height: 1.7;
        max-width: 480px;
        font-weight: 400
    }
    
    .so-card {
        background: var(--card-bg);
        border-radius: 20px;
        width: 146%;
        padding: 36px 48px 32px;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, .04), 0 2px 8px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .05)
    }
    
    .so-flow {
        display: flex;
        align-items: flex-start;
        width: 100%;
        gap: 0
    }
    
    .so-node {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        width: 80px
    }
    
    .so-icon {
        width: 60px;
        height: 60px;
        border-radius: 13px;
        background: var(--icon-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: relative
    }
    
    .so-icon svg {
        width: 30px;
        height: 30px;
        color: #FF5722;
    }
    
    .so-node:hover .so-icon {
        background: linear-gradient(150deg, #29b8d5 0%, #0079c2 100%);
        box-shadow: 0 4px 18px rgba(0, 121, 194, .35);
        border-radius: 14px;
        transition: background 0.25s ease, box-shadow 0.25s ease
    }

    .so-node:hover .so-icon svg {
        color: #fff
    }
    
    .so-lbl {
        font-size: 11.5px;
        font-weight: 700;
        color: var(--lbl);
        text-align: center;
        white-space: nowrap;
        line-height: 1.3
    }
    
    .so-sub {
        font-size: 10px;
        color: var(--sub);
        text-align: center;
        line-height: 1.4;
        max-width: 78px;
        margin-top: -4px
    }
    
    .so-conn {
        flex: 1;
        position: relative;
        height: 48px;
        margin-top: 0;
        min-width: 0;
        overflow: visible
    }
    
    .so-conn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 0;
        border-top: 2px dashed var(--dash-clr);
        transform: translateY(-50%)
    }
    
    .so-dot {
        position: absolute;
        top: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--dot-clr);
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 2px rgba(0, 189, 181, .25), 0 0 8px rgba(0, 189, 181, .5);
        will-change: left
    }
    
    .so-conn--1 .so-dot {
        animation: so-slide 2.5s linear infinite;
        animation-delay: calc(-2.5s*.66)
    }
    
    .so-conn--2 .so-dot {
        animation: so-slide 2.5s linear infinite;
        animation-delay: calc(-2.5s*.42)
    }
    
    .so-conn--3 .so-dot {
        animation: so-slide 2.5s linear infinite;
        animation-delay: calc(-2.5s*.18)
    }
    
    .so-conn--4 .so-dot {
        animation: so-slide 2.5s linear infinite;
        animation-delay: calc(-2.5s*.00)
    }
    
    .so-conn--5 .so-dot {
        animation: so-slide 2.5s linear infinite;
        animation-delay: calc(-2.5s*.88)
    }
    
    @keyframes so-slide {
        from {
            left: 0%
        }
        to {
            left: 100%
        }
    }
    
    @media(max-width:740px) {
        .so-card {
            padding: 28px 20px 24px
        }
        .so-node {
            width: 60px
        }
        .so-icon {
            width: 40px;
            height: 40px;
            border-radius: 11px
        }
        .so-icon svg {
            width: 17px;
            height: 17px
        }
        .so-lbl {
            font-size: 10px
        }
        .so-sub {
            font-size: 9px;
            max-width: 60px
        }
        .so-dot {
            width: 7px;
            height: 7px;
        }
        .so-card {
           width: 105%;
    }
}
    
    @media(max-width:520px) {
        .so-wrapper {
            padding: 32px 14px
        }
        .so-card {
            padding: 20px 14px 18px
        }
        .so-node {
            width: 46px
        }
        .so-icon {
            width: 34px;
            height: 34px;
            border-radius: 9px
        }
        .so-icon svg {
            width: 14px;
            height: 14px
        }
        .so-lbl {
            font-size: 9px;
            white-space: normal
        }
        .so-sub {
            display: none
        }
        .so-dot {
            width: 6px;
            height: 6px
        }
        .nimbus-card-right{
            display:none;
        }
    }
    /************************************************Engineered for enterprise scale.*********************************************/
    /* =========================
   SAPNA ENTERPRISE SECTION
========================= */
    /* =========================
   SAPNA ENTERPRISE SECTION
========================= */
    
    .sapna-enterprise-wrap {
        padding: 60px 0;
        /* background: #f7f8fa; */
        overflow: hidden;
        position: relative;
    }
    
    .sapna-container {
        max-width: 1374px;
        margin: auto;
        padding: 0 20px;
    }
    /* =========================
   BADGE
========================= */
    
    .sapna-badge {
        width: fit-content;
        margin: auto;
        padding: 10px 22px;
        border: 2px solid #dce2ea;
        border-radius: 50px;
        background: #fff;
        color: #0057ff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 10px;
        animation: sapnaBadgeMove 3s infinite ease-in-out;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    }
    
    .sapna-badge .sapna-badge-dot {
        width: 7px;
        height: 7px;
        background: #00c6ff;
        border-radius: 50%;
        animation: sapnaPulse 1.8s infinite;
    }

    .sapna-badge-nimbus {
        color: #00c6ff;
    }
    /* =========================
   TITLE
========================= */
    
    .sapna-title {
        text-align: center;
        font-size: 40px;
        font-weight: 800;
        color: #07142f;
        line-height: 1.1;
        letter-spacing: -2px;
        margin: 14px 0 57px;
        animation: sapnaFadeUp 1s ease;
    }
    /* =========================
   GRID
========================= */
    
    .sapna-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    /* =========================
   CARD
========================= */
    
    .sapna-card {
        position: relative;
        padding: 34px 26px;
        border-radius: 24px;
        overflow: hidden;
        z-index: 1;
        animation: sapnaFloat 4s infinite ease-in-out;
    }
    /* FLOAT DELAYS */
    
    .sapna-card:nth-child(2) {
        animation-delay: .5s;
    }
    
    .sapna-card:nth-child(3) {
        animation-delay: 1s;
    }
    
    .sapna-card:nth-child(4) {
        animation-delay: 1.5s;
    }
    /* ROTATING BORDER */
    
    .sapna-card::before {
        content: "";
        position: absolute;
        width: 250%;
        height: 250%;
        top: -75%;
        left: -75%;
        background: conic-gradient(from 0deg, #000000, #2196F3, #03A9F4, #2196F3, #020202);
        animation: sapnaRotateBorder 4s linear infinite;
        z-index: -2;
    }
    /* INNER BACKGROUND */
    
    .sapna-card::after {
        content: "";
        position: absolute;
        inset: 3px;
        background: #ffffff;
        border-radius: 21px;
        z-index: -1;
    }
    /* HOVER */
    
    .sapna-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(106, 196, 116, 0.20);
    }
    /* =========================
   ICON
========================= */
    
    .sapna-icon {
        width: 60px;
        height: 60px;
        border-radius: 20px;
        background: linear-gradient(356deg, #000000, #000000);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 26px;
        animation: sapnaIconFloat 3s infinite ease-in-out;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        position: relative;
        z-index: 2;
    }
    
    .sapna-icon svg {
        width: 40px;
        height: 40px;
    }
    /* =========================
   TEXT
========================= */
    
    .sapna-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #07142f;
        margin-bottom: 18px;
        line-height: 1.4;
        position: relative;
        z-index: 2;
    }
    
    .sapna-card p {
        font-size: 15px;
        line-height: 1.9;
        color: #5f6f89;
        margin: 0;
        position: relative;
        z-index: 2;
    }

    .sapna-card .sapna-lead {
        font-weight: 600;
        color: #5f6f89;
        margin-bottom: 12px;
    }

    .sapna-list {
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 2;
    }

    .sapna-list li {
        position: relative;
        padding-left: 20px;
        font-size: 15px;
        line-height: 1.9;
        color: #5f6f89;
    }

    .sapna-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 12px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #0057ff;
    }
    /* =========================
   ANIMATIONS
========================= */
    
    @keyframes sapnaFadeUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes sapnaFloat {
        0%,
        100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    @keyframes sapnaIconFloat {
        0%,
        100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-6px);
        }
    }
    
    @keyframes sapnaPulse {
        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.5);
            opacity: 0.5;
        }
    }
    
    @keyframes sapnaBadgeMove {
        0%,
        100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-4px);
        }
    }
    /* ROTATING BORDER */
    
    @keyframes sapnaRotateBorder {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    /* =========================
   RESPONSIVE
========================= */
    
    @media (max-width: 1200px) {
        .sapna-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .sapna-title {
            font-size: 48px;
        }
    }
    
    @media (max-width: 768px) {
        .sapna-enterprise-wrap {
            padding: 70px 0;
        }
        .sapna-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .sapna-title {
            font-size: 38px;
            margin-bottom: 50px;
            letter-spacing: -1px;
        }
        .sapna-card {
            padding: 28px 22px;
        }
        .sapna-card h3 {
            font-size: 22px;
        }
        .sapna-card p {
            font-size: 15px;
            line-height: 1.8;
        }
    }
    
    @media (max-width: 480px) {
        .sapna-title {
            font-size: 30px;
        }
        .sapna-badge {
            font-size: 10px;
            padding: 8px 16px;
        }
        .sapna-icon {
            width: 50px;
            height: 50px;
        }
        .sapna-icon svg {
            width: 24px;
            height: 24px;
        }
    }
    /***************************************************************  What <span>Our Clients</span> Say*******************************************************/
    /* =========================
   CLIENT SECTION
========================= */
    
    .clients-section {
        position: relative;
        padding: 36px 0;
        background: #f7f5ff;
        overflow: hidden;
    }
    /* Background Lines */
    
    .clients-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient( 120deg, rgba(92, 77, 241, 0.06) 1px, transparent 1px);
        background-size: 60px 60px;
        opacity: .6;
    }
    /* HEADER */
    
    .clients-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 37px;
        position: relative;
        z-index: 2;
    }
    
    .clients-header h2 {
        font-size: 40px;
        font-weight: 800;
        color: #111;
        margin-bottom: 10px;
    }
    
    .clients-header h2 span {
        color: #5c4df1;
    }
    
    .clients-header p {
        color: #777;
        font-size: 16px;
    }
    /* NAV */
    
    .slider-nav {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    
    .slider-nav button {
        width: 52px;
        height: 52px;
        border: none;
        border-radius: 50%;
        background: #fff;
        color: #5c4df1;
        font-size: 18px;
        transition: .4s;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    }
    
    .slider-nav button:hover {
        background: #5c4df1;
        color: #fff;
        transform: translateY(-3px);
    }
    /* GRID */

    .clients-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .clients-section .carousel-item {
        padding: 0 10px;
    }
    /* CARD */

    .client-card {
        background: rgba(255, 255, 255, .95);
        border-radius: 24px;
        padding: 30px;
        transition: .4s;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
        height: 100%;
    }
    
    .client-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(92, 77, 241, .15);
    }
    
    .quote-icon {
        font-size: 48px;
        color: rgba(92, 77, 241, .12);
        line-height: 1;
        margin-bottom: 10px;
    }
    
    .stars {
        
        color: #f6b400;
        margin-bottom: 18px;
        letter-spacing: 2px;
    }
    
    .client-card p {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        min-height: 140px;
    }
    /* INFO */
    
    .client-info {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    
    .client-info img {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        object-fit: cover;
    }

    .client-avatar {
        width: 55px;
        height: 55px;
        min-width: 55px;
        border-radius: 50%;
        background: linear-gradient(135deg, #5c4df1, #8c7ff5);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 700;
    }
    
    .client-info h5 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: #111;
    }
    
    .client-info span {
        font-size: 13px;
        color: #777;
    }
    /* INDICATORS */
    
    .custom-indicators {
        position: relative;
        bottom: 0;
        margin-top: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .custom-indicators button {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50%;
        background: #cfcafc !important;
        opacity: 1 !important;
        border: none !important;
        margin: 0 5px !important;
    }
    
    .custom-indicators .active {
        
        border-radius: 30px !important;
        background: #5c4df1 !important;
    }

    .client-track-outer {
        overflow: hidden;
        position: relative;
    }

    .client-track {
        display: flex;
        gap: 25px;
        will-change: transform;
    }

    .client-track-item {
        flex-shrink: 0;
        min-width: 0;
    }

    .client-track-item .client-card {
        height: 100%;
    }
    /* =========================
   RESPONSIVE
========================= */
    
    @media(max-width:991px) {
        .clients-header {
            flex-direction: column;
            align-items: flex-start;
        }
        .clients-header h2 {
            font-size: 38px;
        }
        .clients-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media(max-width:767px) {
        .clients-section {
            padding: 70px 0;
        }
        .clients-header h2 {
            font-size: 30px;
        }
        .clients-grid {
            grid-template-columns: 1fr;
        }
        .client-card {
            padding: 24px;
        }
        .client-card p {
            min-height: auto;
        }
        .slider-nav {
            width: 100%;
        }
        #clientSliderMobile .client-card {
            max-width: 500px;
            margin: 0 auto;
        }
    }
    /*******************************************************************************/
    /* =========================
   SECTION
========================= */
    
    .nimbus-modern-cta {
        padding: 70px 0;
        background: #ffffff;
        font-family: 'Outfit', sans-serif;
    }
    /* =========================
   WRAPPER
========================= */
    
    .nimbus-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        padding: 60px;
        min-height: 520px;
        border-radius: 34px;
        background: #ffffff;
        border: 1px solid #edf2f7;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 20px 60px rgba(15, 23, 42, 0.05);
        position: relative;
        overflow: hidden;
    }
    /* Blur Effect */
    
    .nimbus-wrapper::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: linear-gradient(135deg, #0066ff15, #00c2ff15);
        border-radius: 50%;
        top: -220px;
        right: -120px;
        filter: blur(20px);
    }
    /* =========================
   LEFT CONTENT
========================= */
    
    .nimbus-content {
        flex: 1;
        position: relative;
        z-index: 2;
    }
    
    .nimbus-label {
        display: inline-block;
        padding: 9px 16px;
        border-radius: 100px;
        background: #eef5ff;
        color: #0066ff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    
    .nimbus-content h2 {
        font-size: 40px;
        line-height: 1.1;
        font-weight: 800;
        color: #111827;
        margin-bottom: 20px;
        max-width: 620px;
    }
    
    .nimbus-content p {
        font-size: 17px;
        line-height: 1.7;
        color: #667085;
        max-width: 560px;
        margin-bottom: 35px;
    }
    /* Users */
    
    .nimbus-users {
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
    }
    
    .nimbus-avatar-group {
        display: flex;
    }
    
    .nimbus-avatar-group img {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 3px solid #fff;
        object-fit: cover;
        margin-left: -10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }
    
    .nimbus-avatar-group img:first-child {
        margin-left: 0;
    }
    
    .nimbus-users span {
        color: #344054;
        font-weight: 600;
        font-size: 15px;
    }
    /* =========================
   RIGHT CARD
========================= */
    
    .nimbus-card {
        width: 420px;
        padding: 34px;
        border-radius: 26px;
        background: #0f172a;
        color: #fff;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }
    /* Glow */
    
    .nimbus-card::before {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: #0066ff;
        top: -100px;
        right: -90px;
        opacity: 0.20;
        filter: blur(10px);
    }
    /* Card Top */
    
    .nimbus-card-top {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
    }
  
    .nimbus-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #00ff84;
        box-shadow: 0 0 10px #00ff84;
    }
    
    .nimbus-card-top span {
        color: #cbd5e1;
        font-size: 13px;
        font-weight: 600;
    }
    /* Card Text */
    
    .nimbus-card h3 {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 16px;
        font-weight: 800;
        color:#fff;
    }
    
    .nimbus-card p {
        color: #cbd5e1;
        line-height: 1.7;
        font-size: 15px;
        margin-bottom: 28px;
    }
    /* Buttons */
    
    .nimbus-btn-primary,
    .nimbus-btn-secondary {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        padding: 16px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 15px;
        transition: 0.3s ease;
    }
    
    .nimbus-btn-primary {
        background: #ffffff;
        color: #111827;
        margin-bottom: 14px;
    }
    
    .nimbus-btn-primary:hover {
        transform: translateY(-4px);
    }
    
    .nimbus-btn-secondary {
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nimbus-btn-secondary:hover {
        background: #ffffff;
        color: #111827;
    }
    /* =========================
   RESPONSIVE
========================= */
    
    @media(max-width:1100px) {
        .nimbus-content h2 {
            font-size: 44px;
        }
        .nimbus-wrapper {
            padding: 50px;
        }
    }
    
    @media(max-width:991px) {
        .nimbus-wrapper {
            flex-direction: column;
            padding: 45px 28px;
            min-height: auto;
            text-align: center;
        }
        .nimbus-content h2 {
            font-size: 38px;
            margin: auto auto 18px;
        }
        .nimbus-content p {
            margin: auto auto 30px;
            font-size: 16px;
        }
        .nimbus-users {
            justify-content: center;
        }
        .nimbus-card {
            width: 100%;
            max-width: 380px;
        }
        .nimbus-wrapper::before {
            display:none;
        }
    }
    
    @media(max-width:576px) {
        .nimbus-modern-cta {
            padding: 35px 0;
        }
        .nimbus-wrapper {
            padding: 30px 18px;
            border-radius: 24px;
            gap: 35px;
        }
        .nimbus-content h2 {
            font-size: 30px;
            line-height: 1.2;
        }
        .nimbus-content p {
            font-size: 15px;
            line-height: 1.7;
        }
        .nimbus-users {
            flex-direction: column;
            gap: 14px;
        }
        .nimbus-avatar-group img {
            width: 42px;
            height: 42px;
        }
        .nimbus-card {
            padding: 26px 20px;
            border-radius: 22px;
        }
        .nimbus-card h3 {
            font-size: 24px;
        }
        .nimbus-card p {
            font-size: 14px;
        }
        .nimbus-btn-primary,
        .nimbus-btn-secondary {
            font-size: 14px;
            padding: 14px;
        }
        .nimbus-wrapper::before {
            display:none;
        }
    }
    /* footer */
    
    .footer-section {
        background: #050816;
        padding: 70px 0 30px;
        color: #fff;
    }
    /* Brand */
    
    .footer-brand img {
        max-width: 100%;
        height: auto;
    }

    .footer-brand h2 {
        font-size: 32px;
        font-weight: 800;
    }
    
    .footer-brand span {
        color: #22ace3;
    }
    
    .footer-brand p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        font-size: 14px;
        padding-top: 20px;
    }
    /* Certifications */

    .certifications {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
    }

    .certifications .cert-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .certifications .cert-item span {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
    }

    .certifications .cert-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: 0.3s;
    }

    .certifications .cert-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .certifications .cert-icon:hover {
        background: #22ace3;
        border-color: #22ace3;
        transform: translateY(-3px);
    }

    .certifications .cert-icon.cert-lightbox-trigger {
        cursor: zoom-in;
    }

    /* Certificate Lightbox Modal */
    .cert-modal {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: rgba(0, 0, 0, 0.88);
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .cert-modal.active {
        display: flex;
        opacity: 1;
    }

    .cert-modal-content {
        position: relative;
        max-width: 90vw;
        max-height: 90vh;
        transform: scale(0.92);
        transition: transform 0.25s ease;
    }

    .cert-modal.active .cert-modal-content {
        transform: scale(1);
    }

    .cert-modal-content img {
        display: block;
        max-width: 90vw;
        max-height: 90vh;
        width: auto;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        background: #fff;
    }

    .cert-modal-close {
        position: fixed;
        top: 18px;
        right: 24px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 26px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.25s;
        z-index: 100000;
    }

    .cert-modal-close:hover {
        background: #22ace3;
        border-color: #22ace3;
        transform: rotate(90deg);
    }

    @media (max-width: 576px) {
        .cert-modal {
            padding: 12px;
        }

        .cert-modal-content img {
            max-width: 92vw;
            max-height: 80vh;
        }

        .cert-modal-close {
            top: 10px;
            right: 10px;
            width: 38px;
            height: 38px;
            font-size: 22px;
        }
    }

    /* Social */
    
    .social-icons {
        display: flex;
        gap: 12px;
        margin-top:20px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        transition: 0.3s;
        text-decoration: none;
    }
    
    .social-icons a:hover {
        background: #22ace3;
        transform: translateY(-3px);
    }

    /* Review Badges */
    .review-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        margin-top: 22px;
    }

    .review-badge {
        display: flex;
        align-items: center;
        gap: 5px;
        background: #ffffff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 10px;
        padding: 9px 12px;
        transition: all 0.25s ease;
    }

    .review-badge:hover {
        background: #f1f5f9;
        border-color: rgba(15, 23, 42, 0.16);
        transform: translateY(-2px);
    }

    .review-badge-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .review-badge-icon svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .review-badge-text {
        display: flex;
        flex-direction: column;
        gap: 3px;
        min-width: 0;
    }

    .review-badge-name {
        font-size: 12px;
        font-weight: 700;
        color: #000 !important;
        letter-spacing: 0.2px;
        line-height: 1;
    }

    .review-badge-stars {
        font-size: 9px;
        color: #FFB400 !important;
        letter-spacing: 1.5px;
        line-height: 1;
        white-space: nowrap;
    }

    .review-badge-score {
        font-size: 14px;
        font-weight: 800;
        color: #0f172a;
        margin-left: 4px;
        padding-left: 6px;
        border-left: 1px solid rgba(15, 23, 42, 0.12);
    }

    /* Titles */
    
    @media (min-width: 992px) {
        .footer-col-solutions {
            padding-left: 40px;
        }
    }

    .footer-title {
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 24px;
        padding-bottom: 10px;
        position: relative;
    }
    
    .footer-title::after {
        content: "";
        width: 40px;
        height: 2px;
        background: #22ace3;
        position: absolute;
        left: 0;
        bottom: -6px;
    }

    /* Links */
    
    ul {
        list-style: none;
        padding: 0;
    }
    
    ul li {
        margin-bottom: 10px;
    }
    
    ul li a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    ul li a:hover {
        color: #22ace3;
    }
    /* Contact */
    
    .footer-map-box {
        position: relative;
        display: block;
        width: 100%;
        max-width: 220px;
        height: 110px;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 16px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .footer-map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
        pointer-events: none;
        filter: grayscale(100%) contrast(105%);
    }
    .footer-map-box-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-align: center;
        padding: 0 10px;
        font-size: 12px;
        font-weight: 500;
        color: #fff;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        transition: opacity 0.2s ease;
    }
    .footer-map-box:hover .footer-map-box-overlay,
    .footer-map-box:focus-visible .footer-map-box-overlay {
        opacity: 1;
    }

    .footer-locations {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 18px;
        list-style: none;
        margin: 0 0 16px;
        padding: 0;
    }
    .footer-locations li {
        display: flex;
    }
    .footer-locations li a {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-locations li a:hover {
        color: #22ace3;
    }
    .footer-location-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #2ecc71;
        box-shadow: 0 0 6px 2px rgba(46, 204, 113, 0.8);
        animation: footer-location-glow 1.8s ease-in-out infinite;
        flex-shrink: 0;
    }
    @keyframes footer-location-glow {
        0%, 100% {
            box-shadow: 0 0 4px 1px rgba(46, 204, 113, 0.6);
        }
        50% {
            box-shadow: 0 0 10px 4px rgba(46, 204, 113, 1);
        }
    }

    .footer-contact {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .footer-contact i {
        color: #22ace3;
        margin-top: 4px;
    }
    .footer-contact p {
        margin-bottom: 0;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .footer-contact a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-contact a:hover {
        color: #22ace3;
    }
    /* Bottom */
    
    .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    .footer-bottom p {
        margin: 0;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
    }
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        /* ✅ NEXT LINE FIX */
        gap: 12px;
        margin-top: 0px;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 0.6);
        font-size: 13px;
        text-decoration: none;
        white-space: nowrap;
    }
    
    .footer-links a:hover {
        color: #22ace3;
    }
    .footer-section ul li {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.5;
    }
    .footer-channels-list {
        column-count: 1;
        column-gap: 16px;
    }
    .footer-channels-list li {
        break-inside: avoid;
    }
    /* Responsive */

    /***********************************Contact page*********************************/

     /* STRICT 50PX TOP & BOTTOM SPACING FOR EVERY SECTION */
        .premium-section {
            padding: 50px 0 !important;
            position: relative;
            border-bottom: 1px solid rgba(226, 232, 240, 0.7);
        }

        .bg-light-gray { background-color: #f8fafc; }
        .bg-pure-white { background-color: #ffffff; }
        .bg-gradient-soft { background: linear-gradient(180deg, #fdfeff 0%, #f4f9fd 100%); }

        /* Custom Badge */
        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: linear-gradient(135deg, rgba(41, 182, 232, 0.08) 0%, rgba(99, 102, 241, 0.04) 100%);
            color: #0284c7;
            font-size: 12px;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(41, 182, 232, 0.18);
        }

        h1, h2, h3 {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        h1 { font-size: clamp(2.4rem, 4vw, 3.5rem); line-height: 1.2; }
        h2 { font-size: clamp(2rem, 3.2vw, 2.5rem); line-height: 1.25; }

        /* Contact Details Cards */
        .contact-card {
            background: #ffffff;
            border: 1px solid rgba(41, 182, 232, 0.3);;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            height: 100%;
            position: relative;
            z-index: 10;
        }

        /* Pulls the quick-contact cards up over the hero banner, without
           moving the section itself (keeps spacing to sections below intact) */
        .contact-cards-overlap {
            position: relative;
            z-index: 10;
            overflow: visible !important;
        }

        .contact-cards-overlap > .container > .row {
            margin-top: -130px;
            position: relative;
            z-index: 10;
        }

        @media (max-width: 767px) {
            .contact-cards-overlap > .container > .row {
                margin-top: -80px;
            }
        }
    
        .contact-icon-box {
            width: 48px; height: 48px;
            background: rgba(41, 182, 232, 0.08);
            color: #0284c7;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.35rem; margin-bottom: 20px;
        }

        /* Premium Visual Graphic Showcase */
        .graphic-container {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
            border: 1px solid var(--border);
        }
        .graphic-container img {
            transition: transform 0.6s ease;
        }
        .graphic-container:hover img {
            transform: scale(1.03);
        }

        /* Modern Form Inputs */
        .form-box {
            background: #ffffff;
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(15, 23, 42, 0.03);
        }
        .form-control {
            border: 1px solid var(--border);
            padding: 14px 18px;
            border-radius: 10px;
            font-size: 0.95rem;
            color: var(--text-dark);
            background-color: #f8fafc;
            transition: all 0.3s ease;
        }
        .form-control:focus {
            background-color: #ffffff;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(41, 182, 232, 0.1);
        }
        .form-label {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        /* Interactive Map Frame */
        .map-wrapper {
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
            height: 100%;
            min-height: 450px;
        }

        /* Premium Accordion FAQ */
        .accordion-item {
            border: 1px solid var(--border) !important;
            border-radius: 12px !important;
            margin-bottom: 12px;
            overflow: hidden;
            background: #ffffff;
        }
        .accordion-button {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            color: var(--text-dark);
            padding: 20px;
            background: #ffffff;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(41, 182, 232, 0.05);
            color: var(--primary-dark);
            box-shadow: none;
        }
        .accordion-body {
            color: var(--text-muted);
            line-height: 1.6;
            padding: 20px;
            background: #ffffff;
        }

        /* Info Item Row */
        .info-row {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }
        .info-row i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 3px;
        }

        /* Premium Buttons */
        .btn-premium {
            background: linear-gradient(135deg, #29b6e8 0%, #1e8cb4 100%);
            color: #ffffff !important;
            border: none;
            padding: 14px 30px;
            font-weight: 600;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(41, 182, 232, 0.15);
            transition: all 0.3s ease;
            width: 100%;
        }
        .btn-premium:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 22px rgba(41, 182, 232, 0.25);
        }

        /* Scroll Animations Base */
        .reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform, opacity; }
        .revealed { opacity: 1; transform: translate(0, 0); }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        .footer-logo-size { width: 200px; }

/***********************************about page*********************************/

   /* STRICT 50PX TOP & BOTTOM SPACING FOR EVERY SECTION */
        .premium-section {
            padding: 50px 0 !important;
            position: relative;
            overflow-x: hidden;
            overflow-y: hidden;
            border-bottom: 1px solid rgba(226, 232, 240, 0.7);
        }

        /* Distinct Background Colors for Section Separation */
        .bg-light-gray { background-color: #f8fafc; }
        .bg-pure-white { background-color: #ffffff; }
        .bg-gradient-soft { background: linear-gradient(180deg, #fdfeff 0%, #f4f9fd 100%); }

        /* Gradient Glowing Blobs */
        .glow-blob {
            position: absolute;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, var(--primary-glow) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: -1;
            filter: blur(50px);
            pointer-events: none;
        }
        .blob-1 { top: 0%; left: -10%; animation: floatBlob 10s infinite alternate; }
        .blob-2 { bottom: 0%; right: -10%; animation: floatBlob 12s infinite alternate-reverse; }

        @keyframes floatBlob {
            0% { transform: translateY(0) scale(1); }
            100% { transform: translateY(20px) scale(1.05); }
        }

        /* Decorative Grid Pattern Base */
        .bg-grid-pattern {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: linear-gradient(rgba(15, 23, 42, 0.015) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(15, 23, 42, 0.015) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: -2;
            pointer-events: none;
        }

        /* Custom Badge */
        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: linear-gradient(135deg, rgba(41, 182, 232, 0.08) 0%, rgba(99, 102, 241, 0.04) 100%);
            color: #0284c7;
            font-size: 12px;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(41, 182, 232, 0.18);
        }

        h2 {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: clamp(2rem, 3.2vw, 2.5rem);
            color: var(--text-dark);
            letter-spacing: -0.5px;
            line-height: 1.25;
        }

        /* Scroll Animations Base */
        .reveal-up, .reveal-left, .reveal-right {
            opacity: 0;
            will-change: transform, opacity;
        }
        .reveal-up { transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal-left { transform: translateX(-30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal-right { transform: translateX(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .revealed { opacity: 1; transform: translate(0, 0); }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }

        /* About Hero Image */
        .about-hero-img-wrapper {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border: 1px solid var(--border);
        }
        .about-hero-img-wrapper img {
            display: block;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .about-hero-img-wrapper:hover img {
            transform: scale(1.03);
        }

        /* Awards Page Badge Image */
        .awards-badge-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .awards-badge-wrapper img {
            display: block;
            max-width: 100%;
            height: auto;
            border: none;
            box-shadow: none;
            transition: transform 0.6s ease;
        }
      
        /* 1. Elite Hero Banner */
        .az-hero {
            position: relative;
            padding-top: 50px !important; /* Extra top padding only for navbar clearance */
            padding-bottom: 50px !important;
        }
        .az-hero h1 {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: 40px;
            color: var(--text-dark);
            line-height: 1.2;
            letter-spacing: -1px;
        }
        .hero-desc {
            max-width: 600px; 
            font-size: 1.1rem; 
            line-height: 1.7; 
            color: #64748b;
        }
        .gradient-text {
            background: linear-gradient(135deg, #29b6e8 0%, #4f46e5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Floating Technical Icons */
        .floating-tech-icon {
            position: absolute;
            display: none;
            z-index: 1;
            pointer-events: none;
        }
        @media (min-width: 1200px) {
            .floating-tech-icon { display: block; }
        }
        .tech-icon-1 { top: 15%; left: 2%; animation: floatBlob 6s infinite alternate; color: rgba(41, 182, 232, 0.25); font-size: 2rem; }
        .tech-icon-2 { bottom: 15%; left: 4%; animation: floatBlob 8s infinite alternate-reverse; color: rgba(99, 102, 241, 0.25); font-size: 2.2rem; }

        /* Video CTA Custom Styles */
        .btn-video-cta {
            padding: 10px 20px;
            color: var(--text-dark);
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .video-play-icon {
            width: 40px; 
            height: 40px; 
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        .btn-video-cta:hover .video-play-icon {
            transform: scale(1.1);
            background-color: var(--primary) !important;
            color: white !important;
        }

        /* Micro Trust Badges */
        .trust-badge-container {
            border-top: 1px solid var(--border) !important;
        }
        .trust-badge-title {
            font-size: 11px; 
            letter-spacing: 1.5px;
            color: #94a3b8 !important;
        }
        .trust-badge-item {
            font-family: 'Sora', sans-serif; 
            font-size: 0.9rem;
            color: #475569 !important;
        }

        /* Terminal Mockup Structure */
        .terminal-glow-wrapper {
            position: relative;
            z-index: 1;
        }
        .terminal-box {
            background: var(--terminal-dark); 
            border-radius: 14px; 
            overflow: hidden; 
            border: 1px solid var(--terminal-border) !important;
            box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.35) !important;
        }
        .terminal-header {
            background: var(--terminal-header); 
            border-bottom: 1px solid var(--terminal-border);
        }
        .terminal-dot {
            width: 10px; 
            height: 10px; 
            border-radius: 50%;
        }
        .dot-red { background: #ef4444; }
        .dot-yellow { background: #eab308; }
        .dot-green { background: #22c55e; }
        .terminal-body {
            font-size: 13px; 
            line-height: 1.65; 
            color: #94a3b8;
        }
        
        /* Code Syntax Coloring */
        .syntax-keyword { color: #f472b6; }
        .syntax-function { color: #38bdf8; }
        .syntax-string { color: #4ade80; }
        .syntax-class { color: #fbbf24; }
        .syntax-comment { color: #64748b; }
        .syntax-error { color: #ef4444; }

        /* Floating Analytics Badge Over Terminal */
        .floating-analytics-badge {
            position: absolute; 
            bottom: -10px; 
            left: -15px; 
            min-width: 210px; 
            border: 1px solid var(--border) !important; 
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05) !important;
        }

        /* 2. Journey Image Container with Border Accent */
        .journey-frame {
            position: relative;
        }
        .journey-img-box {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
            border: 1px solid var(--border);
        }
        .journey-desc-text {
            line-height: 1.7; 
            font-size: 1rem;
            color: #475569;
        }

        /* 3. Stats Section Design (Glassmorphic) */
        .az-stat-card {
            background: #ffffff;
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 35px 25px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .az-stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px -5px rgba(41, 182, 232, 0.08);
            border-color: rgba(41, 182, 232, 0.3);
        }
        .az-stat-icon {
            width: 44px; height: 44px;
            background: rgba(41, 182, 232, 0.08);
            color: #0284c7;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem; margin-bottom: 20px;
        }
        .az-stat-number {
            font-family: 'Sora', sans-serif;
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.1;
            margin-bottom: 6px;
        }

        /* 3b. "Rated Across the Web" Review Cards */
        .rating-card {
            background: #ffffff;
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 24px;
            height: 100%;
            text-align: left;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .rating-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px -5px rgba(41, 182, 232, 0.08);
            border-color: rgba(41, 182, 232, 0.3);
        }
        .rating-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 18px;
        }
        .rating-card-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-dark);
        }
        .rating-card-brand svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        .rating-verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: #DCFCE7;
            color: #16A34A;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .rating-card-score {
            font-family: 'Sora', sans-serif;
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1;
            margin-bottom: 8px;
        }
        .rating-card-stars {
            color: #FBBF24;
            font-size: 0.95rem;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .rating-card-stars .bi-star {
            color: #E2E8F0;
        }
        .rating-card-count {
            font-size: 0.82rem;
            color: #64748b;
        }

        /* 4. Dual Platform Cards (Mission & Vision) */
        .mv-card {
            background: #ffffff;
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 25px rgba(15, 23, 42, 0.02);
            height: 100%;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .mv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
            border-color: rgba(41, 182, 232, 0.25);
        }
        .mv-icon-wrap {
            width: 50px; height: 50px;
            background: linear-gradient(135deg, rgba(41, 182, 232, 0.1) 0%, rgba(99, 102, 241, 0.04) 100%);
            color: #0284c7;
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px; margin-bottom: 24px;
            border: 1px solid rgba(41, 182, 232, 0.1);
        }

        /* 5. Core Values Section (styled to match homepage channel cards) */
        .value-card {
            padding: 32px 28px;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 20px;
            border: 1px solid var(--card-border);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
            border-color: rgba(41, 182, 232, 0.3);
        }

        .value-card:hover::before {
            transform: scale(1.4);
        }

        .value-title {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 12px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        .value-title i {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary-dark);
            background: linear-gradient(135deg, rgba(41, 182, 232, 0.12) 0%, rgba(99, 102, 241, 0.05) 100%);
            border: 1px solid rgba(41, 182, 232, 0.15);
            border-radius: 14px;
            transition: transform 0.4s ease;
        }

        .value-card:hover .value-title i {
            transform: rotate(-8deg) scale(1.08);
        }

        .value-desc {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-muted, #5f6d85);
            position: relative;
            z-index: 1;
        }

        /* Premium Buttons */
        .btn-premium {
            background: linear-gradient(135deg, #29b6e8 0%, #1e8cb4 100%);
            color: #ffffff !important;
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(41, 182, 232, 0.15);
            transition: all 0.3s ease;
        }
        .btn-premium:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 22px rgba(41, 182, 232, 0.25);
        }

        .nav-link.active-page {
            color: var(--primary) !important;
            font-weight: 700;
        }
        .footer-logo-size { width: 200px; }
    
    @media(max-width:768px) {
        .footer-bottom {
            text-align: center;
        }
        .footer-links {
            justify-content: center;
        }
    }

    /**privacy pagee**/

    
        .premium-section {
            padding: 50px 0 !important;
            position: relative;
            border-bottom: 1px solid rgba(226, 232, 240, 0.7);
        }

        .bg-light-gray { background-color: #f8fafc; }
        .bg-pure-white { background-color: #ffffff; }
        .bg-gradient-soft { background: linear-gradient(135deg, #EAFBFF 0%, #BEEFFF 50%, #EAFBFF 100%); }

        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: linear-gradient(135deg, rgba(41, 182, 232, 0.08) 0%, rgba(99, 102, 241, 0.04) 100%);
            color: #0284c7;
            font-size: 12px;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(41, 182, 232, 0.18);
        }

        h1, h2, h3 {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        h1 { font-size: clamp(2.4rem, 4vw, 3.5rem); line-height: 1.2; }
        h2 { font-size: clamp(2rem, 3.2vw, 2.5rem); line-height: 1.25; }

        .hero-policy {
            background: linear-gradient(135deg, #F2FCFF 0%, #7AD8F5 50%, #E6FAFF 100%);
            padding: 80px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero-policy::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: linear-gradient(rgba(15, 23, 42, 0.015) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(15, 23, 42, 0.015) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }

        .policy-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .policy-content h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-top: 35px;
            margin-bottom: 15px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .policy-content h3 .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #29b6e8, #1e92bc);
            color: #fff;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .policy-content p,
        .policy-content li {
            font-size: 0.95rem;
            line-height: 1.75;
            color: var(--text-muted);
        }

        .policy-content ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .policy-content ul li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 8px;
        }

        .policy-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
        }

        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: 10px;
        }

        .reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform, opacity; }
        .revealed { opacity: 1; transform: translate(0, 0); }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }

        .footer-logo-size { width: 200px; }

        @media (max-width: 768px) {
            .hero-policy {
                padding: 70px 0 35px;
            }
            .policy-card {
                padding: 20px 16px;
                border-radius: 14px;
            }
            .policy-content h3 {
                font-size: 1.15rem;
                margin-top: 28px;
            }
            .policy-content p,
            .policy-content li {
                font-size: 0.88rem;
            }
        }

        @media (max-width: 480px) {
            .hero-policy {
                padding: 65px 0 28px;
            }
            .policy-card {
                padding: 14px 10px;
            }
        }

 /**terms page**/

 .premium-section {
            padding: 50px 0 !important;
            position: relative;
            border-bottom: 1px solid rgba(226, 232, 240, 0.7);
        }

        .bg-light-gray { background-color: #f8fafc; }
        .bg-pure-white { background-color: #ffffff; }
        .bg-gradient-soft { background: linear-gradient(180deg, #fdfeff 0%, #f4f9fd 100%); }

        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: linear-gradient(135deg, rgba(41, 182, 232, 0.08) 0%, rgba(99, 102, 241, 0.04) 100%);
            color: #0284c7;
            font-size: 12px;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(41, 182, 232, 0.18);
        }

        h1, h2, h3 {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        h1 { font-size: clamp(2.4rem, 4vw, 3.5rem); line-height: 1.2; }
        h2 { font-size: clamp(2rem, 3.2vw, 2.5rem); line-height: 1.25; }

        .hero-policy {
            background: linear-gradient(135deg, #F2FCFF 0%, #7AD8F5 50%, #E6FAFF 100%);
            padding: 80px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero-policy::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: linear-gradient(rgba(15, 23, 42, 0.015) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(15, 23, 42, 0.015) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }

        .policy-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .policy-content h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-top: 35px;
            margin-bottom: 15px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .policy-content h3 .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #29b6e8, #1e92bc);
            color: #fff;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .policy-content p,
        .policy-content li {
            font-size: 0.95rem;
            line-height: 1.75;
            color: var(--text-muted);
        }

        .policy-content ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .policy-content ul li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 8px;
        }

        .policy-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
        }

        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: 10px;
        }

        .reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform, opacity; }
        .revealed { opacity: 1; transform: translate(0, 0); }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }

        .footer-logo-size { width: 200px; }

        @media (max-width: 768px) {
            .hero-policy {
                padding: 70px 0 35px;
            }
            .policy-card {
                padding: 20px 16px;
                border-radius: 14px;
            }
            .policy-content h3 {
                font-size: 1.15rem;
                margin-top: 28px;
            }
            .policy-content p,
            .policy-content li {
                font-size: 0.88rem;
            }
        }

        @media (max-width: 480px) {
            .hero-policy {
                padding: 65px 0 28px;
            }
            .policy-card {
                padding: 14px 10px;
            }
        }

/* 
   CLIENTS PAGE - LOGO GRID
*/
.client-logo-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 40px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 
   WHATSAPP FLOATING BUTTON
*/
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: whatsappPulse 2.4s infinite;
}

/* WhatsApp chat popup */
.whatsapp-chat-popup {
    position: fixed;
    right: 24px;
    bottom: 96px;
    width: 300px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.whatsapp-chat-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-chat-header {
    background: #075e54;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    position: relative;
}

.whatsapp-chat-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.whatsapp-chat-title h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.whatsapp-chat-title span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.whatsapp-chat-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
}

.whatsapp-chat-close:hover {
    opacity: 1;
}

.whatsapp-chat-body {
    background-color: #e5ddd5;
    background-image:
        radial-gradient(circle at 12px 12px, rgba(0, 0, 0, 0.025) 2px, transparent 2px),
        radial-gradient(circle at 34px 34px, rgba(0, 0, 0, 0.025) 2px, transparent 2px);
    background-size: 46px 46px;
    padding: 16px;
    max-height: 240px;
    min-height: 140px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whatsapp-chat-bubble {
    position: relative;
    font-size: 13.5px;
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
    max-width: 85%;
    word-wrap: break-word;
}

.whatsapp-chat-bubble--in {
    background: #fff;
    color: #111b21;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.whatsapp-chat-bubble--out {
    background: #dcf8c6;
    color: #111b21;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.whatsapp-chat-time {
    display: block;
    text-align: right;
    font-size: 10.5px;
    color: #667781;
    margin-top: 2px;
}

.whatsapp-chat-input {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0;
    padding: 10px 12px;
    border-top: 1px solid #e2e2e2;
}

.whatsapp-chat-input input {
    flex: 1;
    border: none;
    outline: none;
    background: #fff;
    border-radius: 20px;
    padding: 9px 14px;
    font-size: 13.5px;
    color: #111b21;
    box-shadow: inset 0 0 0 1px #e2e2e2;
}

.whatsapp-chat-input input::placeholder {
    color: #8696a0;
}

.whatsapp-chat-send {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #075e54;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.whatsapp-chat-send:hover {
    background: #054c43;
}

@media (max-width: 576px) {
    .whatsapp-chat-popup {
        right: 16px;
        bottom: 74px;
    }
}

.whatsapp-float:hover,
.whatsapp-float:focus,
.whatsapp-float:active {
    text-decoration: none;
}

.whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: #ff3b30;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-badge.show {
    opacity: 1;
    transform: scale(1);
    animation: waBadgePop 0.5s ease, waBadgeBeat 1.6s ease-in-out 0.5s infinite;
}

.whatsapp-float.has-notify {
    animation: whatsappPulse 2.4s infinite, waNotifyShake 3.2s ease-in-out infinite;
}

@keyframes waBadgePop {
    0% { transform: scale(0); }
    60% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

@keyframes waBadgeBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes waNotifyShake {
    0%, 92%, 100% { transform: rotate(0deg); }
    93% { transform: rotate(-12deg); }
    94% { transform: rotate(10deg); }
    95% { transform: rotate(-8deg); }
    96% { transform: rotate(6deg); }
    97% { transform: rotate(0deg); }
}

.whatsapp-float:hover {
    background: #1ebe5b;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        right: 16px;
        bottom: 16px;
    }
}

/* call button css */
.call-float {
    position: fixed;
    right: 24px;
    bottom: 96px; /* Above WhatsApp */
    width: 58px;
    height: 58px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.45);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: callPulse 2.4s infinite;
}

.call-float:hover,
.call-float:focus,
.call-float:active {
    text-decoration: none;
    color: #fff;
}

.call-float:hover {
    background: #0b5ed7;
    transform: scale(1.1);
    box-shadow: 0 8px 26px rgba(13, 110, 253, 0.6);
}

@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.45);
    }
    50% {
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.7),
                    0 0 0 8px rgba(13, 110, 253, 0.12);
    }
}

@media (max-width: 576px) {
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        right: 16px;
        bottom: 82px; /* Keep above WhatsApp on mobile */
    }
}

/* end */

/*****why us - company gallery**/

.company-gallery-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 18px;
}

.gallery-side-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gallery-side-shot,
.gallery-main-shot {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.gallery-side-shot {
    height: 220px;
}

.gallery-main-shot {
    height: 458px;
}

.gallery-side-shot img,
.gallery-main-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-main-shot:hover img,
.gallery-side-shot:hover img {
    transform: scale(1.04);
}

.gallery-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.gallery-nav-btn {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--text-dark);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-nav-btn:hover {
    background: var(--primary);
    transform: scale(1.06);
}

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
    padding-bottom: 4px;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 5px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.15);
    border-radius: 10px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 92px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.25s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

@media (max-width: 767px) {
    .company-gallery-wrap {
        grid-template-columns: 1fr;
    }
    .gallery-side-col {
        flex-direction: row;
    }
    .gallery-side-shot {
        height: 160px;
        flex: 1;
    }
    .gallery-main-shot {
        height: 320px;
    }
}

/* Contact Page Hero Banner */
.contact-hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('../images/banner/contact-us-banner.webp') center center / cover no-repeat;
    padding: 80px 0 !important;
}

.contact-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.contact-hero-banner .container {
    position: relative;
    z-index: 2;
}

.contact-hero-banner h1,
.contact-hero-banner .lead {
    color: #ffffff;
}

@media (max-width: 767px) {
    .contact-hero-banner {
        min-height: 320px;
        padding: 60px 0 !important;
    }
}

/* 
   CASE STUDIES PAGE
 */
.case-study-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    border-color: rgba(41, 182, 232, 0.3);
}
.case-study-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0284c7;
    background: rgba(41, 182, 232, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.case-study-metrics {
    display: flex;
    gap: 24px;
    margin: 20px 0 4px;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
}
.case-study-metric-num {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1;
}
.case-study-metric-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 4px;
}

/* 
   AWARDS PAGE
 */
.award-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    display: flex;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    border-color: rgba(41, 182, 232, 0.3);
}
.award-year-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #29b6e8 0%, #1e8cb4 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
}

/* 
   TESTIMONIALS PAGE
 */
.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(41, 182, 232, 0.3);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 14px;
}
.testimonial-quote {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 22px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.92rem;
}
.testimonial-author-role {
    font-size: 0.78rem;
    color: #64748b;
}

/* ================================
   BLOGS PAGE
================================ */
.blog-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
      border-color: rgba(41, 182, 232, 0.3);
}

.blog-card-img {
    height: 190px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 24px;
}
.blog-card-meta {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 10px;
    display: flex;
    gap: 14px;
    align-items: center;
}
.blog-card-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card-excerpt {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 16px;
}

/* ================================
   CAREERS PAGE
================================ */
.job-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
}
.job-card:hover {
    border-color: rgba(41, 182, 232, 0.35);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}
.job-card-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.job-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0284c7;
    background: rgba(41, 182, 232, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
}
.job-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin: 10px 0 0;
}



.dropdown-grid.services{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0 10px;
    
}


