/* banner */

.banner {
    position: relative;
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), color-mix(in srgb, var(--primary-color) 80%, transparent));
    top: 0;
    left: 0;
}

.banner_content {
    position: relative;
    max-width: 100%;
    height: 100%;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
}

.banner_heading {
    font-family: 'Kanit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.banner_para {
    color: #495057;
    font-size: 16px;
    font-weight: normal;
    line-height: 34px;
    margin-bottom: 48px;
    font-family: "Inter", serif;
}


@media only screen and (max-width:991px) {
    .banner {
        margin-top: 0;
    }
}

@media only screen and (max-width:767px) {
    .banner {
        height: auto;
        padding: 15px 0px 0px 0px;
    }
}

@media only screen and (max-width:575px) {
    .banner_heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .banner {
        height: auto;
    }
}


/* banner */

/* Contact Form */
.contact-form-section .contactForm {
    background: var(--text-light);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-section .contact_us {
    background: var(--primary-color);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--text-light);
}

.contact-form-section .contact_us .sub_head {
    font-family: 'Gabarito';
    color: var(--secondary-color);
    font-size: 30px;
}

.contact-form-section .contact_us .info {
    color: #fff;
}

.contact-form-section .contact_us .contact-info {
    padding: 10px 0;
}

.contact-form-section .contact_us .contact-info .info-box {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.contact-form-section .contact_us .contact-info .info-box .icon {
    background-color: var(--primary-color);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form-section .contact_us .contact-info .info-box .icon i {
    color: var(--text-light) !important;
    font-size: 22px;
}

.input_wrap {
    position: relative;
    margin-top: 20px;
}

.input_label {
    position: absolute;
    top: -12px;
    left: 15px;
    z-index: 1;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 5px;
    padding: 2px 10px;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    transition: 0.3s ease-in-out;
    font-family: 'kanit';
}

.form-control {
    padding: 12px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
}

.input_wrap input:focus::placeholder,
.input_wrap input:not(:placeholder-shown)::placeholder {
    color: transparent;
    transition: 0.3s ease-in-out;
}

input:focus,
select:focus,
textarea:focus {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    background-color: #ffffff;
    outline: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border: 1px solid #493812;
}

@media only screen and (max-width:991px) {
    .contact_form .contact_us {
        margin-bottom: 25px;
    }
}

/* Contact Form */