  /* ============================================================
                   1.  CSS VARIABLES & RESET
                   ============================================================ */
        :root {
            --navy: #0B1020;
            --midnight: #11182D;
            --electric-blue: #4F7CFF;
            --violet: #7657FF;
            --warm-orange: #FF9A5C;
            --soft-gold: #F6C978;
            --cream: #FFF9F1;
            --white: #FFFFFF;
            --light-bg: #F7F9FC;
            --text-dark: #111827;
            --text-muted: #111827;
            --glass-bg: rgba(255, 255, 255, 0.72);
            --glass-border: rgba(255, 255, 255, 0.25);
            --shadow-soft: 0 20px 60px rgba(11, 16, 32, 0.08);
            --shadow-glass: 0 8px 32px rgba(11, 16, 32, 0.06);
            --radius-card: 28px;
            --radius-btn: 60px;
            --transition-smooth: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            --font-primary: 'Inter', sans-serif;

            --gradient-primary: linear-gradient(135deg, #4F7CFF, #7657FF);

            
            --text-dark: #111827;
            --text-muted: #111827;
            --glass-bg: rgba(17, 24, 45, 0.75);
            --glass-border: rgba(255, 255, 255, 0.12);
            --shadow-glass: 0 20px 50px rgba(0, 0, 0, 0.5);
            --radius-card: 28px;
            --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            --font-primary: 'Inter', sans-serif;
            --gradient-primary: linear-gradient(135deg, #4F7CFF, #7657FF);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-primary);
            background: var(--white);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            display: block;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* ============================================================
                   2.  UTILITY CLASSES
                   ============================================================ */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(16px) saturate(1.4);
            -webkit-backdrop-filter: blur(16px) saturate(1.4);
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-glass);
        }

        .glass-dark {
            background: rgba(11, 16, 32, 0.65);
            backdrop-filter: blur(20px) saturate(1.6);
            -webkit-backdrop-filter: blur(20px) saturate(1.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .gradient-text {
            color:#fff;
            background: linear-gradient(135deg, var(--electric-blue), var(--violet), var(--warm-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-text-warm {
            background: linear-gradient(135deg, var(--warm-orange), var(--soft-gold), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-premium {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 36px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.01em;
            border: none;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .btn-premium-primary {
            background: linear-gradient(135deg, var(--electric-blue), var(--violet));
            color: var(--white);
            box-shadow: 0 8px 28px rgba(79, 124, 255, 0.35);
        }
        .btn-premium-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 16px 48px rgba(79, 124, 255, 0.45);
            color: var(--white);
        }

        .btn-premium-secondary {
            background: var(--glass-bg);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-dark);
        }
        .btn-premium-secondary:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: var(--shadow-soft);
            color: var(--text-dark);
        }

        .btn-premium-gold {
            background: linear-gradient(135deg, var(--soft-gold), var(--warm-orange));
            color: var(--navy);
            box-shadow: 0 8px 28px rgba(255, 154, 92, 0.3);
        }
        .btn-premium-gold:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 16px 48px rgba(255, 154, 92, 0.4);
            color: var(--navy);
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--electric-blue);
            background: rgba(79, 124, 255, 0.10);
            padding: 6px 18px;
            border-radius: 100px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 700;
            line-height: 1.12;
            letter-spacing: -0.03em;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .section-sub {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 640px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        /* ============================================================
                   3.  HEADER / NAVIGATION
                   ============================================================ */
                   
    .navbar-zyntelio .nav-link{color:#fff!important;}
        .navbar-zyntelio {
           position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0px 0;
    transition: var(--transition-smooth);
    
    background: rgba(6, 9, 22, .55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: all .35s var(--ease);
    z-index: 1000;
    /*background: #fff;*/
    /* filter: blur(1px); */
    /*backdrop-filter: blur(24px) saturate(1.6);*/
    /*-webkit-backdrop-filter: blur(24px) saturate(1.6);*/
    box-shadow: 0 40px 80px rgba(11, 16, 32, 0.12);
        }

        .navbar-zyntelio.scrolled {
            background: rgba(6, 9, 22, .55);;
           backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 40px rgba(11, 16, 32, 0.06);
            padding: 0px 0;
        }

        .navbar-zyntelio .navbar-brand {
            font-weight: 700;
            font-size: 1.6rem;
            letter-spacing: -0.02em;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .navbar-zyntelio .navbar-brand .brand-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--electric-blue), var(--violet));
            border-radius: 12px;
            color: var(--white);
            font-size: 1.1rem;
            transition: var(--transition-smooth);
        }

        .navbar-zyntelio .nav-link {
            font-weight: 500;
            font-size: 0.92rem;
            color: var(--text-dark);
            padding: 8px 18px !important;
            border-radius: 100px;
            transition: var(--transition-smooth);
            position: relative;
        }
        .navbar-zyntelio .nav-link:hover,
        .navbar-zyntelio .nav-link:focus {
            background: rgba(79, 124, 255, 0.08);
            color: var(--electric-blue);
        }
        .navbar-zyntelio .nav-link .dropdown-icon {
            font-size: 0.6rem;
            margin-left: 4px;
            opacity: 0.6;
        }

        .navbar-zyntelio .nav-cta {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* ——— Mega Menu ——— */
        .mega-menu {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(24px) saturate(1.6);
            -webkit-backdrop-filter: blur(24px) saturate(1.6);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            padding: 32px 28px;
            box-shadow: 0 40px 80px rgba(11, 16, 32, 0.12);
            min-width: 720px;
            transition: var(--transition-smooth);
        }

        .mega-menu .mm-col-title {
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 14px;
        }

        .mega-menu .mm-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 12px;
            border-radius: 14px;
            transition: var(--transition-smooth);
            font-weight: 500;
            font-size: 0.92rem;
            color: var(--text-dark);
        }
        .mega-menu .mm-link:hover {
            background: rgba(79, 124, 255, 0.07);
            color: var(--electric-blue);
            transform: translateX(4px);
        }
        .mega-menu .mm-link .mm-icon {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(79, 124, 255, 0.08);
            color: var(--electric-blue);
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .navbar-zyntelio .dropdown-toggle::after{display:none!important;}
        .navbar-zyntelio .dropdown-menu {background: linear-gradient(265deg, #0542cf94, #ed764ec9);}
        .navbar-zyntelio .dropdown-menu .dropdown-item {    border-bottom: 1px solid #ddd;
    color: #fff;}

            .navbar-zyntelio .dropdown-menu .dropdown-item:focus, .navbar-zyntelio .dropdown-menu .dropdown-item:hover {
    color: #fff!important;
    background-color: #fa6d37d6;
}
        .mega-menu .mm-panel {
            background: linear-gradient(135deg, rgba(79, 124, 255, 0.04), rgba(118, 87, 255, 0.04));
            border-radius: 18px;
            padding: 20px 18px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* dropdown animation */
        .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scale(0.97);
            transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
            background: transparent;
            border: none;
            padding-top: 16px;
        }
        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        /* ============================================================
                   4.  HERO
                   ============================================================ */
        #hero {
            position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
    overflow: hidden;
    background: var(--light-bg);
        }

        #hero .hero-bg-glow {
            position: absolute;
            top: -20%;
            right: -10%;
            width: 70%;
            height: 120%;
            background: radial-gradient(ellipse at 70% 50%, rgba(79, 124, 255, 0.12) 0%, rgba(118, 87, 255, 0.06) 50%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        #hero .hero-three-container{    background-image: url(../img/banner-img.jpg);
    opacity: 0.4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;}
        #hero .hero-three-container {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        #hero .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-eyebrow {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--electric-blue);
            background: rgba(79, 124, 255, 0.10);
            padding: 6px 20px;
            border-radius: 100px;
            margin-bottom: 24px;
            border: 1px solid rgba(79, 124, 255, 0.10);
        }

        .hero-h1 {
            font-size: clamp(3.2rem, 4vw, 7.2rem);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.04em;
            color: var(--text-dark);
            margin-bottom: 24px;
        }
        .hero-h1 .highlight {
            background: linear-gradient(135deg, var(--electric-blue), var(--violet), var(--warm-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 540px;
            line-height: 1.8;
            margin-bottom: 36px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        /* ——— Hero Dashboard Visual ——— */
        .hero-dashboard {
            position: relative;
            z-index: 2;
            perspective: 1200px;
        }

        .hero-dashboard .dashboard-card {
            background: rgba(255, 255, 255, 0.80);
            backdrop-filter: blur(20px) saturate(1.5);
            -webkit-backdrop-filter: blur(20px) saturate(1.5);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 32px;
            padding: 28px 24px;
            box-shadow: 0 40px 80px rgba(11, 16, 32, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.6);
            transform: rotateY(-4deg) rotateX(2deg);
            transition: var(--transition-smooth);
        }

        .hero-dashboard .dashboard-card:hover {
            transform: rotateY(-2deg) rotateX(1deg) translateY(-6px);
            box-shadow: 0 60px 120px rgba(11, 16, 32, 0.14);
        }

        .dashboard-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }
        .dashboard-row:last-child {
            border-bottom: none;
        }

        .dashboard-status {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .dashboard-status .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }
        .dot-green {
            background: #22c55e;
        }
        .dot-blue {
            background: var(--electric-blue);
        }
        .dot-orange {
            background: var(--warm-orange);
        }
        .dot-violet {
            background: var(--violet);
        }

        .dashboard-call {
            font-weight: 600;
            font-size: 0.95rem;
        }
        .dashboard-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* floating hero cards */
        .hero-float-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(16px) saturate(1.4);
            -webkit-backdrop-filter: blur(16px) saturate(1.4);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 12px 18px;
            box-shadow: 0 20px 48px rgba(11, 16, 32, 0.06);
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            animation: floatY 6s ease-in-out infinite alternate;
        }

        .hero-float-card .fc-icon {
            width: 28px;
            height: 28px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(79, 124, 255, 0.08);
            color: var(--electric-blue);
            font-size: 0.8rem;
        }

        .hero-float-card:nth-child(2) {
            animation-delay: 1.2s;
        }
        .hero-float-card:nth-child(3) {
            animation-delay: 2.4s;
        }
        .hero-float-card:nth-child(4) {
            animation-delay: 0.6s;
        }
        .hero-float-card:nth-child(5) {
            animation-delay: 1.8s;
        }

        @keyframes floatY {
            0% {
                transform: translateY(0px);
            }
            100% {
                transform: translateY(-18px);
            }
        }

        /* ============================================================
                   5.  TRUST / STATS STRIP
                   ============================================================ */
        .trust-strip {
            margin-top: -40px;
            position: relative;
            z-index: 10;
        }
        .trust-strip .trust-card {
            background: rgba(255, 255, 255, 0.80);
            backdrop-filter: blur(16px) saturate(1.4);
            -webkit-backdrop-filter: blur(16px) saturate(1.4);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            box-shadow: var(--shadow-soft);
            text-align: center;
            transition: var(--transition-smooth);
            height: 100%;
        }
        .trust-strip .trust-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px rgba(11, 16, 32, 0.08);
        }
        .trust-strip .trust-card .tc-icon {
            font-size: 1.6rem;
            color: var(--electric-blue);
            margin-bottom: 8px;
        }
        .trust-strip .trust-card .tc-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-dark);
        }
        .trust-strip .trust-card .tc-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ============================================================
                   6.  ONE PLATFORM
                   ============================================================ */
        #one-platform .platform-card {
            background: var(--white);
            border-radius: var(--radius-card);
            padding: 32px 24px 28px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition-smooth);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        #one-platform .platform-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-card);
            background: linear-gradient(135deg, rgba(79, 124, 255, 0.02), rgba(118, 87, 255, 0.02));
            opacity: 0;
            transition: var(--transition-smooth);
        }
        #one-platform .platform-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 32px 64px rgba(11, 16, 32, 0.08);
            border-color: rgba(79, 124, 255, 0.15);
        }
        #one-platform .platform-card:hover::before {
            opacity: 1;
        }
        #one-platform .platform-card .pc-icon {
            width: 56px;
            height: 56px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--white);
            background: linear-gradient(135deg, var(--electric-blue), var(--violet));
            margin-bottom: 18px;
            transition: var(--transition-smooth);
        }
        #one-platform .platform-card:hover .pc-icon {
            transform: scale(1.06) rotate(-2deg);
        }
        #one-platform .platform-card .pc-title {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 6px;
        }
        #one-platform .platform-card .pc-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ============================================================
                   7.  CALLING FEATURES
                   ============================================================ */
        #calling-features {
            background: var(--light-bg);
        }

        .calling-center {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 0;
        }
        .calling-center .center-phone {
            width: 200px;
            height: 320px;
            background: var(--navy);
            border-radius: 40px;
            padding: 16px 12px;
            box-shadow: 0 40px 80px rgba(11, 16, 32, 0.20);
            border: 2px solid rgba(255, 255, 255, 0.06);
            position: relative;
        }
        .calling-center .center-phone .phone-screen {
            background: var(--midnight);
            border-radius: 24px;
            height: 100%;
            padding: 14px 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .calling-center .center-phone .phone-screen .call-indicator {
            color: var(--white);
            font-size: 0.6rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.5;
        }
        .calling-center .center-phone .phone-screen .call-number {
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 600;
        }
        .calling-center .center-phone .phone-screen .call-status {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #22c55e;
            font-size: 0.7rem;
        }
        .calling-center .center-phone .phone-screen .call-status .pulse {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
            animation: pulse-dot 1.4s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.3;
                transform: scale(0.7);
            }
        }

        .feature-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .feature-tag {
            position: absolute;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 100px;
            padding: 8px 18px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: var(--shadow-glass);
            white-space: nowrap;
            transition: var(--transition-smooth);
            pointer-events: auto;
            cursor: default;
        }
        .feature-tag:hover {
            transform: scale(1.06);
            border-color: var(--electric-blue);
            box-shadow: 0 12px 32px rgba(79, 124, 255, 0.15);
        }
        .feature-tag .tag-icon {
            margin-right: 8px;
            color: var(--electric-blue);
        }

        /* ============================================================
                   8.  WORK FROM ANYWHERE
                   ============================================================ */
        #work-anywhere {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        #work-anywhere .wa-visual {
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .wa-node {
            position: absolute;
            background: rgba(255, 255, 255, 0.90);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 14px 20px;
            box-shadow: var(--shadow-glass);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition-smooth);
        }
        .wa-node .wn-icon {
            font-size: 1.4rem;
            color: var(--electric-blue);
        }
        .wa-node:hover {
            transform: scale(1.04);
            border-color: var(--electric-blue);
        }

        /* ============================================================
                   9.  BUILT TO GROW
                   ============================================================ */
        #built-grow {
            background: var(--light-bg);
        }
        .grow-path {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding: 20px 0;
        }
        .grow-step {
            flex: 1;
            min-width: 80px;
            text-align: center;
            padding: 20px 12px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition-smooth);
        }
        .grow-step:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px rgba(11, 16, 32, 0.06);
            border-color: var(--electric-blue);
        }
        .grow-step .gs-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--electric-blue);
        }
        .grow-step .gs-label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* ============================================================
                   10. SECURITY
                   ============================================================ */
        /*#security {*/
        /*    background: var(--navy);*/
        /*    color: var(--white);*/
        /*    position: relative;*/
        /*    overflow: hidden;*/
        /*}*/
        #security .section-label {
            background: rgba(255, 255, 255, 0.06);
            color: var(--soft-gold);
        }
        #security .section-title {
            color: var(--white);
        }
        #security .section-sub {
            color: rgba(255, 255, 255, 0.6);
        }
        #security .sec-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            backdrop-filter: blur(8px);
            transition: var(--transition-smooth);
        }
        #security .sec-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.12);
            transform: translateY(-4px);
        }
        #security .sec-card .sc-icon {
            font-size: 1.8rem;
            color: var(--soft-gold);
            margin-bottom: 12px;
        }
        #security .sec-card .sc-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 4px;
        }
        #security .sec-card .sc-desc {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* ============================================================
                   11. INTEGRATIONS
                   ============================================================ */
        /*#integrations {*/
        /*    background: var(--white);*/
        /*}*/
        .integration-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .integration-grid .int-item {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.04);
            border-radius: 20px;
            padding: 16px 28px;
            font-weight: 600;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .integration-grid .int-item:hover {
            transform: translateY(-6px);
            border-color: var(--electric-blue);
            box-shadow: 0 20px 48px rgba(79, 124, 255, 0.10);
        }
        .integration-grid .int-item .int-icon {
            font-size: 1.2rem;
            color: var(--electric-blue);
        }

        /* ============================================================
                   12. INDUSTRIES
                   ============================================================ */
        #industries {
            background: var(--light-bg);
        }
        .industry-card {
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--white);
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .industry-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 32px 64px rgba(11, 16, 32, 0.08);
        }
        .industry-card .ic-img {
            height: 180px;
            background: linear-gradient(135deg, rgba(79, 124, 255, 0.06), rgba(118, 87, 255, 0.06));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--electric-blue);
            position: relative;
        }
        .industry-card .ic-img .ic-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(79, 124, 255, 0.02), rgba(118, 87, 255, 0.02));
        }
        .industry-card .ic-body {
            padding: 24px 22px 28px;
        }
        .industry-card .ic-body .ic-title {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 4px;
        }
        .industry-card .ic-body .ic-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .industry-card .ic-body .ic-features {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
        }
        .industry-card .ic-body .ic-features li {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .industry-card .ic-body .ic-features li i {
            color: var(--electric-blue);
            font-size: 0.6rem;
        }

        /* ============================================================
                   13. WHY ZYNTELIO
                   ============================================================ */
        #why-zyntelio {
            background: var(--white);
        }
        .why-pillar {
            text-align: center;
            padding: 24px 16px;
            background: var(--white);
            border-radius: var(--radius-card);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition-smooth);
            height: 100%;
            box-shadow: var(--shadow-soft);
        }
        .why-pillar:hover {
            transform: translateY(-6px);
            border-color: var(--electric-blue);
            box-shadow: 0 24px 48px rgba(79, 124, 255, 0.08);
        }
        .why-pillar .wp-icon {
            font-size: 2.2rem;
            color: var(--electric-blue);
            margin-bottom: 12px;
        }
        .why-pillar .wp-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 4px;
        }
        .why-pillar .wp-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ============================================================
                   14. FINAL CTA
                   ============================================================ */
        #final-cta {
            background: linear-gradient(135deg, var(--navy), var(--midnight));
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        #final-cta .cta-glow {
            position: absolute;
            top: -30%;
            right: -10%;
            width: 60%;
            height: 160%;
            background: radial-gradient(ellipse at 70% 50%, rgba(79, 124, 255, 0.15), rgba(118, 87, 255, 0.06), transparent 70%);
            pointer-events: none;
        }
        #final-cta .section-title {
            color: var(--white);
        }
        #final-cta .section-sub {
            color: rgba(255, 255, 255, 0.6);
        }
        #final-cta .cta-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
            margin: 24px 0 32px;
        }
        #final-cta .cta-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }
        #final-cta .cta-features li i {
            color: var(--soft-gold);
        }


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: flex-end;
    }
}
      
        /* ============================================================
                   16. RESPONSIVE TWEAKS
                   ============================================================ */
        @media (max-width: 991px) {
            .dropdown-menu{display:none;}
            .navbar-zyntelio .navbar-collapse {
                background: rgba(255, 255, 255, 0.96);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                padding: 24px 20px;
                border-radius: 24px;
                margin-top: 12px;
                border: 1px solid rgba(255, 255, 255, 0.2);
                box-shadow: var(--shadow-soft);
                max-height: 400px;
                overflow-y: auto;
            }
            .navbar-zyntelio .nav-cta {
                flex-direction: column;
                width: 100%;
                margin-top: 12px;
            }
            .navbar-zyntelio .nav-cta .btn-premium {
                width: 100%;
                justify-content: center;
            }
            .mega-menu {
                min-width: auto;
                padding: 20px;
            }
            .hero-h1 {
                font-size: clamp(2.6rem, 10vw, 4rem);
            }
            .hero-dashboard .dashboard-card {
                transform: none;
                margin-top: 40px;
            }
            .hero-dashboard .dashboard-card:hover {
                transform: none;
            }
            .hero-float-card {
                display: none;
            }
            .calling-center .center-phone {
                width: 160px;
                height: 260px;
            }
            .feature-tag {
                font-size: 0.65rem;
                padding: 4px 12px;
            }
            .section-padding {
                padding: 60px 0;
            }
            .grow-path {
                flex-direction: column;
                align-items: stretch;
            }
            .grow-step {
                min-width: auto;
            }
            #footer .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            #footer .footer-bottom .fb-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 575px) {
            .hero-h1 {
                font-size: clamp(2rem, 12vw, 2.8rem);
            }
            .hero-desc {
                font-size: 1rem;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .hero-actions .btn-premium {
                width: 100%;
                justify-content: center;
            }
            .trust-strip .trust-card {
                padding: 16px;
            }
            #one-platform .platform-card {
                padding: 24px 16px;
            }
            .industry-card .ic-img {
                height: 140px;
            }
            .integration-grid .int-item {
                padding: 12px 18px;
                font-size: 0.85rem;
            }
            #final-cta .cta-features {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* ============================================================
                   17. ANIMATION HELPERS
                   ============================================================ */
        .reveal-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.92);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ============================================================
                   18. OWL CAROUSEL OVERRIDES
                   ============================================================ */
        .owl-carousel .owl-item {
            padding: 8px;
        }
        .owl-carousel .owl-nav button {
            background: var(--white) !important;
            border-radius: 50% !important;
            width: 44px;
            height: 44px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            font-size: 1.2rem !important;
            color: var(--text-dark) !important;
            transition: var(--transition-smooth);
        }
        .owl-carousel .owl-nav button:hover {
            background: var(--electric-blue) !important;
            color: var(--white) !important;
        }
        .owl-carousel .owl-dots .owl-dot span {
            background: rgba(79, 124, 255, 0.2) !important;
            transition: var(--transition-smooth);
        }
        .owl-carousel .owl-dots .owl-dot.active span {
            background: var(--electric-blue) !important;
            width: 32px !important;
        }

        /* ============================================================
                   19. REDUCED MOTION
                   ============================================================ */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .hero-float-card {
                animation: none !important;
            }
            .reveal-up,
            .reveal-scale {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* scroll progress indicator (optional) */
        .scroll-progress {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1040;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--white);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--electric-blue);
            opacity: 0;
            transform: scale(0.8);
            transition: var(--transition-smooth);
            pointer-events: none;
            cursor: default;
        }
        .scroll-progress.visible {
            opacity: 1;
            transform: scale(1);
        }




        .anywhere-visual {
    position: relative;
    width: 100%;
    height: 400px;
}

