/* css/pages/index.css — page-specific styles for index.html (extracted, unchanged) */

        :root {
            --primary-trust-blue: #2762a1;
            --depth-indigo: #3d539e;
            --creative-accent: #94397f;
            --accent-purple: #b16be0;
            --glow-pink: #ff6bcb;
            --glow-blue: #6dd5ed;
            --glow-cyan: #5ae8ff;
            --clarity-white: #f8f9ff;
            --transition: cubic-bezier(0.23, 1, 0.32, 1);
            --speed-fast: 0.4s;
            --speed-faster: 0.25s;
        }

        /* ─── MAIN STYLES ─── */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--clarity-white);
            background: #080c14;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* .premium-background / .particles-container / .glow-particle styles now live in css/background-particles.css (shared across all pages) */

        /* ─── Enhanced Slide-up animations (faster) ─── */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-on-scroll.delay-1 {
            transition-delay: 0.08s;
        }

        .animate-on-scroll.delay-2 {
            transition-delay: 0.16s;
        }

        .animate-on-scroll.delay-3 {
            transition-delay: 0.24s;
        }

        .animate-on-scroll.delay-4 {
            transition-delay: 0.32s;
        }

        .animate-on-scroll.delay-5 {
            transition-delay: 0.40s;
        }

        /* ─── ENHANCED HEADER ─── */
        header {
            background: rgba(8, 12, 20, 0.95);
            backdrop-filter: blur(30px) saturate(200%);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
            box-shadow:
                0 10px 60px rgba(0, 0, 0, 0.9),
                0 0 40px rgba(148, 57, 127, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border-bottom: 2px solid;
            border-image: linear-gradient(90deg,
                    transparent 0%,
                    var(--primary-trust-blue) 20%,
                    var(--creative-accent) 50%,
                    var(--primary-trust-blue) 80%,
                    transparent 100%) 1;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        /* White background card for logo */
        .logo-container {
            position: relative;
            background: white;
            padding: 10px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            animation: logoGlow 3s ease-in-out infinite alternate;
        }

        @keyframes logoGlow {
            0% {
                box-shadow:
                    0 5px 20px rgba(0, 0, 0, 0.3),
                    0 0 0 rgba(39, 98, 161, 0);
            }

            100% {
                box-shadow:
                    0 5px 20px rgba(0, 0, 0, 0.3),
                    0 0 25px rgba(39, 98, 161, 0.4);
            }
        }

        .logo-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg,
                    transparent,
                    var(--primary-trust-blue),
                    var(--creative-accent),
                    var(--primary-trust-blue),
                    transparent);
            animation: borderFlow 3s linear infinite;
        }

        @keyframes borderFlow {
            0% {
                background-position: -200px 0;
            }

            100% {
                background-position: 200px 0;
            }
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            position: relative;
            flex-shrink: 0;
        }

        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            position: relative;
            transition: all var(--speed-fast) ease;
        }

        .logo-link:hover {
            transform: translateY(-2px);
        }

        .logo-img {
            height: 52px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 20px rgba(39, 98, 161, 0.6));
            transition: all var(--speed-fast) ease;
        }

        .logo-link:hover .logo-img {
            filter: drop-shadow(0 6px 30px rgba(39, 98, 161, 0.8));
        }


        /* ─── FLOATING WHATSAPP BUTTON ─── */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 62px;
            height: 62px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow:
                0 8px 25px rgba(37, 211, 102, 0.5),
                0 0 40px rgba(37, 211, 102, 0.3);
            text-decoration: none;
            z-index: 9999;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: none !important;
        }

        .whatsapp-float:hover {
            transform: scale(1.12) translateY(-4px);
            box-shadow:
                0 12px 35px rgba(37, 211, 102, 0.7),
                0 0 50px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float i {
            transition: transform 0.4s ease;
            z-index: 2;
        }

        .whatsapp-float:hover i {
            transform: scale(1.15) rotate(12deg);
        }

        /* Pulse Animation Ring */
        .whatsapp-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid #25D366;
            border-radius: 50%;
            animation: whatsappPulse 2s ease-out infinite;
            opacity: 0.6;
            z-index: 1;
        }

        /* Double Pulse Layer */
        .whatsapp-float::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid #25D366;
            border-radius: 50%;
            animation: whatsappPulse 2.8s ease-out infinite;
            opacity: 0.3;
        }

        @keyframes whatsappPulse {
            0% {
                transform: scale(0.6);
                opacity: 0.8;
            }

            70% {
                transform: scale(1.8);
                opacity: 0;
            }

            100% {
                transform: scale(2.2);
                opacity: 0;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 576px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 56px;
                height: 56px;
                font-size: 24px;
            }
        }

        /* Make sure it works with your custom cursor */
        .whatsapp-float {
            cursor: none !important;
        }

        /* ─── Enhanced Navigation ─── */
        .main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav-links {
            display: flex;
            gap: 4px;
            background: rgba(39, 98, 161, 0.25);
            padding: 6px;
            border-radius: 16px;
            border: 1px solid rgba(148, 57, 127, 0.3);
            backdrop-filter: blur(25px);
            box-shadow:
                inset 0 2px 10px rgba(255, 255, 255, 0.1),
                0 8px 40px rgba(0, 0, 0, 0.7),
                0 0 30px rgba(148, 57, 127, 0.3);
        }

        .nav-links a {
            padding: 12px 28px;
            color: rgba(248, 249, 255, 0.9);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            border-radius: 12px;
            transition: all var(--speed-faster) var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-links a i {
            font-size: 1.1rem;
            transition: transform var(--speed-fast) ease;
        }

        .nav-links a:hover i {
            transform: translateY(-2px);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(148, 57, 127, 0.2), rgba(109, 213, 237, 0.1));
            opacity: 0;
            transition: opacity var(--speed-fast) ease;
            z-index: -1;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
            transform: translateY(-2px);
            box-shadow:
                0 6px 25px rgba(148, 57, 127, 0.6),
                0 0 35px rgba(109, 213, 237, 0.4);
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            opacity: 1;
        }

        .nav-links a.active {
            background: linear-gradient(135deg, rgba(148, 57, 127, 0.4), rgba(109, 213, 237, 0.3));
            color: var(--clarity-white);
            text-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
        }

        /* ─── Mobile Menu Toggle ─── */
        .mobile-menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(148, 57, 127, 0.2);
            border: 1px solid rgba(148, 57, 127, 0.4);
            color: white;
            font-size: 1.5rem;
            cursor: none;
            align-items: center;
            justify-content: center;
            transition: all var(--speed-fast) ease;
            z-index: 1001;
        }

        .mobile-menu-toggle:hover {
            background: rgba(148, 57, 127, 0.3);
            transform: rotate(90deg);
        }

        /* ─── Mobile Menu Overlay ─── */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(8, 12, 20, 0.95);
            backdrop-filter: blur(30px);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 100px 30px 30px;
            max-width: 400px;
            margin: 0 auto;
        }

        .mobile-nav-links a {
            padding: 20px 25px;
            color: rgba(248, 249, 255, 0.9);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            border-radius: 15px;
            background: rgba(39, 98, 161, 0.15);
            border: 1px solid rgba(148, 57, 127, 0.3);
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all var(--speed-fast) ease;
            cursor: none;
        }

        .mobile-nav-links a i {
            font-size: 1.3rem;
            color: var(--glow-cyan);
        }

        .mobile-nav-links a:hover,
        .mobile-nav-links a.active {
            background: linear-gradient(135deg, rgba(148, 57, 127, 0.4), rgba(109, 213, 237, 0.3));
            color: var(--clarity-white);
            transform: translateX(10px);
            box-shadow:
                0 6px 25px rgba(148, 57, 127, 0.6),
                0 0 35px rgba(109, 213, 237, 0.4);
        }

        /* ─── MODERN HERO SECTION ─── */
        .hero-section {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding: 100px 40px;
            overflow: hidden;
            margin-top: 20px;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        /* Hero video section - Fixed for responsiveness */
        .hero-video-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            margin-top: 30px;
        }

        /* Fixed: Video container responsiveness */
        .hero-video-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(148, 57, 127, 0.3);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
            width: 100%;
            height: 100%;
            max-height: 300px;
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 20px;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-video-container:hover .video-overlay {
            opacity: 1;
        }

        .play-button {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg,
                    var(--primary-trust-blue),
                    var(--creative-accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
            cursor: none;
        }

        .hero-content {
            max-width: 800px;
            position: relative;
        }

        /* Hero Background Effects */
        .hero-bg-effects {
            position: absolute;
            inset: 0;
            z-index: 1;
            overflow: hidden;
        }

        .hero-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle,
                    rgba(39, 98, 161, 0.15) 0%,
                    rgba(148, 57, 127, 0.1) 30%,
                    transparent 70%);
            filter: blur(60px);
            animation: glowPulse 8s ease-in-out infinite;
            top: 30%;
            right: 10%;
        }

        .hero-glow-2 {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle,
                    rgba(109, 213, 237, 0.1) 0%,
                    rgba(255, 107, 203, 0.05) 30%,
                    transparent 70%);
            filter: blur(40px);
            animation: glowPulse 6s ease-in-out infinite reverse;
            bottom: 20%;
            left: 5%;
        }

        @keyframes glowPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.7;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.9;
            }
        }

        /* Hero Headline */
        .hero-headline {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            background: linear-gradient(135deg,
                    var(--clarity-white) 0%,
                    var(--glow-blue) 30%,
                    var(--glow-pink) 70%,
                    var(--clarity-white) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: textShimmer 3s ease-in-out infinite alternate;
            text-shadow:
                0 0 60px rgba(109, 213, 237, 0.3),
                0 0 90px rgba(148, 57, 127, 0.2);
        }

        @keyframes textShimmer {
            0% {
                background-position: 0% center;
            }

            100% {
                background-position: 100% center;
            }
        }

        /* Hero Sub-headline */
        .hero-subheadline {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--glow-cyan);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .skill-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            padding: 8px 18px;
            background: rgba(39, 98, 161, 0.2);
            border-radius: 12px;
            border: 1px solid rgba(148, 57, 127, 0.3);
            backdrop-filter: blur(10px);
            transition: all var(--speed-fast) ease;
            cursor: none;
        }

        .skill-tag:hover {
            transform: translateY(-3px);
            background: rgba(39, 98, 161, 0.3);
            border-color: var(--glow-pink);
            box-shadow: 0 6px 20px rgba(148, 57, 127, 0.3);
        }

        .skill-tag i {
            font-size: 1.2rem;
        }

        /* Hero Value Tags */
        .hero-value-tags {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .value-tag {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 22px;
            background: rgba(10, 15, 26, 0.6);
            border-radius: 14px;
            border: 1px solid rgba(148, 57, 127, 0.2);
            backdrop-filter: blur(15px);
            transition: all var(--speed-fast) ease;
            position: relative;
            overflow: hidden;
            cursor: none;
        }

        .value-tag::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(39, 98, 161, 0.2),
                    rgba(148, 57, 127, 0.1));
            opacity: 0;
            transition: opacity var(--speed-fast) ease;
        }

        .value-tag:hover {
            transform: translateY(-3px);
            border-color: var(--glow-blue);
            box-shadow: 0 8px 25px rgba(109, 213, 237, 0.2);
        }

        .value-tag:hover::before {
            opacity: 1;
        }

        .value-tag i {
            font-size: 1.3rem;
            color: var(--glow-blue);
        }

        .value-text {
            font-weight: 600;
            font-size: 1.1rem;
            background: linear-gradient(135deg, var(--clarity-white), var(--glow-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 18px 40px;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1.2rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all var(--speed-fast) ease;
            position: relative;
            overflow: hidden;
            cursor: none;
        }

        .hero-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.3),
                    transparent);
            transition: left 0.8s ease;
        }

        .hero-btn:hover::before {
            left: 100%;
        }

        .btn-primary-hero {
            background: linear-gradient(135deg, var(--creative-accent), var(--glow-pink));
            color: white;
            box-shadow:
                0 8px 30px rgba(148, 57, 127, 0.6),
                0 0 50px rgba(255, 107, 203, 0.4);
            border: 2px solid rgba(148, 57, 127, 0.5);
        }

        .btn-primary-hero:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow:
                0 12px 40px rgba(148, 57, 127, 0.8),
                0 0 70px rgba(255, 107, 203, 0.6);
        }

        .btn-secondary-hero {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(148, 57, 127, 0.4);
            backdrop-filter: blur(15px);
        }

        .btn-secondary-hero:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 30px rgba(148, 57, 127, 0.4);
        }

        .btn-icon {
            font-size: 1.4rem;
            transition: transform var(--speed-fast) ease;
        }

        .hero-btn:hover .btn-icon {
            transform: translateX(5px) rotate(15deg);
        }

        /* Hero Stats */
        .hero-stats {
            display: flex;
            gap: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(148, 57, 127, 0.2);
            flex-wrap: wrap;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--glow-blue), var(--glow-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--glow-cyan);
            margin-top: 5px;
            font-weight: 500;
        }

        /* Alternate Headlines (Hidden by default) */
        .alternate-headlines {
            margin-top: 40px;
            padding: 25px;
            background: rgba(10, 15, 26, 0.5);
            border-radius: 18px;
            border: 1px solid rgba(148, 57, 127, 0.2);
            backdrop-filter: blur(15px);
            display: none;
        }

        .alternate-headlines h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--glow-cyan);
        }

        .headline-option {
            padding: 12px 20px;
            background: rgba(39, 98, 161, 0.1);
            border-radius: 12px;
            margin-bottom: 10px;
            cursor: none;
            transition: all var(--speed-fast) ease;
            border: 1px solid transparent;
        }

        .headline-option:hover {
            background: rgba(39, 98, 161, 0.2);
            border-color: rgba(148, 57, 127, 0.3);
            transform: translateX(5px);
        }

        /* ─── Enhanced Categories Section ─── */
        .categories-section {
            margin: 100px 0;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title {
            font-size: 2.8rem;
            background: linear-gradient(135deg, var(--primary-trust-blue), var(--glow-blue), var(--glow-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 25%;
            width: 50%;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-trust-blue), var(--glow-blue));
            border-radius: 2px;
            box-shadow: 0 0 20px var(--glow-blue);
        }

        .section-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ─── Enhanced Category Cards ─── */
        /* ─── PROFESSIONAL SMALL CATEGORY CARDS ─── */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 28px;
            max-width: 1400px;
            margin: 0 auto;
            /* auto-fill (not auto-fit) so a single card keeps a normal card width
               instead of stretching to fill the whole row when there's only one item */
            justify-content: center;
        }

        .category-card {
            background: linear-gradient(145deg, rgba(13, 18, 32, 0.95), rgba(18, 25, 45, 0.95));
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(148, 57, 127, 0.2);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(148, 57, 127, 0.25);
            backdrop-filter: blur(20px);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-12px);
            box-shadow:
                0 20px 50px rgba(39, 98, 161, 0.6),
                0 0 40px rgba(177, 107, 224, 0.4);
            border-color: rgba(177, 107, 224, 0.5);
        }

        .category-image {
            height: 180px;
            overflow: hidden;
            position: relative;
            background: #05070d;
        }

        /* Blurred, darkened copy of the same image fills any empty space
           behind it — so images with text/graphics near the edges are
           always shown in full rather than cropped. */
        .category-img-backdrop {
            position: absolute;
            inset: -10px;
            background-size: cover;
            background-position: center;
            filter: blur(18px) brightness(0.55) saturate(1.2);
            transform: scale(1.15);
        }

        .category-img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.6s ease;
        }

        .category-card:hover .category-img {
            transform: scale(1.08);
        }

        .category-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: linear-gradient(135deg, #94397f, #ff6bcb);
            color: white;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 5px 13px;
            border-radius: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            z-index: 3;
            letter-spacing: 0.5px;
        }

        .category-icon {
            position: absolute;
            top: 14px;
            left: 14px;
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #2762a1, #6dd5ed);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
            box-shadow: 0 6px 20px rgba(39, 98, 161, 0.5);
            z-index: 3;
        }

        .category-content {
            padding: 22px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .category-name {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #f8f9ff, #6dd5ed);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.3;
        }

        .category-description {
            color: rgba(248, 249, 255, 0.78);
            font-size: 0.94rem;
            line-height: 1.55;
            flex: 1;
            margin-bottom: 16px;
        }

        .category-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 14px;
            border-top: 1px solid rgba(148, 57, 127, 0.25);
            font-size: 0.82rem;
        }

        .category-status {
            background: rgba(39, 98, 161, 0.3);
            color: #6dd5ed;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
            border: 1px solid rgba(109, 213, 237, 0.3);
        }

        .category-date {
            color: #b16be0;
            font-weight: 500;
        }

        /* Hover glow effect */
        .category-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 30%, rgba(109, 213, 237, 0.12), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 1;
        }

        .category-card:hover::after {
            opacity: 1;
        }

        /* ─── Why Choose Us Section ─── */
        .why-choose-section {
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }

        .why-choose-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(39, 98, 161, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(148, 57, 127, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
            background: rgba(10, 15, 26, 0.7);
            border-radius: 20px;
            padding: 35px;
            transition: all 0.5s var(--transition);
            border: 1px solid rgba(148, 57, 127, 0.2);
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            cursor: none;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-trust-blue), var(--creative-accent));
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(109, 213, 237, 0.05), transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(148, 57, 127, 0.4);
            box-shadow:
                0 20px 60px rgba(39, 98, 161, 0.5),
                0 0 40px rgba(148, 57, 127, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover::after {
            opacity: 1;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin-bottom: 25px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            inset: 0;
            background: inherit;
            opacity: 0.2;
            border-radius: inherit;
        }

        /* Different icon colors for each feature */
        .feature-card:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, rgba(39, 98, 161, 0.9), rgba(61, 83, 158, 0.9));
            box-shadow: 0 8px 25px rgba(39, 98, 161, 0.4);
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, rgba(148, 57, 127, 0.9), rgba(177, 107, 224, 0.9));
            box-shadow: 0 8px 25px rgba(148, 57, 127, 0.4);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, rgba(109, 213, 237, 0.9), rgba(90, 232, 255, 0.9));
            box-shadow: 0 8px 25px rgba(109, 213, 237, 0.4);
        }

        .feature-card:nth-child(4) .feature-icon {
            background: linear-gradient(135deg, rgba(255, 107, 203, 0.9), rgba(177, 107, 224, 0.9));
            box-shadow: 0 8px 25px rgba(255, 107, 203, 0.4);
        }

        .feature-card:nth-child(5) .feature-icon {
            background: linear-gradient(135deg, rgba(39, 98, 161, 0.9), rgba(109, 213, 237, 0.9));
            box-shadow: 0 8px 25px rgba(39, 98, 161, 0.4);
        }

        .feature-card:nth-child(6) .feature-icon {
            background: linear-gradient(135deg, rgba(148, 57, 127, 0.9), rgba(255, 107, 203, 0.9));
            box-shadow: 0 8px 25px rgba(148, 57, 127, 0.4);
        }

        .feature-card:nth-child(7) .feature-icon {
            background: linear-gradient(135deg, rgba(90, 232, 255, 0.9), rgba(61, 83, 158, 0.9));
            box-shadow: 0 8px 25px rgba(90, 232, 255, 0.4);
        }

        .feature-card:nth-child(8) .feature-icon {
            background: linear-gradient(135deg, rgba(39, 98, 161, 0.9), rgba(148, 57, 127, 0.9));
            box-shadow: 0 8px 25px rgba(39, 98, 161, 0.4);
        }

        .feature-content {
            flex: 1;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--clarity-white), var(--glow-blue));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.3;
        }

        .feature-description {
            color: rgba(248, 249, 255, 0.85);
            line-height: 1.6;
            font-size: 1.05rem;
        }

        /* ─── Enhanced Stats Section ─── */
        .stats-section {
            background: linear-gradient(135deg, rgba(39, 98, 161, 0.4), rgba(61, 83, 158, 0.4));
            border-radius: 28px;
            padding: 70px 40px;
            margin: 100px 40px;
            text-align: center;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(148, 57, 127, 0.4);
            box-shadow:
                0 25px 70px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(109, 213, 237, 0.3);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(135deg, var(--primary-trust-blue), var(--glow-blue), var(--glow-pink));
            box-shadow: 0 0 30px var(--glow-blue);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 50px;
        }

        .stat-item {
            position: relative;
            padding: 20px;
        }

        .stat-number {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--glow-blue), var(--glow-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            text-shadow: 0 0 30px rgba(109, 213, 237, 0.5);
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            color: var(--glow-cyan);
        }

        /* ─── ENHANCED FOOTER ─── */
        footer {
            background: linear-gradient(180deg, rgba(8, 12, 20, 0.95) 0%, rgba(13, 19, 33, 0.98) 100%);
            padding: 80px 0 30px;
            border-top: 2px solid;
            border-image: linear-gradient(90deg,
                    transparent 0%,
                    var(--primary-trust-blue) 20%,
                    var(--creative-accent) 50%,
                    var(--primary-trust-blue) 80%,
                    transparent 100%) 1;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent,
                    var(--glow-blue),
                    var(--glow-pink),
                    var(--glow-blue),
                    transparent);
            box-shadow: 0 0 20px var(--glow-blue);
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-logo-img {
            height: 48px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 15px rgba(39, 98, 161, 0.5));
        }

        .footer-logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--glow-blue), var(--accent-purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-description {
            color: rgba(248, 249, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        /* .app-download-buttons / .app-btn styles now live in css/footer.css (shared across all pages) */

        /* ─── IMPROVED SOCIAL LINKS ─── */
        .social-links {
            display: flex;
            gap: 18px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: rgba(39, 98, 161, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(148, 57, 127, 0.35);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .social-link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* ← changed from contain to cover */
            object-position: center;
            transition: transform 0.35s ease, filter 0.35s ease;
            border-radius: 4px;
            /* optional: slight rounding on image itself */
        }

        .social-link:hover img {
            transform: scale(1.18);
            filter: brightness(1.15) saturate(1.3);
        }

        /* Fallback Font Awesome icon styling */
        .social-link i {
            font-size: 26px;
            transition: transform 0.35s ease;
        }

        .social-link:hover i {
            transform: scale(1.15);
        }

        .footer-column h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            background: linear-gradient(135deg, var(--clarity-white), var(--glow-blue));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(135deg, var(--glow-blue), var(--glow-pink));
            border-radius: 2px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(248, 249, 255, 0.9);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            transition: all var(--speed-fast) ease;
            border-radius: 8px;
            padding-left: 12px;
            position: relative;
            overflow: hidden;
            cursor: none;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--glow-blue);
            opacity: 0;
            transition: opacity var(--speed-fast) ease;
        }

        .footer-links a:hover {
            color: var(--clarity-white);
            background: rgba(148, 57, 127, 0.1);
            padding-left: 20px;
            transform: translateX(5px);
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .footer-links a i {
            font-size: 1rem;
            color: var(--glow-cyan);
            transition: transform var(--speed-fast) ease;
        }

        .footer-links a:hover i {
            transform: translateX(3px);
        }

        .newsletter {
            background: rgba(39, 98, 161, 0.15);
            padding: 25px;
            border-radius: 16px;
            border: 1px solid rgba(148, 57, 127, 0.3);
            margin-top: 10px;
        }

        .newsletter p {
            color: rgba(248, 249, 255, 0.9);
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-input {
            padding: 14px 18px;
            border-radius: 12px;
            background: rgba(8, 12, 20, 0.6);
            border: 1px solid rgba(148, 57, 127, 0.4);
            color: var(--clarity-white);
            font-size: 1rem;
            transition: all var(--speed-fast) ease;
            cursor: text;
        }

        .newsletter-btn {
            padding: 14px;
            background: linear-gradient(135deg, var(--creative-accent), var(--glow-pink));
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: none;
            transition: all var(--speed-fast) ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(148, 57, 127, 0.6);
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            padding: 30px 40px 0;
            border-top: 1px solid rgba(148, 57, 127, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(248, 249, 255, 0.8);
            font-size: 0.95rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: rgba(248, 249, 255, 0.8);
            text-decoration: none;
            transition: color var(--speed-fast) ease;
            cursor: none;
        }

        .footer-bottom-links a:hover {
            color: var(--glow-pink);
        }

        /* Loading state */
        .loading {
            text-align: center;
            padding: 60px;
            color: var(--glow-cyan);
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(109, 213, 237, 0.3);
            border-top-color: var(--glow-blue);
            border-radius: 50%;
            margin: 0 auto 20px;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ─── RESPONSIVE DESIGN FIXES ─── */
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .nav-links a {
                padding: 10px 20px;
            }

            .why-choose-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

            .hero-headline {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 992px) {
            .header-content {
                padding: 0 24px;
            }

            .main-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero-video-section {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-video-container {
                transform: none;
                max-width: 700px;
                margin: 0 auto;
                max-height: 400px;
                order: -1;
            }

            .hero-content {
                text-align: center;
                margin: 0 auto;
            }

            .hero-subheadline {
                justify-content: center;
            }

            .hero-value-tags {
                justify-content: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-headline {
                font-size: 3rem;
            }

            .hero-subheadline {
                font-size: 1.4rem;
            }

            .categories-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                justify-content: center;
            }

            .why-choose-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
                justify-content: space-between;
            }

            .hero-section {
                padding: 60px 20px;
                min-height: auto;
            }

            .hero-headline {
                font-size: 2.5rem;
            }

            .hero-subheadline {
                font-size: 1.2rem;
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .skill-tag {
                width: fit-content;
            }

            .hero-value-tags {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .stats-section {
                margin: 60px 20px;
                padding: 50px 30px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .why-choose-section {
                padding: 60px 20px;
            }

            .logo-img {
                height: 45px;
            }

            .hero-video-container {
                max-height: 350px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 40px 15px;
            }

            .hero-video-section {
                gap: 30px;
            }

            .hero-video-container {
                max-height: 280px;
                border-radius: 15px;
            }

            .hero-headline {
                font-size: 2rem;
                line-height: 1.2;
            }

            .hero-btn {
                padding: 16px 30px;
                font-size: 1.1rem;
            }

            .categories-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .why-choose-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .feature-card {
                padding: 25px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .logo-img {
                height: 40px;
            }

            .mobile-nav-links {
                padding: 80px 20px 20px;
            }

            .mobile-nav-links a {
                padding: 18px 20px;
                font-size: 1.1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .header-content {
                padding: 0 15px;
            }

            .categories-section {
                padding: 0 20px;
            }

            .why-choose-section {
                padding: 60px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-video-container {
                max-height: 240px;
            }

            .hero-headline {
                font-size: 1.8rem;
            }

            .hero-subheadline {
                font-size: 1rem;
            }

            .skill-tag {
                font-size: 12px;
                padding: 6px 12px;
            }

            .value-tag {
                padding: 10px 15px;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .logo-img {
                height: 35px;
            }

            .mobile-menu-toggle {
                width: 40px;
                height: 40px;
                font-size: 1.3rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
                transform: none !important;
            }

            .particles-container {
                display: none;
            }
        }

        /* Custom cursor touch-device hiding now lives in css/cursor.css (shared across all pages) */
    