* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0058bb;
            --dark-navy: #1a1a1a;
            --darker-bg: #ffffff;
            --card-bg: #ffffff;
            --text-light: #1a1a1a;
            --text-secondary: #3c3d45;
            --text-accent: #9ca3af;
            --border-dark: #e5e7eb;
            --accent-blue: #0080ff;
            --light-blue: #dbeafe;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f3f4f6 100%);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* HEADER STYLES */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background-color: rgba(252, 249, 248, 0.8);
            border-bottom: 1px solid #e2e8f0;
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        nav {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 64px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .logo:hover {
            color: var(--primary-blue);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: #45464f;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            padding-bottom: 6px;
        }

        .nav-links a.active {
            color: #0058bb;
            border-bottom: 2px solid #0058bb;
            font-weight: 700;
        }

        .nav-links a:not(.active):hover {
            color: var(--text-light);
        }

        /* Mobile Menu Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Mobile Menu Styles */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 88, 187, 0.1);
            flex-direction: column;
            gap: 0;
            z-index: 999;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav a {
            padding: 16px 24px;
            border-bottom: 1px solid rgba(0, 88, 187, 0.7);
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            transition: var(--transition);
        }

        .mobile-nav a:hover {
            color: var(--accent-blue);
            background-color: rgba(0, 88, 187, 0.05);
        }

        .mobile-nav a.active {
            color: var(--primary-blue);
            background-color: rgba(0, 88, 187, 0.08);
        }

        .mobile-nav .cta-button {
            margin: 12px;
            width: calc(100% - 24px);
        }

        .cta-button {
            background-color: #011441;
            color: #ffffff;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .cta-button:hover {
            background-color: #0058bb;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 88, 187, 0.3);
        }

        /* MAIN CONTENT */
        main {
            margin-top: 80px;
        }

        .section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f3f4f6 100%);
            overflow: hidden;
            padding: 50px 64px 128px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            /* content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(0, 88, 187, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 128, 255, 0.06) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
            animation: gradientShift 15s ease-in-out infinite; */
             content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1280 896" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><rect x="0" y="0" height="100%" width="100%" fill="url(%23grad)" opacity="1"/><defs><radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="0" cy="0" r="10" gradientTransform="matrix(156.24 0 0 156.24 1280 0)"><stop stop-color="rgba(216,226,255,0.3)" offset="0"/><stop stop-color="rgba(216,226,255,0)" offset="0.5"/><stop stop-color="rgba(216,226,255,0)" offset="1"/></radialGradient></defs></svg>');
            pointer-events: none;
            z-index: 0;
        }

        /* @keyframes gradientShift {
            0%, 100% {
                background-image: 
                    radial-gradient(circle at 20% 50%, rgba(0, 88, 187, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(0, 128, 255, 0.06) 0%, transparent 50%);
            }
            50% {
                background-image: 
                    radial-gradient(circle at 30% 60%, rgba(0, 88, 187, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 70%, rgba(0, 128, 255, 0.08) 0%, transparent 50%);
            }
        } */

        /* Floating orbs animation */
        .hero::after {
            content: '';
            position: absolute;
            top: 10%;
            right: 10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 128, 255, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(40px);
            animation: float 20s ease-in-out infinite;
            z-index: 0;
            pointer-events: none;
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            perspective: 1000px;
        }

        .hero-content h1 {
            font-size: 56px;
            font-weight: 700;
            line-height: 64px;
            color: var(--text-light);
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            position: relative;
        }

        .hero-content h1::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue), transparent);
            opacity: 0;
            animation: slideInUnderline 1s ease-out 1s forwards;
        }

        @keyframes slideInUnderline {
            from {
                width: 0;
                opacity: 1;
            }
            to {
                width: 100%;
                opacity: 0;
            }
        }

        .hero-content h1 .highlight {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 400;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: rgba(0, 88, 187, 0.08);
            border: 1px solid rgba(0, 88, 187, 0.2);
            padding: 8px 16px;
            border-radius: 9999px;
            margin-bottom: 32px;
            font-size: 12px;
            font-weight: 600;
            color: rgb(0, 88, 187);
            letter-spacing: 0.6px;
            animation: fadeInUp 0.8s ease-out both;
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 88, 187, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }

        .hero-description {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 28px;
            margin-bottom: 32px;
            max-width: 576px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .button-group {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, #011441 0%, #011441 100%);
            color: #ffffff;
            padding: 18px 32px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(0, 88, 187, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.15);
            background: linear-gradient(135deg, #004696 0%, #004696 100%);
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-light);
            border: 2px solid #011441;
            padding: 16px 30px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #011441;
            z-index: -1;
            transition: left 0.4s ease;
        }

        .btn-secondary:hover::before {
            left: 0;
        }

        .btn-secondary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 88, 187, 0.3);
            color: #ffffff;
            background-color:#011441;
        }

        .btn-secondary span {
            position: relative;
            z-index: 1;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 32px;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        .feature-item {
            display: flex;
            gap: 8px;
            align-items: center;
            font-size: 12px;
            font-weight: 600;
            color: #45464f;
            letter-spacing: 0.6px;
            transition: var(--transition);
            animation: slideInLeft 0.6s ease-out forwards;
        }

        .feature-item:nth-child(2) {
            animation-delay: 0.1s;
        }

        .feature-item:nth-child(3) {
            animation-delay: 0.2s;
        }

        .feature-item:hover {
            color: var(--accent-blue);
            transform: translateX(8px);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .feature-item::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background-color: var(--primary-blue);
            color: #fff;
            border-radius: 50%;
            flex-shrink: 0;
            font-weight: 700;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 0.8s ease-out 0.4s both;
        }

        .image-wrapper {
            background: linear-gradient(135deg, rgba(43, 1, 183, 0.8),rgba(203, 25, 230, 0.8));
            backdrop-filter: blur(5px);
            border: 1px solid rgba(0, 88, 187, 0.2);
            border-radius: 16px;
            padding: 17px;
            box-shadow: 0 8px 32px rgba(0, 88, 187, 0.1);
            overflow: hidden;
            position: relative;
            animation: slideInImage 0.8s ease-out 0.4s both;
        }

        .image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 88, 187, 0.05) 0%, transparent 50%, rgba(0, 128, 255, 0.05) 100%);
            pointer-events: none;
            z-index: 2;
            opacity: 0;
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes slideInImage {
            from {
                opacity: 0;
                transform: translateX(50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        @keyframes glowPulse {
            0%, 100% {
                opacity: 0;
            }
            50% {
                opacity: 0.2;
            }
        }

        .image-wrapper img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 12px;
            display: block;
            transition: var(--transition);
            animation: zoomIn 0.8s ease-out 0.5s both;
        }

        .image-wrapper img:hover {
            transform: scale(1.02);
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .stat-box {
            position: absolute;
            bottom: -24px;
            left: -24px;
            background: linear-gradient(135deg, var(--primary-blue), #0058bb);
            color: #ffffff;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0, 88, 187, 0.2);
            max-width: 240px;
            animation: slideUp 0.8s ease-out 0.6s both;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            animation: shine 3s infinite;
        }

        .stat-box:hover {
            transform: translateY(-30px);
            box-shadow: 0 20px 60px rgba(0, 88, 187, 0.4);
        }

        @keyframes shine {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) translateX(0px);
            }
            25% {
                transform: translateY(-30px) translateX(20px);
            }
            50% {
                transform: translateY(-60px) translateX(-20px);
            }
            75% {
                transform: translateY(-30px) translateX(20px);
            }
        }

        .stat-box h3 {
            font-size: 40px;
            font-weight: 700;
            line-height: 60px;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .stat-box p {
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        /* 
        .about {
            background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
            padding: 96px 64px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-blue);
            letter-spacing: 1.4px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 600;
            color: var(--text-light);
            letter-spacing: -0.32px;
            max-width: 672px;
            margin: 0 auto;
        }

        .about-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .about-text {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 28px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .card {
            background: linear-gradient(135deg, var(--primary-blue), #0058bb);
            border: 1px solid var(--border-dark);
            border-radius: 12px;
            padding: 25px;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 88, 187, 0.08);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(0, 88, 187, 0.12);
            border-color: var(--primary-blue);
            background: linear-gradient(135deg, rgba(2, 55, 116, 0.9), rgba(0, 128, 255, 0.9));
        }

        .card h3 {
            font-size: 24px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            line-height: 32px;
        }

        .card p {
            font-size: 16px;
            color: #fff;
            line-height: 24px;
        }

        .about-image {
            background: linear-gradient(135deg, rgba(0, 88, 187, 0.08), rgba(0, 128, 255, 0.05));
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(0, 88, 187, 0.12);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
            */

        .about {
            background: linear-gradient(135deg, #1e3a7a 0%, #1f3a7a 100%);
            padding: 96px 64px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #0058bb;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: -0.32px;
            max-width: 672px;
            margin: 0 auto;
        }

        .about-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .about-text {
            font-size: 18px;
            color: #b3bcc9;
            line-height: 28px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .card {
            background: linear-gradient(135deg, #1f3a7a, rgba(18, 29, 61, 0.8));
            border: 1px solid #2a4a8a;
            border-radius: 12px;
            padding: 25px;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 88, 187, 0.08);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(0, 88, 187, 0.12);
            border-color: #0058bb;
            background: linear-gradient(135deg, rgba(2, 55, 116, 0.9), rgba(0, 128, 255, 0.9));
        }

        .card h3 {
            font-size: 24px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
            line-height: 32px;
        }

        .card p {
            font-size: 16px;
            color: #b3bcc9;
            line-height: 24px;
        }

        .about-image {
            background: linear-gradient(135deg, rgba(0, 88, 187, 0.08), rgba(0, 128, 255, 0.05));
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(0, 88, 187, 0.12);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

       .section-title1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 16px;
            letter-spacing: -1px;
            background: linear-gradient(135deg, rgb(89, 170, 225),rgb(7, 122, 199) );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

        /* WHY EVIO SECTION */
        .why-evio {
            background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
            padding: 96px 64px;
            color: var(--text-light);
        }

        .why-evio-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 4fr 8fr;
            gap: 24px;
            align-items: start;
        }

        /* .why-evio h2 {
            font-size: 32px;
            font-weight: 600;
            line-height: 40px;
            margin-bottom: 24px;
        } */

        .why-evio .section-description {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 24px;
            margin-bottom: 24px;
        }

        .why-evio-main-card {
            background: linear-gradient(135deg, rgba(0, 88, 187, 0.08), rgba(0, 128, 255, 0.05));
            border: 1px solid rgba(0, 88, 187, 0.15);
            border-radius: 16px;
            padding: 25px;
            transition: var(--transition);
        }

        .why-evio-main-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 88, 187, 0.15);
        }

        .why-evio-main-card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 32px;
        }

        .why-evio-main-card p {
            font-size: 16px;
            opacity: 0.8;
            line-height: 24px;
        }

        .why-evio-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }

        .why-card {
            background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.9));
            border: 1px solid var(--border-dark);
            border-radius: 16px;
            padding: 33px;
            transition: var(--transition);
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 88, 187, 0.12);
            border-color: var(--primary-blue);
            background: linear-gradient(135deg, rgba(0, 88, 187, 0.05), rgba(0, 128, 255, 0.03));
        }

        .why-card h4 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 32px;
            color:#011441;
        }

        .why-card p {
            font-size: 16px;
            opacity: 0.7;
            line-height: 24px;
        }

        /* FAQ SECTION */
        .faq {
            padding: 96px 64px;
            background: linear-gradient(135deg, #1f3a7a 0%, #1e3a7a 100%);
        }

        .faq-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 48px;
            align-items: start;
        }

        .faq-header h2 {
            font-size: 32px;
            font-weight: 600;
            color: #ffffff;
            line-height: 40px;
            margin-bottom: 16px;
        }

        .faq-header p {
            font-size: 18px;
            color: #b3bcc9;
            line-height: 28px;
        }

        .faq-items {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: linear-gradient(135deg, #1f3a7a, rgba(18, 29, 61, 0.8));
            border: 1px solid #2a4a8a;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: #0058bb;
            box-shadow: 0 8px 20px rgba(0, 88, 187, 0.15);
        }

        .faq-question {
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: transparent;
            border: none;
            width: 100%;
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            text-align: left;
            transition: var(--transition);
        }

        .faq-question:hover {
            color:#0080ff;
        }

        .faq-icon {
            transition: var(--transition);
            color: #0058bb;
            font-size: 18px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 24px;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 24px 24px;
        }

        .faq-answer p {
            font-size: 16px;
            color: #b3bcc9;
            line-height: 24px;
        }

        /* FORM SECTION */
        .form-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
            padding: 96px 64px;
        }

        .form-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: center;
        }

        .form-content h2 {
            font-size: 56px;
            font-weight: 700;
            color: var(--text-light);
            line-height: 64px;
            margin-bottom: 24px;
        }

        .form-content p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 28px;
            margin-bottom: 24px;
        }

        .contact-info {
            background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.9));
            border: 1px solid var(--border-dark);
            border-radius: 12px;
            padding: 17px;
            display: flex;
            gap: 16px;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 88, 187, 0.08);
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #0080ff, #0058bb);
            border: 1px solid rgba(0, 88, 187, 0.5);
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 20px;
        }

        .contact-details h4 {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 0.6px;
        }

        .contact-details p {
            font-size: 14px;
            font-weight: 700;
            color: #012068;
        }

        .contact-details p a {
            color: #012068;
            text-decoration: none;
            transition: var(--transition);
        }

        .form-wrapper {
            background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.9));
            border: 1px solid var(--border-dark);
            border-radius: 24px;
            padding: 49px;
            box-shadow: 0 16px 40px rgba(0, 88, 187, 0.1);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            margin-bottom: 8.5px;
            letter-spacing: 0.14px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 18px 16px;
            background: rgba(0, 88, 187, 0.05);
            border: 1px solid rgba(0, 88, 187, 0.15);
            border-radius: 12px;
            font-family: inherit;
            font-size: 16px;
            color: var(--text-light);
            transition: var(--transition);
            resize: none;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-accent);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(0, 88, 187, 0.08);
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 88, 187, 0.1);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .form-submit {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: #ffffff;
            padding: 20px;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            box-shadow: 0 8px 24px rgba(0, 88, 187, 0.2);
        }

        .form-submit:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 88, 187, 0.3);
        }

        .form-submit:active {
            transform: translateY(-2px);
        }

        /* FOOTER */
        footer {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            color: var(--text-light);
            padding: 64px;
            border-top: 1px solid rgba(0, 88, 187, 0.1);
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(0, 88, 187, 0.1);
        }

        .footer-col h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 24px;
            line-height: 32px;
        }

        .footer-col h4 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 24px;
            line-height: 32px;
        }

        .footer-col p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 24px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-col ul li,.footer-col ul li a {
            text-decoration: none;
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 24px;
            transition: var(--transition);
        }

        .footer-col ul li:hover {
            color: var(--primary-blue);
            transform: translateX(4px);
        }

        .footer-bottom {
            color:#004696 !important;
        }

        .footer-bottom a{
            color:#004696 !important;
            text-decoration: none;
            font-weight: 600;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(0, 88, 187, 0.12), rgba(0, 128, 255, 0.08));
            border: 1px solid rgba(0, 88, 187, 0.15);
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 24px;
            font-size: 18px;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            border-color: var(--accent-blue);
            transform: translateY(-4px);
        }

        /* Social Links Container */
        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border: 1.5px solid rgba(0, 88, 187, 1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(0, 88, 187, 0.9);
        }

        .social-link:hover {
            border-color: var(--accent-blue);
            color: var(--accent-blue);
            background: rgba(0, 88, 187, 0.1);
            box-shadow: 0 0 16px rgba(0, 128, 255, 0.2);
            transform: translateY(-3px);
        }

        /* Counter Section Styles */
        .stats-section {
            padding: 96px 64px;
            background: linear-gradient(135deg, #1e3a7a 0%, #1f3a7a 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(0, 88, 187, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 128, 255, 0.06) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .stats-container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(0, 88, 187, 0.08), rgba(0, 128, 255, 0.04));
            border: 1px solid rgba(0, 88, 187, 0.15);
            border-radius: 20px;
            padding: 48px 32px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 128, 255, 0.08) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-12px);
            border-color: var(--accent-blue);
            background: linear-gradient(135deg, rgba(0, 88, 187, 0.12), rgba(0, 128, 255, 0.08));
            box-shadow: 0 20px 60px rgba(0, 88, 187, 0.15);
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-icon {
            font-size: 48px;
            margin-bottom: 24px;
            display: block;
            animation: floatIcon 3s ease-in-out infinite;
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color:#fff;
            margin-bottom: 8px;
            animation: countUp 2.5s ease-out;
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-label {
            font-size: 20px;
            font-weight: 600;
            color:rgba(255,255,255,.9);
            margin-bottom: 8px;
        }

        .stat-description {
            font-size: 14px;
            color: #e8e8eb;
            line-height: 1.6;
        }

        .social-icon {
            text-align: center;
            font-size: 12px;
            color: var(--text-accent);
            font-weight: 600;
            letter-spacing: 0.6px;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            nav {
                padding: 0 32px;
            }

            .hero, .about, .services, .why-evio, .faq, .form-section, footer {
                padding: 64px 32px;
            }

            .hero-container,
            .about-container,
            .faq-container,
            .form-container,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-title {
                max-width: 100%;
            }

            .why-evio-container {
                grid-template-columns: 1fr;
            }

            .why-evio-grid {
                grid-template-columns: 1fr;
            }

            .stat-box {
                bottom: -20px;
                left: -20px;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 0 20px;
                height: 70px;
            }

            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none;
            }

            .cta-button {
                display: none;
            }

            .mobile-nav a {
                padding: 14px 16px;
                font-size: 15px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .social-links {
                flex-wrap: wrap;
                gap: 10px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .stat-card {
                padding: 36px 24px;
            }

            .stat-number {
                font-size: 36px;
            }

            .stat-label {
                font-size: 16px;
            }

            .hero, .about, .services, .why-evio, .faq, .form-section, footer {
                padding: 48px 20px;
            }

            .hero h1,
            .form-content h2 {
                font-size: 36px;
                line-height: 44px;
            }

            .section-title {
                font-size: 24px;
                line-height: 32px;
            }

            .button-group {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 28px;
            }

            .service-icon {
                width: 52px;
                height: 52px;
                font-size: 28px;
                margin-bottom: 16px;
            }

            .service-card h3 {
                font-size: 20px;
            }

            .service-description {
                font-size: 13px;
            }

            .service-list-item {
                font-size: 14px;
            }

            .service-footer {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-top: 16px;
                padding-top: 12px;
            }

            .services {
                padding: 48px 20px;
            }

            .services::before,
            .services::after {
                width: 300px;
                height: 300px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .why-evio h2 {
                font-size: 28px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            header {
                height: 60px;
            }

            nav {
                padding: 0 16px;
                height: 60px;
            }

            .nav-links {
                gap: 8px;
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .logo {
                font-size: 14px;
                gap: 6px;
            }

            .logo img {
                height: 28px;
            }

            .cta-button {
                padding: 8px 12px;
                font-size: 11px;
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-bottom: 20px;
                padding-bottom: 20px;
            }

            .social-links {
                justify-content: center;
                gap: 8px;
            }

            .social-link {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .stats-section {
                padding: 48px 16px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .stat-card {
                padding: 28px 16px;
            }

            .stat-icon {
                font-size: 36px;
                margin-bottom: 16px;
            }

            .stat-number {
                font-size: 28px;
                margin-bottom: 6px;
            }

            .stat-label {
                font-size: 14px;
                margin-bottom: 4px;
            }

            .stat-description {
                font-size: 12px;
            }

            .hero, .about, .services, .why-evio, .faq, .form-section, footer {
                padding: 32px 16px;
            }

            .hero h1,
            .form-content h2 {
                font-size: 28px;
                line-height: 36px;
            }

            .section-header {
                margin-bottom: 32px;
            }

            .section-title {
                font-size: 20px;
                line-height: 28px;
            }

            .service-card {
                padding: 20px;
                transform: translateY(0) scale(1) !important;
            }

            .service-card h3 {
                font-size: 18px;
            }

            .service-description {
                display: none;
            }

            .service-footer {
                display: none;
            }

            .service-icon {
                width: 44px;
                height: 44px;
                font-size: 24px;
            }

            .card {
                padding: 20px;
            }

            .form-wrapper {
                padding: 24px;
                border-radius: 16px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                margin-bottom: 24px;
                padding-bottom: 24px;
            }

            main {
                margin-top: 60px;
            }
        }

        /* ══ SOLUTIONS/FEATURES CSS ══ */
        #features { padding: 128px 0; }
        
        .section-wrap {
            max-width: 1240px;
            width: 100%;
            margin: 0 auto;
            padding: 0 48px;
        }
        
        .section-tag {
            font-size: 0.68rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--accent-blue);
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 12px;
        }
        
        .gt {
            background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-header.reveal {
            text-align: center;
            margin-bottom: 64px;
        }
        
        .section-desc {
            font-size: 1.0rem;
            font-weight: 400;
            color: #45464f;
            margin-top: 14px;
            line-height: 1.75;
        }
        
        .feature-tabs {
            display: flex;
            gap: 6px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 52px;
        }
        
        .feature-tab {
            padding: 9px 22px;
            border-radius: 4px;
            border: 1px solid var(--border-dark);
            font-family: 'Inter', sans-serif;
            font-size: 0.83rem;
            font-weight: bold;
            color: var(--text-light);
            background: rgba(0, 128, 255, 0.08);
            cursor: pointer;
            transition: all 0.25s;
            letter-spacing: 0.02em;
        }
        
        .feature-tab.active {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            color: #ffffff;
            border-color: transparent;
            box-shadow: 0 4px 20px rgba(0, 88, 187, 0.5);
        }
        
        .feature-tab:hover:not(.active) {
            border-color: #013970;
            color: var(--text-light);
            background: rgba(0, 128, 255, 0.08);
        }
        
        .feature-panel {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        
        .feature-panel.active {
            display: grid;
            animation: fadeUp 0.4s ease;
        }
        
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(22px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .feature-visual {
            background: var(--card-bg);
            border: 1px solid var(--border-dark);
            border-radius: 16px;
            padding: 32px;
            min-height: 360px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
        }
        
        .feature-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
        }
        
        .fv-label {
            font-size: 0.68rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #06984a;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .activity-feed {
            display: flex;
            flex-direction: column;
            gap: 9px;
        }
        
        .activity-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--accent-blue);
            border: 1px solid var(--border-dark);
            border-radius: 10px;
            padding: 11px 14px;
            animation: slideIn 0.5s ease both;
        }
        
        .activity-item:nth-child(2) { animation-delay: 0.1s; }
        .activity-item:nth-child(3) { animation-delay: 0.2s; }
        .activity-item:nth-child(4) { animation-delay: 0.3s; }
        .activity-item:nth-child(5) { animation-delay: 0.4s; }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-14px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .ai-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .ai-dot.blue {
            background: #014487;
            box-shadow: 0 0 6px var(--accent-blue);
             border:1px solid white;
        }
        
        .ai-dot.green {
            background: #4CAF7A;
            box-shadow: 0 0 6px #07763b;
            border:1px solid white;
        }
        
        .ai-dot.silver {
            background: var(--text-secondary);
        }
        
        .act-text {
            flex: 1;
        }
        
        .act-title {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-light);
        }
        
        .act-sub {
            font-size: 0.72rem;
            color: #ffffff;
            margin-top: 1px;
        }
        
        .act-time {
            font-size: 0.68rem;
            color: rgba(233, 242, 249, 0.9);
        }
        
        .workflow-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }
        
        .chip {
            padding: 7px 14px;
            border: 1px solid var(--border-dark);
            border-radius: 20px;
            font-size: 0.77rem;
            color: #fff;
            background: var(--accent-blue);
            transition: all 0.2s;
            cursor: default;
        }
        
        .chip:hover {
            border-color: var(--accent-blue);
            color: var(--text-light);
            background: rgba(0, 128, 255, 0.1);
        }
        
        .agent-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .agent-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border: 1px solid var(--accent-blue);
            border-radius: 10px;
            background: rgba(243, 243, 247, 0.7);
        }
        
        .agent-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }
        
        .agent-info {
            flex: 1;
        }
        
        .agent-name {
            font-size: 0.81rem;
            font-weight: 500;
            color: var(--text-light);
        }
        
        .agent-desc {
            font-size: 0.72rem;
            color: var(--text-accent);
            margin-top: 1px;
        }
        
        .agent-status {
            font-size: 0.67rem;
            background: rgba(76, 175, 122, 0.15);
            color: #4CAF7A;
            padding: 3px 8px;
            border-radius: 20px;
            font-weight: 600;
        }
        
        .integration-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        
        .integration-item {
            aspect-ratio: 1;
            border: 1px solid var(--border-dark);
            border-radius: 12px;
            background: var(--accent-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            transition: all 0.2s;
        }
        
        .integration-item:hover {
            border-color: var(--accent-blue);
            transform: scale(1.06);
            background: rgba(0, 128, 255, 0.1);
        }
        
        .insight-bars {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        
        .ibr {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .ibr-label {
            font-size: 0.77rem;
            color: var(--text-secondary);
            width: 90px;
        }
        
        .ibr-track {
            flex: 1;
            height: 6px;
            background: rgba(190, 195, 205, 0.8);
            border-radius: 3px;
            overflow: hidden;
            border: 1px solid var(--border-dark);
        }
        
        .ibr-fill {
            height: 100%;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
            box-shadow: 0 0 8px rgba(0, 128, 255, 0.4);
            width: 0;
            transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .ibr-pct {
            font-size: 0.77rem;
            font-weight: 600;
            color: var(--accent-blue);
            width: 36px;
            text-align: right;
        }
        
        .feature-number {
            font-size: 0.7rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--accent-blue);
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .feature-heading {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -0.015em;
            color: var(--dark-navy);
            margin-bottom: 16px;
        }
        
        .feature-desc {
            font-size: 1.10rem;
            font-weight: 300;
            line-height: 1.75;
            color: #33333b;
            margin-bottom: 28px;
        }
        
        .feature-points {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .feature-points li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 1.10rem;
            color: #33333b;
        }
        
        .feature-points li::before {
            content: '▸';
            color: var(--accent-blue);
            font-size: 0.75rem;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .reveal-delay-1 { transition-delay: 0.12s; }
        .reveal-delay-2 { transition-delay: 0.24s; }
        .reveal-delay-3 { transition-delay: 0.36s; }
        
        @media (max-width: 768px) {
            .feature-panel {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .integration-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .section-wrap {
                padding: 0 24px;
            }
        }

     .whatsapp-sticky-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.35),
        0 0 0 0 rgba(37, 211, 102, 0.6);
    transition: all 0.35s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-sticky-btn:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow:
        0 18px 40px rgba(37, 211, 102, 0.45),
        0 0 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
    position: relative;
    z-index: 2;
}

.btn-tooltip {
    position: absolute;
    right: 85px;
    white-space: nowrap;
    background: rgba(20, 20, 20, 0.95);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    width: 12px;
    height: 12px;
    background: rgba(20,20,20,0.95);
    transform: translateY(-50%) rotate(45deg);
}

.whatsapp-sticky-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.6),
            0 10px 30px rgba(37, 211, 102, 0.3);
    }

    70% {
        box-shadow:
            0 0 0 18px rgba(37, 211, 102, 0),
            0 10px 30px rgba(37, 211, 102, 0.3);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 10px 30px rgba(37, 211, 102, 0.3);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-sticky-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    .btn-tooltip {
        display: none;
    }
}

.whatsapp-sticky-btn::before{
    content:'';
    position:absolute;
    top:8px;
    right:8px;
    width:12px;
    height:12px;
    background:#fff;
    border-radius:50%;
    border:2px solid #25d366;
}

.whatsapp-sticky-btn i{
    font-size:38px;
    color:#fff;
    line-height:1;
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 2px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #0240dc;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(12, 193, 229, 0.7);
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(0,255,106,0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0,255,106,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,255,106,0);
    }
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(#c8d2dd 1px, transparent 1px),
    linear-gradient(90deg, #c8d2dd 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}
      
/*  */

.pp-tooltip {
    position: absolute;
    left: 85px;
    top:-70px;
    white-space: wrap;
    width:400px;
    background: rgba(20, 20, 20, 0.95);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -6px;
    width: 12px;
    height: 12px;
    background: rgba(20,20,20,0.95);
    transform: translateY(-50%) rotate(45deg);
}

.pp:hover .pp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.services-grid .services-card:nth-child(1){
            background: linear-gradient(135deg, #46f293, rgba(75, 252, 172, 0.9)) !important;
        }
