/* Contact Us Page Styles */

.banner-section {
    background-color: #f5f5f5;
    height: 150px;
    width: 100%;
    margin: 0 auto;
    margin-top: -120px !important;
}

/* Contact Logo and Hero Section */
.contact-logo-hero-section {
    padding: 0;
    background-color: #F5F5F5;
}

.contact-logo-container,
.contact-hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-logo-container img,
.contact-hero-container img {
    max-width: 100%;
    height: auto;
}

.contact-hero-container img {
    width: 500px;
    margin-bottom: -5px;
}

/* Contact Information and Map Section */
.contact-info-map-section {
    padding: 0 0 80px 0;
    background-color: #F5F5F5;
}

.contact-info-container {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: start;
    justify-content: center;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-icon i {
    color: #002D85;
    font-size: 20px;
}

.contact-details {
    flex: 1;
}

.contact-heading {
    color: #002D85;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    margin: 0 0 8px 0;
}

.contact-text {
    color: #002D85;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 5px 0;
}
.contact-text a{
    color: #002D85;
    text-decoration: none;
}

/* Map Container */
.map-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
}

.google-map {
    border-radius: 8px;
    overflow: hidden;
}

.google-map iframe {
    border-radius: 8px;
    width: 100%;
    height: 400px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 0 0 80px 0;
    background-color: #F5F5F5;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero-container img {
        margin-bottom: 30px;
    }
    
    .contact-info-item {
        margin-bottom: 15px;
    }
}

.contact-row {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 35px 25px;
    margin: 0;
    overflow: hidden;
}

.form-heading {
    color: #002D85;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #002d85;
    font-weight: 500;
    margin-bottom: 8px;
    display: inline-block !important;
}

.form-control {
    width: 100%;
    padding: 5px 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #002D85;
    box-shadow: 0 0 0 0.2rem rgba(0, 45, 133, 0.25);
}

/* Contact Logo */
.contact-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-logo img {
    max-width: 300px;
    height: auto;
}

