/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* height: 750px; */
    background: url('img/main-img.webp') center bottom/cover no-repeat;
} 

/* Hero Section Slider */


.contain {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.slider {
    width: 100%;
    max-width: 100vw;
    height: auto;
    max-height: 600px;
    position: relative;
    overflow: hidden;
}

/* .slides {
    width: 500%;
    height: 100%;
    display: flex;
} */

.slide {
    width: 100%;
    transition: 0.6s ease;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    /* position: relative;  */
}


/* Announcements Section */
.announcements {
    padding: 60px 0 80px;
    text-align: center;
}

@media screen and (max-width:750px){
    .announcements {
        padding: 10vw 0;
    }
}

.announcements .contain {
    max-width: 1000px;
}

.announcements h2 {
    color: #00a758;
    margin-bottom: 20px;
}

@media screen and (max-width:750px){
    .announcements h2 {
        margin-bottom: 5vw;
    }
}

/* .announcements .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
} */

.announcements ul {
    margin: 0 auto;
    max-width: 500px;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 60px;
    border: 1px solid #00a758;
}

.announcements li {
    margin: 0 0 10px 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px dotted #00a758;
    padding-bottom: 10px;
}

.announcements li span {
    padding-right: 50px;
}

@media screen and (max-width:750px){

    .announcements ul {
        padding: 5vw 4vw;
    }

    .announcements li {
        margin: 2vw 0;
    }

    .announcements li:nth-child(1) {
        margin-top: 0;
    }
    .announcements li:last-child {
        margin-bottom: 0;
    }

    .announcements li span {
        display: block;
        padding: 0 0 1vw;
    }
}

/* Greetings Section */
.greetings {
    padding: 40px 0;
    background-color: #f0f8f5;
    text-align: center;
}

@media screen and (max-width:750px){
    .greetings {
        padding: 10vw 0;
    }
}

.greetings h2 {
    color: #00a758;
    margin-bottom: 20px;
}

@media screen and (max-width:750px){
    .greetings h2 {
        margin-bottom: 5vw;
    }
}

.greetings p {
    padding: 20px;
    /* background: #e0e8e4; */
    border-radius: 8px;
    text-align: left;
    width: 80%;
    margin: 0 auto;
}

/* contact */
/* General Styles */
.contact body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Contact Form Styles */
.contact-section {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    text-align: center;
    color: #009688;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    /* font-weight: bold; */
}

@media screen and (max-width:750px){
    .contact-section h2 {
        margin-bottom: 5vw;
    }
}

.contact-section p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact form {
    background: #f0f8f5;
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.contact .form-group {
    margin-bottom: 15px;
    text-align: left;
    display: flex;
}

.contact label,
.contact dt {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    width: 200px;
}

.contact label small,
.contact dt small {
    font-size: 70%;
    display: block;
}

@media screen and (max-width:750px){
    .contact label small,
    .contact dt small {
        display: inline;
    }
}

.contact input, .contact textarea, .contact dd {
    width: 100%;
    padding: 10px;
    border: 1px solid #00a758;
    border-radius: 4px;
    font-size: 1rem;
}

.contact input:focus, .contact textarea:focus {
    border-color: #007bff;
    outline: none;
}

.contact button {
    background: #01a758;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.contact button:hover {
    background: #cc0000;
}

.hidden {
    display: none;
  }
  
  #successMessage {
    text-align: center;
    color: green;
    margin-top: 20px;
  }
  


/* staff css part */
.staff-section {
    padding: 100px 0 0;
    position: relative;
    width: 90%;
    margin: 0 auto;
}

@media screen and (max-width:750px){
    .staff-section {
        padding: 15vw 0 0;
    }
}

.staff-section h2 {
    text-align: center;
    color: #009688;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: left;
    /* font-weight: bold; */
}

.name-en {
    display: block;
    font-size: 1.5rem;
}

.staff-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
   
}
.staff-descrip{
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.staff-descrip p{
    gap: 10px;
}

.staff-card {
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.staff-photo {
    max-width: 400px;
    width: 50%;
    object-fit: cover;
    border-radius: 8px;
    float: left;
    margin: 0 50px 40px 0;
}

@media screen and (max-width:750px){
    .staff-photo {
        margin: 0 auto 40px;
        float: none;
        display: block;
        width: 80%;
    }
}

.staff-info {
    flex-grow: 1;
    max-width: 1000px;
    width: 100%;
}

.staff-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.staff-details {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.staff-details li {
    font-size: 1rem;
    /* color: #666; */
    color: #009688;
    margin-bottom: 5px;
}

.staff-names{
    display: flex;
    flex-direction: row;
    /* justify-content:space-evenly; */
    padding-right: 5vw;
    padding-left: 0;
}
.staff-names h3 {
    padding-left: 15px;
    padding-right: 15px;
}
.comment-btn {
    background-color: #f1f4f3;
    color: #010101;
    border-color: #00a758;
    border:#00a758;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}

.comment-btn:hover {
    background-color: #00796b;
}

/* service css part */
.service-section {
    padding: 100px 0 0;
    /* background-color: #f9f9f9; */
    position: relative;
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

@media screen and (max-width:750px){
    .service-section {
        padding: 15vw 0 0;
    }
}

.service-section h2 {
    text-align: center;
    color: #009688;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    /* font-weight: bold; */
}

@media screen and (max-width:750px){
    .service-section h2 {
        margin-bottom: 5vw;
    }
}

/* service css part */

/* //about css */

.aboutpara{

    margin: 0 auto;
    padding: 100px 0 50px;
    width: 60%;
    max-width: 1200px;
    text-align: left;
}

@media screen and (max-width:750px){
    .aboutpara{
        width: 80%;
        padding: 50px 0 25px;
    }
}

.aboutpara h2 {
    text-align: center;
    color: #009688;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    /* font-weight: bold; */
}

@media screen and (max-width:750px){
    .aboutpara h2 {
        margin-bottom: 5vw;
    }
}

/* Details Section Styling */
.details-section {
    position: relative;
    padding: 0 0 100px;
    background-color: #fff;
    text-align: center;
    margin: 0 auto;
    max-width: 80%;
}

@media screen and (max-width:750px){
    .details-section {
        padding: 0 0 50px;
    }
}

.details-table {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #eeeeee;
}

.details-table tr {
    border: 1px solid #fff;
}

.details-table th, .details-table td {
    padding: 30px;
    /* border: 1px solid #ccc; */
    font-size: 18px;
    color: #333;
}

.details-table th {
    background-color: #08c284;
    color: #fff;
    text-align: left;
    width: 20%;
    min-width: 90px;
}

.details-table td {
    width: 80%;
    text-align: left;
}

.details-table a {
    color: #007bff;
    text-decoration: underline;
}

.guide-in-map {
    display: inline-block;
    margin-left: 50px;
}

@media screen and (max-width:750px){
    .guide-in-map {
        margin-left: 0;
        /* text-align: center; */
        display: block;
    }
}

/* Map Section Styling */

.map-section {
    padding: 40px 0;
    background-color: #e3f6ef;
}

#map {
    max-width: 1200px;
    width: 80%;
    height: 400px;
    margin: 0 auto;
    border: 1px solid #ccc;
}

.full-wrapper{
    position: relative;
}

/* For when the menu is active */

.bx-wrapper {
    border: none!important;
    max-height: 600px;
    overflow: hidden;
}

.sp {
    display: none!important;
}

.pc {
    display: flex!important;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #00a758!important;
    width: 15px!important;
    height: 15px!important;
    margin: 0 10px!important;
    border-radius: 10px!important;
}

.bx-wrapper .bx-pager.bx-default-pager a.active, 
.bx-wrapper .bx-pager.bx-default-pager a:focus, 
.bx-wrapper .bx-pager.bx-default-pager a:hover {
    background: #fff!important;
    border: 1px solid #00a758;
}

.bx-wrapper .bx-controls-direction a {
    display: none !important;;
}

.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
    bottom: 20px!important;
    padding: 0;
}


@media screen and (max-width:750px){

        /* Announcements Section */

    .bx-wrapper{
        width: 1000px;
        max-height: 800px;
        overflow: hidden;
        position: relative;
        height: auto;
    }
  
    .slider img {
        width: 100%;
        height: auto;
        object-fit:cover;
    }

    /* @media screen and (max-width:750px){
    } */

    /* Greetings Section */
    /* .greetings p {
        text-align: center;
    } */

    .greetings p {
        padding: 0;
        width: 100%;
    }

    /* Contact Form */
    .contact .form-group {
        flex-direction: column;
    }

    .contact label {
        width: 100%;
    }

    .contact input, .contact textarea {
        width: 100%;
    }
/* ///////////////////////// */
     /* Staff Section */
     .staff-list {
        flex-direction: column;
        gap: 10px;
    }

    .staff-card {
        flex-direction: column;
        padding: 15px;
    }

    .staff-photo img {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .staff-info h3 {
        font-size: 1.3rem;
    }

    .staff-details li {
        font-size: 0.8rem;
    }

    .staff-names {
        flex-direction: column;
        padding: 0;
    }

    .staff-names h3 {
        padding: 0;
    }

    /* Comment Button */
    .comment-btn {
        width: 100%;
        padding: 8px;
        font-size: 1rem;
    }


    /* About Section */

    .aboutpara p{
        margin: 0 auto;
        padding: 10px;
        /* max-width: 80%; */
        text-align: center;
    }

    /* Details Section */
    .details-table {
        width: 100%;
        max-width: 1200px;
    }

    .details-table th, .details-table td {
        font-size: 16px;
        padding: 10px;
    }

    /* Map Section */
    #map {
        width: 100%;
        max-width: 1200px;
        height: 300px;
        margin: 0 auto;
    }

    .hero {
        /* height: 400px;  */
        background-position: center center; 
    }

    .contain {
        width: 100%;
        padding: 0 5vw;
    }

}

.swiper-pagination-bullet {
    background: #01a758;
    opacity: .5;
    height: 15px;
    width: 15px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #01a758;
    opacity: 1;
}

.staff .hero {
    background: none;
    /* height: 400px; */
    width: 100%;
}

.swiper {
    height: 500px;
 }
 .swiper-button-next::after, .swiper-button-prev::after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 1rem;
    width: 2rem;
    height: 2rem;
    opacity: 0.75;
    border-radius: 50%;
    color: var(--white-100);
    background: var(--black-300);
 }

 .swiper img {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
        object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}
