
/* INNER BANNER */

.contact-banner {
    position: relative;
    width: 100%;
    height: 480px;

    background-image: url("../images/5.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */

.banner-overlay {
       background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
    text-align: center;
    padding: 0%;
}

/* TITLE */

.banner-overlay h1 {
    font-size: 68px;
    margin-bottom: 20px;
}

/* TEXT */

.banner-overlay p {
    font-size: 24px;
    max-width: 700px;
    line-height: 1.7;
}

/* MOBILE */

@media (max-width: 768px) {

    .inner-banner {
        height: 320px;
    }

    .banner-overlay h1 {
        font-size: 42px;
    }

    .banner-overlay p {
       font-size: 18px;
    }

}


/* CONTACT SECTION */

.contact-section {
    padding: 100px 40px;
    background: #ffffff;
}

/* CONTAINER */

.contact-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* CONTACT INFO */

.contact-info h2 {
    font-size: 52px;
    color: #003366;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 20px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
}

/* INFO BOX */

.info-box {
    margin-bottom: 30px;
}

.info-box h3 {
    font-size: 26px;
    color: #003366;
    margin-bottom: 10px;
}

/* FORM */

.contact-form form {
    background: #f5f9ff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    font-size: 17px;
}

/* TEXTAREA */

.contact-form textarea {
    height: 160px;
    resize: none;
}

/* BUTTON */

.contact-form button {
    background: #003b8e;
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */

.contact-form button:hover {
    background: #0056b3;
}

/* MOBILE */

@media (max-width: 768px) {

    .contact-section {
        padding: 60px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-info p {
       font-size: 18px;
    }

    .contact-form form {
        padding: 30px 20px;
    }

}


/* MAP SECTION */

.map-section {
    background: #f5f9ff;
    padding: 100px 40px;
}

/* HEADING */

.map-heading {
    text-align: center;
    margin-bottom: 60px;
}

.map-heading h2 {
    font-size: 52px;
    color: #003366;
    margin-bottom: 20px;
}

.map-heading p {
    font-size: 22px;
    color: #666666;
}

/* MAP */

.map-container {
    max-width: 1300px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IFRAME */

.map-container iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

/* MOBILE */

@media (max-width: 768px) {

    .map-section {
        padding: 60px 20px;
    }

    .map-heading h2 {
        font-size: 36px;
    }

    .map-heading p {
       font-size: 18px;
    }

    .map-container iframe {
        height: 350px;
    }

}