.page_tagline {
    font-size: 22px;
    color: var(--light);
}

.read_more_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background-color: var(--light);
    color: var(--primary);
    padding: 15px 10px;
    border: 1px solid var(--light);
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    /* Use a CSS variable if needed */
}

.read_more_btn i {
    transition: transform 0.3s ease;
}

.read_more_btn:hover i {
    transform: translateX(5px);
}

.rtl-body .read_more_btn:hover i {
    transform: translateX(-5px);
}

.read_more_btn:hover {
    background-color: #eee;
    border-color: #eee;
    color: var(--primary);
    text-decoration: none;
}

.card_header {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
    gap: 15px;

}

.joining_card {
    padding: 40px;
    background: #F6F6F6;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.joining_card .icon-primary {
    color: #1d616b;
    background-color: var(--light);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.joining_card .icon-primary i {
    font-size: 18px;
}

.joining_card .card_header h5 {
    color: var(--light);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0;
    width: 80%;

}

.joining_card p {
    color: var(--light);
    font-size: 16px;
    margin-bottom: 30px;
}

/* .joining_card .read_more_btn {
    background: var(--primary);
    color: var(--light);
}

.joining_card .read_more_btn:hover {
    background: #042429;
} */

.section-style {
    padding: 60px 30px;
    background: #F6F6F6;
    border-radius: 0;
}

.counter-counting {
    margin-bottom: 20px;
}

.program_titles {
    font-size: 50px;
    font-weight: 800;
    color: var(--greens);
}

.quote__icon {
    color: var(--secondary);
    font-size: 26px;
}

.text-italic {
    font-style: italic;
}

/* banner-slider.css */

.banner-swiper {
    height: calc(100vh - 160px);
    position: relative;
    overflow: hidden;
}


.banner-swiper .swiper-slide-active img {
    transform: scale(1.05);
}

/* Caption box */
.banner-swiper .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem 3rem;
    border-radius: 15px;
    color: var(--secondary);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    user-select: none;
}

.banner-swiper .swiper-pagination-bullet-active {
    background-color: var(--secondary) !important;
}

.banner-swiper .carousel-caption h5 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

.banner-swiper .carousel-caption p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.banner-swiper .swiper-pagination-bullet {
    background: #ffc107;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.banner-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-button-next {
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(8 57 64);
    transition: background 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.banner-swiper .swiper-button-prev:hover,
.banner-swiper .swiper-button-next:hover {
    background: rgb(8 57 64);
}

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

/* Responsive tweaks */
@media (max-width: 768px) {
    .banner-swiper .carousel-caption {
        padding: 1.5rem 2rem;
        max-width: 90%;
    }

    .banner-swiper .carousel-caption h5 {
        font-size: 2rem;
    }

    .banner-swiper .carousel-caption p {
        font-size: 1rem;
    }

    .banner-swiper {
        height: calc(100vh - 70px);
    }
}

/* .swiper-pagination {
    bottom: 30px !important;
} */

.banner-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.banner-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.banner-swiper .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(11 82 93 / 65%);
    z-index: 5;
}

.banner-swiper .swiper-slide .row {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 10;
    pointer-events: none;
    user-select: none;
}

.banner-swiper .swiper-slide .row .col-lg-8 {
    pointer-events: auto;
    user-select: text;
}

.dropdown-item {
    padding: 0.45rem 1rem !important;
}

ul.brand-style-2 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

ul.brand-style-2 li {
    padding: 25px;
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    text-align: center;
}

ul.brand-style-2 img {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    max-height: 110px;
    max-width: 150px;
    cursor: pointer;
    height: auto;
    width: auto;
}

ul.brand-style-2 img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
}

.custom-nav-tabs .nav-link {
    font-weight: 600;
    font-size: 1.1rem;
    border: none !important;
    color: #444;
}

.custom-nav-tabs .nav-link.active {
    background-color: #fff !important;
    border-bottom: 3px solid #ffc107 !important;
    /* gold color highlight */
    color: #000 !important;
}

.custom-tab-content {
    background-color: #fff;
}

.custom-tab-content p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.countdown-box {
    width: 45px;
    height: 35px;
    line-height: 35px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--greens);
    border: 1px dotted var(--greens);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-amounts .btn {
    border-radius: 15px;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    font-size: 0.85rem;
}

