.contact-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.contact-container-wrapper {
    /* background-color: #fff;
    border-radius: 1rem; */
}

.map-section {
    position: relative;
    width: 100%;
    /* Aspect ratio for the map placeholder. Adjust as needed */
     /* 4:3 aspect ratio (300/400 = 0.75) */
    background-color: #e9ecef; /* Light grey for map background */
    border: 1px solid #dee2e6;
     height: 390px !important;
     margin-top: 47px;
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6c757d;
}

.map-placeholder img {
    object-fit: cover; /* Ensure the image covers the area */
}

.map-overlay {
    /* Styles for the "Riyadh, Saudi Arabia" text bubble */
    font-size: 1rem;
    font-weight: bold;
    width: 325px;
    color: #000E7D;
    text-decoration: underline;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 12px !important;
    padding: 13px 10px !important;
    text-align: center !important;
    justify-content: center;
    gap: 10px;
}
.map-overlay svg {
    width: 20px;
}

.social-icons .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    transition: transform 0.2s ease-in-out;
}

.social-icons .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Custom colors for social icons */
.social-icons .bg-primary { background-color: #3b5998 !important; } /* Facebook */
.social-icons .bg-info { background-color: #00acee !important; }    /* Twitter */
.social-icons .bg-dark { background-color: #0e76a8 !important; }    /* LinkedIn */
.social-icons .bg-danger { background-color: #C13584 !important; } /* Instagram */


.contact-form .form-label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}
input[type="text"],
input[type="email"]{
    text-align:right; /* Align text to the start for better readability */
}

.contact-form .form-control {
border-radius: 18px;
    padding: 0.8rem 1rem;
    border: 1px solid #ced4da;
    background-color: white;
}

.contact-form .form-control::placeholder {
    color: #adb5bd;
}
.map-section iframe {
        border: 0;
    height: 390px !important;
}

.submit-button {
background-color: var(--blue-color) !important;
    background-image: url(../images/blue_button_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.submit-button:hover {
background-color: var(--blue-color) !important;
    background-image: url(../images/blue_button_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;    border: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.4);
}
.contact-form {
    border-radius: 12px;
    border:1px solid #DBDBDB;
    padding: 20px;
}
.contact-form-section {
    background-color: #FAFAFA; /* Light background for the form container */

}
.contact-form-section .social_media li i {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .contact-title {
        font-size: 2rem;
        text-align: center;
    }
    .contact-container-wrapper {
        padding: 1rem;
    }
  
    .social-icons {
        margin-top: 1.5rem;
    }
    .social-icons .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .submit-button {
        width: 100%;
    }
}
