.swiper-slide.one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)), url(../images/slider/slider-111.webp);
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide.two {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.3)), url(../images/slider/slider-122.webp);
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media screen and (max-width:1156px) {

    .swiper-slide.one,
    .swiper-slide.two {
        height: 60vh;
    }
}

@media screen and (max-width:600px) {
    .swiper-slide {
        height: 90vh !important;
    }

}

.main_wrapper {
    position: relative;
    z-index: 1 !important;
}

.page_banner {
    position: relative;
    z-index: 1 !important;
    height: 50vh;
    background: var(--primary-color);
    /* background: url(../images/slider/slider-11.webp); */
    background-size: cover;
    background-position: center;
}

.main_wrapper .slider_content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}


.main_wrapper .slider_content h1 {
    font-size: 50px;
    line-height: 1.2;
    text-transform: capitalize;
    color: #fff;
    font-weight: 700;
    margin: 10px 0 20px;
    letter-spacing: 1px;
}

@media screen and (max-width:600px) {
    .main_wrapper .swiper-slide .slider_content h1 {
        font-size: 36px !important;
    }
}

.main_wrapper .slider_content p {
    max-width: 50%;
    color: #fff;
    font-weight: 300;
}

@media screen and (max-width:991px) {
    .main_wrapper .slider_content p {
        max-width: 100%;
    }
}

.slider_content .btns {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider_content .main-btn {
    width: fit-content;
}


.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--second-color);
    width: 1px;
    height: 1px;
    border: 1px solid #fff;
    padding: 3px;
}





/* about section */


.about_section .grid_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

@media screen and (max-width:1399px) {
    .about_section .grid_row {
        gap: 25px;
    }
}

@media screen and (max-width:991px) {
    .about_section .grid_row {
        grid-template-columns: 1fr;
    }

    .about_section .content {
        order: 1;
    }

    .about_section .image {
        order: 2;
    }
}





.who_we_serve {
    padding: 70px 0;
}

.who_we_serve .flex_row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;

}

.who_we_serve .flex_row .item {
    background: #fff;
    text-align: center;
    width: 200px;
    height: 200px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.who_we_serve .flex_row .icon {
    width: 50px;
    height: 50px;
    margin: 20px auto;
}









.main_desc {
    max-width: 60%;
    margin: auto;
}

@media screen and (max-width:991px) {
    .main_desc {
        max-width: 90%;
    }
}

.room_section .grid_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: repeat(3,1fr); */
    /* gap: 20px; */
}

.room_section .room_box {
    position: relative;
    overflow: hidden;
}


.room_section .room_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 1;
    transition: all .4s ease-in;
}

/* .room_section .room_content a{
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: center;
    opacity: 1;
    transition: all .4s ease-in;
} */
.room_section .room_box:hover {
    cursor: pointer;
}

.room_section .room_box:hover .room_content {
    opacity: 1;
}

.room_section .room_box:hover .bg_overlay {
    opacity: 1;
}

.room_section .bg_overlay {
    background: rgba(0, 0, 0, 0.219);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.room_section .room_image {
    height: 100%;
}

.room_section .room_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room_section .room_name {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    color: #fff;
}

.room_section .main-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #fff;
    /* background-color: var(--second-color); */
}




.whowe_serve {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/about.webp);
    background-attachment: fixed;
    backdrop-filter: saturate(180%) blur(100px);
    height: 80vh;
    background-size: cover;
    background-position: center;
    /* margin: 180px 0 0; */
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:991px) {
    .whowe_serve {
        height: auto;
    }
}


.whowe_serve .box {
    /* max-width: 500px; */
    background-color: #00403563;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    color: #fff;
}


.whowe_serve .main-btn {
    background-color: #fff;
    color: var(--second-color) !important;
    padding: 10px 20px;
}



.whowe_serve .flex_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

}

.whowe_serve .flex_row .item {
    background: #fff;
    text-align: center;
    width: 200px;
    height: 200px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 20px;
    /* clip-path: polygon(40px 0%,
            calc(100% - 0px) 0%,
            100% 40px,
            100% 100%,
            0% 100%,
            0% 40px); */
}

@media screen and (max-width:1156px) {
    .whowe_serve .flex_row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .whowe_serve .flex_row .item {
        width: 250px;
        height: 200px;
    }
}


.whowe_serve .flex_row .icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    padding: 15px;
    background: var(--primary-color);
    border-radius: 10px;
}



.whowe_serve .text-center {
    color: #fff;
}