.custom-nav-tabs .nav-link.active i,
.custom-nav-tabs .nav-link.active span {
    color: var(--secondary);
}

.text_primary {
    color: var(--greens);
}

.bg_text_primary {
    background-color: var(--greens);
}

.dw-countdown-box {
    width: 45px;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    font-size: 1rem;
}

.dw-progress-slider {
    accent-color: var(--greens);
}

.dw-share-campaign {
    background-color: #f3f3f3;
    max-width: 350px;
}

.dw-share-label {
    color: #222;
}

.dw-share-input {
    background-color: #e6e6e6;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
}

.dw-share-buttons {
    justify-content: center;
}

.dw-share-btn {
    background-color: var(--greens);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.dw-share-btn:hover {
    filter: brightness(85%);
}

.dw-share-btn.facebook {
    background-color: var(--greens);
}

.dw-share-btn.twitter {
    background-color: var(--greens);
}

.dw-share-btn.linkedin {
    background-color: var(--greens);
}

.dw-share-btn.whatsapp {
    background-color: var(--greens);
}

.dw-share-btn.telegram {
    background-color: var(--greens);
}

.dw-share-btn.pinterest {
    background-color: var(--greens);
}

.dw-share-footer-text {
    color: #555;
}

.dw-share-footer-text p {
    margin: 0;
}

.no_doc_pic {
    width: 91px;
    height: 81px;
}

.dw-share-input-wrapper {
    height: 38px;
}

.dw-share-url-input {
    height: 38px;
    user-select: all;
    padding-right: 3rem;
    /* space for the copy button */
}

.dw-copy-btn {
    padding-right: 1rem;
    cursor: pointer;
}

.organizer-input {
    background-color: #e0e0e0;
    /* light gray background */
    border: 1px solid transparent;
    gap: 10px;
}

.organizer-input input {
    font-size: 0.9rem;
    color: #666;
    padding: 0;
    min-width: 150px;
    outline: none;
}

.organizer-input input::placeholder {
    color: #999;
}

.organizer-input label {
    font-size: 0.9rem;
    user-select: none;
    min-width: 120px;
}

.organizer-input i {
    color: #888;
    font-size: 1rem;
}

.video-bg,
.video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

.z-index-3 {
    z-index: 3;
}

.hero__title_text {
    color: var(--main-blue);
}

/* blogs css  */
.news-section {
    position: relative;
    padding: 120px 0 90px;
    z-index: 3;
}

.auto-container {
    position: static;
    max-width: var(--container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.news-block {
    position: relative;
    margin-bottom: 30px;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.news-block .inner-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .image-box {
    position: relative;
}

.news-block .image-box .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    height: 275px;
}

figure {
    margin: 0 0 1rem;
}

.news-block .image-box .image img {
    display: block;
    width: 100%;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    border-radius: 0;
    height: 275px;
    object-fit: cover;
}

a img {
    border: none;
}

.news-block .image-box .image a:after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.news-block .content-box {
    position: relative;
    padding: 30px 30px 50px;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e2e7;
    background-color: #fff;
    border-radius: 0;
    height: 185px;
}

.news-block .content-box .date {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--greens);
    color: var(--light);
    font-size: 13px;
    padding: 5px 18px;
    height: 30px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 5px;
}

.news-block .content-box .post-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news-block .content-box .post-info li {
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    color: #6f7174;
    margin-bottom: 10px;
    margin-right: 15px;
}

.news-block .content-box .post-info li i {
    font-size: 14px;
    margin-right: 10px;
    color: var(--theme-color1);
}

.news-block .content-box .title {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 22px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.news-block .content-box .read-more {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f2f3f6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 30px;
    font-size: 15px;
    color: #6f7174;
    line-height: 30px;
    border-radius: 5px;
}

.news-block .content-box .read-more i {
    color: var(--light);
    height: 30px;
    width: 30px;
    background-color: var(--greens);
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.news-block .inner-box:hover .image-box .image a:after {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.news-block .inner-box:hover .image-box .image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    border-radius: 5px;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.gallary_image {
    height: 200px;
    width: 250px;
    object-fit: cover;
}