    .contact {
        width: 100vw; 
        height: 60%;
        margin-top: 100px; 
        color: white;
        padding: 60px 20px; 
        box-sizing: border-box; 
        border: none;
        border-bottom-right-radius: 100px ;
    }
.contact iframe{
    position:relative;
    width:100%;
}
    @media screen and (max-width: 600px){
        .contact {
            border: none;
            border-bottom-right-radius: 0;
            height: 50%;
        }
        .contact h1 {
            font-size: 1.5em;
           border: none;
        }
        .contact p{
            font-size: 1em;
            text-align: justify;
        }
    }
.contact-section {
    padding: 40px 20px;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    text-align: left;
}

.separator {
    width: 60px;
    height: 3px;
    background-color: #004f95;
    margin: 0 auto 40px;
}

/* Contact Details Section */
.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; 
}
.detail-box {
    display: flex;
    align-items: center;
    background-color: #eef8ff; 
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    background-image: url(../Images/old-map.png);
    transition: background-color 0.3s; 
}
.detail-box:hover {
    background-color: #cce8eb; 
}

.detail-box i {
    margin-right: 10px; 
    font-size: 1.5rem; 
    color: #004f95; 
}

.detail-box span {
    font-size: 1rem; 
}


.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.form-container {
    flex: 1 1 45%; 
    max-width: 500px; 
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 1rem;
    margin-bottom: 5px;
}



input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: #004f95;
}

textarea {
    resize: vertical;
    height: 150px;
}

.submit-btn {
    background-color: #004f95;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    border-bottom: solid #003a73 3px;
    border-right: solid #003a73 3px;;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #00abbb;
}
.map-container {
    flex: 1 1 45%; 
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
    align-content:center;
    align-items:center;
}

@media screen and (max-width: 768px) {
  .contact{
      margin-top: 150px;
  }
    .contact-content {
        flex-direction: column; 
    }

    .form-container, .map-container {
        width: 100%; 
        height: auto; 
    }

    .map-container {
       display: none;
    }
}