.whowe_serve .sub_head,
.whowe_serve .main_heading {
    color: #fff;
}

.whowe_serve .main_desc {
    font-weight: 200;
}


/* two_section */
.two_section {
    background-color: #f6f6f6;
}

.two_section .container {
    max-width: 1024px !important;
    margin: auto;

}

.two_section .grid_row {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 50px;
    align-items: center;
}

.two_section .section-1 {
    width: 100%;
    height: 600px;
    z-index: 2;
}

.two_section .section-1 img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two_section .section-2 {
    /* background: #fff; */
    display: flex;
    align-items: center;
    height: 600px;

}

.two_section .section-3 {
    /* background: #fff; */
    display: flex;
    align-items: center;
}

.two_section .section_content {
    width: 100%;
    height: 600px;
    padding: 20px 20px 20px 50px;
    margin-top: -50px;
    margin-left: -30px;
    /* background-color: #f6f6f6; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;

    border-radius: 10px;
}

.two_section h6 {
    color: #000;
    letter-spacing: 2px;
    font-weight: 100;
}

.two_section h2 {
    font-family: var(--secondary-font);
    font-size: 40px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.two_section p {
    max-width: 100%;
    font-size: 16px;
    color: #000;

}

.two_section .main-btn {
    background-color: var(--second-color);
    color: #fff !important;
    padding: 10px 20px !important;
    width: fit-content;
}




/* video_wrapper */

.video_wrapper {
    background: url(../images/video-banner.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    height: 70vh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.video_wrapper img {
    width: 100px;
}

.video_wrapper h6 {
    margin-top: 30px;
    color: #fff;
    font-family: var(--primary-font);
    font-weight: 300;
    letter-spacing: 2px;
}






.packege_section .grid_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.packege_section .main_heading {
    margin-bottom: 20px;
}

.packege_section .main-btn {
    margin-top: 30px;
    padding: 12px 20px;
}



.service_wrapper .service_box {
    border-radius: 20px;
    overflow: hidden;
    clip-path: polygon(60px 0%,
            /* top-left cut */
            calc(100% - 0px) 0%,
            100% 60px,
            100% 100%,
            0% 100%,
            0% 60px);
}

.service_wrapper .service_box .service_image {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* height: 250px; */

}

.service_wrapper .service_box .service_image img {
    transition: all .5s;
}

.service_wrapper .service_box:hover .service_image img {
    scale: 1.2;
}

.service_wrapper .service_desc {
    padding: 15px 25px 20px;
    background: #f2eee9;
    /* border: 2px solid var(--primary-color); */
    border-top: none;
    /* text-align: center; */
}

@media screen and (max-width:1399px) {
    .service_wrapper .service_desc {
        padding: 20px 10px;
    }

    .service_wrapper .service_name {
        height: 30px;
    }
}

.service_wrapper .service_name {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--secondary-font);
    margin-bottom: 20px;
}

.learn_more_btn {
    color: var(--secondary-font);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: all .3s;
}

.service_wrapper .service_desc p {
    /* height: 130px; */
    font-size: 14px;
    /* display: none; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.service_page_wrapper .service_name {
    font-size: 24px;
}




/* why_choose_us */

.why_choose_us {
    background-color: #f2eee9;
}

.why_choose_us .main_desc {
    margin: 0;
}

@media screen and (max-width:1156px) {
    .why_choose_us .main_desc {
        max-width: 100%;
    }
}

.why_choose_us .grid_row {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    /* align-items: center; */
}

.why_choose_us .image {
    border-radius: 20px;
    overflow: hidden;
}

.why_choose_us .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    column-gap: 30px;
    color: #fff;
    border-radius: 20px;
}

.why_choose_us .content .item {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    border-left: 2px solid var(--primary-color);
}

.why_choose_us .content .item .icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: none;
}

/* .why_choose_us .content .item:last-child{
    border-bottom: none;
} */
.why_choose_us .content .item h6 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.why_choose_us .content .item p {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin-bottom: 0;
}










.testimonial_section {
    background-color: #f6f6f6;
}

.testimonial_section .user-image {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    border-radius: 50px;
    overflow: hidden;
}

.testimonial_section .user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial_section .card {
    /* height: 400px; */
    border: none;
}

.testimonial_section .ratings i {
    color: #F5D521;
}

.testimonial_section h5 {
    margin-bottom: 20px;
}





.blog_wrapper {
    background-color: #fff;
}

.blog_wrapper .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

@media screen and (max-width:1156px) {
    .blog_wrapper .container {
        gap: 20px;
    }
}

@media screen and (max-width:991px) {
    .blog_wrapper .grid {
        grid-template-columns: 1fr 1fr;
    }
}

.blog_wrapper .container a {
    color: #000;
}

.blog_wrapper .blox_box {
    /* border: 1px solid #000; */
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.089);
    clip-path: polygon(60px 0%,
            /* top-left cut */
            calc(100% - 0px) 0%,
            100% 60px,
            100% 100%,
            0% 100%,
            0% 60px);
    border-radius: 30px;
    overflow: hidden;
}

