.ijh-vc-element.ijh-vc-ijh-video-strip.hero-section-video-buttom {
    height: 157px;
}

.article-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background: url("../images/banner-img.avif");
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.development-Initiative .initiative-grid{
      position: relative;
      flex-direction: row-reverse;
}

.article-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(156 100 5 / 95%) 0%, rgb(109 102 25 / 35%) 30%, rgb(50 125 38 / 60%) 70%, rgb(13 138 36 / 63%) 100%);
}

.ijh-vc-element .initiative-section{
    padding: 60px 0 90px;
}

.who-we-are .stat-highlight {
    background-attachment: fixed;
    position: relative;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 152px 0;
}

.who-we-are .stat-highlight::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(89 122 12 / 30%) 0%, rgb(0 0 0 / 88%) 100%);
    z-index: 1;
}

.stat-highlight .who-we-are > * {
    position: relative;
    z-index: 2;
}

.who-we-are .stat-caption {
    font-size: 25px !important;
    line-height: 148% !important;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    z-index: 9;
}
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.banner-content h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, .25);
}

@media(max-width:991px) {
    .article-banner {
        height: 280px;
    }

    .banner-content h1 {
        font-size: 38px;
    }
}

@media(max-width:768px) {
    .article-banner {
        height: 220px;
    }

    .banner-content h1 {
        font-size: 30px;
    }
}

@media(max-width:480px) {
    .article-banner {
        height: 180px;
    }

    .banner-content h1 {
        font-size: 24px;
    }
}

.hero-slider {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}


.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.hero-slider .prev,
.hero-slider .next {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    border-radius: 50%;
    transition: .4s;
    z-index: 9;
}

.hero-slider .prev:hover,
.hero-slider .next:hover {

    background: #f4b400;

}

.hero-slider .prev {

    left: 25px;

}

.hero-slider .next {

    right: 25px;

}

@media(max-width:1200px) {

    .hero-slider {

        height: 500px;

    }

}

@media(max-width:992px) {

    .hero-slider {

        height: 420px;

    }

    .prev,
    .next {

        width: 45px;
        height: 45px;
        font-size: 24px;

    }

}

@media(max-width:768px) {

    .hero-slider {

        height: 320px;

    }

    .prev {

        left: 10px;

    }

    .next {

        right: 10px;

    }

}

@media(max-width:576px) {

    .hero-slider {

        height: 220px;

    }

    .prev,
    .next {

        width: 38px;
        height: 38px;
        font-size: 18px;

    }

}

/*=========================
VIDEO SLIDER
=========================*/

.video-cards-section {
    width: 100%;
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
    top: -122px;
}

.srcn-conater {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

.videoSwiper {
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

.video-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-card img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.video-card:hover img {
    transform: scale(1.08);
}

.video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    transition: .3s;
}

.video-card:hover::before {
    background: rgba(0, 0, 0, .45);
}



.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .3s;
}

