﻿/* Safari Mobile Fixes */
@supports (-webkit-touch-callout: none) {
            /* Safari-specific fixes */
            html {
                -webkit-text-size-adjust: 100%;
                -webkit-tap-highlight-color: transparent;
            }
            
            body {
                -webkit-touch-callout: none;
                -webkit-user-select: none;
                user-select: none;
            }
            
            input, textarea, select {
                -webkit-user-select: auto;
                user-select: auto;
            }
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-margin-top: 80px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-tap-highlight-color: transparent;
        }

        *,
        *::before,
        *::after {
            max-width: 100%;
        }

        html {
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scroll-padding-top: 80px;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            /* Fix Safari viewport height issue */
            height: -webkit-fill-available;
        }

        html {
            position: relative;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: transparent;
            color: white;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            width: 100%;
            max-width: 100vw;
            position: relative;
        }

        body:has(#loading-screen:not(.hidden)) {
            overflow: hidden;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
            overflow-x: hidden;
        }

        /* Prevent horizontal overflow on all sections */
        section {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
            position: relative;
            z-index: 2;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100vw;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            z-index: 99999999999999;
            /* background: #3F1F6F; */
            transition: padding 0.3s ease, background 0.3s ease;
            will-change: background, padding;
            transform: translateZ(0);
        }
        
        /* Better logo placement for large screens */
        @media (min-width: 1920px) {
            nav {
                padding: 15px 5%;
                max-width: 1920px;
                margin: 0 auto;
                left: 50%;
                right: auto;
                transform: translateX(-50%);
            }
            
            nav.scrolled {
                padding: 5px 5%;
                transform: translateX(-50%);
            }
            
            .logo {
                flex: 0 0 auto;
                min-width: 200px;
            }
            
            .quote-btn {
                flex: 0 0 auto;
                min-width: 200px;
            }
        }
        
        @media (min-width: 2560px) {
            nav {
                padding: 15px 8%;
            }
            
            nav.scrolled {
                padding: 5px 8%;
            }
        }

        nav.scrolled {
            /* background: #3f1f6f79; */
            /* Scrolled state - can add styles here if needed */
            opacity: 1;
            padding: 5px 30px;
        }

        /* Starry background for nav - removed */
        nav::before {
            display: none;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 1;
            transition: transform 0.3s ease;
            flex: 0 0 auto;
            min-width: 150px;
        }

        .logo-img {
            height: auto;
            width: auto;
            transition: transform 0.3s ease;
        }

       
        .logo-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 42px;
            position: relative;
            font-family: 'Bebas Neue', sans-serif;
            background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 30%, #C0C0C0 60%, #A0A0A0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4)) 
                    drop-shadow(-1px -1px 2px rgba(255, 255, 255, 0.3))
                    drop-shadow(0 0 10px rgba(192, 192, 192, 0.4));
            letter-spacing: -2px;
        }

        .logo-icon::before {
            content: 'A';
            position: absolute;
            background: linear-gradient(135deg, #FFFFFF 0%, #E8E8E8 50%, #D0D0D0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transform: translate(-1px, -1px);
            z-index: -1;
            opacity: 0.6;
            filter: blur(0.5px);
        }

        .logo-icon::after {
            content: 'A';
            position: absolute;
            background: linear-gradient(135deg, #808080 0%, #606060 50%, #404040 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transform: translate(1px, 1px);
            z-index: -2;
            opacity: 0.4;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-text span:first-child {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 2px;
            color: white;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
        }

        .logo-text span:last-child {
            font-size: 12px;
            font-weight: 300;
            letter-spacing: 1px;
            color: white;
            font-family: 'Poppins', sans-serif;
            text-transform: lowercase;
        }

        .nav-links {
            display: flex;
            gap: 0;
            list-style: none;
            background: #4A4A4A;
            padding: 12px 35px;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(112, 51, 197, 0.5);
            z-index: 1;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            transition: padding 0.3s ease, transform 0.3s ease;
        }

        .nav-links li {
            background: transparent;
            border-radius: 0;
            padding: 0;
            position: relative;
        }

        .nav-links li:not(:last-child) {
            margin-right: 0;
            padding-right: 25px;
        }

        .nav-links li a {
            color: white;
            text-decoration: none;
            font-size: 12px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out, border-color 0.3s ease, font-size 0.3s ease, padding 0.3s ease;
            font-family: 'Poppins', sans-serif;
            padding: 8px 14px;
            border-radius: 20px;
            display: inline-block;
            border: 1px solid transparent;
            position: relative;
            overflow: visible;
            z-index: 1;
            background-color: transparent;
        }

        nav.scrolled .nav-links li a {
            font-size: 12px;
            padding: 6px 14px;
        }

        .nav-links li a:hover {
            background-color: #7033C5;
            color: white;
            border-color: white;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
        }

        /* Hide portfolio link on desktop - show only on mobile */
        .nav-links li:last-child {
            display: none;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: white;
            cursor: pointer;
            padding: 8px;
            z-index: 1000000;
            flex-direction: column;
            gap: 5px;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: 0.3s;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999998;
        }

        .nav-overlay.active {
            display: block;
        }

        nav.scrolled .nav-links {
            padding: 8px 25px;
        }

        .quote-btn {
            background: linear-gradient(180deg, #E8D8F8 0%, #E0D0F0 100%);
            color: #6A3E9A;
            border: 1px solid rgba(106, 62, 154, 0.2);
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(106, 62, 154, 0.2);
            z-index: 1;
            font-family: 'Poppins', sans-serif;
            flex: 0 0 auto;
            white-space: nowrap;
        }

       
        .quote-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(106, 62, 154, 0.3);
            background: linear-gradient(180deg, #F0E0FF 0%, #E8D8F8 100%);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 130vh;
            min-height: 1200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: visible;
            background: linear-gradient(180deg, rgba(26, 11, 46, 0.3) 0%, rgba(10, 0, 21, 0.3) 100%);
            z-index: 2;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(112, 51, 197, 0.05) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }

        /* Starry Background - Fixed to viewport */
        .stars {
            position: fixed !important;
            width: 100vw !important;
            height: 100vh !important;
            min-height: 100vh !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            z-index: 1 !important;
            inset: 0 !important;
            pointer-events: none !important;
            background-color: #0a0015 !important;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            background-image: 
                radial-gradient(2px 2px at 2% 5%, white, transparent),
                radial-gradient(2px 2px at 2% 7%, white, transparent),
                radial-gradient(1px 1px at 4% 12%, white, transparent),
                radial-gradient(1px 1px at 4% 12%, white, transparent),
                radial-gradient(1px 1px at 4% 12%, white, transparent),
                radial-gradient(1px 1px at 4% 12%, white, transparent),
                radial-gradient(1px 1px at 4% 12%, white, transparent),
                radial-gradient(1px 1px at 4% 12%, white, transparent),
                radial-gradient(1px 1px at 4% 12%, white, transparent),
                radial-gradient(1px 1px at 4% 12%, white, transparent),
                radial-gradient(1px 1px at 4% 12%, white, transparent),
                radial-gradient(2px 2px at 6% 20%, white, transparent),
                radial-gradient(1px 1px at 8% 28%, white, transparent),
                radial-gradient(2px 2px at 10% 35%, white, transparent),
                radial-gradient(1px 1px at 12% 42%, white, transparent),
                radial-gradient(2px 2px at 14% 50%, white, transparent),
                radial-gradient(1px 1px at 16% 58%, white, transparent),
                radial-gradient(2px 2px at 18% 65%, white, transparent),
                radial-gradient(1px 1px at 20% 72%, white, transparent),
                radial-gradient(2px 2px at 22% 15%, white, transparent),
                radial-gradient(1px 1px at 24% 25%, white, transparent),
                radial-gradient(2px 2px at 26% 40%, white, transparent),
                radial-gradient(1px 1px at 28% 55%, white, transparent),
                radial-gradient(2px 2px at 30% 70%, white, transparent),
                radial-gradient(1px 1px at 32% 8%, white, transparent),
                radial-gradient(2px 2px at 34% 18%, white, transparent),
                radial-gradient(1px 1px at 36% 32%, white, transparent),
                radial-gradient(2px 2px at 38% 48%, white, transparent),
                radial-gradient(1px 1px at 40% 62%, white, transparent),
                radial-gradient(2px 2px at 42% 75%, white, transparent),
                radial-gradient(1px 1px at 44% 10%, white, transparent),
                radial-gradient(2px 2px at 46% 22%, white, transparent),
                radial-gradient(1px 1px at 48% 38%, white, transparent),
                radial-gradient(2px 2px at 50% 52%, white, transparent),
                radial-gradient(1px 1px at 52% 68%, white, transparent),
                radial-gradient(2px 2px at 54% 15%, white, transparent),
                radial-gradient(1px 1px at 56% 30%, white, transparent),
                radial-gradient(2px 2px at 58% 45%, white, transparent),
                radial-gradient(1px 1px at 60% 60%, white, transparent),
                radial-gradient(2px 2px at 62% 75%, white, transparent),
                radial-gradient(1px 1px at 64% 5%, white, transparent),
                radial-gradient(2px 2px at 66% 20%, white, transparent),
                radial-gradient(1px 1px at 68% 35%, white, transparent),
                radial-gradient(2px 2px at 70% 50%, white, transparent),
                radial-gradient(1px 1px at 72% 65%, white, transparent),
                radial-gradient(2px 2px at 74% 80%, white, transparent),
                radial-gradient(1px 1px at 76% 12%, white, transparent),
                radial-gradient(2px 2px at 78% 28%, white, transparent),
                radial-gradient(1px 1px at 80% 42%, white, transparent),
                radial-gradient(2px 2px at 82% 58%, white, transparent),
                radial-gradient(1px 1px at 84% 72%, white, transparent),
                radial-gradient(2px 2px at 86% 8%, white, transparent),
                radial-gradient(1px 1px at 88% 25%, white, transparent),
                radial-gradient(2px 2px at 90% 40%, white, transparent),
                radial-gradient(1px 1px at 92% 55%, white, transparent),
                radial-gradient(2px 2px at 94% 70%, white, transparent),
                radial-gradient(1px 1px at 96% 85%, white, transparent),
                radial-gradient(2px 2px at 98% 15%, white, transparent),
                radial-gradient(1px 1px at 1% 30%, white, transparent),
                radial-gradient(2px 2px at 3% 45%, white, transparent),
                radial-gradient(1px 1px at 5% 60%, white, transparent),
                radial-gradient(2px 2px at 7% 75%, white, transparent),
                radial-gradient(1px 1px at 9% 18%, white, transparent),
                radial-gradient(2px 2px at 11% 33%, white, transparent),
                radial-gradient(1px 1px at 13% 48%, white, transparent),
                radial-gradient(2px 2px at 15% 63%, white, transparent),
                radial-gradient(1px 1px at 17% 78%, white, transparent),
                radial-gradient(2px 2px at 19% 10%, white, transparent),
                radial-gradient(1px 1px at 21% 26%, white, transparent),
                radial-gradient(2px 2px at 23% 44%, white, transparent),
                radial-gradient(1px 1px at 25% 59%, white, transparent),
                radial-gradient(2px 2px at 27% 74%, white, transparent),
                radial-gradient(1px 1px at 29% 6%, white, transparent),
                radial-gradient(2px 2px at 31% 22%, white, transparent),
                radial-gradient(1px 1px at 33% 38%, white, transparent),
                radial-gradient(2px 2px at 35% 54%, white, transparent),
                radial-gradient(1px 1px at 37% 68%, white, transparent),
                radial-gradient(2px 2px at 39% 82%, white, transparent),
                radial-gradient(1px 1px at 41% 14%, white, transparent),
                radial-gradient(2px 2px at 43% 30%, white, transparent),
                radial-gradient(1px 1px at 45% 46%, white, transparent),
                radial-gradient(2px 2px at 47% 62%, white, transparent),
                radial-gradient(1px 1px at 49% 78%, white, transparent),
                radial-gradient(2px 2px at 51% 8%, white, transparent),
                radial-gradient(1px 1px at 53% 24%, white, transparent),
                radial-gradient(2px 2px at 55% 40%, white, transparent),
                radial-gradient(1px 1px at 57% 56%, white, transparent),
                radial-gradient(2px 2px at 59% 72%, white, transparent),
                radial-gradient(1px 1px at 61% 88%, white, transparent),
                radial-gradient(2px 2px at 63% 16%, white, transparent),
                radial-gradient(1px 1px at 65% 32%, white, transparent),
                radial-gradient(2px 2px at 67% 48%, white, transparent),
                radial-gradient(1px 1px at 69% 64%, white, transparent),
                radial-gradient(2px 2px at 71% 80%, white, transparent),
                radial-gradient(1px 1px at 73% 12%, white, transparent),
                radial-gradient(2px 2px at 75% 28%, white, transparent),
                radial-gradient(1px 1px at 77% 44%, white, transparent),
                radial-gradient(2px 2px at 79% 60%, white, transparent),
                radial-gradient(1px 1px at 81% 76%, white, transparent),
                radial-gradient(2px 2px at 83% 4%, white, transparent),
                radial-gradient(1px 1px at 85% 20%, white, transparent),
                radial-gradient(2px 2px at 87% 36%, white, transparent),
                radial-gradient(1px 1px at 89% 52%, white, transparent),
                radial-gradient(2px 2px at 91% 68%, white, transparent),
                radial-gradient(1px 1px at 93% 84%, white, transparent),
                radial-gradient(2px 2px at 95% 10%, white, transparent),
                radial-gradient(1px 1px at 97% 26%, white, transparent),
                radial-gradient(2px 2px at 99% 42%, white, transparent),
                radial-gradient(1px 1px at 1.5% 8%, white, transparent),
                radial-gradient(1.5px 1.5px at 3.2% 15%, white, transparent),
                radial-gradient(1px 1px at 5.5% 22%, white, transparent),
                radial-gradient(2px 2px at 7.8% 28%, white, transparent),
                radial-gradient(1px 1px at 9.2% 35%, white, transparent),
                radial-gradient(1.5px 1.5px at 11.5% 42%, white, transparent),
                radial-gradient(1px 1px at 13.8% 48%, white, transparent),
                radial-gradient(2px 2px at 15.2% 55%, white, transparent),
                radial-gradient(1px 1px at 17.5% 62%, white, transparent),
                radial-gradient(1.5px 1.5px at 19.8% 68%, white, transparent),
                radial-gradient(1px 1px at 21.2% 75%, white, transparent),
                radial-gradient(2px 2px at 23.5% 82%, white, transparent),
                radial-gradient(1px 1px at 25.8% 12%, white, transparent),
                radial-gradient(1.5px 1.5px at 27.2% 18%, white, transparent),
                radial-gradient(1px 1px at 29.5% 25%, white, transparent),
                radial-gradient(2px 2px at 31.8% 32%, white, transparent),
                radial-gradient(1px 1px at 33.2% 38%, white, transparent),
                radial-gradient(1.5px 1.5px at 35.5% 45%, white, transparent),
                radial-gradient(1px 1px at 37.8% 52%, white, transparent),
                radial-gradient(2px 2px at 39.2% 58%, white, transparent),
                radial-gradient(1px 1px at 41.5% 65%, white, transparent),
                radial-gradient(1.5px 1.5px at 43.8% 72%, white, transparent),
                radial-gradient(1px 1px at 45.2% 78%, white, transparent),
                radial-gradient(2px 2px at 47.5% 85%, white, transparent),
                radial-gradient(1px 1px at 49.8% 5%, white, transparent),
                radial-gradient(1.5px 1.5px at 51.2% 12%, white, transparent),
                radial-gradient(1px 1px at 53.5% 18%, white, transparent),
                radial-gradient(2px 2px at 55.8% 25%, white, transparent),
                radial-gradient(1px 1px at 57.2% 32%, white, transparent),
                radial-gradient(1.5px 1.5px at 59.5% 38%, white, transparent),
                radial-gradient(1px 1px at 61.8% 45%, white, transparent),
                radial-gradient(2px 2px at 63.2% 52%, white, transparent),
                radial-gradient(1px 1px at 65.5% 58%, white, transparent),
                radial-gradient(1.5px 1.5px at 67.8% 65%, white, transparent),
                radial-gradient(1px 1px at 69.2% 72%, white, transparent),
                radial-gradient(2px 2px at 71.5% 78%, white, transparent),
                radial-gradient(1px 1px at 73.8% 85%, white, transparent),
                radial-gradient(1.5px 1.5px at 75.2% 8%, white, transparent),
                radial-gradient(1px 1px at 77.5% 15%, white, transparent),
                radial-gradient(2px 2px at 79.8% 22%, white, transparent),
                radial-gradient(1px 1px at 81.2% 28%, white, transparent),
                radial-gradient(1.5px 1.5px at 83.5% 35%, white, transparent),
                radial-gradient(1px 1px at 85.8% 42%, white, transparent),
                radial-gradient(2px 2px at 87.2% 48%, white, transparent),
                radial-gradient(1px 1px at 89.5% 55%, white, transparent),
                radial-gradient(1.5px 1.5px at 91.8% 62%, white, transparent),
                radial-gradient(1px 1px at 93.2% 68%, white, transparent),
                radial-gradient(2px 2px at 95.5% 75%, white, transparent),
                radial-gradient(1px 1px at 97.8% 82%, white, transparent),
                radial-gradient(1.5px 1.5px at 0.5% 45%, white, transparent),
                radial-gradient(1px 1px at 2.3% 52%, white, transparent),
                radial-gradient(2px 2px at 4.6% 58%, white, transparent),
                radial-gradient(1px 1px at 6.3% 65%, white, transparent),
                radial-gradient(1.5px 1.5px at 8.6% 72%, white, transparent),
                radial-gradient(1px 1px at 10.3% 78%, white, transparent),
                radial-gradient(2px 2px at 12.6% 85%, white, transparent),
                radial-gradient(1px 1px at 14.3% 3%, white, transparent),
                radial-gradient(1.5px 1.5px at 16.6% 9%, white, transparent),
                radial-gradient(1px 1px at 18.3% 16%, white, transparent),
                radial-gradient(2px 2px at 20.6% 23%, white, transparent),
                radial-gradient(1px 1px at 22.3% 29%, white, transparent),
                radial-gradient(1.5px 1.5px at 24.6% 36%, white, transparent),
                radial-gradient(1px 1px at 26.3% 43%, white, transparent),
                radial-gradient(2px 2px at 28.6% 49%, white, transparent),
                radial-gradient(1px 1px at 30.3% 56%, white, transparent),
                radial-gradient(1.5px 1.5px at 32.6% 63%, white, transparent),
                radial-gradient(1px 1px at 34.3% 69%, white, transparent),
                radial-gradient(2px 2px at 36.6% 76%, white, transparent),
                radial-gradient(1px 1px at 38.3% 83%, white, transparent),
                radial-gradient(1.5px 1.5px at 40.6% 6%, white, transparent),
                radial-gradient(1px 1px at 42.3% 13%, white, transparent),
                radial-gradient(2px 2px at 44.6% 19%, white, transparent),
                radial-gradient(1px 1px at 46.3% 26%, white, transparent),
                radial-gradient(1.5px 1.5px at 48.6% 33%, white, transparent),
                radial-gradient(1px 1px at 50.3% 39%, white, transparent),
                radial-gradient(2px 2px at 52.6% 46%, white, transparent),
                radial-gradient(1px 1px at 54.3% 53%, white, transparent),
                radial-gradient(1.5px 1.5px at 56.6% 59%, white, transparent),
                radial-gradient(1px 1px at 58.3% 66%, white, transparent),
                radial-gradient(2px 2px at 60.6% 73%, white, transparent),
                radial-gradient(1px 1px at 62.3% 79%, white, transparent),
                radial-gradient(1.5px 1.5px at 64.6% 86%, white, transparent),
                radial-gradient(1px 1px at 66.3% 11%, white, transparent),
                radial-gradient(2px 2px at 68.6% 17%, white, transparent),
                radial-gradient(1px 1px at 70.3% 24%, white, transparent),
                radial-gradient(1.5px 1.5px at 72.6% 31%, white, transparent),
                radial-gradient(1px 1px at 74.3% 37%, white, transparent),
                radial-gradient(2px 2px at 76.6% 44%, white, transparent),
                radial-gradient(1px 1px at 78.3% 51%, white, transparent),
                radial-gradient(1.5px 1.5px at 80.6% 57%, white, transparent),
                radial-gradient(1px 1px at 82.3% 64%, white, transparent),
                radial-gradient(2px 2px at 84.6% 71%, white, transparent),
                radial-gradient(1px 1px at 86.3% 77%, white, transparent),
                radial-gradient(1.5px 1.5px at 88.6% 84%, white, transparent),
                radial-gradient(1px 1px at 90.3% 7%, white, transparent),
                radial-gradient(2px 2px at 92.6% 14%, white, transparent),
                radial-gradient(1px 1px at 94.3% 20%, white, transparent),
                radial-gradient(1.5px 1.5px at 96.6% 27%, white, transparent),
                radial-gradient(1px 1px at 98.3% 34%, white, transparent),
                radial-gradient(2px 2px at 0.8% 41%, white, transparent),
                radial-gradient(1px 1px at 2.6% 47%, white, transparent),
                radial-gradient(1.5px 1.5px at 4.3% 54%, white, transparent),
                radial-gradient(1px 1px at 6.6% 61%, white, transparent),
                radial-gradient(2px 2px at 8.3% 67%, white, transparent),
                radial-gradient(1px 1px at 10.6% 74%, white, transparent),
                radial-gradient(1.5px 1.5px at 12.3% 81%, white, transparent),
                radial-gradient(1px 1px at 14.6% 4%, white, transparent),
                radial-gradient(2px 2px at 16.3% 10%, white, transparent),
                radial-gradient(1px 1px at 18.6% 17%, white, transparent),
                radial-gradient(1.5px 1.5px at 20.3% 24%, white, transparent),
                radial-gradient(1px 1px at 22.6% 30%, white, transparent),
                radial-gradient(2px 2px at 24.3% 37%, white, transparent),
                radial-gradient(1px 1px at 26.6% 44%, white, transparent),
                radial-gradient(1.5px 1.5px at 28.3% 50%, white, transparent),
                radial-gradient(1px 1px at 30.6% 57%, white, transparent),
                radial-gradient(2px 2px at 32.3% 64%, white, transparent),
                radial-gradient(1px 1px at 34.6% 70%, white, transparent),
                radial-gradient(1.5px 1.5px at 36.3% 77%, white, transparent),
                radial-gradient(1px 1px at 38.6% 84%, white, transparent),
                radial-gradient(2px 2px at 40.3% 1%, white, transparent),
                radial-gradient(1px 1px at 42.6% 8%, white, transparent),
                radial-gradient(1.5px 1.5px at 44.3% 15%, white, transparent),
                radial-gradient(1px 1px at 46.6% 21%, white, transparent),
                radial-gradient(2px 2px at 48.3% 28%, white, transparent),
                radial-gradient(1px 1px at 50.6% 35%, white, transparent),
                radial-gradient(1.5px 1.5px at 52.3% 41%, white, transparent),
                radial-gradient(1px 1px at 54.6% 48%, white, transparent),
                radial-gradient(2px 2px at 56.3% 55%, white, transparent),
                radial-gradient(1px 1px at 58.6% 61%, white, transparent),
                radial-gradient(1.5px 1.5px at 60.3% 68%, white, transparent),
                radial-gradient(1px 1px at 62.6% 75%, white, transparent),
                radial-gradient(2px 2px at 64.3% 81%, white, transparent),
                radial-gradient(1px 1px at 66.6% 88%, white, transparent),
                radial-gradient(1.5px 1.5px at 68.3% 2%, white, transparent),
                radial-gradient(1px 1px at 70.6% 9%, white, transparent),
                radial-gradient(2px 2px at 72.3% 16%, white, transparent),
                radial-gradient(1px 1px at 74.6% 22%, white, transparent),
                radial-gradient(1.5px 1.5px at 76.3% 29%, white, transparent),
                radial-gradient(1px 1px at 78.6% 36%, white, transparent),
                radial-gradient(2px 2px at 80.3% 42%, white, transparent),
                radial-gradient(1px 1px at 82.6% 49%, white, transparent),
                radial-gradient(1.5px 1.5px at 84.3% 56%, white, transparent),
                radial-gradient(1px 1px at 86.6% 62%, white, transparent),
                radial-gradient(2px 2px at 88.3% 69%, white, transparent),
                radial-gradient(1px 1px at 90.6% 76%, white, transparent),
                radial-gradient(1.5px 1.5px at 92.3% 83%, white, transparent),
                radial-gradient(1px 1px at 94.6% 6%, white, transparent),
                radial-gradient(2px 2px at 96.3% 13%, white, transparent),
                radial-gradient(1px 1px at 98.6% 19%, white, transparent),
                radial-gradient(1px 1px at 1.2% 26%, white, transparent),
                radial-gradient(1.5px 1.5px at 3.4% 33%, white, transparent),
                radial-gradient(1px 1px at 5.7% 40%, white, transparent),
                radial-gradient(2px 2px at 7.1% 46%, white, transparent),
                radial-gradient(1px 1px at 9.4% 53%, white, transparent),
                radial-gradient(1.5px 1.5px at 11.7% 60%, white, transparent),
                radial-gradient(1px 1px at 13.1% 66%, white, transparent),
                radial-gradient(2px 2px at 15.4% 73%, white, transparent),
                radial-gradient(1px 1px at 17.7% 80%, white, transparent),
                radial-gradient(1.5px 1.5px at 19.1% 87%, white, transparent),
                radial-gradient(1px 1px at 21.4% 11%, white, transparent),
                radial-gradient(2px 2px at 23.7% 18%, white, transparent),
                radial-gradient(1px 1px at 25.1% 25%, white, transparent),
                radial-gradient(1.5px 1.5px at 27.4% 31%, white, transparent),
                radial-gradient(1px 1px at 29.7% 38%, white, transparent),
                radial-gradient(2px 2px at 31.1% 45%, white, transparent),
                radial-gradient(1px 1px at 33.4% 51%, white, transparent),
                radial-gradient(1.5px 1.5px at 35.7% 58%, white, transparent),
                radial-gradient(1px 1px at 37.1% 65%, white, transparent),
                radial-gradient(2px 2px at 39.4% 71%, white, transparent),
                radial-gradient(1px 1px at 41.7% 78%, white, transparent),
                radial-gradient(1.5px 1.5px at 43.1% 85%, white, transparent),
                radial-gradient(1px 1px at 45.4% 14%, white, transparent),
                radial-gradient(2px 2px at 47.7% 21%, white, transparent),
                radial-gradient(1px 1px at 49.1% 27%, white, transparent),
                radial-gradient(1.5px 1.5px at 51.4% 34%, white, transparent),
                radial-gradient(1px 1px at 53.7% 41%, white, transparent),
                radial-gradient(2px 2px at 55.1% 47%, white, transparent),
                radial-gradient(1px 1px at 57.4% 54%, white, transparent),
                radial-gradient(1.5px 1.5px at 59.7% 61%, white, transparent),
                radial-gradient(1px 1px at 61.1% 67%, white, transparent),
                radial-gradient(2px 2px at 63.4% 74%, white, transparent),
                radial-gradient(1px 1px at 65.7% 81%, white, transparent),
                radial-gradient(1.5px 1.5px at 67.1% 88%, white, transparent),
                radial-gradient(1px 1px at 69.4% 3%, white, transparent),
                radial-gradient(2px 2px at 71.7% 10%, white, transparent),
                radial-gradient(1px 1px at 73.1% 16%, white, transparent),
                radial-gradient(1.5px 1.5px at 75.4% 23%, white, transparent),
                radial-gradient(1px 1px at 77.7% 30%, white, transparent),
                radial-gradient(2px 2px at 79.1% 36%, white, transparent),
                radial-gradient(1px 1px at 81.4% 43%, white, transparent),
                radial-gradient(1.5px 1.5px at 83.7% 50%, white, transparent),
                radial-gradient(1px 1px at 85.1% 56%, white, transparent),
                radial-gradient(2px 2px at 87.4% 63%, white, transparent),
                radial-gradient(1px 1px at 89.7% 70%, white, transparent),
                radial-gradient(1.5px 1.5px at 91.1% 76%, white, transparent),
                radial-gradient(1px 1px at 93.4% 83%, white, transparent),
                radial-gradient(2px 2px at 95.7% 90%, white, transparent),
                radial-gradient(1px 1px at 97.1% 5%, white, transparent),
                radial-gradient(1.5px 1.5px at 99.4% 12%, white, transparent),
                radial-gradient(1px 1px at 0.3% 19%, white, transparent),
                radial-gradient(2px 2px at 2.1% 26%, white, transparent),
                radial-gradient(1px 1px at 4.4% 32%, white, transparent),
                radial-gradient(1.5px 1.5px at 6.1% 39%, white, transparent),
                radial-gradient(1px 1px at 8.4% 46%, white, transparent),
                radial-gradient(2px 2px at 10.1% 52%, white, transparent),
                radial-gradient(1px 1px at 12.4% 59%, white, transparent),
                radial-gradient(1.5px 1.5px at 14.1% 66%, white, transparent),
                radial-gradient(1px 1px at 16.4% 72%, white, transparent),
                radial-gradient(2px 2px at 18.1% 79%, white, transparent),
                radial-gradient(1px 1px at 20.4% 86%, white, transparent),
                radial-gradient(1.5px 1.5px at 22.1% 7%, white, transparent),
                radial-gradient(1px 1px at 24.4% 14%, white, transparent),
                radial-gradient(2px 2px at 26.1% 20%, white, transparent),
                radial-gradient(1px 1px at 28.4% 27%, white, transparent),
                radial-gradient(1.5px 1.5px at 30.1% 34%, white, transparent),
                radial-gradient(1px 1px at 32.4% 40%, white, transparent),
                radial-gradient(2px 2px at 34.1% 47%, white, transparent),
                radial-gradient(1px 1px at 36.4% 54%, white, transparent),
                radial-gradient(1.5px 1.5px at 38.1% 60%, white, transparent),
                radial-gradient(1px 1px at 40.4% 67%, white, transparent),
                radial-gradient(2px 2px at 42.1% 74%, white, transparent),
                radial-gradient(1px 1px at 44.4% 80%, white, transparent),
                radial-gradient(1.5px 1.5px at 46.1% 87%, white, transparent),
                radial-gradient(1px 1px at 48.4% 1%, white, transparent),
                radial-gradient(2px 2px at 50.1% 8%, white, transparent),
                radial-gradient(1px 1px at 52.4% 15%, white, transparent),
                radial-gradient(1.5px 1.5px at 54.1% 21%, white, transparent),
                radial-gradient(1px 1px at 56.4% 28%, white, transparent),
                radial-gradient(2px 2px at 58.1% 35%, white, transparent),
                radial-gradient(1px 1px at 60.4% 41%, white, transparent),
                radial-gradient(1.5px 1.5px at 62.1% 48%, white, transparent),
                radial-gradient(1px 1px at 64.4% 55%, white, transparent),
                radial-gradient(2px 2px at 66.1% 61%, white, transparent),
                radial-gradient(1px 1px at 68.4% 68%, white, transparent),
                radial-gradient(1.5px 1.5px at 70.1% 75%, white, transparent),
                radial-gradient(1px 1px at 72.4% 81%, white, transparent),
                radial-gradient(2px 2px at 74.1% 88%, white, transparent),
                radial-gradient(1px 1px at 76.4% 2%, white, transparent),
                radial-gradient(1.5px 1.5px at 78.1% 9%, white, transparent),
                radial-gradient(1px 1px at 80.4% 16%, white, transparent),
                radial-gradient(2px 2px at 82.1% 22%, white, transparent),
                radial-gradient(1px 1px at 84.4% 29%, white, transparent),
                radial-gradient(1.5px 1.5px at 86.1% 36%, white, transparent),
                radial-gradient(1px 1px at 88.4% 42%, white, transparent),
                radial-gradient(2px 2px at 90.1% 49%, white, transparent),
                radial-gradient(1px 1px at 92.4% 56%, white, transparent),
                radial-gradient(1.5px 1.5px at 94.1% 62%, white, transparent),
                radial-gradient(1px 1px at 96.4% 69%, white, transparent),
                radial-gradient(2px 2px at 98.1% 76%, white, transparent),
                radial-gradient(1px 1px at 1% 85%, white, transparent),
                radial-gradient(1.5px 1.5px at 3% 88%, white, transparent),
                radial-gradient(1px 1px at 5% 91%, white, transparent),
                radial-gradient(2px 2px at 7% 94%, white, transparent),
                radial-gradient(1px 1px at 9% 97%, white, transparent),
                radial-gradient(1.5px 1.5px at 11% 83%, white, transparent),
                radial-gradient(1px 1px at 13% 86%, white, transparent),
                radial-gradient(2px 2px at 15% 89%, white, transparent),
                radial-gradient(1px 1px at 17% 92%, white, transparent),
                radial-gradient(1.5px 1.5px at 19% 95%, white, transparent),
                radial-gradient(1px 1px at 21% 98%, white, transparent),
                radial-gradient(2px 2px at 23% 85%, white, transparent),
                radial-gradient(1px 1px at 25% 88%, white, transparent),
                radial-gradient(1.5px 1.5px at 27% 91%, white, transparent),
                radial-gradient(1px 1px at 29% 94%, white, transparent),
                radial-gradient(2px 2px at 31% 97%, white, transparent),
                radial-gradient(1px 1px at 33% 84%, white, transparent),
                radial-gradient(1.5px 1.5px at 35% 87%, white, transparent),
                radial-gradient(1px 1px at 37% 90%, white, transparent),
                radial-gradient(2px 2px at 39% 93%, white, transparent),
                radial-gradient(1px 1px at 41% 96%, white, transparent),
                radial-gradient(1.5px 1.5px at 43% 99%, white, transparent),
                radial-gradient(1px 1px at 45% 82%, white, transparent),
                radial-gradient(2px 2px at 47% 85%, white, transparent),
                radial-gradient(1px 1px at 49% 88%, white, transparent),
                radial-gradient(1.5px 1.5px at 51% 91%, white, transparent),
                radial-gradient(1px 1px at 53% 94%, white, transparent),
                radial-gradient(2px 2px at 55% 97%, white, transparent),
                radial-gradient(1px 1px at 57% 83%, white, transparent),
                radial-gradient(1.5px 1.5px at 59% 86%, white, transparent),
                radial-gradient(1px 1px at 61% 89%, white, transparent),
                radial-gradient(2px 2px at 63% 92%, white, transparent),
                radial-gradient(1px 1px at 65% 95%, white, transparent),
                radial-gradient(1.5px 1.5px at 67% 98%, white, transparent),
                radial-gradient(1px 1px at 69% 81%, white, transparent),
                radial-gradient(2px 2px at 71% 84%, white, transparent),
                radial-gradient(1px 1px at 73% 87%, white, transparent),
                radial-gradient(1.5px 1.5px at 75% 90%, white, transparent),
                radial-gradient(1px 1px at 77% 93%, white, transparent),
                radial-gradient(2px 2px at 79% 96%, white, transparent),
                radial-gradient(1px 1px at 81% 99%, white, transparent),
                radial-gradient(1.5px 1.5px at 83% 82%, white, transparent),
                radial-gradient(1px 1px at 85% 85%, white, transparent),
                radial-gradient(2px 2px at 87% 88%, white, transparent),
                radial-gradient(1px 1px at 89% 91%, white, transparent),
                radial-gradient(1.5px 1.5px at 91% 94%, white, transparent),
                radial-gradient(1px 1px at 93% 97%, white, transparent),
                radial-gradient(2px 2px at 95% 80%, white, transparent),
                radial-gradient(1px 1px at 97% 83%, white, transparent),
                radial-gradient(1.5px 1.5px at 99% 86%, white, transparent),
                radial-gradient(1px 1px at 0.5% 89%, white, transparent),
                radial-gradient(2px 2px at 2.5% 92%, white, transparent),
                radial-gradient(1px 1px at 4.5% 95%, white, transparent),
                radial-gradient(1.5px 1.5px at 6.5% 98%, white, transparent),
                radial-gradient(1px 1px at 8.5% 81%, white, transparent),
                radial-gradient(2px 2px at 10.5% 84%, white, transparent),
                radial-gradient(1px 1px at 12.5% 87%, white, transparent),
                radial-gradient(1.5px 1.5px at 14.5% 90%, white, transparent),
                radial-gradient(1px 1px at 16.5% 93%, white, transparent),
                radial-gradient(2px 2px at 18.5% 96%, white, transparent),
                radial-gradient(1px 1px at 20.5% 99%, white, transparent),
                radial-gradient(1.5px 1.5px at 22.5% 82%, white, transparent),
                radial-gradient(1px 1px at 24.5% 85%, white, transparent),
                radial-gradient(2px 2px at 26.5% 88%, white, transparent),
                radial-gradient(1px 1px at 28.5% 91%, white, transparent),
                radial-gradient(1.5px 1.5px at 30.5% 94%, white, transparent),
                radial-gradient(1px 1px at 32.5% 97%, white, transparent),
                radial-gradient(2px 2px at 34.5% 80%, white, transparent),
                radial-gradient(1px 1px at 36.5% 83%, white, transparent),
                radial-gradient(1.5px 1.5px at 38.5% 86%, white, transparent),
                radial-gradient(1px 1px at 40.5% 89%, white, transparent),
                radial-gradient(2px 2px at 42.5% 92%, white, transparent),
                radial-gradient(1px 1px at 44.5% 95%, white, transparent),
                radial-gradient(1.5px 1.5px at 46.5% 98%, white, transparent),
                radial-gradient(1px 1px at 48.5% 81%, white, transparent),
                radial-gradient(2px 2px at 50.5% 84%, white, transparent),
                radial-gradient(1px 1px at 52.5% 87%, white, transparent),
                radial-gradient(1.5px 1.5px at 54.5% 90%, white, transparent),
                radial-gradient(1px 1px at 56.5% 93%, white, transparent),
                radial-gradient(2px 2px at 58.5% 96%, white, transparent),
                radial-gradient(1px 1px at 60.5% 99%, white, transparent),
                radial-gradient(1.5px 1.5px at 62.5% 82%, white, transparent),
                radial-gradient(1px 1px at 64.5% 85%, white, transparent),
                radial-gradient(2px 2px at 66.5% 88%, white, transparent),
                radial-gradient(1px 1px at 68.5% 91%, white, transparent),
                radial-gradient(1.5px 1.5px at 70.5% 94%, white, transparent),
                radial-gradient(1px 1px at 72.5% 97%, white, transparent),
                radial-gradient(2px 2px at 74.5% 80%, white, transparent),
                radial-gradient(1px 1px at 76.5% 83%, white, transparent),
                radial-gradient(1.5px 1.5px at 78.5% 86%, white, transparent),
                radial-gradient(1px 1px at 80.5% 89%, white, transparent),
                radial-gradient(2px 2px at 82.5% 92%, white, transparent),
                radial-gradient(1px 1px at 84.5% 95%, white, transparent),
                radial-gradient(1.5px 1.5px at 86.5% 98%, white, transparent),
                radial-gradient(1px 1px at 88.5% 81%, white, transparent),
                radial-gradient(2px 2px at 90.5% 84%, white, transparent),
                radial-gradient(1px 1px at 92.5% 87%, white, transparent),
                radial-gradient(1.5px 1.5px at 94.5% 90%, white, transparent),
                radial-gradient(1px 1px at 96.5% 93%, white, transparent),
                radial-gradient(2px 2px at 98.5% 96%, white, transparent);
            background-size: 100% 100%;
            opacity: 1;
            pointer-events: none;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            opacity: 0.8;
            animation: twinkle 3s infinite;
            will-change: opacity;
            transform: translateZ(0);
            display: block;
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }
        
        .stars-overlay {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            width: 100vw !important;
            height: 100vh !important;
            pointer-events: none !important;
            z-index: -9999 !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        
        .stars-overlay.fixed-bg {
            z-index: -9999 !important;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
        }

        .star.large-star {
            width: 60px;
            height: 60px;
            position: relative;
            animation: starPulse 3s ease-in-out infinite;
            background-color: transparent;
            will-change: transform;
            transform: translateZ(0);
        }

        /* Ensure stars are not fixed to header - make them scroll with content */
        nav .star,
        nav .large-star,
        nav .stars-overlay {
            position: relative !important;
        }
        
        /* Prevent any star from being fixed - override any fixed positioning */
        .star[style*="position: fixed"]:not(.large-star),
        .stars-overlay[style*="position: fixed"] {
            position: absolute !important;
        }
        
        /* Ensure large stars are not fixed - they should scroll with their section */
        .star.large-star[style*="position: fixed"] {
            position: relative !important;
        }

        .star.large-star img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8))
                    drop-shadow(0 0 40px rgba(255, 255, 255, 0.6))
                    drop-shadow(0 0 60px rgba(255, 255, 255, 0.4)); */
        }

        @keyframes starPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.3);
            }
        }

        /* Glowing Decorative Stars - Ethereal Soft Glow */
        .glowing-star {
            position: fixed;
            pointer-events: none;
            z-index: 1;
            width: 30px;
            height: 30px;
            background: radial-gradient(circle, rgba(240, 240, 240, 0.9) 0%, rgba(220, 220, 220, 0.6) 30%, rgba(200, 200, 200, 0.3) 60%, transparent 100%);
            clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
            animation: starGlow 3s ease-in-out infinite;
            filter: blur(2px);
            opacity: 0.85;
        }

        .glowing-star::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180%;
            height: 180%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 240, 0.6) 25%, rgba(220, 220, 220, 0.4) 50%, transparent 100%);
            border-radius: 50%;
            filter: blur(5px);
            z-index: -1;
        }

        .glowing-star::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 250%;
            height: 250%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(240, 240, 240, 0.3) 30%, transparent 70%);
            border-radius: 50%;
            filter: blur(8px);
            z-index: -2;
        }

        .glowing-star.large {
            width: 100px;
            height: 100px;
            filter: blur(0.5px);
            background: 
                /* Vertical ray (top to bottom) */
                linear-gradient(to bottom, 
                    transparent 0%, 
                    rgba(255, 255, 255, 0.3) 20%,
                    rgba(255, 255, 255, 0.9) 45%,
                    rgba(255, 255, 255, 1) 50%,
                    rgba(255, 255, 255, 0.9) 55%,
                    rgba(255, 255, 255, 0.3) 80%,
                    transparent 100%
                ),
                /* Horizontal ray (left to right) */
                linear-gradient(to right, 
                    transparent 0%, 
                    rgba(255, 255, 255, 0.3) 20%,
                    rgba(255, 255, 255, 0.9) 45%,
                    rgba(255, 255, 255, 1) 50%,
                    rgba(255, 255, 255, 0.9) 55%,
                    rgba(255, 255, 255, 0.3) 80%,
                    transparent 100%
                ),
                /* Central bright point */
                radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 15%, rgba(255, 255, 255, 0.4) 30%, transparent 50%);
            background-size: 20% 100%, 100% 20%, 100% 100%;
            background-position: center, center, center;
            background-repeat: no-repeat;
            opacity: 1;
        }

        .glowing-star.large::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: 
                linear-gradient(to bottom, 
                    transparent 0%, 
                    rgba(255, 255, 255, 0.4) 15%,
                    rgba(255, 255, 255, 0.7) 40%,
                    rgba(255, 255, 255, 0.9) 48%,
                    rgba(255, 255, 255, 0.9) 52%,
                    rgba(255, 255, 255, 0.7) 60%,
                    rgba(255, 255, 255, 0.4) 85%,
                    transparent 100%
                ),
                linear-gradient(to right, 
                    transparent 0%, 
                    rgba(255, 255, 255, 0.4) 15%,
                    rgba(255, 255, 255, 0.7) 40%,
                    rgba(255, 255, 255, 0.9) 48%,
                    rgba(255, 255, 255, 0.9) 52%,
                    rgba(255, 255, 255, 0.7) 60%,
                    rgba(255, 255, 255, 0.4) 85%,
                    transparent 100%
                );
            background-size: 25% 100%, 100% 25%;
            background-position: center, center;
            background-repeat: no-repeat;
            filter: blur(4px);
            z-index: -1;
        }

        .glowing-star.large::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 250%;
            height: 250%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.15) 60%, transparent 80%);
            border-radius: 50%;
            filter: blur(10px);
            z-index: -2;
        }

        .glowing-star.medium {
            width: 28px;
            height: 28px;
            filter: blur(2px);
        }

        .glowing-star.medium::before {
            width: 170%;
            height: 170%;
            filter: blur(4.5px);
        }

        .glowing-star.medium::after {
            width: 230%;
            height: 230%;
            filter: blur(7px);
        }

        .glowing-star.small {
            width: 20px;
            height: 20px;
            filter: blur(1.5px);
        }

        @keyframes starGlow {
            0%, 100% {
                opacity: 0.7;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
        }

        @keyframes starFloat {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            33% {
                transform: translateY(-20px) translateX(10px);
            }
            66% {
                transform: translateY(10px) translateX(-10px);
            }
        }

        .glowing-star.float {
            animation: starGlow 3s ease-in-out infinite, starFloat 8s ease-in-out infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Planet/Moon */
        .planet-container {
            position: absolute;
            width: 1000px;
            height: 1000px;
            top: 15%;
            left: 50%;
            transform: translate(-50%, 0);
          
        }

        .planet-container img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: contain;
            top: 0;
            z-index: 100;
            left: 0;
        }

        .planet-container img:first-child {
            filter: drop-shadow(0 0 120px rgba(112, 51, 197, 0.6)) drop-shadow(0 0 80px rgba(138, 77, 212, 0.4));
            z-index: 1;
            opacity: 1;
        }

        .planet-container img:last-child {
            filter: drop-shadow(0 0 100px rgba(112, 51, 197, 0.5));
            z-index: 1;
            mix-blend-mode: multiply;
            opacity: 0.75;
            margin-top: 40px;
        }

        .planet-container::after {
            content: '';
            position: absolute;
            width: 110%;
            height: 110%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            background: radial-gradient(circle, rgba(112, 51, 197, 0.4) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .planet {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #4a4a4a 0%, #1a1a1a 50%, #000000 100%);
            box-shadow: 
                inset -40px -40px 100px rgba(0, 0, 0, 0.8),
                inset 20px 20px 60px rgba(255, 255, 255, 0.1),
                0 0 100px rgba(112, 51, 197, 0.3);
            overflow: hidden;
        }

        /* Hero Content */
        .hero-content {
            position: absolute;
            text-align: center;
            z-index: 10;
            top: 35%;
            left: 50%;
            transform: translate(-50%, 0);
            width: 100%;
        }

        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 80px;
            font-weight: 400;
            letter-spacing: 8px;
            margin-bottom: -12px;
            text-transform: uppercase;
            color: white;
            text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 10;
        }

        .hero h2 {
            font-size: 48px;
            font-weight: 300;
            margin-bottom: 5px;
            letter-spacing: 3px;
            color: white;
            text-transform: capitalize;
            position: relative;
            z-index: 10;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .hero h2:hover {
            color: #8a4dd4;
        }

        .hero p {
            font-size: 18px;
            font-weight: 300;
            margin-bottom: 35px;
            opacity: 0.95;
            letter-spacing: 1px;
            color: white;
            position: relative;
            z-index: 10;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 10;
            margin-top: 20px;
        }

        .discover-btn {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: 1px solid white;
            padding: 16px 45px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 0;
            position: relative;
            z-index: 10;
            border-radius: 50px;
        }

        .discover-btn:hover {
            background: #7033C5;
            color: white;
        }

        /* Behind the Brand Section */
        .behind-brand {
            position: relative;
            padding: 0;
            z-index: 2;
            
        }

        .behind-brand-bar {
            background: linear-gradient(to right, black 0%, rgb(112, 51, 197) 20%, rgb(112, 51, 197) 80%, black 100%);
            padding: 0px 0;
            text-align: center;
            margin-bottom: 0;
        }

        .behind-brand-bar h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 30px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: white;
            margin: 0;
            transition: transform 0.3s ease;
            cursor: pointer;
            display: block;
            width: 100%;
            text-align: center;
        }

        .behind-brand-bar h2:hover {
            transform: scale(1.1);
        }

        .behind-brand-content {
            padding: 50px 0;
            text-align: justify;
        }

        .section-title {
            text-align: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 56px;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 30px;
            color: white;
            transition: color 0.5s ease;
            cursor: pointer;
            display: block;
            width: 100%;
            position: relative;
        }

        .section-title span {
            position: relative;
            z-index: 2;
            transition: opacity 0.5s ease;
            display: inline-block;
        }

        .section-title::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #7033c5 0%, #8a4dd4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: 1;
            text-align: center;
        }

        .section-title:hover span {
            opacity: 0;
        }

        .section-title:hover::before {
            opacity: 1;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
        }

        .image-section {
            position: relative;
        }

        .image-section img {
            width: 100%;
            border-radius: 15px;
            height: 400px;
            object-fit: cover;
            /* box-shadow: 0 20px 60px rgba(112, 51, 197, 0.3); */
            transition: transform 0.5s 
ease-in-out, box-shadow 0.5s 
ease-in-out;
        }

        .image-section img:hover{
            transform: scale(1.05);
            box-shadow: 0 4px 20px #7033C5;
            border-radius: 15px;
        }
        
        .text-section {
            background: rgba(0, 0, 0, 0.8);
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .text-section p {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 300;
        }

        .text-section p:last-child {
            margin-bottom: 0;
        }

        /* What Drives Us Section */
        .what-drives-us {
            position: relative;
            padding: 0;
            z-index: 2;
        }

        .what-drives-us-bar {
            background: linear-gradient(to right, black 0%, rgb(112, 51, 197) 20%, rgb(112, 51, 197) 80%, black 100%);
            padding: 0px 0;
            text-align: center;
            margin-bottom: 0;
        }

        .what-drives-us-bar h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 30px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: white;
            margin: 0;
            transition: transform 0.3s ease;
            cursor: pointer;
            display: block;
            width: 100%;
            text-align: center;
        }

        .what-drives-us-bar h2:hover {
            transform: scale(1.1);
        }

        .what-drives-us-content {
            padding: 50px 0;
        }

        .drives-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .drives-text {
            background: rgba(20, 20, 20, 0.8);
            padding: 60px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .drives-text p {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 300;
            text-align: justify;
        }

        .drives-image {
            position: relative;
        }

        .drives-image img {
            width: 100%;
            border-radius: 15px;
            /* box-shadow: 0 20px 60px rgba(112, 51, 197, 0.3); */
            transition: transform 0.5s 
ease-in-out, box-shadow 0.5s 
ease-in-out;
        }

        .drives-image img:hover{
            transform: scale(1.05);
            box-shadow: 0 4px 20px #7033C5;
            border-radius: 15px;
        }

        /* Workflow Section */
        .workflow-section {
            position: relative;
            padding: 80px 60px 80px;
            /* background: #000000; */
            overflow: hidden;
            z-index: 2;
        }

        .workflow-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 800px 600px at 30% 50%, rgba(138, 77, 212, 0.6) 0%, rgba(112, 51, 197, 0.3) 30%, transparent 70%),
                radial-gradient(ellipse 800px 600px at 70% 50%, rgba(255, 255, 255, 0.4) 0%, rgba(200, 200, 200, 0.2) 30%, transparent 70%);
            filter: blur(60px);
            pointer-events: none;
            z-index: 0;
        }

        .workflow-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(1px 1px at 15% 25%, white, transparent),
                radial-gradient(1px 1px at 25% 45%, white, transparent),
                radial-gradient(1px 1px at 35% 15%, white, transparent),
                radial-gradient(1px 1px at 45% 65%, white, transparent),
                radial-gradient(1px 1px at 55% 35%, white, transparent),
                radial-gradient(1px 1px at 65% 75%, white, transparent),
                radial-gradient(1px 1px at 75% 20%, white, transparent),
                radial-gradient(1px 1px at 85% 55%, white, transparent),
                radial-gradient(2px 2px at 20% 30%, white, transparent),
                radial-gradient(2px 2px at 30% 60%, white, transparent),
                radial-gradient(2px 2px at 40% 10%, white, transparent),
                radial-gradient(2px 2px at 50% 50%, white, transparent),
                radial-gradient(2px 2px at 60% 80%, white, transparent),
                radial-gradient(2px 2px at 70% 25%, white, transparent),
                radial-gradient(2px 2px at 80% 65%, white, transparent),
                radial-gradient(1px 1px at 10% 50%, white, transparent),
                radial-gradient(1px 1px at 20% 80%, white, transparent),
                radial-gradient(1px 1px at 30% 20%, white, transparent),
                radial-gradient(1px 1px at 40% 90%, white, transparent),
                radial-gradient(1px 1px at 50% 5%, white, transparent),
                radial-gradient(1px 1px at 60% 40%, white, transparent),
                radial-gradient(1px 1px at 70% 95%, white, transparent),
                radial-gradient(1px 1px at 80% 15%, white, transparent),
                radial-gradient(1px 1px at 90% 70%, white, transparent),
                radial-gradient(2px 2px at 5% 30%, white, transparent),
                radial-gradient(2px 2px at 15% 70%, white, transparent),
                radial-gradient(2px 2px at 25% 10%, white, transparent),
                radial-gradient(2px 2px at 35% 85%, white, transparent),
                radial-gradient(2px 2px at 45% 25%, white, transparent),
                radial-gradient(2px 2px at 55% 60%, white, transparent),
                radial-gradient(2px 2px at 65% 5%, white, transparent),
                radial-gradient(2px 2px at 75% 90%, white, transparent),
                radial-gradient(2px 2px at 85% 35%, white, transparent),
                radial-gradient(2px 2px at 95% 75%, white, transparent);
            background-size: 100% 100%;
            opacity: 0.8;
            pointer-events: none;
            z-index: 0;
        }

        .workflow-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .workflow-card {
            background: #ffffff;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(112, 51, 197, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .workflow-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(112, 51, 197, 0.1) 0%, rgba(138, 77, 212, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .workflow-card:hover {
            transform: translateY(-10px);
            border-color: rgba(112, 51, 197, 0.4);
            box-shadow: 0 20px 50px rgba(112, 51, 197, 0.3), 
                        0 0 30px rgba(138, 77, 212, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.4);
            background: #ffffff;
        }

        .workflow-card:hover::before {
            opacity: 1;
        }

        .workflow-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7033C5;
            transition: transform 0.4s ease;
        }

        .workflow-icon svg {
            width: 100%;
            height: 100%;
            fill: currentColor !important;
            stroke: currentColor !important;
            color: #7033C5 !important;
            display: block;
        }

        .workflow-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(2000%) hue-rotate(250deg) brightness(0.9) contrast(1.1);
        }

        .workflow-card:hover .workflow-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .workflow-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
            color: #7033C5;
        }

        .workflow-card p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(112, 51, 197, 0.85);
            font-weight: 300;
        }

        .workflow-nav-buttons {
            display: none;
        }

        /* Our Range of Solutions Section */
        .range-of-solutions {
            position: relative;
            padding: 80px 60px;
            background: linear-gradient(180deg, #000000 0%, #7033C5 50%, #000000 100%);
            overflow: hidden;
            z-index: 2;
        }

        .range-of-solutions::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(1px 1px at 15% 25%, white, transparent),
                radial-gradient(1px 1px at 25% 45%, white, transparent),
                radial-gradient(1px 1px at 35% 15%, white, transparent),
                radial-gradient(1px 1px at 45% 65%, white, transparent),
                radial-gradient(1px 1px at 55% 35%, white, transparent),
                radial-gradient(1px 1px at 65% 75%, white, transparent),
                radial-gradient(1px 1px at 75% 20%, white, transparent),
                radial-gradient(1px 1px at 85% 55%, white, transparent),
                radial-gradient(2px 2px at 20% 30%, white, transparent),
                radial-gradient(2px 2px at 30% 60%, white, transparent),
                radial-gradient(2px 2px at 40% 10%, white, transparent),
                radial-gradient(2px 2px at 50% 50%, white, transparent),
                radial-gradient(2px 2px at 60% 80%, white, transparent),
                radial-gradient(2px 2px at 70% 25%, white, transparent),
                radial-gradient(2px 2px at 80% 65%, white, transparent),
                radial-gradient(1px 1px at 10% 50%, white, transparent),
                radial-gradient(1px 1px at 20% 80%, white, transparent),
                radial-gradient(1px 1px at 30% 20%, white, transparent),
                radial-gradient(1px 1px at 40% 90%, white, transparent),
                radial-gradient(1px 1px at 50% 5%, white, transparent),
                radial-gradient(1px 1px at 60% 40%, white, transparent),
                radial-gradient(1px 1px at 70% 95%, white, transparent),
                radial-gradient(1px 1px at 80% 15%, white, transparent),
                radial-gradient(1px 1px at 90% 70%, white, transparent),
                radial-gradient(2px 2px at 5% 30%, white, transparent),
                radial-gradient(2px 2px at 15% 70%, white, transparent),
                radial-gradient(2px 2px at 25% 10%, white, transparent),
                radial-gradient(2px 2px at 35% 85%, white, transparent),
                radial-gradient(2px 2px at 45% 25%, white, transparent),
                radial-gradient(2px 2px at 55% 60%, white, transparent),
                radial-gradient(2px 2px at 65% 5%, white, transparent),
                radial-gradient(2px 2px at 75% 90%, white, transparent),
                radial-gradient(2px 2px at 85% 35%, white, transparent),
                radial-gradient(2px 2px at 95% 75%, white, transparent),
                radial-gradient(1px 1px at 12% 35%, white, transparent),
                radial-gradient(1px 1px at 22% 55%, white, transparent),
                radial-gradient(1px 1px at 32% 25%, white, transparent),
                radial-gradient(1px 1px at 42% 75%, white, transparent),
                radial-gradient(1px 1px at 52% 45%, white, transparent),
                radial-gradient(1px 1px at 62% 85%, white, transparent),
                radial-gradient(1px 1px at 72% 30%, white, transparent),
                radial-gradient(1px 1px at 82% 60%, white, transparent),
                radial-gradient(2px 2px at 8% 40%, white, transparent),
                radial-gradient(2px 2px at 18% 80%, white, transparent),
                radial-gradient(2px 2px at 28% 20%, white, transparent),
                radial-gradient(2px 2px at 38% 90%, white, transparent),
                radial-gradient(2px 2px at 48% 15%, white, transparent),
                radial-gradient(2px 2px at 58% 50%, white, transparent),
                radial-gradient(2px 2px at 68% 95%, white, transparent),
                radial-gradient(2px 2px at 78% 10%, white, transparent),
                radial-gradient(2px 2px at 88% 65%, white, transparent),
                radial-gradient(1px 1px at 3% 60%, white, transparent),
                radial-gradient(1px 1px at 7% 15%, white, transparent),
                radial-gradient(1px 1px at 13% 90%, white, transparent),
                radial-gradient(1px 1px at 17% 40%, white, transparent),
                radial-gradient(1px 1px at 23% 70%, white, transparent),
                radial-gradient(1px 1px at 27% 5%, white, transparent),
                radial-gradient(1px 1px at 33% 55%, white, transparent),
                radial-gradient(1px 1px at 37% 85%, white, transparent),
                radial-gradient(1px 1px at 43% 20%, white, transparent),
                radial-gradient(1px 1px at 47% 75%, white, transparent),
                radial-gradient(1px 1px at 53% 30%, white, transparent),
                radial-gradient(1px 1px at 57% 95%, white, transparent),
                radial-gradient(1px 1px at 63% 10%, white, transparent),
                radial-gradient(1px 1px at 67% 50%, white, transparent),
                radial-gradient(1px 1px at 73% 80%, white, transparent),
                radial-gradient(1px 1px at 77% 25%, white, transparent),
                radial-gradient(1px 1px at 83% 60%, white, transparent),
                radial-gradient(1px 1px at 87% 15%, white, transparent),
                radial-gradient(1px 1px at 93% 70%, white, transparent),
                radial-gradient(1px 1px at 97% 40%, white, transparent);
            background-size: 100% 100%;
            opacity: 0.8;
            pointer-events: none;
            z-index: 0;
        }

        .solutions-container {
            max-width: 1500px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 0px;
            position: relative;
        }

        .solutions-left {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 0;
            margin-top: -150px;
        }

        .solutions-diagram {
            position: relative;
            width: 500px;
            height: 500px;
            margin-left: -700px;
            overflow: hidden;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .diagram-connector {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .diagram-node {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(112, 51, 197, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            z-index: 2;
            cursor: pointer;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, width 0.6s ease, height 0.6s ease;
            transform-origin: center center;
        }
        
        .diagram-node.active {
            /* box-shadow: 0 0 60px rgba(138, 77, 212, 0.8), 0 0 30px rgba(255, 255, 255, 0.5); */
            background: rgba(138, 77, 212, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.7);
        }
        
        .diagram-node:hover {
            opacity: 1 !important;
        }

        .diagram-node.active img{
            margin-top: 13px;
        }
        
        .diagram-node.active:hover {
            opacity: 1 !important;
        }

        /* Node icon images */
        .diagram-node .node-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 8px;
            filter: brightness(0) invert(1);
        }
        
        .diagram-node.active .node-icon img {
            filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
        }

        .node-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .node-text {
            color: white;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .solutions-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
            min-width: 0;
            max-width: 100%;
            overflow: hidden !important;
            width: 100%;
        }

        .solutions-carousel-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden !important;
            max-width: 100%;
        }

        .solutions-carousel {
            overflow: hidden !important;
            width: 100% !important;
            max-width: 100% !important;
            position: relative;
            margin-bottom: 20px;
            border-radius: 20px;
            display: block;
        }
        
        .solutions-track {
            display: flex;
            transition: transform 0.3s ease-in-out;
            width: 900%;
            border: none;
            outline: none;
        }

        .solutions-nav-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            padding-bottom: 30px;
        }

        .solution-card {
            background: #ffffff;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(112, 51, 197, 0.2);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            box-shadow: 0 10px 40px rgba(112, 51, 197, 0.15);
            min-height: 350px;
            width: 100%;
            flex: 0 0 100%;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            box-sizing: border-box;
        }
                

        /* Ensure single card view on desktop */
        @media (min-width: 769px) {
            .solutions-container {
                overflow: visible;
            }
            
            .solutions-right {
                width: 100% !important;
                max-width: 100% !important;
                overflow: hidden !important;
                flex: 1;
                min-width: 0;
                position: relative;
                margin-left: -200px;
            }
            
            .solutions-carousel-wrapper {
                overflow: hidden !important;
                width: 100% !important;
                max-width: 100% !important;
                position: relative;
                display: block;
            }
            
            .solutions-carousel {
                overflow: hidden !important;
                width: 100% !important;
                max-width: 100% !important;
                position: relative;
                display: block;
                clip-path: inset(0);
            }
            
            .solutions-track {
                width: 300% !important;
                display: flex !important;
                flex-wrap: nowrap !important;
                flex-direction: row !important;
                will-change: transform;
                margin: 0 !important;
                padding: 0 !important;
            }
            
            .solution-card {
                width: 100% !important;
                flex: 0 0 100% !important;
                min-width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin: 0 !important;
                padding-left: 40px;
                padding-right: 40px;
            }
            
            .solutions-carousel {
                overflow: hidden !important;
            }
        }

        .solutions-nav-btn {
            position: relative;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(112, 51, 197, 0.5);
            border: none !important;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            box-shadow: 0 4px 15px rgba(112, 51, 197, 0.3);
            outline: none !important;
            -webkit-tap-highlight-color: transparent;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            padding: 0;
            margin: 0;
        }

        .solutions-nav-btn:hover {
            background: rgba(112, 51, 197, 0.7);
            border: none !important;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(112, 51, 197, 0.5);
            outline: none !important;
        }

        .solutions-nav-btn:focus,
        .solutions-nav-btn:active,
        .solutions-nav-btn:focus-visible {
            outline: none !important;
            border: none !important;
            box-shadow: 0 6px 20px rgba(112, 51, 197, 0.5);
        }

        .solutions-nav-btn svg {
            pointer-events: none;
            display: block;
            width: 24px;
            height: 24px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        .solutions-nav-btn:hover svg {
            stroke: white;
        }

        @media (max-width: 768px) {
            .image-section img{
                height: 200px;
                object-fit: cover;
            }
            .workflow-section::before{
                background: radial-gradient(ellipse 800px 600px at 30% 50%, rgba(138, 77, 212, 0.6) 0%, rgba(112, 51, 197, 0.3) 30%, transparent 0%), radial-gradient(ellipse 800px 600px at 70% 50%, rgba(255, 255, 255, 0.4) 0%, rgba(200, 200, 200, 0.2) 0%, transparent 0%);
            }
            .solutions-nav-btn {
                width: 40px;
                height: 40px;
            }

            .solutions-nav-buttons {
                gap: 10px;
            }
        }

        .solution-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .solution-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        /* Solution card icon - hidden on desktop */
        .solution-card-icon {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
        }

        .solution-card h3 {
            font-size: 26px;
            font-weight: 700;
            color: #7033C5;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 0 20px 0;
        }

        .solution-card p {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(112, 51, 197, 0.85);
            margin: 0;
            padding-right: 40px;
        }

        .solution-card-arrow {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(112, 51, 197, 0.1);
            border: 1px solid rgba(112, 51, 197, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .solution-card-arrow:hover {
            background: rgba(112, 51, 197, 0.2);
            transform: rotate(45deg);
        }
        
        .solution-card-arrow svg {
            stroke: #7033C5;
            fill: #7033C5;
        }
        
        .solution-card-arrow svg {
            stroke: #7033C5;
            fill: #7033C5;
        }

        .solutions-cta-btn {
            align-self: center;
            background: #E8D8F8;
            color: #6A3E9A;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(106, 62, 154, 0.2);
            /* margin-top: 30px; */
        }

        .solutions-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(106, 62, 154, 0.3);
            background: #F0E0FF;
        }

        /* Operating Model Section */
        .operating-model {
            position: relative;
            padding: 40px 60px;
            /* background: #000000; */
            overflow: hidden;
            z-index: 2;
        }

        .model-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .model-video-wrapper {
            position: relative;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(138, 77, 212, 0.3);
            box-shadow: 0 10px 40px rgba(138, 77, 212, 0.2);
            background: #000000;
        }

        .model-video {
            width: 100%;
            height: auto;
            max-height: 550px;
            display: block;
            border-radius: 20px;
            object-fit: contain;
        }

        /* Solutions Section */
        .solutions-section {
            position: relative;
            padding: 80px 60px 80px;
            background: linear-gradient(180deg, #1a0b2e 0%, #2d1b4e 100%);
            overflow: hidden;
        }

        .solutions-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 40%, rgba(112, 51, 197, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(138, 77, 212, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        /* Service Icons */
        .service-icons {
            position: relative;
            width: 300px;
            height: 400px;
            margin: 0 auto 60px;
        }

        .icon-connector {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .connection-line {
            width: 100%;
            height: 100%;
        }

        .service-icon-item {
            position: absolute;
            left: 0;
        }

        .icon-top {
            top: 50px;
            left: 120px;
        }

        .icon-middle {
            top: 180px;
            left: 20px;
        }

        .icon-bottom {
            top: 280px;
            left: 120px;
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7033c5 0%, #8a4dd4 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 40px rgba(112, 51, 197, 0.6);
            border: 3px solid rgba(255, 255, 255, 0.2);
            animation: iconPulse 2s ease-in-out infinite;
            will-change: box-shadow;
            transform: translateZ(0);
        }

        @keyframes iconPulse {
            0%, 100% {
                box-shadow: 0 0 40px rgba(112, 51, 197, 0.6);
            }
            50% {
                box-shadow: 0 0 60px rgba(138, 77, 212, 0.8);
            }
        }

        /* Carousel */
        .solutions-carousel {
            max-width: 900px;
            margin: 0 auto 50px;
            position: relative;
            z-index: 1;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(138, 77, 212, 0.3);
            backdrop-filter: blur(10px);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            padding: 60px;
            display: none;
        }

        .carousel-slide.active {
            display: block;
        }

        .slide-content {
            text-align: center;
        }

        .slide-content h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: white;
        }

        .slide-content p {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
        }

        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(112, 51, 197, 0.3);
            border: 2px solid rgba(138, 77, 212, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        .carousel-nav:hover {
            background: rgba(112, 51, 197, 0.6);
            border-color: rgba(138, 77, 212, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        /* CTA Button */
        .solutions-cta {
            text-align: center;
            margin-top: 50px;
        }

        .get-started-btn {
            background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 100%);
            color: #1a0b2e;
            border: none;
            padding: 16px 50px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(138, 77, 212, 0.4);
        }

        .get-started-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(138, 77, 212, 0.6);
        }

        /* Project Highlights Section */
        .project-highlights {
            position: relative;
            padding: 40px 60px;
            /* background: #000000; */
            z-index: 2;
        }

        .cyan-line {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, #00d9ff 20%, #00d9ff 80%, transparent 100%);
            margin-bottom: 40px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            max-width: 900px;
            margin: 20px auto 60px;
            font-weight: 300;
        }

        .projects-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .project-item {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 50px;
            align-items: center;
            /* background: rgba(0, 0, 0, 0.5); */
            border-radius: 25px;
            padding: 30px;
            border: none;
            position: relative;
            overflow: visible;
        }

        .project-item::before {
            display: none;
        }


        .project-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: none;
            z-index: 1;
            transition: box-shadow 0.3s ease;
        }
        
        .project-item:hover .project-image {
            box-shadow: 0 8px 24px rgba(112, 51, 197, 0.15);
        }

        .project-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            transition: transform 0.5s ease;
            border-radius: 20px;
            display: block;
        }

        .project-item:hover .project-image img {
            transform: scale(1.05);
        }

        .project-info {
            z-index: 1;
            position: relative;
        }

        .project-info h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: white;
            line-height: 1.2;
        }

        .project-info p {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            font-weight: 300;
        }

        .project-btn {
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: 2px solid #7033c5;
            padding: 12px 35px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            box-shadow: 0 0 20px rgba(112, 51, 197, 0.4);
        }

        .project-btn::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #7033c5 0%, #8a4dd4 100%);
            border-radius: 25px;
            z-index: -1;
            opacity: 0.5;
            filter: blur(8px);
        }

        .project-btn:hover {
            background: rgba(0, 0, 0, 0.8);
            border-color: #8a4dd4;
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(112, 51, 197, 0.6);
        }

        /* Testimonials Section */
        .testimonials-section {
            position: relative;
            padding: 40px 60px;
            /* background: linear-gradient(180deg, #000000 0%, #0a0015 100%); */
            overflow: hidden;
            z-index: 2;
        }

        /* Fix stars-overlay in testimonials section to website background */
        .testimonials-section .stars-overlay {
            display: none !important;
        }

        .testimonial-carousel {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-container {
            position: relative;
            overflow: visible;
            margin-bottom: 40px;
            padding-top: 60px;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-slide {
            height: auto;
            min-height: 400px;
            min-width: 100%;
            padding: 80px 50px 60px 50px;
            display: none;
            position: relative;
            background: rgba(20, 20, 20, 0.3);
            border-radius: 20px;
            text-align: center;
            overflow: visible;
            /* background: #7033C533; */
            /* border-top: 3px solid #8a4dd4; */
            box-shadow: 0px 4px 20px #7033C5, 0 -5px 20px rgba(138, 77, 212, 0.6);
        }

        .testimonial-slide.active-testimonial {
            display: block;
        }

        .testimonial-slide::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            /* background: linear-gradient(135deg, #7033c5 0%, #8a4dd4 50%, #7033c5 100%); */
            border-radius: 30px;
            z-index: -1;
            opacity: 0.8;
            filter: blur(20px);
            /* box-shadow: 0 0 50px rgba(112, 51, 197, 0.8), 0 0 100px rgba(138, 77, 212, 0.5); */
        }

        .testimonial-icon {
            width: 120px;
            height: 120px;
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            background: #8a4dd4;
            border: 3px solid white;
            border-radius: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 700;
            color: white;
            box-shadow: 0 10px 30px rgba(112, 51, 197, 0.5);
            z-index: 10;
            padding: 15px;
        }

        .testimonial-icon img {
            width: 90px;
            /* height: 90px; */
            object-fit: contain;
            margin-bottom: 5px;
        }

        .testimonial-slide h4 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: white;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.5 !important;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            word-wrap: break-word;
        }

        .testimonial-author {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 25px;
            font-style: italic;
            text-align: right;
            padding-right: 20px;
        }

        .star-rating {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
        }

        .star-rating .rating-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            position: static !important;
            font-size: 28px;
        }

        .star-rating .rating-stars .rating-star {
            font-size: 28px;
            line-height: 1;
            position: relative;
            display: inline-block;
            width: 28px;
            height: 28px;
            margin: 0 !important;
            padding: 0 !important;
            color: rgba(255, 255, 255, 0.3);
        }

        .star-rating .rating-stars .rating-star::before {
            /* content: '★'; */
            position: absolute;
            left: 0;
            top: 0;
            color: rgba(255, 255, 255, 0.3);
            font-size: 28px;
            z-index: 1;
        }

        .star-rating .rating-stars .rating-star.filled {
            color: #ffd700 !important;
        }

        .star-rating .rating-stars .rating-star.filled::before {
            color: #ffd700;
        }

        .star-rating .rating-stars .rating-star.half-filled {
            position: relative;
        }

        .star-rating .rating-stars .rating-star.half-filled::before {
            color: rgba(255, 255, 255, 0.3);
        }

        .star-rating .rating-stars .rating-star.half-filled::after {
            content: '★';
            position: absolute;
            left: 0;
            top: 0;
            color: #ffd700;
            font-size: 28px;
            width: 50%;
            overflow: hidden;
            z-index: 2;
        }

        .star-rating .rating-stars .rating-star.empty {
            color: rgba(255, 255, 255, 0.3) !important;
        }

        .star-rating .rating-stars .rating-star.empty::before {
            color: rgba(255, 255, 255, 0.3);
        }

        .star-rating .rating-number {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            margin-top: 5px;
        }

        /* Testimonial Navigation */
        .testimonial-nav-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            margin-bottom: 60px;
            z-index: 999999999999999;
        }

        .testimonial-nav {
            background: rgba(112, 51, 197, 0.3);
            border: 2px solid rgba(138, 77, 212, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            z-index: 999999999999999;
        }

        .testimonial-nav svg {
            width: 24px;
            height: 24px;
            stroke: currentColor !important;
            fill: none !important;
            color: white !important;
            display: block;
        }

        .testimonial-nav:hover {
            background: rgba(112, 51, 197, 0.6);
            border-color: rgba(138, 77, 212, 0.8);
            transform: scale(1.1);
        }

        .testimonial-prev {
            left: auto;
        }

        .testimonial-next {
            right: auto;
        }

        /* Portfolio Section */
        .portfolio-section {
            position: relative;
            padding: 80px 60px;
            background: linear-gradient(180deg, #0a0015 0%, #000000 100%);
            overflow: hidden;
        }

        .portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .portfolio-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .portfolio-text {
            flex: 1;
            min-width: 300px;
        }

        .portfolio-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            line-height: 1.2;
        }

        .portfolio-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 0;
        }

        .portfolio-button-wrapper {
            flex-shrink: 0;
        }

        .portfolio-btn {
            background: linear-gradient(135deg, #7033c5 0%, #8a4dd4 100%);
            border: none;
            padding: 18px 50px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(138, 77, 212, 0.4);
            text-decoration: none;
            display: inline-block;
        }

        .portfolio-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(138, 77, 212, 0.6);
            background: linear-gradient(135deg, #8a4dd4 0%, #7033c5 100%);
        }

        @media (max-width: 768px) {
            .portfolio-section {
                padding: 40px 20px;
            }

            .portfolio-content {
                flex-direction: column;
                text-align: center;
            }

            .portfolio-title {
                font-size: 36px;
            }

            .portfolio-description {
                font-size: 16px;
            }

            .portfolio-btn {
                width: 100%;
                padding: 16px 40px;
            }
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            padding: 100px 60px;
            /* background: #000000; */
            overflow: hidden;
            z-index: 2;
        }

        .cta-section::before {
            display: none;
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content {
            text-align: center;
        }

        .cta-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 56px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-primary-btn {
            background: linear-gradient(135deg, #7033c5 0%, #8a4dd4 100%);
            border: none;
            padding: 18px 50px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(138, 77, 212, 0.4);
        }

        .cta-primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(138, 77, 212, 0.6);
            background: linear-gradient(135deg, #8a4dd4 0%, #7033c5 100%);
        }

        .cta-secondary-btn {
            background: transparent;
            border: 2px solid rgba(138, 77, 212, 0.5);
            padding: 18px 50px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .cta-secondary-btn:hover {
            background: rgba(138, 77, 212, 0.2);
            border-color: #8a4dd4;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(138, 77, 212, 0.3);
        }

        .cta-secondary-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor !important;
            stroke: currentColor !important;
            color: white !important;
            display: block;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 40px 20px;
            }

            .cta-title {
                font-size: 36px;
            }

            .cta-description {
                font-size: 16px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-primary-btn,
            .cta-secondary-btn {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Footer Section */
        .footer-section {
            /* background: linear-gradient(180deg, #0a0015 0%, #1a1a1a 100%); */
            padding: 60px 60px 25px;
            position: relative;
            box-shadow: 0 -5px 30px rgba(138, 77, 212, 0.4), 0 -10px 50px rgba(112, 51, 197, 0.2);
            z-index: 2;
            display: flex;
            flex-direction: column;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.6fr 0.8fr;
            gap: 60px;
            margin-bottom: 30px;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-top: 20px;
        }

        .footer-logo img {
            width: 80px;
            height: auto;
        }

        .footer-left h3 {
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 16px;
            margin-top: 0;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            line-height: 1.2;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .footer-animated-text {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

        .footer-animated-text {
            background: linear-gradient(
                90deg,
                #2a2a2a 0%,
                #2a2a2a 15%,
                #8a4dd4 35%,
                #7033c5 50%,
                #8a4dd4 65%,
                #2a2a2a 85%,
                #2a2a2a 100%
            );
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: colorFlow 8s linear infinite;
        }

        .footer-animated-text .text-part-1,
        .footer-animated-text .text-part-2,
        .footer-animated-text .text-part-3 {
            display: inline-block;
        }

        @keyframes colorFlow {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }

        .footer-cta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
        }

        .footer-cta .star-icon {
            width: 18px;
            height: 18px;
            fill: currentColor !important;
            color: rgba(255, 255, 255, 0.95) !important;
            display: block;
        }

        .footer-quote-btn {
            display: none;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
        }

        .social-links a {
            width: 44px;
            height: 44px;
            background: #4A4A4A;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
        }

        .social-links a svg {
            width: 20px;
            height: 20px;
            fill: currentColor !important;
            color: white !important;
            display: block;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, #7033c5 0%, #8a4dd4 100%);
            transform: translateY(-3px);
            border-color: transparent;
        }

        .copyright {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin: 0;
        }

        .footer-middle {
            display: flex;
            flex-direction: column;
            margin-top: 80px;
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            margin-top: 80px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

        .footer-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin: 0;
            padding: 0;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.95);
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
            font-weight: 400;
        }

        .footer-column a:hover {
            color: #8a4dd4;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 0;
        }

        .contact-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
            margin: 0;
        }

        .contact-item svg {
            flex-shrink: 0;
            margin-top: 4px;
            fill: currentColor !important;
            color: rgba(255, 255, 255, 0.95) !important;
            width: 18px;
            height: 18px;
            display: block;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 24px 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 0;
            flex-wrap: wrap;
            width: 100%;
            text-align: center;
        }


        .footer-bottom .footer-links-group {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .footer-bottom .footer-links-group span {
            color: rgba(255, 255, 255, 0.5);
            display: inline-flex;
            align-items: center;
            line-height: 1;
            margin: 0;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            line-height: 1;
        }

        .footer-bottom a:hover {
            color: #8a4dd4;
        }

        .footer-bottom span:not(.footer-links-group span) {
            margin: 0;
        }

        /* Footer Portfolio Section */
        .footer-portfolio-section {
            width: 100%;
            padding: 50px 60px;
            background: rgba(26, 11, 46, 0.8);
            margin-top: 50px;
            margin-bottom: 0;
            position: relative;
            border-radius: 0;
        }

        .footer-portfolio-section::before {
            content: '';
            position: absolute;
            bottom: 20px;
            left: 20px;
            width: 20px;
            height: 20px;
            background: rgba(200, 200, 200, 0.6);
            clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
            filter: blur(1px);
            opacity: 0.7;
        }

        .footer-portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .footer-portfolio-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            flex-wrap: wrap;
        }

        .footer-portfolio-text {
            flex: 1;
            min-width: 400px;
            text-align: left;
        }

        .footer-portfolio-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 3px;
            line-height: 1.2;
        }

        .footer-portfolio-description {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin: 0;
        }

        .footer-portfolio-button-wrapper {
            flex-shrink: 0;
        }

        .footer-portfolio-btn {
            background: linear-gradient(180deg, #7033c5 0%, #8a4dd4 100%);
            border: none;
            padding: 18px 50px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(138, 77, 212, 0.4);
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .footer-portfolio-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(138, 77, 212, 0.6);
            background: linear-gradient(135deg, #8a4dd4 0%, #7033c5 100%);
        }

        @media (max-width: 768px) {
            /* Reorder footer sections - portfolio section first on mobile */
            .footer-section {
                display: flex;
                flex-direction: column;
            }

            .footer-content {
                order: 2;
            }

            .footer-portfolio-section {
                order: 1;
                padding: 30px 20px;
                margin-top: 0;
                margin-bottom: 0;
            }

            .footer-bottom {
                order: 3;
            }

            .footer-portfolio-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .footer-portfolio-text {
                min-width: auto;
                text-align: center;
            }

            .footer-portfolio-title {
                font-size: 32px;
            }

            .footer-portfolio-description {
                font-size: 15px;
            }

            .footer-portfolio-btn {
                width: 100%;
                padding: 16px 40px;
            }
        }

        /* Quote Modal Styles */
        .quote-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            /* background-color: rgba(0, 0, 0, 0.85); */
            backdrop-filter: blur(1px);
            z-index:9999999999;
        }

        .quote-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quote-modal-content {
            background: linear-gradient(135deg, rgba(20, 20, 35, 0.95) 0%, rgba(15, 15, 25, 0.95) 100%);
            backdrop-filter: blur(50px) saturate(200%);
            -webkit-backdrop-filter: blur(50px) saturate(200%);
            border: 1px solid rgba(138, 77, 212, 0.4);
            border-radius: 24px;
            width: 90%;
            max-width: 1200px;
            max-height: 90vh;
            overflow-y: auto;
            overflow-x: hidden;
            position: relative;
            box-shadow: 
                0 25px 80px rgba(0, 0, 0, 0.9),
                0 0 60px rgba(112, 51, 197, 0.5),
                0 0 100px rgba(138, 77, 212, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.5),
                inset 0 0 60px rgba(138, 77, 212, 0.1);
            z-index:9999999999;
        }

        .quote-modal-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(138, 77, 212, 0.05) 100%);
            pointer-events: none;
            z-index: 0;
            border-radius: 24px;
        }
        
        @media (max-width: 768px) {
            .quote-modal-content {
                width: 95%;
                max-height: 95vh;
                margin: 20px auto;
            }
        }
        
        @media (max-width: 480px) {
            nav.scrolled .nav-links li a{
                font-size: 15px !important;
            }
            .quote-modal-content {
                width: 100%;
                max-height: 100vh;
                margin: 0;
                border-radius: 0;
            }
            
            .quote-modal.active {
                align-items: flex-start;
                padding: 0;
            }
        }

        .quote-modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(138, 77, 212, 0.8), rgba(255, 255, 255, 0.3), rgba(138, 77, 212, 0.8), transparent);
            border-radius: 24px 24px 0 0;
            pointer-events: none;
            z-index: 1;
        }

        .quote-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            z-index: 10001;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .quote-modal-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .quote-modal-body {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            padding: 60px;
            position: relative;
            z-index: 2;
        }

        .quote-modal-left {
            display: flex;
            flex-direction: column;
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .country-selector {
            margin-bottom: 20px;
        }

        .country-dropdown {
            position: relative;
        }

        .country-dropdown-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px 16px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            transition: all 0.3s;
        }

        .country-dropdown-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #8a4dd4;
        }

        .country-dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #2a2a2a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            margin-top: 5px;
            z-index: 1000;
            overflow: hidden;
        }

        .country-dropdown-menu.active {
            display: block;
        }

        .country-option {
            padding: 12px 16px;
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .country-option:hover {
            background: rgba(138, 77, 212, 0.2);
        }

        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            color: white;
        }

        .contact-info-item svg {
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-info-item > div {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .contact-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .contact-value {
            font-size: 16px;
            color: white;
            font-weight: 500;
        }

        .quote-modal-right {
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
        }

        .quote-modal-title {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .quote-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .form-group label {
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(138, 77, 212, 0.3);
            border-radius: 12px;
            padding: 14px 18px;
            color: white;
            font-size: 16px;
            width: 100%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 3;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a855f7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8a4dd4;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 3px rgba(138, 77, 212, 0.2), 0 4px 20px rgba(138, 77, 212, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform: translateY(-1px);
            z-index: 3;
        }

        .form-group select option {
            background: #2a2a2a;
            color: white;
            padding: 12px;
        }

        .form-group select option:hover,
        .form-group select option:checked {
            background: #8a4dd4;
            color: white;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .radio-group {
            display: flex;
            gap: 20px;
            margin-bottom: 10px;
        }

        .radio-label {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-size: 14px;
            cursor: pointer;
        }

        .radio-label input[type="radio"] {
            width: auto;
            margin: 0;
        }

        .phone-inputs {
            display: flex;
            gap: 10px;
        }

        .phone-inputs input {
            flex: 1;
        }

        .submit-btn {
            background: linear-gradient(135deg, rgba(112, 51, 197, 0.8) 0%, rgba(138, 77, 212, 0.8) 100%);
            border: 1px solid rgba(138, 77, 212, 0.5);
            border-radius: 12px;
            padding: 16px 40px;
            color: white;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-end;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(138, 77, 212, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #7033c5 0%, #8a4dd4 100%);
            border-color: rgba(138, 77, 212, 0.8);
            transform: translateY(-3px);
        }

        /* OTP Section Styles */
        .otp-section {
            margin: 20px 0;
            padding: 20px;
            background: rgba(112, 51, 197, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(138, 77, 212, 0.2);
        }

        .otp-input-container {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .otp-input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid rgba(138, 77, 212, 0.3);
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            letter-spacing: 4px;
            background: white;
            color: #333;
            transition: all 0.3s;
        }

        .otp-input:focus {
            outline: none;
            border-color: #7033c5;
            box-shadow: 0 0 0 3px rgba(112, 51, 197, 0.1);
        }

        .otp-input::placeholder {
            letter-spacing: 2px;
            font-size: 14px;
        }

        .resend-otp-btn {
            padding: 12px 20px;
            background: rgba(112, 51, 197, 0.1);
            border: 1px solid rgba(138, 77, 212, 0.3);
            border-radius: 8px;
            color: #7033c5;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .resend-otp-btn:hover {
            background: rgba(112, 51, 197, 0.2);
            border-color: #7033c5;
        }

        .resend-otp-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .otp-message {
            margin-top: 10px;
            font-size: 14px;
            min-height: 20px;
        }

        .otp-message.success {
            color: #27ae60;
        }

        .otp-message.error {
            color: #e74c3c;
        }

        .otp-message.info {
            color: #3498db;
        }

        /* Simple Quote Modal */
        .simple-quote-modal {
            max-width: 600px;
            max-height: 90vh;
            background: linear-gradient(135deg, rgba(20, 20, 35, 0.85) 0%, rgba(15, 15, 25, 0.85) 100%);
            backdrop-filter: blur(50px) saturate(200%);
            -webkit-backdrop-filter: blur(50px) saturate(200%);
            border: 1px solid rgba(138, 77, 212, 0.4);
            border-radius: 24px;
            box-shadow: 
                0 25px 80px rgba(0, 0, 0, 0.9),
                0 0 60px rgba(112, 51, 197, 0.5),
                0 0 100px rgba(138, 77, 212, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.5),
                inset 0 0 60px rgba(138, 77, 212, 0.1);
            position: relative;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .simple-quote-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(138, 77, 212, 0.8), rgba(255, 255, 255, 0.3), rgba(138, 77, 212, 0.8), transparent);
            border-radius: 24px 24px 0 0;
            pointer-events: none;
            z-index: 1;
        }

        .simple-quote-modal::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(138, 77, 212, 0.05) 100%);
            pointer-events: none;
            z-index: 0;
            border-radius: 24px;
        }

        .simple-quote-modal-body {
            padding: 40px 50px;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 2;
        }

        .simple-quote-modal-body .quote-modal-title {
            font-size: 32px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
            text-align: center;
        }

        .simple-quote-modal-body .form-group {
            margin-bottom: 25px;
        }

        .simple-quote-modal-body .form-group label {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .required {
            color: #8a4dd4;
        }

        .simple-quote-modal-body .form-group input,
        .simple-quote-modal-body .form-group select,
        .simple-quote-modal-body .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(138, 77, 212, 0.3);
            border-radius: 12px;
            color: white;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .simple-quote-modal-body .form-group input:focus,
        .simple-quote-modal-body .form-group select:focus,
        .simple-quote-modal-body .form-group textarea:focus {
            outline: none;
            border-color: #8a4dd4;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 3px rgba(138, 77, 212, 0.2), 0 4px 20px rgba(138, 77, 212, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform: translateY(-1px);
        }

        .simple-quote-modal-body .form-group select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a855f7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
            position: relative;
            z-index: 3;
        }

        .simple-quote-modal-body .form-group select option {
            background: #2a2a2a;
            color: white;
            padding: 12px;
        }

        .simple-quote-modal-body .form-group select option:hover,
        .simple-quote-modal-body .form-group select option:checked {
            background: #8a4dd4;
            color: white;
        }

        .simple-quote-modal-body .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .simple-quote-modal-body .submit-btn {
            width: 100%;
            margin-top: 10px;
            background: linear-gradient(135deg, rgba(112, 51, 197, 0.8) 0%, rgba(138, 77, 212, 0.8) 100%);
            border: 1px solid rgba(138, 77, 212, 0.5);
            border-radius: 12px;
            padding: 16px 40px;
            color: white;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(138, 77, 212, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .simple-quote-modal-body .submit-btn:hover {
            background: linear-gradient(135deg, #7033c5 0%, #8a4dd4 100%);
            border-color: rgba(138, 77, 212, 0.8);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(138, 77, 212, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        /* Service Modal Styles */
        .service-modal {
            max-width: 1000px;
        }

        .service-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .service-modal-back {
            background: none;
            border: none;
            color: #8a4dd4;
            cursor: pointer;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .service-modal-back:hover {
            background: rgba(138, 77, 212, 0.1);
        }

        .service-modal-title {
            font-size: 28px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-modal-body {
            padding: 40px 60px 60px;
        }

        /* Service Accordion Styles */
        .service-accordion {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 30px;
        }

        .accordion-item {
            border-radius: 12px;
            overflow: visible;
            background: transparent;
            border: none;
            margin-bottom: 8px;
        }

        .accordion-header {
            background: #2a2a2a;
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
            color: white;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            margin-bottom: 8px;
        }

        .accordion-header:hover {
            background: #333;
        }

        .accordion-header.active {
            background: linear-gradient(135deg, #7033c5 0%, #8a4dd4 100%);
            border: 1px solid rgba(138, 77, 212, 0.5);
        }

        .accordion-icon {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: white;
            transform: rotate(0deg);
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            opacity: 0;
        }

        .accordion-item.active .accordion-content {
            max-height: 2000px;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.1s;
            opacity: 1;
        }

        .service-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .service-option:last-child {
            border-bottom: none;
        }

        .service-name {
            flex: 1;
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
            font-weight: 500;
        }

        .service-unit {
            flex: 0 0 120px;
            text-align: right;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin-right: 20px;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .qty-btn {
            width: 32px;
            height: 32px;
            background: #2a2a2a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: white;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            line-height: 1;
            position: relative;
            z-index: 3;
        }

        .qty-btn.minus {
            font-size: 24px;
            line-height: 1;
        }

        .qty-btn.minus::before {
            content: "−";
            display: block;
            font-size: 24px;
            line-height: 1;
            font-weight: 600;
        }

        .qty-btn.minus {
            font-size: 0;
        }

        .qty-btn:hover {
            background: #8a4dd4;
            border-color: #8a4dd4;
        }

        .qty-input {
            width: 50px;
            height: 32px;
            background: #2a2a2a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: white;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
        }

        .qty-input:focus {
            outline: none;
            border-color: #8a4dd4;
        }

        .service-checkbox {
            width: 24px;
            height: 24px;
        }

        .service-checkbox input[type="checkbox"] {
            width: 24px;
            height: 24px;
            cursor: pointer;
            accent-color: #8a4dd4;
        }

        /* Thank You Modal */
        .thank-you-modal {
            max-width: 600px;
            background: #1a1a1a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .thank-you-content {
            padding: 80px 60px;
            text-align: center;
            background: 
                radial-gradient(2px 2px at 5% 10%, rgba(255, 255, 255, 0.3), transparent),
                radial-gradient(1px 1px at 8% 25%, rgba(255, 255, 255, 0.2), transparent),
                radial-gradient(2px 2px at 12% 40%, rgba(255, 255, 255, 0.3), transparent);
            background-size: 100% 100%;
        }

        .thank-you-title {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .thank-you-message {
            font-size: 16px;
            color: white;
            line-height: 1.8;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .back-to-home-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            padding: 12px 30px;
            color: white;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .back-to-home-btn:hover {
            background: rgba(138, 77, 212, 0.2);
            border-color: #8a4dd4;
            transform: translateY(-2px);
        }

        /* Privacy Policy & Terms Modal */
        .privacy-modal {
            max-width: 1000px;
            background: linear-gradient(135deg, rgba(20, 20, 35, 0.95) 0%, rgba(15, 15, 25, 0.95) 100%);
            backdrop-filter: blur(50px) saturate(200%);
            -webkit-backdrop-filter: blur(50px) saturate(200%);
            border: 1px solid rgba(138, 77, 212, 0.4);
            box-shadow: 
                0 25px 80px rgba(0, 0, 0, 0.9),
                0 0 60px rgba(112, 51, 197, 0.5),
                0 0 100px rgba(138, 77, 212, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.5),
                inset 0 0 60px rgba(138, 77, 212, 0.1);
            position: relative;
            overflow: hidden;
        }

        .privacy-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(138, 77, 212, 0.8), rgba(255, 255, 255, 0.3), rgba(138, 77, 212, 0.8), transparent);
            border-radius: 24px 24px 0 0;
            pointer-events: none;
            z-index: 1;
        }

        .privacy-modal::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(138, 77, 212, 0.05) 100%);
            pointer-events: none;
            z-index: 0;
            border-radius: 24px;
        }

        .privacy-modal-body {
            padding: 40px 50px;
            max-height: 85vh;
            overflow-y: auto;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 2;
        }

        .privacy-modal-title {
            font-size: 36px;
            font-weight: 700;
            color: #8a4dd4;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 2px solid rgba(138, 77, 212, 0.3);
            padding-bottom: 20px;
        }

        .privacy-content {
            line-height: 1.8;
        }

        .privacy-intro {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(138, 77, 212, 0.1);
            border-left: 4px solid #8a4dd4;
            border-radius: 4px;
        }

        .privacy-section {
            margin-bottom: 35px;
        }

        .privacy-section h3 {
            font-size: 22px;
            font-weight: 700;
            color: #8a4dd4;
            margin-bottom: 15px;
            margin-top: 25px;
        }

        .privacy-section h4 {
            font-size: 18px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            margin-top: 20px;
            margin-bottom: 12px;
        }

        .privacy-section p {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 15px;
        }

        .privacy-section ul {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }

        .privacy-section ul li {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .privacy-section ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #8a4dd4;
            font-size: 20px;
            line-height: 1.6;
            z-index: 3;
        }

        .privacy-section a {
            color: #8a4dd4;
            text-decoration: none;
            transition: color 0.3s;
        }

        .privacy-section a:hover {
            color: #7033c5;
            text-decoration: underline;
        }

        .privacy-contact {
            background: rgba(138, 77, 212, 0.1);
            padding: 20px;
            border-radius: 8px;
            margin-top: 15px;
            border-left: 4px solid #8a4dd4;
        }

        .privacy-contact p {
            margin-bottom: 10px;
        }

        .privacy-contact strong {
            color: #8a4dd4;
        }

        /* Project Details Modal */
        .project-modal {
            max-width: 1200px;
            background: linear-gradient(135deg, rgba(20, 20, 35, 0.95) 0%, rgba(15, 15, 25, 0.95) 100%);
            backdrop-filter: blur(50px) saturate(200%);
            -webkit-backdrop-filter: blur(50px) saturate(200%);
            border: 1px solid rgba(138, 77, 212, 0.4);
            box-shadow: 
                0 25px 80px rgba(0, 0, 0, 0.9),
                0 0 60px rgba(112, 51, 197, 0.5),
                0 0 100px rgba(138, 77, 212, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.5),
                inset 0 0 60px rgba(138, 77, 212, 0.1);
            position: relative;
            overflow: hidden;
        }

        .project-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(138, 77, 212, 0.8), rgba(255, 255, 255, 0.3), rgba(138, 77, 212, 0.8), transparent);
            border-radius: 24px 24px 0 0;
            pointer-events: none;
            z-index: 1;
        }

        .project-modal::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(138, 77, 212, 0.05) 100%);
            pointer-events: none;
            z-index: 0;
            border-radius: 24px;
        }

        .project-modal-body {
            padding: 40px 50px 60px 50px;
            max-height: 85vh;
            overflow-y: auto;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 2;
            scroll-padding-bottom: 20px;
        }

        .project-popup-image-wrapper {
            margin-bottom: 20px;
            opacity: 0.7;
            position: relative;
            height: 240px;
            width: 100%;
            overflow: hidden;
            border-radius: 12px;
        }

        .project-popup-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            z-index: 1;
            pointer-events: none;
        }

        .project-popup-image-wrapper img {
            height: 360px;
            width: 100%;
            position: absolute;
            top: 0px;
            left: 0px;
            object-fit: cover;
            transition: transform 0.3s linear;
            z-index: 0;
        }

        .project-popup-image-wrapper:hover img {
            transform: translateY(-40px);
        }

        .project-modal-title-overlay {
            position: absolute;
            /* top: 50%; */
            /* left: 50%; */
            /* transform: translate(-50%, -50%); */
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            z-index: 2;
            /* margin-top: 30px; */
            width: 100%;
            height: 100%;
        }

        .project-modal-title {
            font-size: 48px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin: 0;
            text-align: center;
            line-height: 1.2;
            /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6); */
            /* background: rgba(0, 0, 0, 0.4); */
            padding: 20px 40px;
            border-radius: 12px;
            /* border: 2px solid rgba(138, 77, 212, 0.3); */
            /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); */
        }

        .project-modal-section {
            margin-bottom: 35px;
        }

        .project-modal-section h4 {
            font-size: 20px;
            font-weight: 700;
            /* color: #8a4dd4; */
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .project-modal-section p {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 12px;
        }

        .project-modal-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .project-modal-section ul li {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .project-modal-section ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #8a4dd4;
            font-size: 20px;
            line-height: 1.6;
            z-index: 3;
        }

        .project-modal-subsection {
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .project-modal-subsection h5 {
            font-size: 18px;
            font-weight: 600;
            /* color: #a570e8; */
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .project-modal-subsection p {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
        }

        .project-modal-section:last-child {
            margin-bottom: 0;
            padding-bottom: 20px;
        }

        .project-modal .quote-modal-close {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .project-modal .quote-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .others-section {
            margin-top: 30px;
            margin-bottom: 30px;
        }

        .others-checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 15px;
            cursor: pointer;
        }

        .others-checkbox-label input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        #othersTextarea {
            width: 100%;
            min-height: 120px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 15px;
            color: white;
            font-size: 14px;
            resize: vertical;
        }

        #othersTextarea:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .lets-get-started-btn {
            background: linear-gradient(135deg, #7033c5 0%, #8a4dd4 100%);
            border: 2px solid #7033c5;
            border-radius: 12px;
            padding: 16px 40px;
            color: white;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            margin-top: 20px;
        }

        .lets-get-started-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(138, 77, 212, 0.4);
        }

        @media (max-width: 968px) {
            .quote-modal-body {
                grid-template-columns: 1fr;
                padding: 40px 30px;
                gap: 30px;
            }
            
            .quote-modal-left {
                order: 1;
                gap: 25px;
            }
            
            .quote-modal-right {
                order: 2;
            }
            
            .quote-modal-title {
                font-size: 24px;
                margin-bottom: 20px;
            }
            
            .contact-info-section {
                gap: 20px;
            }
            
            .contact-info-item {
                gap: 12px;
            }
            
            .contact-info-item svg {
                width: 18px;
                height: 18px;
            }
            
            .contact-label {
                font-size: 12px;
            }
            
            .contact-value {
                font-size: 14px;
            }

            .service-modal-header {
                padding: 20px 30px;
            }
            
            .service-modal-title {
                font-size: 22px;
            }

            .service-modal-body {
                padding: 30px;
            }

            .service-dropdowns {
                grid-template-columns: 1fr;
            }

            .service-table-header {
                display: none;
            }
            
            .accordion-header {
                padding: 14px 16px;
                font-size: 14px;
            }
            
            .service-option {
                padding: 12px 14px;
                gap: 12px;
            }
            
            .service-name {
                font-size: 14px;
            }
            
            .service-unit {
                font-size: 12px;
            }
            
            .quantity-control {
                gap: 8px;
            }
            
            .qty-btn {
                width: 32px;
                height: 32px;
                font-size: 18px;
            }
            
            .qty-input {
                width: 50px;
                padding: 6px;
                font-size: 14px;
            }
            
            .lets-get-started-btn {
                padding: 14px 30px;
                font-size: 14px;
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .quote-modal-body {
                padding: 25px 15px;
                gap: 20px;
            }
            
            .quote-modal-title {
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .quote-form {
                gap: 15px;
            }
            
            .form-group {
                gap: 6px;
            }
            
            .form-group label {
                font-size: 12px;
            }
            
            .form-group input,
            .form-group textarea {
                padding: 10px 12px;
                font-size: 14px;
            }
            
            .radio-group {
                flex-direction: column;
                gap: 8px;
            }
            
            .radio-label {
                padding: 10px 12px;
                font-size: 13px;
            }
            
            .phone-inputs {
                flex-direction: column;
            }
            
            .submit-btn {
                padding: 12px 25px;
                font-size: 14px;
                width: 100%;
            }
            
            .contact-info-section {
                gap: 15px;
            }
            
            .contact-info-item {
                gap: 10px;
            }
            
            .contact-info-item svg {
                width: 16px;
                height: 16px;
            }
            
            .contact-label {
                font-size: 11px;
            }
            
            .contact-value {
                font-size: 13px;
            }
            
            .country-dropdown-btn {
                padding: 10px 14px;
                font-size: 14px;
            }
            
            .service-modal-header {
                padding: 15px 20px;
            }
            
            .service-modal-title {
                font-size: 18px;
            }
            
            .service-modal-body {
                padding: 20px 15px;
            }
            
            .accordion-header {
                padding: 12px 14px;
                font-size: 13px;
            }
            
            .service-option {
                padding: 10px 12px;
                gap: 10px;
                flex-wrap: wrap;
            }
            
            .service-name {
                font-size: 13px;
                flex: 1 1 100%;
            }
            
            .service-unit {
                font-size: 11px;
            }
            
            .quantity-control {
                width: 100%;
                justify-content: flex-end;
                gap: 6px;
            }
            
            .qty-btn {
                width: 28px;
                height: 28px;
                font-size: 16px;
            }
            
            .qty-input {
                width: 45px;
                padding: 5px;
                font-size: 13px;
            }
            
            .lets-get-started-btn {
                padding: 12px 25px;
                font-size: 13px;
            }
            
            .quote-modal-close {
                top: 10px;
                right: 10px;
                font-size: 24px;
                width: 32px;
                height: 32px;
            }
            
            /* Thank You Modal Mobile */
            .thank-you-modal {
                max-width: 100% !important;
                width: 100% !important;
                margin: 0 !important;
                border-radius: 0 !important;
            }
            
            .thank-you-content {
                padding: 40px 25px !important;
            }
            
            .thank-you-title {
                font-size: 28px !important;
                margin-bottom: 20px !important;
            }
            
            .thank-you-message {
                font-size: 14px !important;
                margin-bottom: 30px !important;
            }
            
            .back-to-home-btn {
                padding: 10px 25px !important;
                font-size: 14px !important;
            }
            
            /* Privacy/Terms Modal Mobile */
            .privacy-modal {
                max-width: 100% !important;
                width: 100% !important;
                margin: 0 !important;
                border-radius: 0 !important;
            }
            
            .privacy-modal-body {
                padding: 30px 20px !important;
                max-height: 100vh !important;
            }
            
            .privacy-modal-title {
                font-size: 24px !important;
                margin-bottom: 20px !important;
                padding-bottom: 15px !important;
            }
            
            .privacy-intro {
                font-size: 14px !important;
                padding: 15px !important;
                margin-bottom: 20px !important;
            }
            
            .privacy-section {
                margin-bottom: 25px !important;
            }
            
            .privacy-section h3 {
                font-size: 18px !important;
                margin-bottom: 12px !important;
                margin-top: 20px !important;
            }
            
            .privacy-section h4 {
                font-size: 16px !important;
                margin-top: 15px !important;
                margin-bottom: 10px !important;
            }
            
            .privacy-section p {
                font-size: 14px !important;
                margin-bottom: 12px !important;
            }
            
            .privacy-section ul li {
                font-size: 14px !important;
                margin-bottom: 8px !important;
                padding-left: 20px !important;
            }
            
            .privacy-contact {
                padding: 15px !important;
                margin-top: 12px !important;
            }
            
            /* Project Details Modal Mobile */
            .project-modal {
                max-width: 100% !important;
                width: 100% !important;
                margin: 0 !important;
                border-radius: 0 !important;
            }
            
            .project-modal-body {
                padding: 30px 20px !important;
                max-height: 100vh !important;
            }
            
            .project-popup-image-wrapper {
                height: 180px !important;
                margin-bottom: 15px !important;
            }
            
            .project-popup-image-wrapper img {
                height: 250px !important;
            }
            
            .project-modal-title {
                font-size: 24px !important;
                letter-spacing: 1px !important;
                padding: 15px 20px !important;
            }
            
            .project-modal-section {
                margin-bottom: 25px !important;
            }
            
            .project-modal-section h4 {
                font-size: 16px !important;
                margin-bottom: 12px !important;
            }
            
            .project-modal-section p {
                font-size: 14px !important;
                margin-bottom: 10px !important;
            }
            
            .project-modal-section ul li {
                font-size: 14px !important;
                margin-bottom: 8px !important;
                padding-left: 20px !important;
            }
            
            .project-modal-subsection {
                margin-top: 15px !important;
                margin-bottom: 15px !important;
            }
            
            .project-modal-subsection h5 {
                font-size: 15px !important;
                margin-bottom: 10px !important;
            }
            
            .project-modal-subsection p {
                font-size: 13px !important;
            }
            
            /* Simple Quote Modal Mobile */
            .simple-quote-modal {
                max-width: 100% !important;
                max-height: 100vh !important;
                width: 100% !important;
                margin: 0 !important;
                border-radius: 0 !important;
                overflow-y: auto !important;
                overflow-x: hidden !important;
            }
            
            .simple-quote-modal-body {
                padding: 30px 20px !important;
            }
            
            .simple-quote-modal-body .quote-modal-title {
                font-size: 22px !important;
                margin-bottom: 20px !important;
            }
            
            .simple-quote-modal-body .form-group {
                margin-bottom: 18px !important;
            }
            
            .simple-quote-modal-body .form-group label {
                font-size: 12px !important;
                margin-bottom: 6px !important;
            }
            
            .simple-quote-modal-body .form-group input,
            .simple-quote-modal-body .form-group select,
            .simple-quote-modal-body .form-group textarea {
                padding: 12px 14px !important;
                font-size: 14px !important;
            }
            
            .simple-quote-modal-body .submit-btn {
                padding: 14px 30px !important;
                font-size: 14px !important;
                width: 100% !important;
            }
        }
        
        /* Additional Mobile Styles for Tablets */
        @media (max-width: 768px) {
            .quote-modal.active {
                align-items: flex-start;
                padding: 10px;
            }
            
            .quote-modal-content {
                width: 95%;
                max-height: 95vh;
                margin: 20px auto;
            }
            
            .thank-you-content {
                padding: 50px 30px;
            }
            
            .thank-you-title {
                font-size: 32px;
            }
            
            .thank-you-message {
                font-size: 15px;
            }
            
            .privacy-modal-body {
                padding: 35px 25px;
            }
            
            .privacy-modal-title {
                font-size: 28px;
            }
            
            .project-modal-body {
                padding: 35px 25px;
            }
            
            .project-modal-title {
                font-size: 28px;
            }
            
            .simple-quote-modal-body {
                padding: 35px 25px;
            }
        }

        /* Decorative Elements */
        .planet-small {
            position: absolute;
            width: 60px;
            height: 60px;
            top: 12%;
            left: 6%;
            z-index: 3;
            border-radius: 50%;
            /* background: radial-gradient(circle, rgba(138, 77, 212, 0.9) 0%, rgba(112, 51, 197, 0.7) 100%); */
            /* box-shadow: 0 0 40px rgba(112, 51, 197, 0.8), 0 0 80px rgba(138, 77, 212, 0.4); */
            animation: float 6s infinite ease-in-out;
        }

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

        /* Responsive Design */
        @media (max-width: 1200px) {
            .solutions-container {
                flex-direction: column;
                gap: 60px;
            }

            .solutions-diagram {
                width: 400px;
                height: 400px;
            }

            .diagram-node {
                width: 50px !important;
                height: 50px !important;
            }
            
            .diagram-node.active {
                width: 70px !important;
                height: 70px !important;
            }

            .solution-card {
                padding: 30px;
            }

            /* Show icons on mobile only - positioned in top right corner */
            .solution-card-icon.mobile-only {
                display: flex;
                justify-content: center;
                align-items: center;
                position: absolute;
                top: 15px;
                right: 15px;
                width: auto;
                margin-bottom: 0;
                z-index: 10;
            }

            .solution-card-icon.mobile-only img {
                width: 60px;
                height: 60px;
                object-fit: contain;
                filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(2000%) hue-rotate(250deg) brightness(0.9) contrast(1.1);
            }

            .solution-card h3 {
                font-size: 20px;
            }

            .solutions-cta-btn {
                align-self: center;
            }
        }

        /* Desktop: Ensure only one card is visible at a time - removed duplicate, handled above */

        @media (max-width: 768px) {
            .range-of-solutions {
                padding: 40px 20px;
            }

            .solutions-container {
                flex-direction: column;
                gap: 25px;
            }

            .solutions-left {
                display: none;
            }

            .solutions-diagram {
                display: none;
            }

            .solutions-right {
                min-width: 100%;
                width: 100%;
            }

            .solutions-carousel-wrapper {
                width: 100%;
                overflow: hidden;
                overflow-x: hidden;
                overflow-y: hidden;
                position: relative;
                touch-action: pan-y pinch-zoom;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .solutions-carousel-wrapper::-webkit-scrollbar {
                display: none;
            }
            
            /* Allow touch dragging on track */
            .solutions-track {
                touch-action: pan-x;
                cursor: grab;
            }
            
            .solutions-track:active {
                cursor: grabbing;
            }

            .solutions-carousel {
                width: 100%;
                border-radius: 15px;
            }

            .solutions-track {
                width: 300%;
                display: flex;
            }

            .solution-card {
                padding: 30px 20px;
                min-height: 320px;
               
                border-radius: 15px;
                scroll-snap-align: start;
            }

            .solution-card h3 {
                font-size: 20px;
                margin-bottom: 15px;
            }

            .solution-card p {
                font-size: 14px;
                line-height: 1.6;
            }

            .solution-card-arrow {
                width: 40px;
                height: 40px;
            }

            .solutions-nav-buttons {
                gap: 15px;
                margin-top: 25px;
            }

            .solutions-nav-btn {
                width: 45px;
                height: 45px;
            }

            .solutions-cta-btn {
                width: 100%;
                padding: 14px 30px;
                font-size: 14px;
                /* margin-top: 30px; */
            }
            .testimonial-slide{
                /* min-height: auto; */
            }
        }

        @media (max-width: 1200px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .drives-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .workflow-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 1fr);
            }

        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex !important;
                flex-direction: column;
                gap: 5px;
                pointer-events: auto !important;
                cursor: pointer !important;
            }

            nav {
                padding: 12px 20px;
                flex-wrap: nowrap;
                gap: 15px;
            }

            nav.scrolled {
                padding: 8px 20px;
            }

            .logo {
                flex: 0 0 auto;
            }

            .logo-img {
                max-height: 50px;
                width: auto;
            }

            nav.scrolled .logo-img {
                transform: scale(0.85);
            }

            .nav-links {
                position: fixed !important;
                top: 0 !important;
                left: -100% !important;
                width: 80% !important;
                max-width: 300px !important;
                height: 100vh !important;
                background: rgba(10, 0, 21, 0.98) !important;
                backdrop-filter: blur(20px) !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                justify-content: flex-start !important;
                padding: 80px 30px 30px !important;
                border-radius: 0 !important;
                box-shadow: 2px 0 20px rgba(112, 51, 197, 0.5) !important;
                transition: left 0.3s ease !important;
                z-index: 999999 !important;
                overflow-y: auto !important;
                transform: none !important;
                display: flex !important;
                visibility: visible !important;
                opacity: 1 !important;
            }

            .nav-links.active {
                left: 0 !important;
                transform: none !important;
            }

            .nav-links li {
                width: 100%;
                margin: 0;
                padding: 0;
            }

            .nav-links li:not(:last-child) {
                padding-right: 0;
                margin-right: 0;
                margin-bottom: 15px;
            }

            .nav-links li a {
                font-size: 16px;
                padding: 12px 20px;
                width: 100%;
                display: block;
                border-radius: 10px;
                text-align: left;
            }

            /* Show portfolio link on mobile */
            .nav-links li:last-child {
                display: block;
            }

            .quote-btn {
                display: none;
            }

            /* Overlay when menu is open */
            .nav-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.7);
                z-index: 999998;
            }

            .nav-overlay.active {
                display: block;
            }

            .hero {
                padding: 100px 20px 40px;
                min-height: auto;
            }

            .hero-content {
                top: 25%;
                transform: translate(-50%, 0);
            }

            .hero h1 {
                font-size: 36px;
                line-height: 1.1;
            }

            .hero h2 {
                font-size: 24px;
                margin-top: 10px;
            }

            .hero p {
                font-size: 14px;
                margin: 15px auto;
                max-width: 95%;
            }

            .hero-buttons {
                margin-top: 25px;
            }

            .discover-btn {
                padding: 12px 30px;
                font-size: 12px;
            }

            .planet-container {
                width: 100%;
                max-width: 400px;
                height: 400px;
                opacity: 0.6;
            }

            .planet-small {
                width: 120px;
                height: 120px;
            }

            .success-story-div {
                margin-top: 40px;
                width: 100%;
                max-width: 100%;
            }

            .success-story {
                font-size: 15px;
                padding: 8px 20px;
                margin: -130px 10px 0px 10px;
            }

            .success-logo-list {
                height: auto;
                min-height: 180px;
                padding: 75px 0 40px;
                display: flex;
                flex-direction: row;
                gap: 0;
                align-items: center;
                justify-content: flex-start;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                scrollbar-width: thin;
                scrollbar-color: rgba(112, 51, 197, 0.5) transparent;
            }

            .success-logo-list::-webkit-scrollbar {
                height: 6px;
            }

            .success-logo-list::-webkit-scrollbar-track {
                background: transparent;
            }

            .success-logo-list::-webkit-scrollbar-thumb {
                background: rgba(112, 51, 197, 0.5);
                border-radius: 3px;
            }

            .success-logo-list .row {
                display: flex;
                flex-wrap: nowrap;
                justify-content: flex-start;
                align-items: center;
                gap: 25px;
                width: auto;
                min-width: 100%;
                padding: 20px 15px;
                transform: none !important;
                margin: 0 !important;
            }

            .success-logo-list .row.top {
                padding: 20px 15px !important;
                gap: 25px;
            }

            .success-logo-list .row.bottom {
                margin-left: 0 !important;
                margin-right: 0 !important;
                margin-top: 0 !important;
                padding: 0 0 0 25px !important;
                gap: 25px;
            }

            .success-logo-list .item {
                flex: 0 0 auto;
                width: 120px;
                height: 120px;
                min-width: 120px;
                max-width: 120px;
                display: flex;
                align-items: center;
                justify-content: center;
                scroll-snap-align: start;
            }

            .success-logo-list .item img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }


            .text-section {
                padding: 30px 20px;
            }

            .drives-text {
                padding: 30px 20px;
            }

            .text-section h2,
            .drives-text h2 {
                font-size: 28px;
            }

            .text-section p,
            .drives-text p {
                font-size: 14px;
                line-height: 1.6;
            }

            .workflow-grid {
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                gap: 15px;
                padding: 20px 7.5%;
                padding-bottom: 20px;
                padding-top: 20px;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .workflow-grid::-webkit-scrollbar {
                display: none;
            }

            .workflow-card {
                flex: 0 0 85%;
                min-width: 85%;
                max-width: 85%;
                scroll-snap-align: center;
            }
            
            .workflow-card.workflow-clone {
                scroll-snap-align: center;
            }

            .workflow-nav-buttons {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin-top: 20px;
                padding-bottom: 10px;
            }

            .workflow-nav-btn {
                position: relative;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background: rgba(112, 51, 197, 0.5);
                border: none !important;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
                color: white;
                box-shadow: 0 4px 15px rgba(112, 51, 197, 0.3);
                outline: none !important;
                -webkit-tap-highlight-color: transparent;
            }

            .workflow-nav-btn:hover {
                background: rgba(112, 51, 197, 0.7);
                border: none !important;
                transform: scale(1.1);
                /* box-shadow: 0 6px 20px rgba(112, 51, 197, 0.5); */
                outline: none !important;
            }

            .workflow-nav-btn:focus,
            .workflow-nav-btn:active,
            .workflow-nav-btn:focus-visible {
                outline: none !important;
                border: none !important;
                /* box-shadow: 0 6px 20px rgba(112, 51, 197, 0.5); */
            }

            .workflow-nav-btn svg {
                pointer-events: none;
                display: block;
                width: 24px;
                height: 24px;
                stroke: white;
                stroke-width: 2;
                fill: none;
            }

            .workflow-nav-btn:hover svg {
                stroke: white;
            }

            .behind-brand,
            .what-drives-us {
                padding: 60px 20px;
            }

            .workflow-section {
                padding: 60px 20px;
            }

            .operating-model {
                padding: 60px 20px;
            }

            .range-of-solutions {
                padding: 60px 20px;
            }

            .solutions-container {
                flex-direction: column;
                gap: 35px;
            }

            .solutions-left {
                display: none;
            }

            .solutions-diagram {
                display: none;
            }

            .solutions-right {
                min-width: 100%;
                width: 100%;
            }

            .solutions-carousel {
                border-radius: 12px;
            }

            .solution-card {
                padding: 25px 18px;
                min-height: 300px;
                width: 100%;
                border-radius: 12px;
            }

            /* Ensure icons show on smaller mobile - top right corner */
            .solution-card-icon.mobile-only {
                display: flex;
                position: absolute;
                top: 12px;
                right: 12px;
                margin-bottom: 0;
            }

            .solution-card-icon.mobile-only img {
                width: 50px;
                height: 50px;
                filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(2000%) hue-rotate(250deg) brightness(0.9) contrast(1.1);
            }

            .solution-card h3 {
                font-size: 18px;
            }

            .solution-card p {
                font-size: 13px;
            }

            .solutions-nav-btn {
                width: 40px;
                height: 40px;
            }

            .project-highlights {
                padding: 60px 20px;
            }

            .projects-container {
                gap: 40px;
            }

            .project-item {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 25px 20px;
            }

            .project-image {
                width: 100%;
                order: 1;
            }

            .project-image img {
                height: 250px;
                width: 100%;
                border-radius: 15px;
            }

            .project-info {
                order: 2;
                text-align: center;
            }

            .project-info h3 {
                font-size: 22px;
                margin-bottom: 15px;
            }

            .project-info p {
                font-size: 14px;
                line-height: 1.7;
                margin-bottom: 20px;
            }

            .project-btn {
                width: 100%;
                max-width: 200px;
                padding: 12px 30px;
                font-size: 13px;
            }

            .testimonials-section {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .section-subtitle {
                font-size: 14px;
                margin-bottom: 40px;
            }

            .service-icons {
                width: 250px;
                height: 350px;
                margin-bottom: 40px;
            }

            .icon-circle {
                width: 60px;
                height: 60px;
            }

            .carousel-slide {
                padding: 40px 30px;
            }

            .slide-content h3 {
                font-size: 22px;
            }

            .slide-content p {
                font-size: 14px;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
            }

            .prev-btn {
                left: 10px;
            }

            .next-btn {
                right: 10px;
            }

            .project-item {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 25px;
            }

            .project-image {
                width: 100%;
            }

            .project-image img {
                height: 250px;
                width: 100%;
            }

            .project-info {
                text-align: center;
            }

            .project-info h3 {
                font-size: 26px;
            }

            .project-info p {
                font-size: 14px;
            }

            .project-btn {
                width: 100%;
                max-width: 300px;
            }

            .testimonial-nav-container {
                gap: 15px;
            }

            .testimonial-slide {
                padding: 70px 30px 50px 30px;
            }

            .testimonial-icon {
                width: 100px;
                height: 100px;
                top: -75px;
            }

            .testimonial-icon img {
                width: 60px;
                height: 60px;
            }

            .testimonial-slide h4 {
                font-size: 22px;
            }

            .testimonial-text {
                font-size: 14px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .footer-right {
                grid-template-columns: 1fr;
            }

            .footer-links {
                justify-content: space-around;
            }

            .footer-section {
                padding: 40px 30px 25px;
            }

            .footer-middle {
                margin-top: 0;
            }

            .footer-right {
                margin-top: 0;
            }

            .footer-portfolio-section {
                margin-top: 30px;
            }

            .footer-bottom {
                padding: 20px 30px;
                font-size: 11px;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 8px;
                justify-content: center;
                text-align: center;
            }
        }

        /* Touch-friendly improvements for mobile */
        @media (max-width: 768px) {
            button,
            a,
            .nav-links li a,
            .quote-btn,
            .discover-btn,
            .project-btn,
            .cta-primary-btn,
            .cta-secondary-btn,
            .footer-portfolio-btn {
                min-height: 44px;
                min-width: 44px;
            }

            /* Improve scrolling on mobile */
            body {
                -webkit-overflow-scrolling: touch;
            }

            /* Better text readability */
            p, span, li {
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

            /* Prevent horizontal scroll */
            * {
                max-width: 100%;
            }

            img {
                max-width: 100%;
                height: auto;
            }

            /* Fix overflow issues */
            .hero,
            section {
                overflow-x: hidden;
            }

            /* Better spacing for small screens */
            .container {
                padding: 0 15px;
            }
        }

        /* Additional Mobile Responsive Styles */
        @media (max-width: 480px) {
            .behind-brand-content,.what-drives-us-content{
                padding: 40px 0px;   
            } 

            nav {
                padding: 10px 15px;
            }

            nav.scrolled {
                padding: 5px 15px;
            }

            .logo-img {
                max-height: 80px;
            }

            nav.scrolled .logo-img {
                transform: scale(0.7);
            }

            .nav-links {
                padding: 8px 15px;
                gap: 10px;
            }

            .nav-links li a {
                font-size: 15px;
                padding: 6px 12px;
            }

            nav.scrolled .nav-links li a {
                font-size: 10px;
                padding: 5px 10px;
            }

            .quote-btn {
                padding: 10px 20px;
                font-size: 11px;
            }

            nav.scrolled .quote-btn {
                padding: 6px 18px;
                font-size: 10px;
            }

            .hero {
                padding: 60px 20px 40px;
                height: 95vh;
            }

            .hero h1 {
                font-size: 30px;
            }

            .hero h2 {
                font-size: 24px;
            }

            .hero p {
                font-size: 14px;
            }

            .hero-content {
                top: 30%;
            }

            .discover-btn {
                padding: 12px 30px;
                font-size: 12px;
            }

            .success-story-div {
                margin-top: 20px;
                width: 100%;
                max-width: 100%;
                height: 170px !important;
            }

            .success-story {
                font-size: 13px;
                padding: 6px 18px;
                margin: -175px 8px 0px 8px !important; 
            }

            .success-logo-list {
                height: auto;
                min-height: 100px;
                border-radius: 30px;
                padding: 30px 0 20px;
                display: flex;
                flex-direction: row;
                gap: 0;
                align-items: center;
                justify-content: flex-start;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                position: relative;
                padding-left: 0;
                padding-right: 0;
                scroll-behavior: smooth;
            }

            .success-logo-list::-webkit-scrollbar {
                display: none;
            }

            /* Carousel track for mobile - manual swipe */
            .success-logo-list.carousel-initialized {
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
            }

            .success-logo-list .carousel-track {
                display: flex;
                flex-direction: row;
                align-items: center;
                width: max-content;
                height: 100%;
            }

            /* Combine both rows into single horizontal carousel on mobile */
            .success-logo-list .row {
                display: inline-flex;
                flex-wrap: nowrap;
                justify-content: center;
                align-items: center;
                gap: 0;
                width: 100vw;
                min-width: 100vw;
                max-width: 100vw;
                padding: 0;
                margin: 0 !important;
            }

            .success-logo-list .row.carousel-row {
                display: flex;
                flex-direction: row;
                width: max-content;
                min-width: max-content;
                gap: 0;
            }

            .success-logo-list .row.top {
                margin-right: 0;
            }

            .success-logo-list .row.bottom {
                margin-left: 0;
                margin-top: 0;
            }

            /* Each logo takes 50% width - show two at a time */
            .success-logo-list.carousel-initialized .item {
                flex: 0 0 50vw;
                width: 50vw;
                min-width: 50vw;
                max-width: 50vw;
                /* height: 100px; */
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 8px 12px;
                box-sizing: border-box;
                scroll-snap-align: start;
                scroll-snap-stop: always;
            }

            .success-logo-list .item img {
                width: auto;
                height: auto;
                max-width: 85%;
                max-height: 120px;
                object-fit: contain;
                filter: brightness(0.9);
            }

            .success-logo-list.carousel-initialized .item img {
                max-width: 90%;
            }

            /* Ensure carousel items are properly sized */
            .success-logo-list.carousel-initialized .carousel-row .item {
                flex-shrink: 0;
            }


            .behind-brand,
            .what-drives-us,
            .workflow-section,
            .operating-model,
            .range-of-solutions,
            .project-highlights,
            .testimonials-section {
                padding: 40px 20px 0px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-subtitle {
                font-size: 14px;
            }

            .text-section,
            .drives-text {
                padding: 20px 15px;
            }

            .text-section h2,
            .drives-text h2 {
                font-size: 28px;
            }

            .text-section p,
            .drives-text p {
                font-size: 14px;
            }

            .project-item {
                padding: 15px;
                gap: 20px;
            }

            .project-info h3 {
                font-size: 24px;
            }

            .project-info p {
                font-size: 14px;
            }

            .project-btn {
                padding: 10px 25px;
                font-size: 12px;
            }

            .testimonial-slide {
                padding: 40px 20px 30px;
            }

            .testimonial-slide h4 {
                font-size: 20px;
            }

            .testimonial-text {
                font-size: 13px;
            }

            .cta-section {
                padding: 40px 20px;
            }

            .cta-title {
                font-size: 32px;
                margin-bottom: 10px;
            }

            .cta-description {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .cta-primary-btn,
            .cta-secondary-btn {
                padding: 14px 35px;
                font-size: 14px;
                width: 100%;
                max-width: 100%;
            }

            .footer-section {
                padding: 40px 20px 20px;
            }

            .footer-content {
                gap: 40px;
            }

            .footer-logo {
                padding-top: 30px;
            }

            .footer-logo img {
                width: 70px;
                height: auto;
            }

            .footer-animated-text {
                font-size: 20px;
            }

            .footer-column a {
                font-size: 16px;
            }

            .contact-item {
                font-size: 13px;
            }

            .footer-portfolio-title {
                font-size: 28px;
            }

            .footer-portfolio-description {
                font-size: 14px;
            }

            .quote-modal-content {
                width: 95%;
                padding: 30px 20px;
            }

            .project-popup-image-wrapper {
                height: 200px;
            }

            .project-modal-title {
                font-size: 32px;
                padding: 15px 25px;
            }

            .project-modal-section h4 {
                font-size: 18px;
            }

            .project-modal-section p {
                font-size: 14px;
            }
        }

        /* Tablet Responsive Styles */
        @media (min-width: 481px) and (max-width: 1024px) {
            nav {
                padding: 12px 25px;
            }

            .hero {
                padding: 120px 40px 80px;
            }

            .hero h1 {
                font-size: 56px;
            }

            .hero h2 {
                font-size: 38px;
            }

            .behind-brand,
            .what-drives-us,
            .workflow-section,
            .operating-model,
            .range-of-solutions,
            .project-highlights,
            .testimonials-section {
                padding: 80px 40px;
            }

            .project-item {
                grid-template-columns: 350px 1fr;
                gap: 40px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 50px;
            }

            .footer-right {
                grid-column: 1 / -1;
            }
        }

        /* ========== LOADING SCREEN ========== */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #7033C5 50%, #0a0a0a 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999999 !important;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
        }

        .loading-screen.hidden {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
            z-index: -1 !important;
            display: none !important;
        }

        .loading-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .loading-logo {
            animation: logoFloat 2s ease-in-out infinite;
        }

        .loading-logo img {
            width: 200px;
            height: 200px;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(112, 51, 197, 0.3);
            border-top-color: #7033C5;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .loading-text {
            font-family: "Bebas Neue", sans-serif;
            font-size: 24px;
            color: #fff;
            letter-spacing: 3px;
            animation: pulse 1.5s ease-in-out infinite;
        }

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

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            background: #20BA5A;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float:active {
            transform: translateY(-2px) scale(1.05);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white !important;
            color: white !important;
            display: block;
        }

        /* Quote Floating Button - Hidden on desktop, shown only on mobile */
        .quote-float {
            position: fixed;
            bottom: 170px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #7033C5 0%, #8a4dd4 100%);
            border-radius: 50%;
            display: none; /* Hidden by default */
            align-items: center;
            justify-content: center;
            z-index: 10000;
            box-shadow: 0 4px 20px rgba(112, 51, 197, 0.4), 0 0 15px rgba(138, 77, 212, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            border: 2px solid rgba(138, 77, 212, 0.5);
        }

        .quote-float:hover {
            background: linear-gradient(135deg, #8a4dd4 0%, #7033C5 100%);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 6px 25px rgba(112, 51, 197, 0.6), 0 0 20px rgba(138, 77, 212, 0.4);
            border-color: rgba(138, 77, 212, 0.8);
        }

        .quote-float:active {
            transform: translateY(-2px) scale(1.05);
        }

        .quote-float svg {
            width: 28px;
            height: 28px;
            fill: white !important;
            color: white !important;
            display: block;
        }

        /* Portfolio Floating Button - Desktop Only */
        .portfolio-float {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #7033C5 0%, #8a4dd4 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            box-shadow: 0 4px 20px rgba(112, 51, 197, 0.4), 0 0 15px rgba(138, 77, 212, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            border: 2px solid rgba(138, 77, 212, 0.5);
        }

        .portfolio-float::before {
            content: 'Visit Our Portfolio';
            position: absolute;
            right: 75px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(26, 11, 46, 0.95);
            color: white;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
            opacity: 1;
            pointer-events: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(138, 77, 212, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 10001;
            max-width: 150px;
            text-align: center;
            letter-spacing: 0.3px;
        }

        .portfolio-float::after {
            content: '';
            position: absolute;
            right: 69px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-left: 6px solid rgba(138, 77, 212, 0.3);
            opacity: 1;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 10001;
        }

        .portfolio-float:hover {
            background: linear-gradient(135deg, #8a4dd4 0%, #7033C5 100%);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 6px 25px rgba(112, 51, 197, 0.6), 0 0 20px rgba(138, 77, 212, 0.4);
            border-color: rgba(138, 77, 212, 0.8);
        }

        .portfolio-float:active {
            transform: translateY(-2px) scale(1.05);
        }

        .portfolio-float svg {
            width: 28px;
            height: 28px;
            fill: white !important;
            color: white !important;
            display: block;
        }
        
        /* Show only on mobile devices */
        @media (max-width: 768px) {
            .quote-float {
                display: flex; /* Show on mobile */
                width: 55px;
                height: 55px;
                bottom: 100px; /* Above WhatsApp button */
                right: 20px; /* Same right position as WhatsApp for vertical alignment */
            }
            
            .quote-float svg {
                width: 24px;
                height: 24px;
            }

            /* Hide portfolio floating button on mobile */
            .portfolio-float {
                display: none !important;
            }
            
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
            }
            
            .whatsapp-float svg {
                width: 28px;
                height: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .quote-float {
                display: flex; /* Show on mobile */
                width: 50px;
                height: 50px;
                bottom: 90px; /* Above WhatsApp button */
                right: 15px; /* Same right position as WhatsApp for vertical alignment */
            }
            
            .quote-float svg {
                width: 22px;
                height: 22px;
            }

            /* Hide portfolio floating button on mobile */
            .portfolio-float {
                display: none !important;
            }

            .portfolio-float svg {
                width: 22px;
                height: 22px;
            }
            
            .whatsapp-float {
                bottom: 15px;
                right: 15px;
                width: 50px;
                height: 50px;
            }
            
            .whatsapp-float svg {
                width: 26px;
                height: 26px;
            }
        }

        .success-story-div {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 60px auto 0;
            flex-direction: column;
            width: 95%;
            position: relative;
            z-index: 1000;
            box-shadow: 0 -2px 2px #7033C580, 0 12px 24px #7033C5;
            border-radius: 40px;
            height: 240px;
        }

        .success-story {
            border: 0.2px solid #7033C5;
            border-radius: 50px;
            background: #7033C5;
            color: white;
            font-weight: normal;
            font-size: 18px;
            /* width: 10em; */
            padding: 6px 30px;
            box-shadow: 0 0 10px 0px rgba(255, 255, 255, 0.9);
            position: absolute;
            z-index: 1001;
            margin: -250px 20px 0px 20px;
            text-align: center;
        }

        .success-logo-list {
            width: 100%;
            max-width: 100%;
            height: 240px;
            background: #7033C530;
            text-align: center;
            position: relative;
            border-radius: 40px;
            z-index: 0;
            overflow: hidden;
        }
        
        @media (min-width: 1920px) {
            .success-story-div {
                max-width: 1500px;
                margin: 0 auto;
                margin-top: 100px;
                padding: 0px;
                height:250px
            }
            
            .success-logo-list {
                max-width: 100%;
                margin: 0 auto;
                height: 250px;
            }

            .success-story{
                margin: -255px 20px 0px 20px;
            }
        }
        
        @media (min-width: 2560px) {
            .success-story-div {
                max-width: 1500px;
                margin: 0 auto;
                margin-top: 100px;
                padding: 0px;
                height:220px
            }
            
            .success-logo-list {
                max-width: 100%;
            }

            .success-story{
                margin: -255px 20px 0px 20px;
            }
        }

        .success-logo-list img {
            z-index: 10000000000;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .success-logo-list .row {
            display: flex;
            gap: 25px;
            align-items: center;
            transform-style: preserve-3d;
            flex-wrap: wrap;
            justify-content: center;
        }

        .success-logo-list .row.top {
            justify-content: space-evenly;
            padding: 10px 20px;
            transform: perspective(500px) rotateX(5deg);
        }

        .success-logo-list .row.bottom {
            justify-content: space-evenly;
            margin-left: 0;
            margin-right: 0;
            margin-top: -60px;
            padding: 30px 20px;
            transform: perspective(500px) rotateX(-5deg);
        }
        
        /* Fix logo overlapping on large screens */
        @media (min-width: 1920px) {
            .success-logo-list {
                max-width: 100%;
                margin: 0 auto;
            }
            
            .success-logo-list .row {
                gap: 30px;
                justify-content: space-evenly;
            }
            
            .success-logo-list .row.top {
                padding: 10px 20px;
            }
            
            .success-logo-list .row.bottom {
                margin-left: 0;
                margin-right: 0;
                padding: 30px 20px;
            }
            
            .success-logo-list .item {
                max-width: 110px;
                min-width: 110px;
                max-height: 110px;
            }
        }
        
        @media (min-width: 2560px) {
            .success-story-div {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0px;
            }
            
            .success-logo-list {
                max-width: 100%;
                margin: 0 auto;
                height: 280px;
                padding: 20px 0;
            }
            
            .success-logo-list .row {
                gap: 20px;
                justify-content: space-evenly;
                flex-wrap: nowrap;
            }
            
            .success-logo-list .row.top {
                padding: 15px 20px;
                transform: perspective(500px) rotateX(3deg);
            }
            
            .success-logo-list .row.bottom {
                margin-left: 0;
                margin-right: 0;
                margin-top: -80px;
                padding: 15px 20px;
                transform: perspective(500px) rotateX(-3deg);
            }
            
            .success-logo-list .item {
                max-width: 100px;
                min-width: 100px;
                max-height: 100px;
                flex-shrink: 0;
            }
        }

        .success-logo-list .item {
            max-width: 120px;
            max-height: 120px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            display: inline-block;
            border-radius: 12px;
            opacity: 1;
            filter: brightness(0.9);
            transform-origin: center center;
            transform-style: preserve-3d;
            cursor: pointer;
            backface-visibility: hidden;
        }

        /* Move Clytor and MCP logos */
        .success-logo-list .row.top img[alt="Logo 1"],
        .success-logo-list .row.top img[src*="castletech"] {
            transform: translateY(-10px) translateX(-50px);
        }

        .success-logo-list .row.top img[alt="Logo 6"],
        .success-logo-list .row.top img[src*="mcp"] {
            transform: translateY(-10px) translateX(50px);
        }

        @media (min-width: 1920px) {
            .success-logo-list .row.top img[alt="Logo 1"],
            .success-logo-list .row.top img[src*="castletech"] {
                transform: translateY(-12px) translateX(8px);
            }

            .success-logo-list .row.top img[alt="Logo 6"],
            .success-logo-list .row.top img[src*="mcp"] {
                transform: translateY(-12px) translateX(-8px);
            }
        }

        @media (min-width: 2560px) {
            .success-logo-list .row.top img[alt="Logo 1"],
            .success-logo-list .row.top img[src*="castletech"] {
                transform: translateY(-15px) translateX(10px);
            }

            .success-logo-list .row.top img[alt="Logo 6"],
            .success-logo-list .row.top img[src*="mcp"] {
                transform: translateY(-15px) translateX(-10px);
            }
        }
    