.blog_wrapper .blox_box .blog_image {
    height: 250px;
    width: 100%;
}

.blog_wrapper .blox_box .blog_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog_wrapper .blox_box .blog_details {
    padding: 20px;
    background-color: #f2eee9;
}

.blog_wrapper .blox_box .blog_details .blog-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* white-space: nowrap; */
    min-height: 60px;
}

.blog_wrapper .blox_box .blog_details .blog_category {
    background-color: #EECAC9;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.blog_wrapper .blox_box .blog_details .blog_title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_wrapper .blox_box .blog_details .blog_auther {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_wrapper .blox_box .blog_details .blog_auther .profile-img {
    width: 60px;
    height: 60px;
}

.blog_wrapper .blox_box .blog_details .blog_auther .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.blog_wrapper .blox_box .blog_details .blog_auther .auther_details h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.blog_wrapper .blox_box .blog_details .blog_auther .auther_details span {
    font-size: 12px;
}





footer {
    background: #000;
    padding: 0px 0 50px;
}

footer .contact_flex_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
    overflow: hidden;
    background-color: var(--primary-color);
}

footer .contact_flex_row .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 30px;
    position: relative;
}


footer .contact_flex_row .item .icon {
    max-width: 80px;
    max-height: 80px;
    min-height: 80px;
    min-width: 80px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

footer .contact_flex_row .item a {
    color: #fff;
    font-size: 18px;
}

footer .contact_flex_row .item p {
    color: #fff;
    margin-bottom: 0;
}


footer .booking_logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 0px 0 50px;
    border-bottom: 0.5px solid #f2eee938;
}

footer .booking_logos img {
    width: 150px;
}

footer .footer_container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 30px 0;
    color: #fff;
}


@media screen and (max-width:1399px) {
    footer .footer_container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width:1156px) {
    footer .footer_container {
        grid-template-columns: 1fr 1fr;
    }

    footer .contact_flex_row {
        display: none;
    }
}

footer .footer_logo {
    width: 250px;
    margin-bottom: 20px;
}

footer .footer_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

footer .contact-details p {
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 100;
}

footer a {
    color: #fff;
    transition: all .3s;
    font-size: 14px;
    font-family: var(--primary-font);
    font-weight: 300;
}

footer a:hover {
    color: var(--green-color);
}

footer ul li {
    margin-top: 10px;
}

footer .social_links {
    display: flex;
    gap: 10px;
}

footer .social_links a {
    font-size: 25px;
}






.open-button {
    background-color: #25D366;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 1;
    position: fixed;
    bottom: 50px;
    right: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999;
    border-radius: 50px;
    transition: all .4s;
}

.open-button:hover {
    color: #fff;
}

.open-button i {
    font-size: 30px;
}

.open-button:hover i {
    color: #fff;
}

/* 
.main_wrapper .call-btn{
    background-color: var(--second-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 1;
    position: fixed;
    bottom: 23px;
    left: 28px;
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999;
    border-radius: 5px;
    transition: all .4s;
} */



/* about_page_wrapper */

.about_page_wrapper .grid_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}



.vission_mission {
    background: #fff;
}

.vission_mission .grid_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.vission_mission .item {
    /* border: 1px solid #000; */
    padding: 30px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: #fff;
}

.vission_mission .icon {
    width: 70px;
    margin-bottom: 20px;
}

.vission_mission p {
    font-weight: 300;
}



.whychooseus h2 {
    font-size: 40px;
    font-weight: 700;
}

.whychooseus .grid_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.whychooseus ul li {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whychooseus ul li i {
    color: var(--primary-color);
}






.contact_wrapper {
    background-color: #fff;
}

.contact_wrapper .grid_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    /*align-items: center;*/
}


.contact_wrapper .form_container {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 20px;
    border-radius: 20px;
}

.contact_wrapper input {
    width: 100%;
    height: 45px;
    border-radius: 0;
}

.contact_wrapper textarea {
    border-radius: 0;
}

