:root {
    --primary: #083940;
    --secondary: #FCB043;
    --light: #fff;
    --dark: #333;
    --greens: #0F7173;
    --bg: #f6f6f6;
    --main-blue: #00a9a6;
    --ternery: #EEDDC3;
}

.clr-primary {
    background-color: #0B73A0;
}

/* Ocean Blue */
.clr-secondary {
    background-color: #F4CD2A;
}

/* Gold */
.clr-tertiary {
    background-color: #028780;
}

.clr-comp-1 {
    background-color: #EBD467;
}

/* Honey */
.clr-comp-2 {
    background-color: #CABF98;
}

/* Sand */
.clr-comp-3 {
    background-color: #809EAD;
}

/* Blue tone */
.clr-comp-4 {
    background-color: #ADC6B9;
}

/* Mint */
.clr-comp-5 {
    background-color: #00A9A5;
}

/* Aqua */

.direction-ltr{
    direction: ltr !important;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: #0f7e78;
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--light);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 70px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--greens);

}

@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-bar .navbar-light .navbar-brand img {
        max-height: 50px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 7px 20px;
        /* flex-direction: column; */
        justify-content: start;
        align-items: start;
        font-weight: 500;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        /* padding-bottom: 20px; */
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* background: var(--bs-light); */
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        /* margin-top: 20px; */
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 50px 0;
    transition: 0.5s;
    z-index: 2;
    height: 442px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}

/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;

}

.team .team-item .team-img img {
    transition: 0.5s;
    height: 350px;
    object-fit: cover;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--greens);

    transition: 0.5s;
    text-align: center;
    border-bottom: 5px solid var(--secondary);
}

.team .team-item .team-title h4 {
    color: var(--bs-warning);
    font-size: 30px;
}

.team .team-item:hover .team-title {
    background: var(--greens);
}


.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--primary);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--light);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover,
.footer .footer-item a.active {
    color: var(--secondary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--ternery);
    color: var(--primary);
    height: 30px;
    width: 30px;
    border-radius: 5px;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--ternery);
    color: var(--primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--primary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: #fff;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*** copyright end ***/

.hero-section {
    position: relative;
    height: calc(100vh - 134px);
    justify-content: center;
    align-items: center;
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
}


.hero__title {
    color: #fff;

}

.bg-theme {
    background-color: var(--primary) !important;
}

.btn-smedia {
    height: 24px;
    width: 24px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.h-shadow {
    text-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
}

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

body {
    overflow-x: hidden;
}

.custom-card {
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #F9F9F9;
    height: 100%;
}

.custom-card-header {
    background: linear-gradient(267.46deg, var(--primary) 0%, #0d616d 100%);
    color: var(--light);
    padding: 35px 20px;
    position: relative;
    height: 125px;
}

.custom-card-header h5 {
    margin: 0;
    font-weight: bold;
}

.custom-card-header .meta {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    gap: 10px;
    display: flex;
    align-items: center;
}

.custom-card-arrow {
    position: absolute;
    bottom: -10px;
    left: 3rem;
    width: 20px;
    height: 20px;
    background-color: #F9F9F9;
    transform: rotate(45deg);
}

.custom-card-body {
    padding: 1.5rem;
    font-size: 0.95rem;
    background-color: #F9F9F9;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-card-body ul {
    padding-right: 1rem;
}

.custom-card-body ul li {
    margin-bottom: 1.2rem;
    color: #000;
}

.custom-card-body ul li:last-child {
    margin-bottom: 0;
}

.btn_basic {
    padding: 12px 25px;
    background: var(--primary);
    color: var(--light);
    border-radius: 37px;
    border: 2px solid var(--primary);
    font-weight: 600;
    cursor: pointer
}

.btn_basic.fill_btn {
    background: var(--primary);
    color: var(--light);
}

.btn_basic.outline_btn {
    background: transparent;
    color: var(--bs-primary);
}

.btn_style1 .btn_basic.fill_btn,
.btn_style1 .btn_basic.outline_btn:hover {
    background: #028780;
    color: var(--light);
    border: 2px solid #028780;
}

.btn_style1 .btn_basic.outline_btn {
    background: transparent;
    color: #4576D7;
    border: 2px solid #028780;
}

.btn_style2 .btn_basic.fill_btn,
.btn_style2 .btn_basic.outline_btn:hover {
    background: #36454f;
    color: var(--light);
    border: 2px solid #36454f;
}

.btn_style2 .btn_basic.outline_btn {
    background: transparent;
    color: #23B6A4;
    border: 2px solid #36454f;
}

.btn_style3 .btn_basic.fill_btn,
.btn_style3 .btn_basic.outline_btn:hover {
    background: #7bafd4;
    color: var(--light);
    border: 2px solid #7bafd4;
}

.btn_style3 .btn_basic.outline_btn {
    background: transparent;
    color: #34495E;
    border: 2px solid #7bafd4;
}


.btn_style4 .btn_basic.fill_btn,
.btn_style4 .btn_basic.outline_btn:hover {
    background: #ff6f61;
    color: var(--light);
    border: 2px solid #ff6f61;
}

.btn_style4 .btn_basic.outline_btn {
    background: transparent;
    color: #7267CB;
    border: 2px solid #ff6f61;
}

.custom-card-footer {
    display: flex;
    gap: 20px;
}

.location_card {
    background: #0F71731A;
    border: 1px solid #0839404D;
    padding: 15px 25px;
    border-radius: 15px;
    cursor: pointer;
    height: 138px;
}

.goal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--light);
}

.card_title {
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px dashed #000000;
}

.text-justify {
    text-align: justify;
}

.impact-section {
    background-size: cover;
    background-position: center center;
    position: relative;
    color: var(--light);
    padding: 50px 0;
    border-radius: 0;
}

.impact-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.impact-title {
    font-weight: bold;
    color: #fff;
    font-size: 42px;
    margin-bottom: 40px;
}

.impact-stat,
.dt-icon {
    font-size: 2.5rem;
    font-weight: bold;
    font-size: 75px;
}

.impact-label {
    font-size: 26px;
    color: #fff;
    text-align: right;
    /* max-width: 160px; */
    font-weight: 800;
    line-height: 36px;
}

.counter_item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 4px 4px #0000004D;
    gap: 0px;
    flex-direction: column;
}