.video-card:hover .play-btn {
    background: #ff0000;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}


.videoSwiper .swiper-button-next,
.videoSwiper .swiper-button-prev,
.videoSwiper .swiper-pagination {
    display: none !important;
}

@media (max-width:1200px) {

    .video-card img {
        height: 230px;
    }

}

@media (max-width:991px) {

    .video-cards-section {
        padding: 60px 0;
    }

    .video-card img {
        height: 220px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

}

@media (max-width:767px) {

    .video-card img {
        height: 210px;
    }

    .play-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

}

@media (max-width:480px) {

    .video-card img {
        height: 190px;
    }

    .video-cards-section {
        padding: 40px 0;
    }

}

/*=========================
VIDEO POPUP
=========================*/

.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-popup.active {
    display: flex;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-popup-content iframe {
    width: 100%;
    height: 500px;
    border: 3px solid #fff;
}

.close-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: #f4b400;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    font-family: sans-serif;
    border: 2px solid #fff;
}

@media (max-width: 992px) {
    .video-popup-content iframe {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .video-popup-content iframe {
        height: 300px;
    }

    .close-btn {
        top: -15px;
        right: 0;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .video-popup-content iframe {
        height: 220px;
    }
}

/*=========================
GALLERY SECTION
=========================*/

.gallery-section {
    padding: 80px 0;
    background: #f7f8fa;
}

.gallery-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.gallery-wrapper {
    display: grid;
    gap: 20px;
}

.gallerySlider,
.thumbSlider {
    overflow: hidden;
}

.gallerySlider .swiper-slide img,
.thumbSlider .swiper-slide img {
    width: 100%;
    display: block;
    object-fit: fill;
    border-radius: 12px;
}

.gallerySlider .swiper-slide img {
    height: 450px;
}

.thumbSlider .swiper-slide {
    opacity: 0.55;
    transition: 0.35s ease;
    cursor: pointer;
}

.thumbSlider .swiper-slide-thumb-active {
    opacity: 1;
}

.thumbSlider .swiper-slide img {
    height: 100px;
}

.gallerySlider .swiper-button-next,
.gallerySlider .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.16);
    color: #111;
}

.gallerySlider .swiper-button-next::after,
.gallerySlider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .gallery-title {
        font-size: 34px;
    }

    .gallerySlider .swiper-slide img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .gallerySlider .swiper-slide img {
        height: 300px;
    }

    .thumbSlider .swiper-slide img {
        height: 78px;
    }
}

@media (max-width: 576px) {
    .gallerySlider .swiper-slide img {
        height: 240px;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
}

.modal .close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: #f4b400;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    font-family: sans-serif;
    border: 2px solid #fff;
    z-index: 9;
}

.modal .swiper-button-next,
.modal .swiper-button-prev {
    color: #fff;
}

.modal .swiper-pagination-bullet-active {
    background: #fff;
}

.modal .swiper-container {
    width: 100%;
    position: relative;
}

.modal .swiper-slide iframe {
    width: 100%;
    height: 500px;
    border: 3px solid #fff;
}


.initiative-section {
    padding: 0px 0  60px;
}

.initiative-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 66px;
}

/* Left */

.initiative-image {
    position: relative;
}

.main-image {
    width: 539px;
    border-radius: 21px;
    overflow: hidden;
}

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

.small-image {
    position: absolute;
    top: 50px;
    right: -92px;
    width: 250px;
    height: 330px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

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

.year-box {
    position: absolute;
    left: 247px;
    bottom: -80px;
    width: 218px;
    height: 199px;
    background: #f58214;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .18);
    padding: 20px;
}

.year-box span {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    text-align: center;
    line-height: 1.1;
}

.year-box small {
    font-size: 19px;
    font-weight: 700;
    margin: 10px 0;
}

.year-box h2 {
    font-size: 56px;
    font-family: 'Oswald', sans-serif;
}

/* Right */

.initiative-content {
    max-width: 560px;
}

.sub-title {
    color: #74b52d;
    font-size: 26px;
    font-weight: 400;
    display: block;
    margin-bottom: 12px;
}

.initiative-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    line-height: 120%;
    margin-bottom: 10px;
}

.initiative-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 8px;
}

.read-btn {
    display: inline-block;
    padding: 5px 19px;
    background: #79be2d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 22px;
    transition: .4s;
    margin-top: 14px;
}

.read-btn:hover {
    background: #5f991d;
}

/* Responsive */

@media(max-width:991px) {

    .initiative-grid {
        flex-direction: column;
        gap: 70px;
    }

    .initiative-image {
        width: 100%;
        height: auto;
        padding-bottom: 170px;
    }

    .main-image {
        width: 100%;
        height: auto;
    }

    .small-image {
        width: 220px;
        height: 300px;
        right: 0;
        top: 40px;
    }

    .year-box {
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }

    .initiative-content {
        max-width: 100%;
        text-align: center;
    }

    .initiative-content h2 {
        font-size: 46px;
    }

    .sub-title {
        font-size: 24px;
    }

    .initiative-content p {
        font-size: 18px;
    }

}

@media(max-width:576px) {

    .small-image {
        width: 170px;
        height: 230px;
    }

    .year-box {
        width: 170px;
        height: 170px;
    }

    .year-box span {
        font-size: 22px;
    }

    .year-box small {
        font-size: 18px;
    }

    .year-box h2 {
        font-size: 52px;
    }

    .initiative-content h2 {
        font-size: 36px;
    }

    .read-btn {
        width: 100%;
        text-align: center;
    }

}





