/* ========== RESET & BASE ========== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --primary: #0A1F44;
            --secondary: #007BFF;
            --accent: #0A1F44;
            --bg-dark: #F4F7FB;
            --bg-card: rgba(255, 255, 255, 0.75);
            --text: '#0A1F44';
            --text-muted: #4A5E78;
            --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #EBF0F7 40%, #F4F7FB 100%);
            --gradient-accent: linear-gradient(135deg, #0A1F44, #007BFF);
            --gradient-glow: linear-gradient(135deg, #0A1F4412, #007BFF12);
            --glass: rgba(255,255,255,0.7);
            --glass-border: rgba(10,31,68,0.08);
            --radius: 16px;
            --radius-sm: 10px;
            --shadow-glow: 0 4px 30px rgba(10, 31, 68, 0.06);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-dark);
            color: #0A1F44;
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; }

        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        ul { list-style: none; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== ANIMATED BG PARTICLES ========== */
        .bg-particles {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        .bg-particles span {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,123,255,0.06), transparent 70%);
            animation: floatParticle 20s infinite ease-in-out;
        }
        .bg-particles span:nth-child(1) { width: 400px; height: 400px; top: -100px; left: -100px; animation-delay: 0s; }
        .bg-particles span:nth-child(2) { width: 300px; height: 300px; top: 50%; right: -80px; animation-delay: -5s; }
        .bg-particles span:nth-child(3) { width: 500px; height: 500px; bottom: -150px; left: 30%; animation-delay: -10s; }
        .bg-particles span:nth-child(4) { width: 250px; height: 250px; top: 20%; left: 60%; animation-delay: -15s; }

        @keyframes floatParticle {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
            25% { transform: translate(30px, -40px) scale(1.1); opacity: 0.6; }
            50% { transform: translate(-20px, 30px) scale(0.9); opacity: 0.3; }
            75% { transform: translate(40px, 20px) scale(1.05); opacity: 0.5; }
        }

        /* ========== NAVBAR ========== */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.4s ease;
        }
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(10,31,68,0.08);
            padding: 10px 0;
            box-shadow: 0 2px 20px rgba(10,31,68,0.06);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-logo img {
            height: 70px;
            border-radius: 6px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: #4A5E78;
            transition: color 0.3s ease;
            position: relative;
        }
        .nav-links a:hover { color: #007BFF; }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 2px;
            background: var(--gradient-accent);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        .nav-links a:hover::after { width: 100%; }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--gradient-accent);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(0, 123, 255, 0.5);
        }

        /* Navbar Get a Demo button */
        .nav-links .btn-primary {
            background: #0A1F44;
            color: #FFFFFF;
        }
        .nav-links .btn-primary:hover {
            background: #0d2a5c;
            box-shadow: 0 6px 30px rgba(10, 31, 68, 0.3);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: transparent;
            color: #0A1F44;
            font-weight: 600;
            font-size: 14px;
            border-radius: 50px;
            border: 1.5px solid #0A1F44;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn-outline:hover {
            background: rgba(10, 31, 68, 0.06);
            transform: translateY(-2px);
        }

        /* Mobile menu */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }
        .nav-toggle span {
            width: 26px; height: 2.5px;
            background: #0A1F44;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 120px 0 80px;
            background: var(--gradient-hero);
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 60%; height: 100%;
            background: radial-gradient(ellipse at 80% 40%, rgba(0,123,255,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: linear-gradient(135deg, rgba(10,31,68,0.06), rgba(0,123,255,0.08));
            border: 1px solid rgba(0,123,255,0.15);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            color: #007BFF;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }
        .hero-badge i { font-size: 10px; }
        .hero h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #0A1F44;
            animation: fadeInUp 0.8s ease 0.1s backwards;
        }
        .hero h1 .gradient-text {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-desc {
            font-size: 17px;
            color: #4A5E78;
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 520px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.3s backwards;
        }
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }
        .hero-stat h3 {
            font-size: 32px;
            font-weight: 800;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-stat p {
            font-size: 13px;
            color: #4A5E78;
            margin-top: 4px;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 1s ease 0.3s backwards;
        }
        .hero-card {
            width: 100%;
            max-width: 480px;
            background: #0A1F44;
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(10,31,68,0.15);
            border-radius: 24px;
            padding: 40px 32px;
            box-shadow: 0 20px 60px rgba(10,31,68,0.2);
            position: relative;
            overflow: hidden;
            color: #FFFFFF;
        }
        .hero-card::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(0,123,255,0.08), transparent 30%);
            animation: rotateConic 10s linear infinite;
        }
        @keyframes rotateConic { to { transform: rotate(360deg); } }

        .hero-card-inner {
            position: relative;
            z-index: 1;
        }
        .dialer-ui {
            text-align: center;
        }
        .dialer-ui .phone-number {
            font-size: 28px;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            letter-spacing: 3px;
            margin-bottom: 24px;
            color: #00C6FF;
        }
        .dialer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            max-width: 240px;
            margin: 0 auto 24px;
        }
        .dialer-key {
            width: 64px; height: 64px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 600;
            font-family: 'Outfit', sans-serif;
            margin: 0 auto;
            transition: all 0.2s ease;
            cursor: pointer;
            color: #FFFFFF;
        }
        .dialer-key:hover {
            background: rgba(0,123,255,0.25);
            border-color: #007BFF;
            transform: scale(1.08);
        }
        .dialer-call-btn {
            width: 64px; height: 64px;
            border-radius: 50%;
            background: var(--gradient-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto;
            box-shadow: 0 4px 24px rgba(0,198,255,0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pulseCall 2s ease infinite;
        }
        @keyframes pulseCall {
            0%, 100% { box-shadow: 0 4px 24px rgba(0,198,255,0.4); }
            50% { box-shadow: 0 4px 40px rgba(0,198,255,0.7); }
        }

        .floating-badge {
            position: absolute;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(10,31,68,0.08);
            border-radius: 14px;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 500;
            color: #0A1F44;
            box-shadow: 0 8px 32px rgba(10,31,68,0.1);
            z-index: 2;
            animation: floatBadge 4s ease-in-out infinite;
        }
        .floating-badge.top-right { top: -20px; right: -30px; animation-delay: 0s; }
        .floating-badge.bottom-left { bottom: -15px; left: -30px; animation-delay: -2s; }
        .floating-badge .badge-icon {
            width: 36px; height: 36px;
            border-radius: 10px;
            background: var(--gradient-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        .floating-badge .badge-label { color: #4A5E78; font-size: 11px; }
        .floating-badge .badge-value { font-weight: 700; font-size: 14px; color: #0A1F44; }

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

        /* ========== SECTION COMMON ========== */
        section { position: relative; z-index: 1; }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: linear-gradient(135deg, rgba(10,31,68,0.06), rgba(0,123,255,0.08));
            border: 1px solid rgba(0,123,255,0.12);
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            color: #007BFF;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }
        .section-header h2 {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: #0A1F44;
        }
        .section-header p {
            font-size: 16px;
            color: #4A5E78;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ========== TRUSTED BY ========== */
        .trusted {
            padding: 60px 0;
            background: rgba(10,31,68,0.03);
            border-top: 1px solid rgba(10,31,68,0.06);
            border-bottom: 1px solid rgba(10,31,68,0.06);
        }
        .trusted p {
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 32px;
        }
        .trusted-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
            opacity: 0.5;
        }
        .trusted-logos span {
            font-size: 22px;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            color: #0A1F44;
            letter-spacing: 1px;
        }

        /* ========== SERVICES ========== */
        .services {
            padding: 100px 0;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .service-card {
            background: #FFFFFF;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(10,31,68,0.06);
            border-radius: var(--radius);
            padding: 36px 28px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(10,31,68,0.04);
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 3px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(0,123,255,0.15);
            box-shadow: 0 20px 60px rgba(10, 31, 68, 0.1);
        }
        .service-icon {
            width: 56px; height: 56px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(10,31,68,0.06), rgba(0,123,255,0.1));
            border: 1px solid rgba(0,123,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #007BFF;
            margin-bottom: 20px;
        }
        .service-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #0A1F44;
        }
        .service-card p {
            font-size: 14px;
            color: #4A5E78;
            line-height: 1.7;
        }
        .service-card .learn-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 20px;
            font-size: 13px;
            font-weight: 600;
            color: #007BFF;
            transition: gap 0.3s ease;
        }
        .service-card:hover .learn-more { gap: 10px; }

        /* ========== FEATURES ========== */
        .features {
            padding: 100px 0;
            background: linear-gradient(180deg, rgba(10,31,68,0.02) 0%, transparent 100%);
        }
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .features-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .feature-item {
            display: flex;
            gap: 16px;
            padding: 20px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            cursor: default;
        }
        .feature-item:hover {
            background: rgba(10,31,68,0.03);
        }
        .feature-item .fi-icon {
            width: 44px; height: 44px;
            min-width: 44px;
            border-radius: 12px;
            background: var(--gradient-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        .feature-item h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
            color: #0A1F44;
        }
        .feature-item p {
            font-size: 13px;
            color: #4A5E78;
            line-height: 1.6;
        }

        .features-showcase {
            position: relative;
        }
        .features-showcase .big-card {
            background: #0A1F44;
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(0,123,255,0.15);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(10,31,68,0.2);
            color: #FFFFFF;
        }
        .dashboard-mock {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .dash-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .dash-header h4 { font-size: 18px; font-weight: 700; color: #FFFFFF; }
        .dash-header .live-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: #00ff88;
            box-shadow: 0 0 12px rgba(0,255,136,0.6);
            display: inline-block;
            margin-right: 8px;
            animation: livePulse 1.5s ease infinite;
        }
        @keyframes livePulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }
        .dash-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .dash-stat {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
        }
        .dash-stat .ds-val {
            font-size: 24px;
            font-weight: 800;
            font-family: 'Outfit', sans-serif;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .dash-stat .ds-label {
            font-size: 11px;
            color: #8899b4;
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .dash-bars {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            height: 100px;
            padding-top: 10px;
        }
        .dash-bar {
            flex: 1;
            border-radius: 6px 6px 0 0;
            background: var(--gradient-accent);
            opacity: 0.7;
            transition: opacity 0.3s ease;
            min-height: 12px;
        }
        .dash-bar:hover { opacity: 1; }

        /* ========== STATS ========== */
        .stats-section {
            padding: 80px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-card {
            text-align: center;
            padding: 36px 20px;
            background: #FFFFFF;
            border: 1px solid rgba(10,31,68,0.06);
            border-radius: var(--radius);
            transition: all 0.3s ease;
            box-shadow: 0 2px 16px rgba(10,31,68,0.04);
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0,123,255,0.15);
            box-shadow: 0 12px 40px rgba(10,31,68,0.08);
        }
        .stat-card .stat-icon {
            width: 50px; height: 50px;
            margin: 0 auto 16px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(10,31,68,0.06), rgba(0,123,255,0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #007BFF;
        }
        .stat-card h3 {
            font-size: 36px;
            font-weight: 800;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-card p {
            font-size: 14px;
            color: #4A5E78;
            margin-top: 6px;
        }

        /* ========== WHY CHOOSE US ========== */
        .why-us {
            padding: 100px 0;
            background: linear-gradient(180deg, transparent 0%, rgba(10,31,68,0.02) 50%, transparent 100%);
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .why-card {
            display: flex;
            gap: 20px;
            padding: 32px;
            background: #FFFFFF;
            border: 1px solid rgba(10,31,68,0.06);
            border-radius: var(--radius);
            transition: all 0.3s ease;
            box-shadow: 0 2px 16px rgba(10,31,68,0.04);
        }
        .why-card:hover {
            border-color: rgba(0,123,255,0.15);
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(10,31,68,0.08);
        }
        .why-card .why-num {
            font-size: 40px;
            font-weight: 900;
            font-family: 'Outfit', sans-serif;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            min-width: 50px;
        }
        .why-card h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #0A1F44;
        }
        .why-card p {
            font-size: 14px;
            color: #4A5E78;
            line-height: 1.6;
        }

        /* ========== SOLUTIONS ========== */
        .solutions {
            padding: 100px 0;
        }
        .solutions-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .solutions-content .section-tag { margin-bottom: 16px; }
        .solutions-content h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #0A1F44;
        }
        .solutions-content p {
            font-size: 15px;
            color: #4A5E78;
            line-height: 1.7;
            margin-bottom: 32px;
        }
        .solution-checks {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 36px;
        }
        .solution-checks li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            font-weight: 500;
            color: #0A1F44;
        }
        .solution-checks li i {
            color: #007BFF;
            font-size: 16px;
        }
        .solutions-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .sol-card {
            background: #FFFFFF;
            border: 1px solid rgba(10,31,68,0.06);
            border-radius: var(--radius);
            padding: 28px 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 16px rgba(10,31,68,0.04);
        }
        .sol-card:hover {
            border-color: rgba(0,123,255,0.15);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(10,31,68,0.1);
        }
        .sol-card i {
            font-size: 32px;
            color: #007BFF;
            margin-bottom: 14px;
        }
        .sol-card h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #0A1F44;
        }
        .sol-card p {
            font-size: 12px;
            color: #4A5E78;
            line-height: 1.5;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(180deg, rgba(10,31,68,0.02) 0%, transparent 100%);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .testimonial-card {
            background: #FFFFFF;
            border: 1px solid rgba(10,31,68,0.06);
            border-radius: var(--radius);
            padding: 32px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 16px rgba(10,31,68,0.04);
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0,123,255,0.15);
            box-shadow: 0 12px 40px rgba(10,31,68,0.08);
        }
        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
            color: #FFB800;
            font-size: 14px;
        }
        .testimonial-card blockquote {
            font-size: 14px;
            color: #4A5E78;
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 42px; height: 42px;
            border-radius: 50%;
            background: var(--gradient-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
        }
        .testimonial-author .ta-name {
            font-size: 14px;
            font-weight: 600;
            color: #0A1F44;
        }
        .testimonial-author .ta-role {
            font-size: 12px;
            color: #4A5E78;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 100px 0;
        }
        .cta-box {
            background: linear-gradient(135deg, #0A1F44 0%, #0d2a5c 50%, #0A1F44 100%);
            border: none;
            border-radius: 24px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(10,31,68,0.25);
        }
        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: conic-gradient(from 180deg, transparent, rgba(0,123,255,0.08), transparent 25%);
            animation: rotateConic 15s linear infinite;
        }
        .cta-box > * { position: relative; z-index: 1; }
        .cta-box h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #FFFFFF;
        }
        .cta-box p {
            font-size: 16px;
            color: #a0b4d0;
            max-width: 500px;
            margin: 0 auto 36px;
        }
        .cta-box .section-tag {
            color: #00C6FF;
            border-color: rgba(0,198,255,0.2);
            background: linear-gradient(135deg, rgba(0,123,255,0.15), rgba(0,198,255,0.15));
        }
        .cta-box .btn-outline {
            color: #FFFFFF;
            border-color: rgba(255,255,255,0.4);
        }
        .cta-box .btn-outline:hover {
            background: rgba(255,255,255,0.1);
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cta-box .btn-whatsapp {
            background: #25D366;
            color: #FFFFFF;
            border: none;
        }
        .cta-box .btn-whatsapp:hover { background: #1ebe5b; }

        /* ========== ENQUIRY FORM ========== */
        .enquiry-section {
            padding: 100px 0;
        }
        .enquiry-wrap {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 50px;
            align-items: center;
            background: #FFFFFF;
            border: 1px solid rgba(10,31,68,0.08);
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(10,31,68,0.08);
        }
        .enquiry-info h2 {
            font-size: 34px;
            font-weight: 800;
            color: #0A1F44;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .enquiry-info p {
            font-size: 16px;
            color: #5a6b85;
            line-height: 1.7;
            margin-bottom: 28px;
        }
        .enquiry-contact-list { list-style: none; padding: 0; margin: 0; }
        .enquiry-contact-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
            font-size: 15px;
            color: #0A1F44;
            font-weight: 600;
        }
        .enquiry-contact-list li a { color: #0A1F44; text-decoration: none; }
        .enquiry-contact-list li a:hover { color: #007BFF; }
        .enquiry-contact-list .ec-icon {
            width: 44px; height: 44px;
            flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            border-radius: 12px;
            background: linear-gradient(135deg, #007BFF, #00C6FF);
            color: #FFFFFF;
            font-size: 17px;
        }
        .enquiry-form { display: flex; flex-direction: column; gap: 16px; }
        .enquiry-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .enquiry-form label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #0A1F44;
            margin-bottom: 6px;
        }
        .enquiry-form input,
        .enquiry-form textarea {
            width: 100%;
            padding: 13px 16px;
            border: 1px solid rgba(10,31,68,0.15);
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            color: #0A1F44;
            background: #f7f9fc;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .enquiry-form input:focus,
        .enquiry-form textarea:focus {
            outline: none;
            border-color: #007BFF;
            box-shadow: 0 0 0 3px rgba(0,123,255,0.12);
            background: #FFFFFF;
        }
        .enquiry-form textarea { resize: vertical; min-height: 110px; }
        .enquiry-form .btn-primary {
            justify-content: center;
            width: 100%;
            margin-top: 6px;
        }
        .form-note {
            font-size: 12.5px;
            color: #8899b4;
            text-align: center;
            margin-top: 4px;
        }

        /* ========== FOOTER (Always Dark/Black) ========== */
        .footer {
            padding: 60px 0 30px;
            background: #0A0F1A;
            border-top: none;
            color: #FFFFFF;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand img {
            height: 70px;
            margin-bottom: 16px;
            border-radius: 6px;
            filter: brightness(0) invert(1);
        }
        .footer-brand p {
            font-size: 14px;
            color: #8899b4;
            line-height: 1.7;
            max-width: 280px;
            margin-bottom: 20px;
        }
        .footer-socials {
            display: flex;
            gap: 12px;
        }
        .footer-socials a {
            width: 38px; height: 38px;
            border-radius: 10px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #8899b4;
            transition: all 0.3s ease;
        }
        .footer-socials a:hover {
            color: #007BFF;
            border-color: #007BFF;
            background: rgba(0,123,255,0.1);
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 18px;
            color: #FFFFFF;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-col ul li a {
            font-size: 14px;
            color: #8899b4;
            transition: color 0.3s ease;
        }
        .footer-col ul li a:hover { color: #007BFF; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom p {
            font-size: 13px;
            color: #667799;
        }
        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }
        .footer-bottom-links a {
            font-size: 13px;
            color: #667799;
            transition: color 0.3s ease;
        }
        .footer-bottom-links a:hover { color: #007BFF; }

        /* ========== FAQ ========== */
        .faq {
            padding: 100px 0;
        }
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            background: #FFFFFF;
            border: 1px solid rgba(10,31,68,0.06);
            border-radius: var(--radius);
            box-shadow: 0 2px 16px rgba(10,31,68,0.04);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-item[open] {
            border-color: rgba(0,123,255,0.15);
            box-shadow: 0 12px 40px rgba(10,31,68,0.08);
        }
        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-family: 'Outfit', sans-serif;
            font-size: 17px;
            font-weight: 600;
            color: #0A1F44;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary i {
            color: #007BFF;
            font-size: 16px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        .faq-item[open] summary i { transform: rotate(45deg); }
        .faq-item .faq-answer {
            padding: 0 28px 24px;
            font-size: 15px;
            color: #4A5E78;
            line-height: 1.7;
        }

        /* ========== ANIMATIONS ========== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }


        /* ========== SCROLLBAR ========== */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #F4F7FB; }
        ::-webkit-scrollbar-thumb { background: rgba(10,31,68,0.15); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: rgba(10,31,68,0.25); }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero .container { grid-template-columns: 1fr; text-align: center; }
            .hero-desc { margin: 0 auto 36px; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-visual { margin-top: 40px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: 1fr; }
            .features-showcase { order: -1; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .why-grid { grid-template-columns: 1fr; }
            .solutions-wrapper { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .floating-badge.top-right { right: 0; }
            .floating-badge.bottom-left { left: 0; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%; left: 0; right: 0;
                background: rgba(255,255,255,0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                padding: 24px;
                border-bottom: 1px solid rgba(10,31,68,0.08);
                gap: 20px;
                box-shadow: 0 10px 30px rgba(10,31,68,0.08);
            }
            .nav-toggle { display: flex; }
            .hero h1 { font-size: 34px; }
            .hero-stat h3 { font-size: 24px; }
            .hero-stats { gap: 24px; }
            .services-grid { grid-template-columns: 1fr; }
            .section-header h2 { font-size: 30px; }
            .cta-box { padding: 50px 24px; }
            .cta-box h2 { font-size: 28px; }
            .enquiry-wrap { grid-template-columns: 1fr; gap: 36px; padding: 32px 24px; }
            .enquiry-form .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .stats-grid { grid-template-columns: 1fr 1fr; }
            .solutions-cards { grid-template-columns: 1fr; }
            .floating-badge { display: none; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 28px; }
            .hero-desc { font-size: 15px; }
            .dialer-grid { max-width: 200px; gap: 10px; }
            .dialer-key { width: 52px; height: 52px; font-size: 17px; }
            .hero-stats { flex-direction: column; gap: 16px; }
        }

/* ========== INNER / SERVICE PAGES ========== */
.page-hero {
    padding: 150px 0 70px;
    background: var(--gradient-hero);
    position: relative;
    text-align: center;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #4A5E78;
    margin-bottom: 20px;
}
.breadcrumb a { color: #007BFF; }
.breadcrumb span { color: #8899b4; }
.page-hero h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #0A1F44;
    max-width: 800px;
    margin: 0 auto 18px;
}
.page-hero h1 .gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero p {
    font-size: 17px;
    color: #4A5E78;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 32px;
}
.page-hero .hero-buttons { justify-content: center; }

.prose-section { padding: 80px 0; }
.prose-wrap { max-width: 820px; margin: 0 auto; }
.prose-wrap h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0A1F44;
    margin: 0 0 16px;
    line-height: 1.25;
}
.prose-wrap h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0A1F44;
    margin: 32px 0 10px;
}
.prose-wrap p {
    font-size: 16px;
    color: #4A5E78;
    line-height: 1.8;
    margin-bottom: 16px;
}
.prose-wrap ul.bullets {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.prose-wrap ul.bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #0A1F44;
    line-height: 1.6;
}
.prose-wrap ul.bullets li i { color: #007BFF; margin-top: 4px; flex-shrink: 0; }

@media (max-width: 768px) {
    .page-hero { padding: 120px 0 50px; }
    .page-hero h1 { font-size: 30px; }
    .prose-wrap h2 { font-size: 24px; }
}

/* ========== BLOG ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.blog-card {
    background: #FFFFFF;
    border: 1px solid rgba(10,31,68,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(10,31,68,0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,123,255,0.15);
    box-shadow: 0 12px 40px rgba(10,31,68,0.08);
}
.blog-card-top {
    height: 150px;
    background: linear-gradient(135deg, #0A1F44, #007BFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #FFFFFF;
}
.blog-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card .tag-pill {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #007BFF;
    background: rgba(0,123,255,0.08);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.blog-card h3 { font-size: 19px; font-weight: 700; color: #0A1F44; line-height: 1.35; margin-bottom: 10px; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: #007BFF; }
.blog-card p { font-size: 14px; color: #4A5E78; line-height: 1.7; flex: 1; margin-bottom: 16px; }
.blog-card .read {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: #007BFF;
    transition: gap 0.3s ease;
}
.blog-card:hover .read { gap: 10px; }

.article-meta {
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
    font-size: 13px; color: #4A5E78; margin-bottom: 6px;
}
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-meta i { color: #007BFF; }

.prose-wrap table {
    width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px;
    border-radius: 10px; overflow: hidden;
}
.prose-wrap th, .prose-wrap td {
    border: 1px solid rgba(10,31,68,0.10); padding: 12px 14px; text-align: left; vertical-align: top;
}
.prose-wrap th { background: rgba(10,31,68,0.05); color: #0A1F44; font-family: 'Outfit', sans-serif; font-weight: 700; }
.prose-wrap td { color: #4A5E78; line-height: 1.6; }
.prose-wrap .key-takeaway {
    background: linear-gradient(135deg, rgba(10,31,68,0.04), rgba(0,123,255,0.06));
    border-left: 4px solid #007BFF;
    border-radius: 10px;
    padding: 18px 22px;
    margin: 24px 0;
    font-size: 15px;
    color: #0A1F44;
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .prose-wrap table { font-size: 13px; }
    .prose-wrap th, .prose-wrap td { padding: 8px 10px; }
}