.text_shadow {
    text-shadow: 0 4px 4px #0000004D;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0px;
}

.gallery-img:hover {
    transform: scale(1.05) rotate(3deg);
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--ternery), #00968700);
    border-radius: 1px;
}

.footer-title {
    display: inline-block;
    position: relative;
}

.about-text {
    font-size: 22px;
    text-align: justify;
}

.icon-primary {
    font-size: 32px;
}

.pad_40 {
    padding: 40px;
}

.fw-900 {
    font-weight: 900;
}

.card_style1 {
    box-shadow: 0px 5px 20px 0px #0000001A;
    background: #F9F9F9;
    border-radius: 0;
}

.theme-style-btn {
    border: 1.5px;
    padding: 15px 30px;
    border-radius: 42px;
    background: var(--primary);
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0px 2.2px 8.79px 0px #0F717340;

}

/* Gradient button */
.theme-style-btn.gradient-style-btn {
    background: linear-gradient(90deg, #0F7173 0%, #108882 100%);
}

.theme-style-btn.gradient-style-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #107774 0%, #0A6F6B 100%);
    color: var(--light);
    box-shadow: none;
}

/* Outline button */
.theme-style-btn.outline-style-btn {
    text-shadow: 0px 2.2px 8.79px #0F71734D;
    background: transparent;
    border: 1.5px solid #0F7173;
    color: #0F7173;
}

.theme-style-btn.outline-style-btn:hover {
    transform: scale(1.05);
    background: #0F7173;
    color: var(--light);
    box-shadow: none;
}

.location-pins .theme-style-btn {
    padding: 10px 20px;
    font-weight: 400;
    box-shadow: none;
    text-shadow: none;
}

.qoute_card {
    background: #FCB0431A;
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
    display: flex;
    gap: 10px;
    font-style: italic;
    margin-bottom: 30px;
}

.qoute_icon {
    color: var(--secondary);
}

.col-content h3 {
    font-size: 42px;
}

.col-content p {
    font-size: 16px;
    color: #000;
}

.card_body {
    padding: 35px 25px;
}

.card_body p,
.card_body li {
    font-size: 16px;
    color: #000;
    opacity: 0.8;
}

.card-top {
    text-align: center;
    color: var(--light);
    padding: 35px 0;
    height: 185px;
}

.our_story {
    display: flex;
    align-items: center;
}

