  /* CSS Reset and Base Styles */
        

        .container {
            width: 100%;
            max-width: 1280px; /* Standard container width */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
        }

        /* Font Helper Classes */
        .font-oswald {
            font-family: 'Oswald', sans-serif;
        }
        .font-poppins {
            font-family: 'Poppins', sans-serif;
        }

       
        
        /* Hero Section */
        .hero-section {
            color: #ffffff;
            padding-top: 5rem; /* py-20 */
            padding-bottom: 5rem; /* py-20 */
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3.75rem; /* text-5xl */
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .hero-section p {
            font-size: 1.125rem; /* text-lg */
            margin-top: 1rem;
            max-width: 42rem; /* max-w-2xl */
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Animated Gradient Background */
        .animated-gradient {
            background: linear-gradient(-45deg, #1a1a37, #ffbc3b, #1a1a37, #ffbc3b);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
        }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Contact Section */
        .contact-section {
            padding-top: 4rem; /* py-16 */
            padding-bottom: 4rem; /* py-16 */
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem; /* gap-10 */
        }

        /* Contact Details Card (Left Column) */
        .contact-details-card {
            background-color: #1a1a37;
            color: #ffffff;
            border-radius: 0.75rem; /* rounded-xl */
            padding: 2rem; /* p-8 */
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .contact-details-card h3 {
            font-size: 1.875rem; /* text-3xl */
            margin-bottom: 2rem;
        }

        .contact-info-list {
            list-style: none;
        }
        
        .contact-info-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .contact-info-list li:last-child {
            margin-bottom: 0;
        }

        .contact-info-list svg {
            width: 1.5rem;
            height: 1.5rem;
            color: #ffbc3b;
            margin-top: 0.25rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .contact-info-list a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s;
        }
        .contact-info-list a:hover {
            color: #ffbc3b;
        }

        .social-links {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #4b5563; /* border-gray-700 */
            display: flex;
        }
        .social-links a {
            color: #d1d5db; /* text-gray-400 */
            text-decoration: none;
            margin-right: 1rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #ffffff;
        }

        /* Contact Form (Right Column) */
        .contact-form-container {
            background-color: #ffffff;
            padding: 2rem; /* p-8 */
            border-radius: 0.75rem; /* rounded-xl */
            border: 2px dashed #d1d5db; /* border-gray-300 */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .contact-form-container h2 {
            font-size: 1.875rem; /* text-3xl */
            color: #1f2937; /* text-gray-800 */
            margin-bottom: 2rem;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db; /* border-gray-300 */
            border-radius: 0.5rem; /* rounded-lg */
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f59e0b; /* focus:border-yellow-500 */
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3); /* focus:ring-yellow-500 */
        }
        
        .form-group textarea {
            resize: vertical;
        }

        .submit-button {
            width: 100%;
            background-color: #ffbc3b;
            color: #1a1a37;
            font-weight: 700;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-button:hover {
            background-color: #f59e0b; /* hover:bg-yellow-500 */
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (min-width: 768px) { /* md breakpoint */
            .nav-links {
                display: flex;
            }
            .mobile-menu-button {
                display: none;
            }
            .hero-section {
                padding-top: 8rem;
                padding-bottom: 8rem;
            }
            .hero-section h1 {
                font-size: 4.5rem; /* md:text-7xl */
            }
            .hero-section p {
                font-size: 1.25rem; /* md:text-xl */
            }
            .contact-section {
                padding-top: 6rem;
                padding-bottom: 6rem;
            }
            .contact-details-card, .contact-form-container {
                padding: 3rem; /* md:p-12 */
            }
            .contact-details-card h3, .contact-form-container h2 {
                font-size: 2.25rem; /* md:text-4xl */
            }
            .form-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .contact-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem; /* lg:gap-16 */
            }
        }
        
         .navigation {
            background-image: none !important;
        }

        .navbar-nav {
            background: transparent !important;
        }