.contact_wrapper input:focus,
.contact_wrapper textarea:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #000;
}

.contact_wrapper input::placeholder,
.contact_wrapper textarea::placeholder {
    font-size: 14px;
}

.contact_wrapper .main-btn {
    /* border: none; */
    margin: 20px 0;
    display: flex;
    gap: 5px;
}


.contact_wrapper .loaction_details {
    background-color: var(--primary-color);
    height: auto;
    border-radius: 20px;
    padding: 30px;
}

.contact_wrapper .loaction_details .item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    background-color: #ffffff9b;
    padding: 10px;
    border-radius: 20px;
}

.contact_wrapper .item .icon {
    min-width: 70px;
    max-width: 70px;
    min-height: 70px;
    max-height: 70px;
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 10px;
}

.contact_wrapper .item p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

.contact_wrapper .item a {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;
    color: #000;
}

.contact_wrapper .social_media {
    display: flex;
    gap: 10px;
}

.contact_wrapper .social_media li a {
    font-size: 30px;
    color: #fff;
}








.blog_single_wrapper .grid {
    display: grid;
    grid-template-columns: 75% 25%;

}

.blog_single_wrapper .left {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    padding: 20px;

}

.blog_single_wrapper .blog_image {
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
}

.blog_single_wrapper .blog_title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog_single_wrapper .blog_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_single_wrapper .blog_content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

.blog_single_wrapper .right .blog-image {
    height: 200px;
    width: 100%;

}

.blog_single_wrapper .right .blog-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog_single_wrapper .right h6 {
    font-size: 22px;
    font-weight: 600;
    text-decoration: underline;
    /* border-bottom: 1px solid #000; */
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.blog_single_wrapper .right .blog-title {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
    color: #000;
}

.blog_single_wrapper .right a:hover .blog-title {
    text-decoration: underline;
}






.gallery_wrapper .box {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.174);
    border-radius: 20px;
    overflow: hidden;
}

.gallery_wrapper .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.nav-pills{
    gap:10px;
}
.nav-pills .nav-link{
    background-color: transparent;
    border:.5px solid var(--primary-color);
    color:#000;
    padding:8px 32px;
    border-radius:50px;
    
    /*background-color: var(--primary-color);*/
}
.nav-pills .nav-link.active{
    background-color: var(--primary-color);
    color:#fff;
}




.clients .clients_row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.clients .clients_row .item {
    width: 250px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}


@media screen and (max-width:1156px) {
    .clients .clients_row .item {
        width: 180px;
    }
}

@media screen and (max-width:991px) {
    .clients .clients_row .item {
        width: 130px;
    }
}

@media screen and (max-width:600px) {
    .clients .clients_row .item {
        width: 60px;
    }
}




.service_single_wrapper .grid {
    display: grid;
    grid-template-columns: 75% 25%;

}

.service_single_wrapper .left {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    padding: 20px;

}

.service_single_wrapper .service_image {
    height: 400px;
    width: 100%;
    margin-bottom: 30px;
}

.service_single_wrapper .service_title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service_single_wrapper .service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service_single_wrapper .service_content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

.service_single_wrapper .right .service-image {
    height: 200px;
    width: 100%;

}

.service_single_wrapper .right .service-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service_single_wrapper .right h6 {
    font-size: 22px;
    font-weight: 600;
    text-decoration: underline;
    /* border-bottom: 1px solid #000; */
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.service_single_wrapper .right .service-title {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
    color: #000;
}

.service_single_wrapper .right a:hover .service-title {
    text-decoration: underline;
}


.service_single_wrapper ul {
    list-style: disc;
    padding-left: 25px;
}

.service_single_wrapper ul li {
    margin-bottom: 10px;
}


.teams .team_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media screen and (max-width:600px){
    .teams .team_grid{
        grid-template-columns: 1fr;
    }
    .teams .team_grid .item .image{
        height: 400px !important;
    }
}
.teams .team_grid .item{
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border-radius: 10px;
    overflow: hidden;
}
.teams .team_grid .item .image {
    width: 100%;
    height: 300px;
}

.teams .team_grid .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.teams .team_grid .item .name_designation{
    padding: 10px;
    text-align: center;
}

.teams .name_designation h6{
    margin-bottom: 0;
}
.teams .name_designation p{
    margin-bottom: 0;
}









.video-gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  padding: 40px 20px;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  aspect-ratio: 9 / 16;
  position: relative;
   aspect-ratio: 9 / 12; /* Reduced from 9/16 to 9/12 */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}



