.our_story .col-content,
.our_story .col-image {
    width: 50%;
}

.col-image {
    height: 470px;
    background-position: center;
    background-size: cover;
    /* border-radius: 0 25px 25px 0; */
}

.banner_text {
    box-shadow: 0px 8px 20px 0px #00000026;
    width: 70%;
    padding: 30px;
    font-size: 18px;
    text-align: center;
    margin: -50px auto 0px;
    border-radius: 0;
    z-index: 3;
    position: relative;
    background: var(--light);
}

.banner_text p {
    font-size: 20px;
    margin-bottom: 0;
}

.bg-about2 {
    background: #D9D9D91A;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.card-custom {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    min-height: 280px;
    position: relative;
}

.icon-badge {
    width: 48px;
    height: 48px;
    background-color: #fdb827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.icon-badge i {
    color: var(--light);
    font-size: 20px;
}

.card-custom2 {
    background-color: #F6F6F6;
    color: var(--light);
    border: none;
    border-radius: 0;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.card-custom2 p {
    color: #000;
}

.program-badge {
    font-size: 48px;
    color: var(--light);
    text-align: center;
}

.program_minh {
    font-size: 25px;
    text-align: center;
}

.program-card {
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.program-body {
    padding: 20px;
    background-color: #F6F6F6;
}

.program-date {
    color: #f4a300;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    text-align: left;
}

.program-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    text-align: left;
}

.program_title {
    color: var(--primary);
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 10px;
    text-align: left;
}

.program_text {
    padding-left: 18px;
}

.program_text li {
    font-size: 16px;
    text-align: left;
    line-height: 26px;
}

.program-text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
}

.join-form-card {
    background: #F6F6F6;
    border-radius: 0;
    padding: 40px 30px;
    /* max-width: 1000px; */
    margin: 80px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.join-form-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 35px;
}

.join-form-label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 16px;
    color: #062129;
}

.join-input-group {
    position: relative;
    margin-bottom: 20px;
}

.join-form-input,
.join-form-textarea {
    background-color: #5959591A;
    border: none;
    height: 48px;
    padding-left: 40px !important;
    border-radius: 6px;
}

.join-form-textarea {
    height: auto;
    padding-left: 16px;
}

.join-form-input::placeholder,
.join-form-textarea::placeholder {
    color: #999;
}

.join-form-icon {
    position: absolute;
    top: 13px;
    left: 15px;
    color: #999;
}

.join-form-card p {
    font-size: 18px;
}

.form-control:focus {
    box-shadow: none !important;
    border: 1px solid var(--secondary);
}

