@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Asap:400,400i,500,500i,700,700i);
@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,300i,400,400i,500,500i,700,700i);

body {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

/* Header and Footer */
#header, #footer {
    width: 100%;
}

/* Image Section */
.image-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section {
    background-size: cover;
    background-position: center;
	background-color: #8F654F;
    color: white;
    padding: 30px 50px;
    text-align: center;
    margin: 40px 75px;
    border-radius: 30px;
}



.contact-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: auto;
    width: 100%;
}
.contact-box {
    width: 33%;
    text-align: center;
    display: flex;
    gap: 20px;
}
.contact-box img {
    width: 50px;
    height: 50px;
}
.contact-title {
    font-size: 20px;
}
.contact-details {
    font-size: 16px;
    margin-top: 5px;
}

.contact-box .info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.7);
}

.team-wrapper {
    /* max-width: 800px; */
    margin: 0px 75px;
    padding: 25px;
    background: #EBE6E0;
    text-align: center;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    margin-bottom: 40px;
}
.team-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}
.team-members {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
.member-card {
    background: white;
    color: #666666;
    padding: 20px;
    border-radius: 8px;
    width: 33%;
    text-align: center;
}
.member-name {
    font-size: 18px;
    font-weight: bold;
}
.member-role {
    font-size: 16px;
    margin-top: 5px;
}
.member-contact {
    font-size: 14px;
    margin-top: 10px;
    color: #0E519D;
}

.form-container {
    margin: 0 75px;
    margin-bottom: 40px;
}
.form-title {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.input-field {
    width: 98%;
    padding: 10px;
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 5px;
    font-size: 12px;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05), 
                inset -1px -1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease-in-out; /* Smooth effect */
}

.input-field:focus {
    outline: none;
    border: 1px solid #ddd; /* Keeps the border light */
    box-shadow: 0px 0px 8px rgba(200, 200, 200, 0.8); /* Light gray outer glow */
}


.input-row {
    display: flex;
    gap: 10px;
}
.input-row .input-field {
    flex: 1;
}
.message-field {
    width: 98%;
    padding: 10px;
    border: 1px solid #ddd; /* Lighter gray border */
    border-radius: 5px;
    font-size: 12px;
    height: 80px;
    resize: none;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05), 
                inset -1px -1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease-in-out; /* Smooth effect */
}

.message-field:focus {
    outline: none;
    border: 1px solid #ddd; /* Keeps border light */
    box-shadow: 0px 0px 8px rgba(200, 200, 200, 0.8); /* Light gray outer glow */
}


.submit-button {
    width: 100%;
    padding: 12px;
    background: #8F654F;
    color: white;
    font-size: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.map-container {
    width: 100%;
    margin: 0px;
    text-align: center;
}
#google-map {
    width: 100%;
    height: 300px !important;
    border: none;
    /* border-radius: 10px; */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .contact-section{
        margin: 40px;
    }

    .team-wrapper{
        margin: 0px 40px;
        margin-bottom: 40px;
    }

    .form-container{
        margin: 0px 40px;
        margin-bottom: 40px;
    }

    .contact-container {
        flex-direction: column;
    }

    .divider{
        width: 100%;
        height: 2px;
    }

    .contact-box {
        width: 100%;
    }

    .form-group{
        max-width: 100%;
    }

    .input-field{
        width: 97%;
    }

    .input-row{
        width: 100%;
    }

    .message-field{
        width: 97%;
    }
}

@media screen and (max-width: 480px) {
    .contact-box img{
        height: 40px;
        width: 40px;
    }
    .team-members{
        flex-direction: column;
    }

    .member-card{
        width: auto;
    }

    .form-title {
        font-size: 14px;
    }

    .contact-title{
        font-size: 16px;
    }

    .contact-details{
        font-size: 11px;
    }

    .input-field{
        width: 100%;
    }

    .input-row{
        flex-direction: column;
    }

    .message-field{
        width: 100%;
    }
}

@media screen and (max-width: 380px) {
    .contact-section{
        padding: 30px 20px;
    }
}