        body {
            box-sizing: border-box;
        }
        
        .star-bg {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #cbd5e1 50%, #94a3b8 75%, #64748b 100%);
            position: relative;
            overflow: hidden;
        }
        
        .star {
            position: absolute;
            background: #f59e0b;
            border-radius: 50%;
            animation: twinkle 3s infinite alternate;
        }
        
        @keyframes twinkle {
            0% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
            50% { opacity: 0.7; transform: scale(1.1) rotate(180deg); }
            100% { opacity: 1; transform: scale(1.3) rotate(360deg); }
        }
        
        .floating-stars {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .floating-star {
            position: absolute;
            color: #f59e0b;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        .page {
            display: none;
            min-height: 100vh;
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .page.active {
            display: block;
            opacity: 1;
            transform: translateX(0);
        }
        
        .glow-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(245, 158, 11, 0.3);
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.1);
            transition: all 0.4s ease;
        }
        
        .glow-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
            border-color: rgba(245, 158, 11, 0.6);
        }
        
        .glow-button {
            background: linear-gradient(45deg, #f59e0b, #d97706, #b45309);
            box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .glow-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }
        
        .glow-button:hover::before {
            left: 100%;
        }
        
        .glow-button:hover {
            box-shadow: 0 0 50px rgba(245, 158, 11, 0.8);
            transform: translateY(-3px) scale(1.05);
        }
        
        .nav-item {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-item::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(45deg, #f59e0b, #d97706);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .nav-item:hover::after,
        .nav-item.active::after {
            width: 100%;
        }
        
        .service-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
            backdrop-filter: blur(15px);
            border: 1px solid rgba(245, 158, 11, 0.2);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(245, 158, 11, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .service-card:hover::before {
            transform: translateX(100%);
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: rgba(245, 158, 11, 0.6);
            box-shadow: 0 25px 50px rgba(245, 158, 11, 0.2);
        }
        
        .hero-text {
            background: linear-gradient(45deg, #f59e0b, #d97706, #f59e0b, #fbbf24);
            background-size: 300% 300%;
            animation: gradientShift 4s ease infinite;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .pulse-glow {
            animation: pulseGlow 2s ease-in-out infinite alternate;
        }
        
        @keyframes pulseGlow {
            from { box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
            to { box-shadow: 0 0 40px rgba(245, 158, 11, 0.8); }
        }
        
        .team-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(245, 158, 11, 0.3);
            transition: all 0.5s ease;
            transform-style: preserve-3d;
        }
        
        .team-card:hover {
            transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
            box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
        }
        
        .contact-form {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
            backdrop-filter: blur(25px);
            border: 1px solid rgba(245, 158, 11, 0.4);
        }
        
        .input-field {
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(245, 158, 11, 0.3);
            transition: all 0.3s ease;
        }
        
        .input-field:focus {
            border-color: #f59e0b;
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
            background: rgba(255, 255, 255, 0.95);
        }
        
        .modal-backdrop {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
        }
        
        .slide-up {
            animation: slideUp 0.5s ease-out;
        }
        
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .bounce-in {
            animation: bounceIn 0.6s ease-out;
        }
        .floating-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.floating-star img {
    position: absolute;
    width: 40px; /* Adjust size */
    height: 40px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(15deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

        
        @keyframes bounceIn {
            0% { transform: scale(0.3); opacity: 0; }
            50% { transform: scale(1.05); }
            70% { transform: scale(0.9); }
            100% { transform: scale(1); opacity: 1; }
        }

        .animate-fade-in {
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-slide-up {
            animation: slideUpStagger 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .animate-slide-up:nth-child(1) { animation-delay: 0.1s; }
        .animate-slide-up:nth-child(2) { animation-delay: 0.2s; }
        .animate-slide-up:nth-child(3) { animation-delay: 0.3s; }
        .animate-slide-up:nth-child(4) { animation-delay: 0.4s; }
        .animate-slide-up:nth-child(5) { animation-delay: 0.5s; }
        .animate-slide-up:nth-child(6) { animation-delay: 0.6s; }
        .animate-slide-up:nth-child(7) { animation-delay: 0.7s; }
        .animate-slide-up:nth-child(8) { animation-delay: 0.8s; }
        .animate-slide-up:nth-child(9) { animation-delay: 0.9s; }
        .animate-slide-up:nth-child(10) { animation-delay: 1.0s; }
        .animate-slide-up:nth-child(11) { animation-delay: 1.1s; }
        .animate-slide-up:nth-child(12) { animation-delay: 1.2s; }

        @keyframes slideUpStagger {
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-typewriter {
            overflow: hidden;
            border-right: 3px solid #f59e0b;
            white-space: nowrap;
            animation: typewriter 3s steps(20) 1s both, blink 1s step-end infinite;
        }

        @keyframes typewriter {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            50% { border-color: transparent; }
        }

        .animate-wave-text {
            animation: waveText 2s ease-in-out infinite;
        }

        @keyframes waveText {
            0%, 100% { transform: translateY(0px); }
            25% { transform: translateY(-5px); }
            50% { transform: translateY(0px); }
            75% { transform: translateY(-3px); }
        }

        .animate-slide-in-left {
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from { transform: translateX(-100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .animate-slide-in-right {
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from { transform: translateX(100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .animate-zoom-in {
            animation: zoomIn 0.8s ease-out;
        }

        @keyframes zoomIn {
            from { transform: scale(0.5); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .animate-flip-in {
            animation: flipIn 1s ease-out;
        }

        @keyframes flipIn {
            from { transform: rotateY(-90deg); opacity: 0; }
            to { transform: rotateY(0); opacity: 1; }
        }

        .animate-rubber-band {
            animation: rubberBand 1s ease-out;
        }

        @keyframes rubberBand {
            0% { transform: scale(1); }
            30% { transform: scaleX(1.25) scaleY(0.75); }
            40% { transform: scaleX(0.75) scaleY(1.25); }
            50% { transform: scaleX(1.15) scaleY(0.85); }
            65% { transform: scaleX(0.95) scaleY(1.05); }
            75% { transform: scaleX(1.05) scaleY(0.95); }
            100% { transform: scale(1); }
        }

        .animate-text-focus {
            animation: textFocus 2s ease-in-out infinite alternate;
        }

        @keyframes textFocus {
            from { 
                letter-spacing: 0.1em;
                filter: blur(0px);
            }
            to { 
                letter-spacing: 0.2em;
                filter: blur(0px);
                transform: scale(1.05);
            }
        }

        .animate-gradient-text {
            background: linear-gradient(45deg, #f59e0b, #d97706, #f59e0b, #fbbf24, #f59e0b);
            background-size: 400% 400%;
            animation: gradientMove 3s ease infinite;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .animate-shake {
            animation: shake 0.5s ease-in-out;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .animate-rotate-in {
            animation: rotateIn 1s ease-out;
        }

        @keyframes rotateIn {
            from { transform: rotate(-180deg) scale(0); opacity: 0; }
            to { transform: rotate(0) scale(1); opacity: 1; }
        }

        .animate-bounce-slow {
            animation: bounceSlow 3s ease-in-out infinite;
        }

        @keyframes bounceSlow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .animate-pulse-text {
            animation: pulseText 2s ease-in-out infinite;
        }

        @keyframes pulseText {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .testimonial-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
            backdrop-filter: blur(15px);
            border: 1px solid rgba(245, 158, 11, 0.2);
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.15);
        }

        .stats-card {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
            border: 2px solid rgba(245, 158, 11, 0.3);
            transition: all 0.3s ease;
        }

        .stats-card:hover {
            border-color: rgba(245, 158, 11, 0.6);
            transform: scale(1.05);
        }