.contact-box-card {
    background-color: #0B73A0;
    border-radius: 0;
    color: var(--light);
    padding: 30px 25px;
    min-height: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-box-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    color: var(--primary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-box-title {
    font-weight: bold;
    font-size: 18px;
    /* margin-bottom: 5px; */
}

.contact-box-desc {
    font-size: 14px;
    color: #e8e8e8;
    margin-bottom: 15px;
}

.contact-box-arrow {
    width: 40px;
    height: 40px;
    background-color: var(--ternery);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

.contact-box-text {
    font-size: 15px;
    font-weight: 500;
}

.brand-sections {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.brand_image {
    width: 200px;
    height: 100px;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === Shared Card Styles === */
.rs-card {
    background: var(--light);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rs-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.rs-body {
    padding: 20px;
    flex-grow: 1;
    position: relative;
}

.rs-tag {
    background-color: #f4cd2a;
    color: var(--primary);
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 24px;
    display: inline-block;
    margin-bottom: 10px;
    position: absolute;
    top: -16px;
    box-shadow: 0px 4px 4px 0px #F49A4940;
}

.rs-title {
    color: var(--primary);
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 8px;
}

.rs-desc {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.rs-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.rs-meta {
    color: var(--dark);
}

.rs-btn {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 25px;
    padding: 6px 16px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rs-btn i {
    font-size: 12px;
}

/* === List View Overrides === */
#listView .rs-card {
    flex-direction: row;
    align-items: stretch;
    height: auto;
}

#listView .rs-img {
    width: 350px;
    height: 300px;
    object-fit: cover;
}

#listView .rs-body {
    padding: 20px;
}

#listView .rs-footer {
    border-top: none;
    padding: 0 20px 20px;
}

/* Active button style */
.btn-outline-primary.active {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.pg-nav .page-link.pg-circle {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background-color: #f5f5f5;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.pg-nav .page-link.pg-circle:hover {
    background-color: #e0e0e0;
    text-decoration: none;
}

.pg-nav .page-link.pg-arrow {
    background-color: var(--primary);
    color: var(--light);
}

.pg-nav .page-link.pg-arrow:hover {
    background-color: #005c56;
}

.pg-nav .page-link.active {
    background-color: var(--primary);
    color: var(--light) !important;
    font-weight: 700;
}

.pg-nav .page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}

.choices__inner {
    border: 2px solid var(--primary);
    border-radius: 6px;
    color: var(--primary);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: var(--primary) !important;
    color: var(--light) !important;
}

.choices__inner {
    border-radius: 10px !important;
}

.choices {
    width: 180px !important;
    margin-bottom: 0 !important;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
    border-radius: 10px !important;
}

.blog-wrapper {
    padding: 60px 0;
}

.related-box {
    background: var(--light);
    padding: 0px 20px;
    border-radius: 10px;
}

.related-title {
    font-weight: 700;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 25px;
}

.related-post {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.related-post img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.related-post .rp-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.related-post .rp-date {
    font-size: 12px;
    color: #777;
    line-height: 12px;
}

.blog-main h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.blog-meta {
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-image {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    background: var(--light);
}

.blog-image img {
    width: 100%;
    border-radius: 6px;
}

.highlight-box {
    background-color: #F6F6F6;
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 6px;
}

.highlight-box h6 {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary);
}

.blog-content p {
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-box li {
    color: var(--primary);
}

.quote-text {
    font-style: italic;
    background-color: #0F71734D;
    padding: 12px 16px;
    border-left: 4px solid var(--secondary);
    margin: 20px 0;
    border-radius: 4px;
    color: #444;
    font-size: 18px;
}

.btn_readmore {
    font-size: 12px;
    color: var(--primary);
}

.btn_readmore:hover {
    font-size: 12px;
    color: var(--primary);
}

.social-circle {
    width: 42px;
    height: 42px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 128, 116, 0.15);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-circle:hover {
    background-color: #006a63;
    transform: translateY(-2px);
    color: var(--light);
    text-decoration: none;
}

.share_download {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f6f6f6;
    padding: 0px 20px;
    border-radius: 9px;
}

.card-inactive {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    border-bottom: 5px solid #0d616d !important;
}

.card-active {
    background: linear-gradient(118.84deg, #0d616d 0.01%, var(--primary) 98.8%);
    border-radius: 16px;
    padding: 20px;
    border-bottom: 5px solid var(--secondary) !important;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background-color: #0e9b94;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 128, 116, 0.15);
}

.active-icon {
    background-color: #f9a825 !important;
}

.text-white h5,
.text-white p {
    color: var(--light) !important;
}

.custom-tab-pane {
    background-color: var(--light);
    display: flex;
    border-radius: 20px;
}

.custom-info-section {
    background: linear-gradient(to right, #0e9b94, var(--primary));
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}


.join_heading {
    font-size: 26px;
    font-weight: 600;
    ;
}

.join_para {
    color: #424143;
    font-size: 18px;
}

.card-active .join_heading {
    color: var(--secondary) !important;
}

.card-inactive .join_heading {
    color: var(--primary) !important;
}

.negative_margin {
    margin-top: -150px;
    z-index: 4;
    position: relative;
}

.form-control {
    padding: 0.775rem 0.95rem;
}

.team-item {
    cursor: pointer;
}

.card-active {
    position: relative;
}

.card-active::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 55px;
    color: var(--secondary);
}

.signup_newsletter {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.white-space-nowrap {
    white-space: nowrap;
}

.program_text {
    font-size: 20px;
    text-align: justify;
}

.auto_image {
    min-height: 100%;
    border-radius: 0;
    width: 100%;
    object-fit: cover;
    height: auto;
    max-width: 100%;
}

.bottom_section h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.bottom_section p {
    font-size: 18px;
    text-align: center;
    color: var(--light);
    margin-bottom: 20px;
}

.bottom_section {
    padding: 50px 30px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0;
    box-shadow: 0px 8px 20px 0px #00000026;
    text-align: center;
    position: relative;
}

.bottom_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(16, 125, 130, 0.9);
    border-radius: 0;
    z-index: 1;
}

.content_sec {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    margin: 20px auto;
}

.success-stories-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.success-stories-section .row {
    /* background: #fff; */
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
    border-radius: 0;
    overflow: hidden;
}

.success-stories-section .left-side {
    background: linear-gradient(136.47deg, #079C94 0.75%, #0F7173 100%);
    color: #fff;
    border-radius: 0;
    min-height: 350px;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.success-stories-section .left-side svg {
    margin-bottom: 1rem;
}

.success-stories-section .left-side h3 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.success-stories-section .decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgb(65 16 16 / 10%);
}

.success-stories-section .circle-top-left {
    top: -140px;
    left: -140px;
    width: 270px;
    height: 270px;
}

.success-stories-section .circle-bottom-right {
    bottom: -140px;
    right: -140px;
    width: 270px;
    height: 270px;
}

.success-stories-section .right-side {
    border-radius: 0;
    padding: 2rem;
    background-color: #F6F6F6;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.success-stories-section .section-label {
    background-color: var(--greens);
    color: var(--light);
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
}

.success-stories-section blockquote {
    font-style: italic;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--dark);
}

.success-stories-section .testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.success-stories-section .testimonial-profile img {
    border-radius: 50%;
    margin-right: 1rem;
    width: 60px;
    height: 60px;
}

.success-stories-section .testimonial-profile h5 {
    margin: 0;
    font-weight: 700;
    color: var(--greens);
}

.success-stories-section .testimonial-profile small {
    color: #6c757d;
}

.success-stories-section .stats .stat-box {
    background-color: #0F71731A;
    border-radius: 20px;
    padding: 1rem;
    border: 2px solid #0f717359;
    text-align: center;
}

.success-stories-section .stats .stat-box h4 {
    color: var(--greens);
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 45px;
}

.success-stories-section .stats .stat-box p {
    margin: 0;
    font-style: italic;
    font-size: 20px;
    color: var(--dark);
}

.swiper-pagination {
    margin-top: 1rem;
}


/***our story***/

/* card 1 */

.custom-info-card {
    /* padding: 400px; */
    width: 100%;
    /* max-width: 1000px; */
    background-color: #f6f6f6;
    border-radius: 25px;
    min-height: 404px;
    margin: auto;
    gap: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow-wrap: break-word;

}

.custom-card-badge {
    position: absolute;
    top: 40px;
    /* inset-inline-start: 40px; */
    left: 40px;
    width: 50px;
    height: 50px;
    background-color: #0f7173;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}


/* Underline heading with bold underline */
.custom-underlined {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 10%;
    font-weight: bold;
    color: #0f7173;
}

.custom-underlined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background-color: #0f7173;
    border-radius: 2px;
}

/* card 2 */

.custom-info-card-2 {
    /* padding: 400px; */
    width: 100%;
    /* max-width: 1000px; */
    background-color: #f6f6f6;
    border-radius: 25px;
    min-height: 350px;
    margin: auto;
    gap: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow-wrap: break-word;

}


.custom-card-badge-2 {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    background-color: #0f7173;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}


/* Underline heading with bold underline */
.custom-underlined-2 {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 10%;
    font-weight: bold;
    color: #0f7173;
}

.custom-underlined-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background-color: #0f7173;
    /* Bootstrap primary blue */
    border-radius: 2px;
}



/* card 3 */

.custom-info-card-3 {
    /* padding: 400px; */
    width: 100%;
    /* max-width: 1000px; */
    background-color: #f6f6f6;
    border-radius: 25px;
    min-height: 350px;
    margin: auto;
    gap: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    /* more depth on bottom */
    overflow-wrap: break-word;

}


.custom-card-badge-3 {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    background-color: #0f7173;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}


/* Underline heading with bold underline */
.custom-underlined-3 {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 10%;
    font-weight: bold;
    color: #0f7173;
}

.custom-underlined-3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background-color: #0f7173;
    /* Bootstrap primary blue */
    border-radius: 2px;
}



/* colored div */

.custom-info-card-4 {
    /* padding: 400px; */
    width: 100%;
    /* max-width: 1000px; */
    background-color: #0f7173;
    border-radius: 25px;
    min-height: 225px;
    margin: auto;
    gap: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    /* more depth on bottom */
    overflow-wrap: break-word;

}

/* Underline heading with bold underline */
.custom-underlined-4 {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 8%;
    font-weight: bold;
    color: #fcb043;
}



/* colored div 2 */

.custom-info-card-5 {
    /* padding: 400px; */
    width: 100%;
    /* max-width: 1000px; */
    background-color: #eeddc3;
    border-radius: 25px;
    min-height: 167px;
    margin: auto;
    gap: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    /* more depth on bottom */
    overflow-wrap: break-word;

}


/* 🔁 Responsive behavior below 800px */
@media (max-width: 800px) {
    .custom-card-badge-3 {
        top: 20px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .custom-info-card-3 h3 {
        margin-top: 50px;
        /* create space below badge */
    }
}

@media (max-width: 800px) {
    .custom-card-badge-2 {
        top: 20px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .custom-info-card-2 h3 {
        margin-top: 50px;
        /* create space below badge */
    }
}

@media (max-width: 800px) {
    .custom-card-badge-1 {
        top: 20px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .custom-info-card-1 h3 {
        margin-top: 50px;
        /* create space below badge */
    }
}

@media (max-width: 800px) {
    .custom-card-badge {
        top: 20px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .custom-info-card h3 {
        margin-top: 50px;
        /* create space below badge */
    }
}

.swiper-pagination {
    margin-top: 40px;
}

.swiper-wrapper {
    padding-bottom: 50px;
}

/* Default bullets */
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: #ccc !important;
    opacity: 1 !important;
    margin: 0 6px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

/* Active bullet */
.swiper-pagination-bullet-active {
    background-color: var(--greens) !important;
    width: 16px !important;
    height: 16px !important;
}

/* .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(287.84deg, rgba(0, 36, 47, 0.8184) 20%, rgba(120, 136, 155, 0.7392) 70%, rgba(24, 170, 165, 0.792) 100%);
    z-index: 1;
} */

.particles-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    /* ABOVE overlay */
    pointer-events: none;
}

#tsparticles canvas {
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 3;
    /* ✅ Make sure content is above everything */
}

.logo-box {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.logo-box img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-box:hover {
    opacity: 1;
}

.logo-box:hover img {
    transform: scale(1.1);
}

.card.review-card {
    background-color: var(--bg);
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--greens) !important;
    height: 100%;
    transition: transform 0.2s ease;
}

.card.review-card:hover {
    transform: translateY(-5px);
}

.review-card .avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
}



#theading {
    color: var(--greens);
}

.rtl-body .card.review-card {
    border-right: 4px solid var(--greens) !important;
    border-left: 0 !important;
}

#testimonialModalLabel {
    color: var(--light);
    text-align: center;
    margin-left: 2%;

}

.modal-header {
    background-color: var(--greens);
    padding: 0 3px;
}

.btn-close {
    /* background: none; */
    color: #ffffff;

    opacity: 1;
}

#save-btn {
    background-color: var(--greens);
}


/* Ribbon badge on top-left */
.ribbon {
    width: 130px;
    height: 24px;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 16px;
    left: -29px;
    text-align: center;
    line-height: 24px;
    border-radius: 0 0 8px 0;
    z-index: 10;
    transform: rotate(-37deg);
}

/* Continuous badge bottom right on image */
.badge-continuous {
    position: absolute;
    bottom: 190px;
    right: 10px;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.badge-continuous svg {
    animation: spin 1.5s linear infinite;
    width: 14px;
    height: 14px;
    fill: white;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Card */
.campaign-card {
    position: relative;
    border-radius: 0;
    /* border: 1px solid #ddd; */
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.05);
    background: white;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

.campaign-card:hover {
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
}

.campaign-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.campaign-body {
    padding: 15px 20px 20px 20px;
    min-height: 180px;
}

.author-date {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.author-date img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.campaign-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.progress-container {
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.progress {
    height: 6px;
    border-radius: 4px;
    margin-top: 4px;
}

.funds-info {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.9rem;
}

/* List view adjustments */
.list-view .campaign-card {
    display: flex;
    height: 200px;
    border-radius: 0;
}

.list-view .campaign-img {
    width: 280px;
    height: 100%;
    border-radius: 0;
}

.list-view .campaign-body {
    padding: 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Container for toggle buttons */
.view-toggle {
    margin-bottom: 20px;
}

.view-toggle button {
    margin-right: 10px;
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none !important;
}

.list-view .badge-continuous {
    top: 15px;
    right: 15px;
    position: absolute;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    bottom: unset;
}

.percentage_box {
    border: 1px solid #083940;
    padding: 0px 8px;
    border-radius: 5px;
    color: #083940;
    font-weight: 600;
}

.bg__light {
    background-color: #F4F4F4;
}

.rtl-body .btn_readmore i {
    transform: rotate(180deg);
}

.sort_select {
    max-width: 330px;
}

.btn-joinus {
    background-color: #0f7173;
    color: var(--light);
    white-space: nowrap;
}

.btn-joinus:hover {
    background-color: #0f7173;
    color: var(--light);
}

.btn-outline-learn-more {
    color: var(--light);
    border: 3px solid var(--main-blue);
}

.btn-outline-learn-more:hover {
    color: var(--light);
    background-color: var(--main-blue);
    border: 3px solid var(--main-blue);
}

.btn-humanity {
    color: var(--light);
    background-color: #ff6f61;
}

.video-bg {
    z-index: 0;
    overflow: hidden;
}

.choices__list--single .choices__item {
    width: 100%;
    text-align: justify;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
    text-align: left;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
    z-index: 2 !important;
}

.form-check-input:focus {
    box-shadow: none !important;
}

.btn-primary {
    background-color: var(--greens);
    border-color: var(--greens);
}

.btn-primary:hover {
    background-color: var(--greens);
    border-color: var(--greens);
}

.text_ternary {
    color: var(--ternery);
}

.anim_container {
    position: relative;
    width: 250px;
    height: 180px;
    margin: 0px auto;
    overflow: visible;
    margin-top: -50px;
}

.logo-part {
    position: absolute;
    width: 80px;
    /* approx size for your images */
    height: auto;
    opacity: 0;
    transformOrigin: "center center";
}

/* Starting base positions for each part (approximately off-screen) */
.logo1 {
    top: 60px;
    left: -120px;
}

.logo2 {
    top: 214px;
    left: 121px;
}

.logo3 {
    bottom: -18px;
    right: -130px;
}

@media (min-width: 992px) and (max-width: 1550px) {
    .counter_item {
        flex-direction: column;
    }

    .impact-label {
        color: #fff;
        text-align: center;
        max-width: 100% !important;
        line-height: 16px;
    }
}

.team_textarea {
    padding-right: 120px;
}

.team__button {
    position: absolute;
    right: 8px;
    bottom: 8px;
}

.offcanvas-header .btn-close {
    border: 1px solid #000;
}

.btn__mobile {
    font-weight: 500;
    transition: .5s;
    padding: 5px 20px;
    margin-bottom: 0 !important;
    color: #083940 !important;
}

.rtl-body .offcanvas-header .btn-close {
    margin: -0.5rem auto -0.5rem -0.5rem !important;
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none !important;
}


/* 1. For screens between 990px and 1199px */
@media (min-width: 990px) and (max-width: 1199px) {
    .navbar .navbar-nav .nav-item {
        padding: 5px;
        font-size: 12px;
    }

    .nav-btn.px-3 {
        padding: 0.5rem 0 !important;
    }

    .nav-bar .navbar-light .navbar-brand img {
        max-height: 50px;
    }

    .btn-joinus {
        padding: 5px 10px !important;
        font-size: 12px;
    }

    .dropdown-item {
        padding: 0.35rem 0.5rem !important;
        font-size: 13px;
    }
}

/* 2. For screens between 1200px and 1489px */
@media (min-width: 1200px) and (max-width: 1489px) {
    .navbar .navbar-nav .nav-item {
        padding: 6px 9px;
        font-size: 14px;
    }

    .nav-btn.px-3 {
        padding: 0.7rem 1rem !important;
    }

    .nav-bar .navbar-light .navbar-brand img {
        max-height: 60px;
    }

    .btn-joinus {
        padding: 7px 16px !important;
        font-size: 14px;
    }

    .dropdown-item {
        padding: 0.5rem 1rem !important;
        font-size: 15px;
    }
}

.gallery-wrapper {
    overflow: hidden;
    border-radius: 0;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(0%) brightness(100%) contrast(100%);
}

.gallery-wrapper:hover .gallery-img {
    transform: scale(1.12);
    filter: grayscale(100%) brightness(120%) contrast(110%);
}
.counter-bgsec{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
}
