* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.contact-header{
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.contact-section{
    background: #F2FFF5;
}

.contact-flex{
    background: #F2FFF5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 250px;
}

.breadcrumb-overlay{
    position: absolute;
}

.breadcrumb-overlay h1{
    margin-top: 100px;
    margin-bottom: 0px;
    color: white;
    font-size: 40px;
    font-weight: 700;
}

.breadcrumb-overlay p{
    font-size: 15px;
    margin-top: 8px;
    color: white;
    text-align: center;
    font-weight: 500;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 170px;
    margin: 70px 160px;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left h2,
.contact-right h2 {
    color: black;
    font-size: 40px;
}

.contact-left p,
.contact-right p{
    font-size: 18px;
    font-weight: 500;
    color: #028E21;
    margin-bottom: 50px;
}

.contact-card,
.location {
    margin-top: 15px;
    border-radius: 5px;
}

.contact-card h3 ,
.location h3{
    font-size: 24px;
    color: #028E21;
}

.name{
    display: flex;
    gap: 10px;
}

.name img{
    width: 60px;
    height: 60px;
}

.name p{
    font-size: 15px;
    color: black;
    font-weight: 500;
    margin-bottom: 10px;
}

.name a{
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: black;
}

.contact-card .icon ,
.location .icon{
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

.title-contact{
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 18px;
}

.location p {
    margin: 5px 0;
}

.location{
    margin-bottom: 40px;
}

.location a:hover {
    text-decoration: underline;
}

/* Responsive Design */

@media (max-width: 1024px) {
    .breadcrumb-overlay h1 {
        font-size: 28px;
    }

    .breadcrumb-overlay p {
        font-size: 12px;
    }


    .contact-container {
        gap: 20px;
    }

    .contact-left h2,
    .contact-right h2 {
        font-size: 24px;
    }

    .contact-left p,
    .contact-right p {
        font-size: 14px;
    }

    .contact-card h3,
    .location h3 {
        font-size: 18px;
    }
}


@media (max-width: 768px) {
    .breadcrumb-overlay h1 {
        font-size: 28px;
    }

    .breadcrumb-overlay p {
        font-size: 12px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Reduce gap for smaller screens */
    }

    .contact-left h2,
    .contact-right h2 {
        font-size: 24px;
    }

    .contact-left p,
    .contact-right p {
        font-size: 14px;
    }

    .contact-card h3,
    .location h3 {
        font-size: 18px;
    }
}


/* //////////////////////////// Section 02 /////////////////////////// */

.contact-form-section{
    padding-top: 100px;
    padding-bottom: 50px;


    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-form-section > h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 35px; 
    margin: 0;
    text-align: center; 
}

.contact-form-section > h2 {
    margin: -20px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px; 
    margin-top: 8px;
    color: #028E21;
    text-align: center; 
}

/* Medium screens (1024px and below) */
@media screen and (max-width: 1024px) {
    .contact-form-section > h1 {
        font-size: 30px; /* Slightly smaller for medium screens */
    }

    .contact-form-section > h2 {
        font-size: 18px; /* Slightly smaller */
    }
}

/* Small screens (768px and below) */
@media screen and (max-width: 768px) {
    .contact-form-section > h1 {
        font-size: 26px; /* Smaller size for tablets */
    }

    .contact-form-section > h2 {
        font-size: 16px; /* Smaller size for tablets */
    }
}



.contact-section {
    width: 100%;
    background-color: #fff;
    margin: 0; /* No margins on the section */  
}

.contact-form-container {
    width: 90%; /* Expand container width */
    max-width: 1400px; /* Optional: limit maximum width */
    margin: 0 auto; /* Center the container */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Left Form Styling */
.form-left {
    flex: 1;
    min-width: 300px; /* Ensures left column doesn't shrink too much */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    width: 100%; /* Full width inside container */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    resize: none;
}

.btn-submit {
    width: auto;
    padding: 10px 20px;
    background-color: #028E21;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-start;
}

/* Right Image Styling */
.form-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px; /* Ensures right column maintains width */
}

.form-right img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        flex-direction: column;
        width: 100%;
        padding: 0 10px; /* Add small padding on mobile */
    }

    .form-right {
        margin-top: 20px;
    }
}