.anywhere-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection-line {
    stroke-dasharray: 8, 4;
    animation: dashMove 3s linear infinite;
}

@keyframes dashMove {
    to { stroke-dashoffset: -24; }
}

.device-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.node-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid rgba(79, 124, 255, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--electric-blue);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.device-node:hover .node-icon {
    border-color: var(--electric-blue);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.device-node span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
}

.center-node {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-node .node-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.node-office { top: 10%; left: 8%; }
.node-laptop { top: 10%; right: 7%; }
.node-phone { bottom: 10%; left: 10%; }
.node-desk { bottom: 10%; right: 10%; }





.feature-card {
            background: var(--light-bg);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(17, 24, 45, 0.05);
            padding: 40px;
            height: 100%;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 70px rgba(11, 16, 32, 0.12);
        }

        /* Dark variant for Security card to add dynamic contrast */
        .feature-card.dark-card {
            background: var(--navy);
            color: var(--white);
        }

        .feature-card.dark-card .text-muted-custom {
            color: rgba(255, 255, 255, 0.7);
        }

        .text-muted-custom {
            color: var(--text-muted);
        }

        .icon-badge {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 24px;
        }

        .icon-badge.gradient-1 {
            background: var(--gradient-primary);
            color: var(--white);
        }

        .icon-badge.gradient-2 {
            background: var(--gradient-warm);
            color: var(--navy);
        }

        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 30px 0 0 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .feature-list li i {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            margin-right: 14px;
            flex-shrink: 0;
        }

        .feature-card:not(.dark-card) .feature-list i {
            background: rgba(79, 124, 255, 0.1);
            color: var(--electric-blue);
        }

        .feature-card.dark-card .feature-list i {
            background: rgba(255, 154, 92, 0.15);
            color: var(--warm-orange);
        }

        .img-wrapper {
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 24px;
        }

        .img-wrapper img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .feature-card:hover .img-wrapper img {
            transform: scale(1.04);
        }

        .btn-custom {
            border-radius: var(--radius-btn);
            padding: 12px 32px;
            font-weight: 600;
            transition: var(--transition-smooth);
            border: none;
        }

        .btn-primary-custom {
            background: var(--gradient-primary);
            color: var(--white);
        }

        .btn-primary-custom:hover {
            opacity: 0.95;
            color: var(--white);
            transform: translateY(-2px);
        }

        .btn-warm-custom {
            background: var(--gradient-warm);
            color: var(--navy);
        }

        .btn-warm-custom:hover {
            opacity: 0.95;
            color: var(--navy);
            transform: translateY(-2px);
        }



        /* ------------------------------------ */
        /* Dark Glass Footer & Animations       */
        /* ------------------------------------ */
        .footer-wrapper {
            position: relative;
            overflow: hidden;
            padding: 90px 0 35px;
            background-color: var(--navy);
            color: var(--white);
        }

        /* Subtle Dark Grid Pattern Overlay */
        .footer-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 24px 24px;
            opacity: 0.3;
            z-index: 0;
        }

        /* Animated Glowing Orbs */
        .orb-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.35;
            z-index: 0;
            pointer-events: none;
            animation: pulseGlow 8s ease-in-out infinite alternate;
        }

        .orb-1 {
            width: 380px;
            height: 380px;
            background: var(--electric-blue);
            top: -100px;
            left: -50px;
        }

        .orb-2 {
            width: 320px;
            height: 320px;
            background: var(--violet);
            bottom: -50px;
            right: -50px;
            animation-delay: -4s;
        }

        @keyframes pulseGlow {
            0% {
                transform: scale(1) translate(0, 0);
            }
            100% {
                transform: scale(1.15) translate(30px, -20px);
            }
        }

        /* Glassmorphism Main Card */
        .glass-footer-card {
            position: relative;
            z-index: 1;
            background: var(--glass-bg);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-glass);
            padding: 50px 45px 30px;
        }

        /* Brand Elements */
        .footer-brand {
            font-size: 1.6rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--white);
            letter-spacing: -0.5px;
        }

        .fb-icon {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            box-shadow: 0 8px 24px rgba(79, 124, 255, 0.4);
        }

        .footer-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 18px 0 24px;
            max-width: 360px;
        }

        /* Social Icons */
        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-btn {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .social-btn:hover {
            background: var(--gradient-primary);
            color: var(--white);
            border-color: transparent;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(118, 87, 255, 0.4);
        }

        /* Title styling */
        .f-col-title {
            font-weight: 600;
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            font-size: 0.82rem;
            opacity: 0.9;
        }

        /* Horizontal/Grid Layout for Resources Links */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .f-link-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            color: var(--white);
            font-size: 0.9rem;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .f-link-card i {
            font-size: 1rem;
            color: var(--electric-blue);
            transition: var(--transition-smooth);
        }

        .f-link-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .f-link-card:hover i {
            transform: scale(1.15);
            color: var(--warm-orange);
        }

        /* Newsletter Minimal Form Box */
        .newsletter-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 18px;
            padding: 20px;
            margin-top: 24px;
        }

        .input-group-glass {
            display: flex;
            gap: 8px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px;
            border-radius: 40px;
        }

        .input-group-glass input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--white);
            padding-left: 16px;
            width: 100%;
            font-size: 0.85rem;
        }

        .input-group-glass input::placeholder {
            color: var(--text-muted);
        }

        .btn-glass-subscribe {
            background: var(--gradient-primary);
            border: none;
            color: var(--white);
            border-radius: 30px;
            padding: 8px 18px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: var(--transition-smooth);
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-glass-subscribe:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }

        /* Divider & Bottom Info */
        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
            margin: 40px 0 25px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .fb-links {
            display: flex;
            gap: 24px;
        }

        .fb-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .fb-links a:hover {
            color: var(--white);
        }

        @media (max-width: 991px) {
            .resources-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .glass-footer-card {
                padding: 30px 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }




/* cloud business  */


 /* Typography Helper Classes */
        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Modern Glass Buttons */
        .btn-custom {
            border-radius: var(--radius-btn);
            padding: 14px 32px;
            font-weight: 600;
            transition: var(--transition-smooth);
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-primary-custom {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 10px 25px rgba(79, 124, 255, 0.3);
        }

        .btn-primary-custom:hover {
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(79, 124, 255, 0.45);
        }

        .btn-secondary-custom {
            background: rgba(11, 16, 32, 0.05);
            color: var(--navy);
            border: 1px solid rgba(11, 16, 32, 0.1);
        }

        .btn-secondary-custom:hover {
            background: var(--navy);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Hero Section */
        .hero-section {
            padding: 120px 0 80px;
            background: radial-gradient(circle at top right, rgba(118, 87, 255, 0.08), transparent 50%),
                        radial-gradient(circle at bottom left, rgba(79, 124, 255, 0.08), transparent 50%);
            position: relative;
        }

        .hero-img-box {
            position: relative;
            z-index: 1;
        }

        .hero-img-box img {
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-soft);
        }


        .floating-badge {
            color:#fff;
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            padding: 16px 24px;
            border-radius: 20px;
            box-shadow: var(--shadow-glass);
            z-index: 2;
        }
        .floating-badge .text-muted{color: #fff !important; }

        .floating-badge-1 { top: 10%; left: -20px; }
        .floating-badge-2 { bottom: 10%; right: -20px; }

        /* General Section Card */
        .glass-card {
            background: var(--white);
            border-radius: var(--radius-card);
            padding: 35px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(11, 16, 32, 0.04);
            height: 100%;
            transition: var(--transition-smooth);
        }

        .glass-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(11, 16, 32, 0.12);
        }

        /* Feature Card Icon Badges */
        .icon-box {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: rgba(79, 124, 255, 0.1);
            color: var(--electric-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 20px;
            transition: var(--transition-smooth);
        }

        .glass-card:hover .icon-box {
            background: var(--gradient-primary);
            color: var(--white);
        }

        /* Benefits Section Style */
        .benefits-section {
            background: var(--navy);
            color: var(--white);
            padding: 90px 0;
            border-radius: 40px;
            margin: 40px 0;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.05);
            padding: 18px 24px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition-smooth);
        }

        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateX(5px);
        }

        .benefit-item i {
            color: var(--warm-orange);
            font-size: 1.2rem;
        }

        /* Carousel Navigation Styling */
        .owl-theme .owl-dots .owl-dot span {
            width: 12px;
            height: 12px;
            background: rgba(79, 124, 255, 0.2);
            transition: var(--transition-smooth);
        }

        .owl-theme .owl-dots .owl-dot.active span, 
        .owl-theme .owl-dots .owl-dot:hover span {
            background: var(--electric-blue);
            width: 28px;
        }

        /* FAQ Accordion Styling */
        .accordion-item {
            border: none;
            background: var(--white);
            margin-bottom: 16px;
            border-radius: 20px !important;
            box-shadow: var(--shadow-glass);
            overflow: hidden;
        }

        .accordion-button {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 22px 28px;
            background: var(--white);
            color: var(--text-dark);
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background: rgba(79, 124, 255, 0.05);
            color: var(--electric-blue);
        }

        .accordion-body {
            padding: 0 28px 24px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* Final CTA Section */
        #final-cta {
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 36px;
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
        }

        #final-cta::after {
            content: '';
            position: absolute;
            right: -100px;
            bottom: -100px;
            width: 350px;
            height: 350px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }


        /* Container and Typography Fixes */