.video-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    padding: 50px 0px;
}

/* Tabs */

.video-tabs {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.video-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex: 1;
    padding: 13px;
    border: none;
    background: #549707;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: .35s;
    white-space: nowrap;
}

.tab-btn:hover {
    background: #ef7d11;
}

.tab-btn.active {
    background: #ef7d11;
}

/* Content */
.ijh-vc-element .form-section {
    position: relative;
    width: 100%;
    background: url("../images/expert-banner.avif") center center / cover no-repeat;
    overflow: hidden;
}

.ijh-vc-element .form-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(38 35 31 / 49%) 0%, rgb(38 37 29 / 35%) 30%, rgb(27 36 26 / 16%) 70%, rgb(21 30 23 / 63%) 100%);
    z-index: 1;
}

.ijh-vc-element .form-container {
    background-color: #fff;
    border-radius: 6px;
}
.ijh-vc-element .form-section > * {
    position: relative;
    z-index: 2;
}

.tab-content {
    display: none;
    margin-top: 30px;
    animation: fade .4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fade {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* Grid */

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card-box {
    background: #ffffffd6;
    transition: .35s;
    cursor: pointer;
    box-shadow: 1px 1px 2px #000;
    padding: 8px;
}

.video-card-box img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

.video-card-box h3 {
    font-size: 18px;
    margin-top: 15px;
    font-weight: 700;
    line-height: 1.4;
    padding: 16px;
}

.video-card-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    transition: .4s ease;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.8);
    opacity: 0;
    transition: .4s ease;
    z-index: 2;
}

.play-icon i {
    font-size: 70px;
    color: #ff0000;
    text-shadow: 0 4px 10px rgba(0, 0, 0, .4);
}

.video-card-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.video-card-box img,
.video-card-box video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.hover-video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s;
}

.video-card-box:hover .hover-video {
    opacity: 1;
}

.video-card-box:hover .thumb {
    opacity: 0;
}

.video-card-box:hover::before {
    opacity: 1;
}

.video-card-box:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media(max-width:991px) {

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-btn {
        font-size: 16px;
        padding: 15px;
        min-width: 170px;
    }

}

/* Mobile */

@media(max-width:767px) {

    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .tab-btn {
        min-width: 170px;
        font-size: 15px;
        padding: 14px;
    }

    .video-card h3 {
        font-size: 17px;
    }

}





.faq-section {
    padding: 80px 0;
}

.faq-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.faq-title p {
    color: #666;
    font-size: 18px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.faq-item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border: 1px solid #000000c2;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    font-size: 22px;
    font-weight: 500;
    text-align: left;
}

.faq-question:hover {
    background: #fafafa;
}

.icon {
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 0 23px 10px;
    color: #555;
    line-height: 1.8;
    font-size: 18px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}


@media(max-width:768px) {

    .faq-section {
        padding: 60px 0;
    }

    .faq-title h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 17px;
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    .icon {
        width: 35px;
        height: 35px;
        font-size: 22px;
    }

}

@media(max-width:480px) {

    .faq-title h2 {
        font-size: 26px;
    }

    .faq-title p {
        font-size: 15px;
    }

    .faq-question {
        font-size: 15px;
        gap: 15px;
    }

}



.form-section {
    padding: 60px 0px;
}

.form-container {
    width: 65%;
    margin: 0 auto;
    padding: 35px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 23px 20px;
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #fff;
    border: none;
    outline: none  !important;
    height: 49px;
    padding: 6px 16px;
    font-size: 16px;
    color: #222;
    border-radius: 6px;
    border: 1px solid #000;
    font-family: 'Barlow Condensed';
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #333;
}

.form-group input[type="date"] {
    cursor: pointer;
}

.full-width {
    margin-bottom: 14px;
}

.form-group textarea {
    height: 160px;
    resize: none;
    padding: 18px 16px;

}

.submit-btn {
    text-align: center;
}

.submit-btn button {
    border: none;
    background: #76bc21;
    color: #fff;
    font-size: 22px;
    padding: 12px 47px;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
    font-family: 'Barlow Condensed';
}

.submit-btn button:hover {
    background: #5f9e18;
}

@media(max-width:991px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .form-container{
        width: 100%;
    }
}


