:root{
            --navy: #0F172A; /* Deeper navy */
            --accent-gold: #FFD700; /* Bright gold */
            --light-sky: #F0F9FF; /* Very light blue */
            --dark-text: #1F2937; /* Dark gray for text on light backgrounds */
            --mid-gray-text: #4B5563; /* Medium gray for muted text */
            --gradient-dark-blue: linear-gradient(180deg, #102A43 0%, #243B53 100%);
        }
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--light-sky);
            color: var(--dark-text);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            color: var(--navy);
        }

        /* Header */
        .site-header {
                        background: linear-gradient(to right, white, white, skyblue, skyblue);

            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo-wrap img{ height:68px; filter: drop-shadow(0 0 5px var(--accent-white)); }
        .site-header .navbar-brand { font-weight: bold; font-size: 1.5rem; color: #0A192F !important; }
        .site-header .nav-link {
            color: #0A192F !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .site-header .nav-link:hover, .site-header .nav-link.active {
            color: var(--accent-#0A192F) !important;
            background-color: rgba(255,255,255,0.1);
        }
        .btn-outline-light {
            border-color: #0A192F;
            color: #0A192F;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .btn-outline-light:hover {
            background-color: var(--accent-gold);
            color: var(--navy);
            border-color: var(--accent-gold);
        }

        /* Hero section for Contact Page */
        .hero-contact {
            background: linear-gradient(135deg, var(--navy) 0%, #2A6093 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 5px solid var(--accent-gold);
        }
        .hero-contact h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .hero-contact p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto;
            color: #B0D9EE;
        }

        /* Contact Form Section */
        .contact-section {
            padding: 5rem 0;
            background-color: white;
        }
        .contact-form-card {
            background-color: #f8f9fa;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            padding: 40px;
        }
        .contact-form-card .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .contact-form-card .form-control:focus {
            border-color: #3B82F6;
            box-shadow: 0 0 0 0.25rem rgba(59,130,246,0.25);
        }
        .contact-form-card textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(90deg, #3B82F6, #9F7AEA);
            border: none;
            color: white;
            padding: 0.75rem 2.5rem;
            border-radius: 999px;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(59,130,246,0.25);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .btn-submit:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 35px rgba(59,130,246,0.35);
        }
        .contact-info p i {
            color: var(--navy);
            margin-right: 10px;
        }

        /* Adjusted glass card styling for contact info */
        .contact-info-card {
            background: var(--gradient-glass-light);
            border: 1px solid rgba(0,0,0,0.08);
            backdrop-filter: blur(5px);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%; /* Ensure cards in a row have same height */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }
        .contact-info-card i {
            font-size: 3.5rem; /* Larger icons */
            color: var(--accent-gold); /* Gold color for icons */
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        .contact-info-card:hover i {
            transform: scale(1.1);
        }
        .contact-info-card p.lead {
            color: var(--dark-text); /* Dark text for readability on light background */
            font-size: 1.1rem;
        }


        /* Footer */
        footer {
            background: linear-gradient(to right, white, white, skyblue, skyblue);
            color: black;
            padding: 40px 0;
        }
        footer h5 {
            color: black;
            margin-bottom: 20px;
        }
        footer a {
            color: black;
            text-decoration: none;
        }
        footer a:hover {
            color: #FFD700;
        }
        .copyright {
            background: #111;
            padding: 10px;
            text-align: center;
            color: #777;
            font-size: 0.9rem;
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .hero-contact { padding: 50px 0; }
            .hero-contact h1 { font-size: 2rem; }
            .hero-contact p { font-size: 1rem; }
            .contact-section { padding: 3rem 0; }
            .contact-form-card { padding: 25px; }
            .btn-submit { padding: 0.6rem 2rem; }
            .contact-info-card { padding: 20px; }
            .contact-info-card i { font-size: 2.5rem; }
            .contact-info-card p.lead { font-size: 1rem; }
        }