.voip-features-section {
    background-color: var(--light-bg, #F7F9FC);
    position: relative;
}

.max-width-700 {
    max-width: 700px;
}

.section-tag-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(79, 124, 255, 0.08);
    border: 1px solid rgba(79, 124, 255, 0.2);
    color: #4F7CFF;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark, #111827);
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-muted, #667085);
    font-size: 1.05rem;
}

/* Base Card Style */
.voip-card {
    background: #FFFFFF;
    border-radius: var(--radius-card, 24px);
    padding: 32px 28px;
    border: 1px solid rgba(11, 16, 32, 0.06);
    box-shadow: 0 10px 30px rgba(11, 16, 32, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.voip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: all 0.4s ease;
}

/* Icon Box Styles */
.card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark, #111827);
    margin-bottom: 12px;
}

.card-desc {
    color: var(--text-muted, #667085);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    color: var(--text-dark, #111827);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.voip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 16, 32, 0.1);
}

.voip-card:hover .card-link i {
    transform: translateX(5px);
}

/* Multi-color Theme Variations */

/* 1. Blue */
.card-blue .card-icon-box { background: rgba(79, 124, 255, 0.1); color: #4F7CFF; }
.card-blue:hover::before { background: #4F7CFF; }
.card-blue:hover .card-icon-box { background: #4F7CFF; color: #FFFFFF; box-shadow: 0 8px 20px rgba(79, 124, 255, 0.35); }

/* 2. Violet */
.card-violet .card-icon-box { background: rgba(118, 87, 255, 0.1); color: #7657FF; }
.card-violet:hover::before { background: #7657FF; }
.card-violet:hover .card-icon-box { background: #7657FF; color: #FFFFFF; box-shadow: 0 8px 20px rgba(118, 87, 255, 0.35); }

/* 3. Orange */
.card-orange .card-icon-box { background: rgba(255, 154, 92, 0.12); color: #FF9A5C; }
.card-orange:hover::before { background: #FF9A5C; }
.card-orange:hover .card-icon-box { background: #FF9A5C; color: #FFFFFF; box-shadow: 0 8px 20px rgba(255, 154, 92, 0.35); }

/* 4. Emerald */
.card-emerald .card-icon-box { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.card-emerald:hover::before { background: #10B981; }
.card-emerald:hover .card-icon-box { background: #10B981; color: #FFFFFF; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35); }

/* 5. Pink */
.card-pink .card-icon-box { background: rgba(244, 63, 94, 0.1); color: #F43F5E; }
.card-pink:hover::before { background: #F43F5E; }
.card-pink:hover .card-icon-box { background: #F43F5E; color: #FFFFFF; box-shadow: 0 8px 20px rgba(244, 63, 94, 0.35); }

/* 6. Gold */
.card-gold .card-icon-box { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.card-gold:hover::before { background: #F59E0B; }
.card-gold:hover .card-icon-box { background: #F59E0B; color: #FFFFFF; box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35); }

/* 7. Cyan */
.card-cyan .card-icon-box { background: rgba(6, 182, 212, 0.1); color: #06B6D4; }
.card-cyan:hover::before { background: #06B6D4; }
.card-cyan:hover .card-icon-box { background: #06B6D4; color: #FFFFFF; box-shadow: 0 8px 20px rgba(6, 182, 212, 0.35); }

/* 8. Indigo */
.card-indigo .card-icon-box { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.card-indigo:hover::before { background: #6366F1; }
.card-indigo:hover .card-icon-box { background: #6366F1; color: #FFFFFF; box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35); }




/* contat us */


.contact-hero {
            padding: 140px 0 60px;
            background: var(--light-bg);
            position: relative;
        }

        .contact-card-info {
            background: var(--white);
            border-radius: var(--radius-card);
            padding: 32px 28px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: var(--shadow-soft);
            height: 100%;
            transition: var(--transition-smooth);
        }

        .contact-card-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(11, 16, 32, 0.08);
        }

        .info-icon-box {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--electric-blue), var(--violet));
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 20px;
            flex-shrink: 0;
        }

        .contact-form-wrapper {
            background: var(--white);
            border-radius: var(--radius-card);
            padding: 40px;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .form-label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            border-radius: 12px;
            padding: 12px 16px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            background-color: var(--light-bg);
        }

        .form-control:focus, .form-select:focus {
            background-color: var(--white);
            border-color: var(--electric-blue);
            box-shadow: 0 0 0 4px rgba(79, 124, 255, 0.15);
        }

        .social-link-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(79, 124, 255, 0.08);
            color: var(--electric-blue);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
            font-size: 1rem;
        }

        .social-link-btn:hover {
            background: var(--electric-blue);
            color: var(--white);
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .contact-form-wrapper {
                padding: 24px;
            }
        }





/*  privacy policy */


.privacy-content {
    background: var(--light-bg);
    padding-top: 40px;
    padding-bottom: 80px;
}

.privacy-card {
    background: var(--white);
    border-radius: var(--radius-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    padding: 50px;
}

@media (max-width: 768px) {
    .privacy-card {
        padding: 25px;
    }
}

/* Headings & Section Formatting */
.privacy-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(79, 124, 255, 0.1);
    position: relative;
}

.privacy-card h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--electric-blue);
}

.privacy-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 20px;
    margin-bottom: 12px;
}

.privacy-card p {
    color: #4B5563;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Custom Bullet Lists */
.privacy-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #4B5563;
    line-height: 1.7;
    font-size: 0.96rem;
}

.privacy-card ul li::before {
    content: "\f058"; /* FontAwesome Check Circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--electric-blue);
    font-size: 0.95rem;
}

/* Links & Address Formatting */
.privacy-card a {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.privacy-card a:hover {
    color: var(--violet);
    text-decoration: underline;
}

.privacy-address {
    background: var(--light-bg);
    border-left: 4px solid var(--electric-blue);
    padding: 18px 24px;
    border-radius: 0 12px 12px 0;
    font-style: normal;
    margin-bottom: 20px;
}

.privacy-address p {
    margin-bottom: 4px;
    font-weight: 500;
}
.privacy-policy.hero-section{margin-top:8%!important;}



/* terms */

.terms-content {
    background: var(--light-bg);
    padding-top: 40px;
    padding-bottom: 80px;
}

.terms-card {
    background: var(--white);
    border-radius: var(--radius-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    padding: 50px;
}

@media (max-width: 768px) {
    .terms-card {
        padding: 25px;
    }
}

/* Headings & Section Formatting */
.terms-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(79, 124, 255, 0.1);
    position: relative;
}

.terms-card h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--electric-blue);
}

.terms-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 20px;
    margin-bottom: 12px;
}

.terms-card p {
    color: #4B5563;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Custom Bullet Lists */
.terms-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.terms-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #4B5563;
    line-height: 1.7;
    font-size: 0.96rem;
}

.terms-card ul li::before {
    content: "\f058"; /* FontAwesome Check Circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--electric-blue);
    font-size: 0.95rem;
}

/* Links & Address Formatting */
.terms-card a {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.terms-card a:hover {
    color: var(--violet);
    text-decoration: underline;
}

.terms-address {
    background: var(--light-bg);
    border-left: 4px solid var(--electric-blue);
    padding: 18px 24px;
    border-radius: 0 12px 12px 0;
    font-style: normal;
    margin-bottom: 20px;
}

.terms-address p {
    margin-bottom: 4px;
    font-weight: 500;
}




/* Title styling */
        .f-col-title {
            font-weight: 600;
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            font-size: 0.82rem;
            opacity: 0.9;
        }

        /* Horizontal/Grid Layout for Resources Links */
      
.f-col-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-size: 0.8rem;
            opacity: 0.9;
        }

        /* Minimal Navigation Links */
        .f-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-size: 0.88rem;
            text-decoration: none;
            margin-bottom: 12px;
            transition: var(--transition-smooth);
        }

        .f-link i {
            font-size: 0.75rem;
            opacity: 0.5;
            transition: var(--transition-smooth);
        }

        .f-link:hover {
            color: var(--white);
            transform: translateX(4px);
        }

        .f-link:hover i {
            opacity: 1;
            color: var(--electric-blue);
        }
        