        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #00D9FF;
            --dark: #1A1A2E;
            --light: #F7F9FC;
            --cream: #f5f0e8;
            --text-dark: #2d2a26;
            --accent-gold: #c5a35d;
            --orange: #FF6B35;
            --violet: #8B5CF6;
            --blue: #3B82F6;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ==================== NAVIGATION ==================== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 5%;
            background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0) 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #000;
            position: relative;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #fbbf24;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .logo:hover {
            color: #fbbf24;
        }

        .logo:hover::after {
            transform: scaleX(1);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #000;
            font-weight: 500;
            font-size: 1.2rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #fbbf24;
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-links a:hover {
            color: #fbbf24;
        }

        .nav-links a:hover::before {
            width: 100%;
            left: 0;
        }

        /* ==================== HERO SECTION WITH VIDEO ==================== */
        .hero-contact {
            min-height: 70vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 80px;
            z-index: 5;
            width: 100%;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(32, 36, 111, 0.661) 0%, rgba(40, 109, 220, 0.61) 100%);
            z-index: 2;
        }

        .hero-contact::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
            z-index: 3;
        }

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

        .floating-shape {
            position: absolute;
            opacity: 0.08;
            animation: float 15s ease-in-out infinite;
            z-index: 4;
        }

        .shape-circle {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: white;
            top: 10%;
            right: 5%;
        }

        .shape-square {
            width: 200px;
            height: 200px;
            background: white;
            bottom: 10%;
            left: 5%;
            transform: rotate(45deg);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
            max-width: 900px;
            padding: 0 5%;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-contact h1 {
            font-size: 4.5rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: -0.02em;
            line-height: 1.1;
            animation: slideDown 0.8s ease-out 0.2s both;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-contact .subheader {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: slideDown 0.8s ease-out both;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        /* ==================== CONTACT SECTION ==================== */
        .contact-section {
            padding: 120px 5%;
            background: rgb(22, 25, 58);
            position: relative;
            overflow: hidden;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 80px;
            align-items: start;
        }

        /* Form Section */
        .form-section {
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .form-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 2rem;
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(135deg, var(--light) 0%, var(--light) 50%, var(--light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-form {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .contact-form:hover {
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
            border-color: rgba(139, 92, 246, 0.2);
            transform: translateY(-5px);
        }

        .form-group {
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: slideUp 0.6s ease-out forwards;
        }

        .form-group:nth-child(1) { animation-delay: 0.1s; }
        .form-group:nth-child(2) { animation-delay: 0.2s; }
        .form-group:nth-child(3) { animation-delay: 0.3s; }
        .form-group:nth-child(4) { animation-delay: 0.4s; }
        .form-group:nth-child(5) { animation-delay: 0.5s; }
        .form-group:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Space Grotesk', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--violet);
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--light));
            color: rgb(35, 35, 77);
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(27, 59, 187, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .submit-btn:hover::before {
            width: 800px;
            height: 400px;  
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(2, 51, 246, 0.5);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* Contact Info Section */
        .info-section {
            animation: slideInRight 0.8s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .info-section h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 2rem;
            font-family: 'Outfit', sans-serif;
        }

        .info-card {
            background: linear-gradient(135deg, #FFF5F1 0%, #FFE8E0 100%);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            animation: popIn 0.6s ease-out backwards;
        }

        .info-card:nth-child(2) { 
            animation-delay: 0.1s;
            background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
        }
        .info-card:nth-child(3) { 
            animation-delay: 0.2s;
            background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
        }
        .info-card:nth-child(4) { 
            animation-delay: 0.3s;
            background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .info-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .info-card:nth-child(2):hover {
            border-color: var(--violet);
        }

        .info-card:nth-child(3):hover {
            border-color: var(--blue);
        }

        .info-card:nth-child(4):hover {
            border-color: var(--orange);
        }

        .info-card .icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            transition: transform 0.4s ease;
        }

        .info-card:nth-child(2) .icon {
            background: rgba(139, 92, 246, 0.2);
            color: #8B5CF6;
        }

        .info-card:nth-child(3) .icon {
            background: rgba(59, 130, 246, 0.2);
            color: #3B82F6;
        }

        .info-card:nth-child(4) .icon {
            background: rgba(255, 107, 53, 0.2);
            color: #FF6B35;
        }

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

        .info-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-family: 'Outfit', sans-serif;
        }

        .info-card:nth-child(2) h4 { color: #8B5CF6; }
        .info-card:nth-child(3) h4 { color: #3B82F6; }
        .info-card:nth-child(4) h4 { color: #FF6B35; }

        .info-card p {
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        /* Additional Info Banner */
        .info-banner {
            background: linear-gradient(135deg, 
                rgba(245, 227, 221, 0.973) 0%,
                rgba(248, 242, 237, 0.993) 50%,
                rgba(208, 225, 252, 0.966) 100%
            );
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin-top: 2rem;
            animation: slideUp 0.8s ease-out 0.4s both;
        }

        .info-banner h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
            font-family: 'Outfit', sans-serif;
        }

        .info-banner p {
            color: #666;
            line-height: 1.8;
        }

        /* ==================== FOOTER ==================== */
.main-footer {
    padding: 30px 5% 30px;
    background: var(--cream);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

/* Update 1: Align Logo and Text on the same line */
.footer-brand h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    display: flex;          
    align-items: center;    
    left: 2%;              
}


.footer-brand h2 span {
    color: var(--accent-gold);
}

.footer-brand p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-contact p {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}


.footer-bottom {
    padding-top: 30px;     
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column; 
    align-items: center;    
    text-align: center;     
    gap: 20px;      
    margin-top: -30px;        
}

/* --- Scroll Animation States --- */
.reveal, 
.reveal-left, 
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

/* Active states with proper specificity */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 968px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-form {
                padding: 30px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 5%;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

            .nav-links a {
                font-size: 0.9rem;
            }

            .hero-contact {
                margin-top: 150px;
                min-height: 60vh;
            }

            .hero-contact h1 {
                font-size: 2.5rem;
            }

            .hero-contact .subheader {
                font-size: 1rem;
            }

            .form-section h2 {
                font-size: 2rem;
            }
        }