@media(max-width:576px) {

    .form-section {
        padding: 40px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {

        height: 48px;

        font-size: 16px;

    }

    .form-group textarea {
        height: 140px;
    }

    .submit-btn button {

        width: 100%;

        font-size: 22px;

        padding: 14px;

    }

}/* Shared styles for the Contact and About pages */

/* ---- Contact page ---- */
.contact-section {
    padding: 90px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: #000;
    color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
}

.contact-info-card h2 {
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: .5px;
    color: #fff;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-item i {
    width: 22px;
    text-align: center;
    font-size: 22px;
    color: #79be2d;
    margin-top: 3px;
}

.contact-info-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #eee;
}
.contact-info-item p a {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #eee;
}
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.contact-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    transition: background .3s, color .3s;
}

.contact-social a:hover {
    background: #79be2d;
    color: #fff;
}

.contact-form-title {
    font-family: 'Barlow Condensed';
    font-size: 32px;
    margin-bottom: 25px;
    text-align: start;
    text-transform: uppercase;
}

.contact-map {
    margin-top: 40px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 620px !important;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-info-card {
        padding: 30px 22px;
    }

    .contact-form-title {
        font-size: 26px;
    }

    .contact-map iframe {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .contact-info-card h3 {
        font-size: 22px;
    }

    .contact-info-item p {
        font-size: 15px;
    }

    .contact-map iframe {
        height: 220px;
    }
}

/* ---- About / Who We Are page ---- */
.stat-highlight {
}

.stat-highlight .stat-number {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: clamp(32px, 4vw, 51px);
    line-height: 1.1;
}
section.stat-highlight h3 {
    font-size: 28px;
    color: #fff;
    font-weight: 600;
}
.stat-highlight .stat-caption {
}

@media (max-width: 768px) {
    .stat-highlight {
        padding: 50px 0;
    }

    .stat-highlight .stat-number {
        font-size: 50px;
    }

    .stat-highlight .stat-caption {
        font-size: 16px;
    }
}

/* ---- Who We Are: Focus Areas ---- */
.focus-section {
    padding: 90px 0;
}

.focus-title {
    text-align: center;
    margin-bottom: 50px;
}

.focus-title h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    margin-bottom: 12px;
}

.focus-title p {
    color: #666;
    font-size: 18px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.focus-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, .06);
}

.focus-card i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(121, 190, 45, .12);
    color: #79be2d;
    font-size: 28px;
    margin: 0 auto 20px;
}

.focus-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.focus-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 992px) {
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .focus-section {
        padding: 60px 0;
    }

    .focus-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .focus-title h2 {
        font-size: 26px;
    }
}

.expert-opinion-opinion{
      background:
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('../images/expert-opinion-opinion-banner.avif');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 80px 0;
}


            .expert-opinion-opinion-section{
    padding:80px 0;
    background: #4745451c;
}
.section-title-heading{
      text-align:center;
      font-size:42px;
      font-weight:700;
      margin-bottom:50px;
      color:#fff;
      text-transform: uppercase;
}
.expert-opinion-opinion-section h2{
    text-align:center;
    font-size:42px;
    font-weight:700;
    margin-bottom:50px;
    color:#222;
}





.swiper-button-next,
.swiper-button-prev{
    width: 48px !important;
    height: 48px !important;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    color: #000 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 18px !important;
    font-weight: 700 !important;
}

@media(max-width:991px){

.expert-opinion-opinion-section h2{
    font-size:34px;
}

.image-box img{
    height:220px;
}

}

@media(max-width:767px){

.expert-opinion-opinion-section{
    padding:60px 0;
}

.expert-opinion-opinion-section h2{
    font-size:28px;
}

.image-box img{
    height:200px;
}

.expert-opinion-contnet h3{
    font-size:16px;
}

.swiper-button-next,
.swiper-button-prev{
    display:none;
}

}
/* ===== Modal ===== */
.expert-video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:20px;
}

.expert-video-modal.show{
    display:flex;
}

.expert-video-box{
    width:90%;
    max-width:900px;
    position:relative;
}

.expert-video-box iframe{
    width:100%;
    aspect-ratio:16/9;
    border:0;
    border-radius:10px;
    background:#000;
}

