.contact {
    display: flex;
    padding: 60px;
    justify-content: space-around;
}

.section-title {
    text-align: left;
    font-size: 30px;
    margin-bottom: 20px;
    color: #0f4a7f;
    font-weight: 700;

}

.contact-info {
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
}

.contact-info p {
    font-size: 20px;
}

.contact-info p strong {
    font-weight: 600;
}

.row-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.row-group {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fafafa;
    font-size: 13px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.btn {
    background: #0f4a7f;
    color: #fff !important;
    padding: 7px 15px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background: #2fa8ef;
    box-shadow: 0 8px 18px rgba(81, 165, 249, 0.5);
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 12px rgba(81, 165, 249, 0.4);
}


@media (max-width: 768px) {

    .contact {
        padding: 10px;
    }

    form.contact-form.recaptcha-protected-form {
        display: block;
    }

    .contact-info p {
        font-size: 15px;
    }

    .row-section {
        width: 50%;
    }

    .section-title {
        font-size: 32px;
    }

    .contact-form {
        padding: 25px;
    }

    .row-group {
        flex-direction: column;
        gap: 0px;
    }
}

section .map {
    width: 100%;
    height: 300px;
    /* Adjust height as needed */
    border: 0;
    display: block;
}

.client-img {
    max-width: 50%;
}

.corporate-img {
    width: 100%;
}

.carousel-inner {
    margin: 0px 40px;
}

/* Optional: smaller height for mobile */
@media screen and (max-width: 768px) {
    section .map {
        height: 300px;
    }
}


@media(max-width:560px) {
    .row-section {
        width: 100%;
    }

    .contact {
        display: block;
    }
}

/*  */