
.contact-section {
    background-color: #f9f9f9;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-section .form-group {
    margin-bottom: 15px;
}

.contact-section input,
.contact-section textarea {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    box-shadow: none;
    transition: border 0.3s ease-in-out;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #011984;
    
    outline: none;
}

.contact-section button {
    background-color: #011984;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.contact-section button:hover {
    background-color: #011984;
}


.address-section {
    padding: 60px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: 30px; 
}

.address-section h4 {
    margin-bottom: 15px;
    font-weight: bold;
}

.address-section p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.address-section a {
    color: #011984;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-section a:hover {
    color:#011984;
}


.map-section {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}


.address-section i {
    margin-right: 10px;
    color: #011984;
}

@media (max-width: 767px) {
    .contact-section, .address-section, .map-section {
        margin-bottom: 20px;
    }


    .contact-section,
    .address-section {
        width: 100%;
    }
}

.row .col-md-6 {
    margin-bottom: 30px;
}