.expert-close{
    position:absolute;
    top:-45px;
    right:0;
    color:#fff;
    font-size:40px;
    cursor:pointer;
    line-height:1;
}

.swiper-button-next,
.swiper-button-prev{
    color:#000;
}

@media(max-width:991px){
    .expert-video-box{
        width:95%;
    }
}

@media(max-width:767px){
    .expert-video-box iframe{
        aspect-ratio:16/9;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display:none;
    }
}



section.lastes-blog-section {
    padding: 70px 0;
}
.lastes-blog-section .title{
text-align:center;
font-size:48px;
font-weight:bold;
margin-bottom:50px;
text-transform:uppercase;
}

.blog-wrapper{
display:grid;
grid-template-columns:1.4fr 1fr;
gap:35px;
align-items:start;
}

/* LEFT VIDEO */

.lastes-blog-section-video-card{
position:relative;
cursor:pointer;
overflow:hidden;
border-radius:10px;
height:500px;
box-shadow:0 10px 30px rgba(0,0,0,.18);
}

.lastes-blog-section-video-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.lastes-blog-section-video-card::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.35);
}


/* RIGHT BLOG */

.blog-list{
display:flex;
flex-direction:column;
gap:25px;
}

.lastes-blog-section-card{
display:flex;
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.lastes-blog-section-card img{
width:240px;
height:240px;
object-fit:cover;
}

.blog-content{padding: 13px 20px;display: flex;flex-direction: column;justify-content: space-between;gap: 15px;}


.blog-content a{
text-decoration:none;
color:#6cae37;
font-size:24px;
}

/* VIDEO POPUP */

.popup{
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.85);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.popup.active{
display:flex;
}

.popup-box{
width:90%;
max-width:900px;
position:relative;
}

.popup iframe{
width:100%;
height:500px;
border:none;
border-radius:10px;
}

.close{
position:absolute;
right:-10px;
top:-50px;
font-size:45px;
color:#fff;
cursor:pointer;
}

/* Responsive */

@media(max-width:991px){

.blog-wrapper{
grid-template-columns:1fr;
}

.video-card{
height:400px;
}

.blog-card img{
width:180px;
height:180px;
}

.blog-content h3{
font-size:22px;
}

.blog-content p{
font-size:16px;
}

.blog-content a{
font-size:18px;
}

}

@media(max-width:600px){

.title{
font-size:34px;
}

.video-card{
height:260px;
}

.play-btn{
width:80px;
height:80px;
}

.play-btn i{
font-size:34px;
}

.blog-card{
flex-direction:column;
}

.blog-card img{
width:100%;
height:220px;
}

.popup iframe{
height:250px;
}

}



.gallery-section{
padding:70px 0;
}

.gallery-title{}

.gallery-wrapper{display:grid;grid-template-columns: 1fr 215px;gap:18px;align-items:stretch;}

.gallerySlider{
width:100%;
height:500px;
overflow:hidden;
}

.gallerySlider img{width: 100% !important;height: 100% !important;object-fit: fill;display: block !important;}

.thumbSlider{
height:500px;
}

.thumbSlider .swiper-slide{
height:154px !important;
opacity:.5;
cursor:pointer;
overflow:hidden;
transition:.3s;
}

.thumbSlider .swiper-slide-thumb-active{
opacity:1;
}

.thumbSlider img{width: 100% !important;height: 100% !important;object-fit:cover;display:block;}

.swiper-button-next,
.swiper-button-prev{
width:55px;
height:55px;
background:rgba(0,0,0,.35);
border-radius:50%;
color:#fff;
}

.swiper-button-next::after,
.swiper-button-prev::after{
font-size:22px;
font-weight:bold;
}

@media(max-width:991px){

.gallery-wrapper{
grid-template-columns:1fr;
}

.gallerySlider{
height:400px;
}

.thumbSlider{
height:110px;
margin-top:15px;
}

.thumbSlider .swiper-wrapper{
flex-direction:row;
}

.thumbSlider .swiper-slide{
height:100px !important;
width:120px !important;
}

}

@media(max-width:576px){

.gallery-title{
font-size:34px;
}

.gallerySlider{
height:250px;
}

.thumbSlider{
height:80px;
}

.thumbSlider .swiper-slide{
height:80px !important;
width:90px !important;
}

}