/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #777777;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #4a4c70;
}

a {
    color: #4a4c70;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #FDBE33;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #777777;
    border-radius: 0;
    border: 2px solid #FDBE33;
    box-shadow: inset 0 0 0 0 #FDBE33;
    transition: box-shadow ease-out 0.3s, color ease-out 0.3s;
}

.btn.btn-custom:hover {
    color: #20212B;
    box-shadow: inset 0 0 0 30px #FDBE33;
}

/* Prevent yellow sweep blink on navbar/custom-styled btn-custom buttons */
#mainNavbar .btn.btn-custom:hover {
    box-shadow: 0 6px 22px rgba(17,153,142,.45) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #FDBE33;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    background: #FDBE33;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #4a4c70;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #4a4c70;
}

.back-to-top:hover i {
    color: #FDBE33;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: absolute;
    height: 45px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 45px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .text i {
    font-size: 16px;
    color: #FDBE33;
    margin-right: 5px;
}

.top-bar .text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 45px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 100%;
    font-size: 16px;
    color: #FDBE33;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-bar .social a:hover {
    color: #ffffff;
    background: #FDBE33;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
    background: #fff !important;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 2px 18px rgba(0,0,0,.07);
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff !important;
    box-shadow: 0 2px 18px rgba(0,0,0,.12);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    max-width: 180px;
    max-height: 55px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
#mainNavbar .navbar-nav .nav-link,
#mainNavbar .navbar-nav .nav-link:focus {
    padding: 10px 15px 8px 15px;
    color: #1a2f6e;
    font-weight: 600;
    font-size: 14px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
#mainNavbar .navbar-nav .nav-link:hover,
#mainNavbar .navbar-nav .nav-link.active {
    color: #11998e;
    transition: color .2s;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 45px;
        padding: 14px 60px;
        background: rgba(255,255,255,.97) !important;
        border-bottom: 1px solid rgba(0,0,0,.07);
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #fff !important;
        box-shadow: 0 4px 20px rgba(0,0,0,.1);
        border-bottom: none;
    }
    
    .page .navbar {
        background: #fff !important;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 16px;
        letter-spacing: 1px;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 12px 16px;
        background: #fff !important;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #ffffff;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-btn .btn.btn-custom {
    color: #ffffff;
}

.carousel .carousel-btn .btn.btn-custom:hover {
    color: #20212B;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDBE33;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #FDBE33;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    overflow: hidden;
    margin-bottom: 45px;
    padding: 210px 0 90px 0;
    text-align: center;
    background: #0b1e47;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: url(../img/page-header.jpg) center/cover no-repeat;
    filter: blur(3px) brightness(0.45);
    z-index: 0;
}
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,33,85,.55), rgba(0,0,0,.35));
    z-index: 1;
}
.page-header > * {
    position: relative;
    z-index: 2;
}

.page-header h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #FDBE33;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #FDBE33;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/******* Modern About CSS ******/
/*******************************/
.about-modern {
    position: relative;
    padding: 80px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.about-modern__bg-blob {
    position: absolute;
    border-radius: 50%;
    opacity: .07;
    pointer-events: none;
}
.about-modern__bg-blob--1 {
    width: 520px; height: 520px;
    background: #11998e;
    top: -140px; left: -160px;
}
.about-modern__bg-blob--2 {
    width: 380px; height: 380px;
    background: #3d6faf;
    bottom: -100px; right: -100px;
}

/* Image wrap */
.about-modern__img-wrap {
    position: relative;
    padding: 24px 24px 24px 0;
}
.about-modern__img-deco {
    position: absolute;
    top: 0; left: 0;
    width: 90%; height: 90%;
    background: linear-gradient(135deg, rgba(17,153,142,.12), rgba(61,111,175,.12));
    border-radius: 24px;
    z-index: 0;
}
.about-modern__img {
    position: relative;
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(17,153,142,.15), 0 6px 20px rgba(0,0,0,.1);
    z-index: 1;
    display: block;
}
.about-modern__img--placeholder {
    background: linear-gradient(135deg,#e8f4f8,#d1e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-modern__img--placeholder i {
    font-size: 90px;
    color: #3d6faf;
    opacity: .25;
}

/* Floating badges */
.about-modern__badge {
    position: absolute;
    z-index: 2;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #1a2f6e;
    white-space: nowrap;
}
.about-modern__badge i { color: #11998e; font-size: 18px; }
.about-modern__badge .badge-num { font-size: 22px; font-weight: 800; color: #11998e; line-height: 1; }
.about-modern__badge--tl { top: 32px; left: 14px; }
.about-modern__badge--br { bottom: 32px; right: 4px; flex-direction: column; align-items: flex-start; gap: 2px; }

/* Content */
.about-modern__content { padding-left: 20px; }

.about-modern__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, rgba(17,153,142,.1), rgba(61,111,175,.1));
    color: #11998e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
    border: 1px solid rgba(17,153,142,.25);
}

.about-modern__heading {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2f6e;
    line-height: 1.25;
    margin-bottom: 24px;
}

/* Value bullets */
.about-modern__values {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.about-modern__value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.about-modern__value-icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #11998e, #3d6faf);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
}
.about-modern__value-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a2f6e;
    margin-bottom: 2px;
}
.about-modern__value-item p {
    font-size: 13px;
    color: #6b7a9d;
    margin: 0;
    line-height: 1.45;
}

/* Tabs */
.about-modern__tabs { margin-bottom: 28px; }

.about-modern__tab-nav {
    border-bottom: 2px solid #e2e8f4;
    gap: 2px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.about-modern__tab-nav .nav-link {
    border: none !important;
    border-radius: 0 !important;
    padding: 8px 18px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7a9d;
    background: transparent !important;
    position: relative;
    margin-bottom: -2px;
    transition: color .2s;
}
.about-modern__tab-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #11998e, #3d6faf);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .25s;
}
.about-modern__tab-nav .nav-link.active,
.about-modern__tab-nav .nav-link:hover {
    color: #11998e !important;
}
.about-modern__tab-nav .nav-link.active::after { transform: scaleX(1); }

.about-modern__tab-content {
    font-size: 15px;
    color: #555f7a;
    line-height: 1.75;
    min-height: 70px;
}

/* CTA */
.about-modern__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #11998e, #3d6faf);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(17,153,142,.28);
    transition: transform .2s, box-shadow .2s;
}
.about-modern__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(17,153,142,.38);
    color: #fff !important;
}
.about-modern__cta i { font-size: 12px; }

@media (max-width: 991.98px) {
    .about-modern { padding: 50px 0; }
    .about-modern__img { height: 260px; }
    .about-modern__content { padding-left: 0; margin-top: 24px; }
    .about-modern__badge { display: none; }
    .about-modern__heading { font-size: 1.55rem; }
    .about-modern__img-wrap { padding: 0; }
    .about-modern__img-deco { display: none; }
}

/* Legacy .about kept for other pages that may use it */
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}
.about .section-header { margin-bottom: 30px; margin-left: 0; }
.about .about-img { width: 100%; height: 500px; }
@media (max-width: 991.98px) {
    .about .about-img { height: 280px; margin-bottom: 20px; }
    .about .section-header { margin-top: 30px; }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    transition: .3s;
}

.service .service-icon {
    position: relative;
    width: 60px;
}

.service .service-icon i {
    position: relative;
    display: block;
    color: #FDBE33;
    font-size: 60px;
    line-height: 60px;
    margin-top: 5px;
}

.service .service-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.service .service-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 10px);
    top: 5px;
    left: 0;
    background: rgba(0, 0, 0, .1);
}

.service .service-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #FDBE33;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-text p {
    margin: 0;
}


/*******************************/
/********* Donate CSS **********/
/*******************************/
.donate {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: rgba(0, 0, 0, .5);
}

.donate .donate-content {
    padding: 45px 0 15px 0;
}

.container .donate {
    margin: 90px 0;
}

.container .donate .donate-content {
    padding: 45px 30px 15px 30px;
}

.donate .donate-content .section-header {
    margin-bottom: 30px;
}

.donate .donate-content .section-header h2 {
    color: #ffffff;
}

.donate .donate-text p {
    color: #ffffff;
    font-size: 18px;
}

.donate .donate-form {
    padding: 90px 30px;
    background: #FDBE33;
}

.donate .donate-form .control-group {
    margin-bottom: 15px;
}

.donate .donate-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.donate .donate-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.donate .donate-form .form-control:-ms-input-placeholder,
.donate .donate-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.donate .donate-form .btn-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.donate .donate-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
}

.donate .donate-form .btn.btn-custom:hover,
.donate .donate-form .btn.btn-custom.active {
    color: #FDBE33;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 30px #ffffff;
}



/*******************************/
/********** Causes CSS *********/
/*******************************/
.causes {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.causes .causes-carousel {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
}

.causes .causes-item {
    margin: 0 15px;
    overflow: hidden;
    background: #f3f6ff;
}

.causes .causes-img {
    overflow: hidden;
}

.causes .causes-img img {
    width: 100%;
    transition: .3s;
}

.causes .causes-item:hover img {
    transform: scale(1.1);
}


.causes .causes-progress {
    width: 100%;
    margin-top: 32px;
    padding: 30px 30px 20px 30px;
}

.causes .progress {
    height: 10px;
    border-radius: 0;
    background: #dddddd;
    overflow: visible;
}

.causes .progress .progress-bar {
    position: relative;
    width: 0px;
    background: #FDBE33;
    overflow: visible;
    transition: 2s;
}

.causes .progress-bar span {
    position: absolute;
    top: -32px;
    right: 0;
    height: 23px;
    display: inline-block;
    padding: 2px 6px;
    background: #FDBE33;
    color: #20212B;
}

.causes .progress-bar span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 23px;
    left: calc(50% - 6px);
    border: 6px solid;
    border-color: #FDBE33 transparent transparent transparent;
}

.causes .progress-text {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.causes .progress-text p {
    margin: 0;
}

.causes .causes-text {
    padding: 0 30px;
}

.causes .causes-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.causes .causes-text p {
    margin: 0;
}

.causes .causes-btn {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.causes .causes-btn .btn {
    padding: 10px 0;
    width: 50%;
}

.causes .causes-btn .btn:last-child {
    color: #20212B;
    background: #FDBE33;
}

.causes .causes-btn .btn:last-child:hover {
    color: #ffffff;
}



/*******************************/
/********** Facts CSS **********/
/*******************************/
.facts {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

.facts .facts-item {
    display: flex;
    flex-direction: row;
    margin: 25px 0;
}

.facts .facts-item i {
    margin-top: 10px;
    font-size: 60px;
    line-height: 60px;
    color: #FDBE33;
}

.facts .facts-text {
    padding-left: 20px;
}

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
}

.facts .facts-text h3::after {
    position: absolute;
    top: 0px;
    color: #ffffff;
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.facts .facts-text h3.facts-plus::after {
    content: "\f067";
    right: -25px;
}

.facts .facts-text h3.facts-dollar::after {
    content: "\f155";
    right: -18px;
}

.facts .facts-text p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 35px;
}

.team .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-img img {
    width: 100%;
    transform: scale(1.1);
    margin-bottom: -15px;
    transition: .3s;
}

.team .team-item:hover img {
    margin: -15px 0 0 0;
}

.team .team-text {
    position: absolute;
    width: calc(100% - 40px);
    height: 96px;
    bottom: 0;
    left: 20px;
    padding: 22px 0;
    text-align: center;
    background: #ffffff;
    transition: .3s;
    overflow: hidden;
}

.team .team-text h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team .team-text p {
    margin-bottom: 20px;
}

.team .team-social {
    position: relative;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: #4a4c70;
    border: 2px solid #FDBE33;
    transition: .3s;
}

.team .team-social a:hover {
    color: #20212B;
    background: #FDBE33;
}

.team .team-item:hover .team-text {
    height: 160px;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.testimonial .testimonial-profile img {
    width: 80px;
    margin-bottom: -1px;
}

.testimonial .testimonial-name {
    padding-left: 15px;
    width: calc(100% - 95px);
}

.testimonial .testimonial-name h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial .testimonial-name p {
    margin: 0;
    font-style: italic;
}

.testimonial .testimonial-text p {
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #FDBE33;
}

.testimonial .owl-dot.active {
    background: #20212B;
}


/*******************************/
/******** Volunteer CSS ********/
/*******************************/
.volunteer {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: rgba(0, 0, 0, .5);
}

.volunteer .volunteer-content {
    padding: 30px 0 45px 0;
}

.container .volunteer {
    margin: 90px 0;
}

.container .volunteer .volunteer-content {
    padding: 45px 30px 15px 30px;
}

.volunteer .volunteer-content .section-header {
    margin-bottom: 30px;
}

.volunteer .volunteer-content .section-header h2 {
    color: #ffffff;
}

.volunteer .volunteer-text p {
    color: #ffffff;
    font-size: 18px;
}

.volunteer .volunteer-form {
    padding: 90px 30px;
    background: #FDBE33;
}

.volunteer .volunteer-form .control-group {
    margin-bottom: 15px;
}

.volunteer .volunteer-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.volunteer .volunteer-form textarea.form-control {
    height: 120px;
    padding: 15px;
}

.volunteer .volunteer-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.volunteer .volunteer-form .form-control:-ms-input-placeholder,
.volunteer .volunteer-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom:hover {
    color: #FDBE33;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 30px #ffffff;
}


/*******************************/
/********** Event CSS **********/
/*******************************/
.event {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.event .event-item {
    margin-bottom: 30px;
    background: #f3f6ff;
}

.event .event-item img {
    width: 100%;
}

.event .event-content {
    padding: 30px;
    display: flex;
}

.event .event-meta {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.event .event-meta p {
    position: relative;
    margin-bottom: 8px;
    padding-bottom: 8px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.event .event-meta p:last-child {
    border-bottom: none;
}

.event .event-meta i {
    color: #4a4c70;
    width: 25px;
}

.event .event-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.event .event-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 5px);
    top: 6px;
    left: 0;
    background: rgba(0, 0, 0, .15);
}

.event .event-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #FDBE33;
}

.event .event-text h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event .event-text p {
    margin: 0;
}

.event .btn.btn-custom {
    margin-top: 20px;
    padding: 8px 30px;
}

@media (max-width: 575.98px) {
    .event .event-content {
        flex-direction: column;
    }
    
    .event .event-meta {
        flex-direction: row;
    }
    
    .event .event-meta p {
        font-size: 14px;
        padding-right: 7px;
    }
    
    .event .event-meta p:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, .15);
    }
    
    .event .event-meta i {
        width: 18px;
    }
    
    .event .event-text {
        margin: 0;
        padding: 0;
    }
    
    .event .event-text::before,
    .event .event-text::after {
        display: none;
    }
}



/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    background: #f3f6ff;
}

.blog .blog-img {
    width: 100%;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-text {
    padding: 30px 30px 15px 30px;
}

.blog .blog-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-text h3 a {
    color: #4a4c70;
}

.blog .blog-text h3 a:hover {
    color: #FDBE33;
}

.blog .blog-text p {
    margin: 0;
}

.blog .blog-meta {
    margin: 0 30px;
    padding-top: 15px;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p {
    margin: 0;
    color: #777777;
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p:first-child {
    padding-left: 0;
}

.blog .blog-meta p:last-child {
    padding-right: 0;
    border: none;
}

.blog .blog-meta i {
    color: #4a4c70;
    margin-right: 8px
}

.blog .pagination {
    margin-bottom: 15px;
}

.blog .pagination .page-link {
    color: #4a4c70;
    border-radius: 0;
    border-color: #4a4c70;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #FDBE33;
    background: #4a4c70;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .contact-img {
    position: relative;
    width: 100%;
}

.contact .contact-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: -220px;
    padding: 30px;
    background: #f3f6ff;
}

@media (max-width: 991.98px) {
    .contact .contact-form {
        max-width: 600px;
    }
}

@media (max-width: 767.98px) {
    .contact .contact-form {
        max-width: 400px;
    }
}

@media (max-width: 575.98px) {
    .contact .contact-form {
        max-width: 300px;
    }
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn.btn-custom {
    width: 100%;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
    border: 15px solid #ffffff;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 600;
}

.single .post-item .post-text a:hover {
    color: #FDBE33;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4c70;
    background: #FDBE33;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #FDBE33;
    background: #4a4c70;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
    border-radius: 0;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #FDBE33;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form input:focus,
.single .comment-form textarea:focus {
    border-color: #FDBE33;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #FDBE33;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
    border-color: #FDBE33;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #FDBE33;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #4a4c70;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #4a4c70;
    background: #FDBE33;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    background: #4a4c70;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FDBE33;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
    border-radius: 0;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #20212B;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #FDBE33;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #FDBE33;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    padding: 6px 0;
}

.footer .footer-social a {
    margin-top: 5px;
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 60px;
    border: none;
    border-radius: 0;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    padding: 15px 0;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #FDBE33;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}


/* =====================================================================
   HOME PAGE REDESIGN — MODERN CROWDFUNDING STYLE
   ===================================================================== */

/* ======  HERO SECTION  ====== */
.hero-wrap {
    position: relative;
    overflow: hidden;
    background: #0a1628;
    margin-bottom: 0;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 960px;
    display: flex !important;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 8s ease;
    filter: brightness(0.32);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        rgba(10,22,40,0.97) 0%,
        rgba(10,22,40,0.72) 50%,
        rgba(10,22,40,0.15) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 90px;
}

/* Eyebrow badge */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253,190,51,0.12);
    border: 1px solid rgba(253,190,51,0.4);
    color: #FDBE33;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #FDBE33;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

/* Hero heading */
.hero-heading {
    font-size: 58px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 520px;
}

/* CTA buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 44px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    background: linear-gradient(135deg, #FDBE33 0%, #f0a800 100%);
    color: #20212B;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgba(253,190,51,0.38);
    text-decoration: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(253,190,51,0.55);
    color: #20212B;
    text-decoration: none;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.38);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: #ffffff;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Mini stats row */
.hero-stats-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.hsr-item {
    display: flex;
    flex-direction: column;
    padding: 0 22px;
}

.hsr-item:first-child { padding-left: 0; }

.hsr-num {
    font-size: 28px;
    font-weight: 800;
    color: #FDBE33;
    line-height: 1.1;
}

.hsr-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-top: 3px;
}

.hsr-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.18);
}

/* Hero image card — right side */
.hero-img-card {
    position: relative;
    max-width: 440px;
    margin: 0 auto;
}

.hero-img-card > img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 22px;
    border: 3px solid rgba(253,190,51,0.28);
    box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}

.hero-badge-float {
    position: absolute;
    bottom: 28px;
    left: -34px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 44px rgba(0,0,0,0.22);
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.hero-badge-icon {
    font-size: 30px;
    color: #FDBE33;
}

.hero-badge-body strong {
    display: block;
    font-size: 14px;
    color: #20212B;
    font-weight: 700;
}

.hero-badge-body span {
    font-size: 12px;
    color: #888;
}

/* Owl nav buttons for hero carousel */
.hero-wrap .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.hero-wrap .owl-prev,
.hero-wrap .owl-next {
    pointer-events: all;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255,255,255,0.45) !important;
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
    font-size: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(12px);
    transition: all 0.3s !important;
    margin: 0 !important;
}

.hero-wrap .owl-prev { left: 24px !important; }
.hero-wrap .owl-next { right: 24px !important; }

.hero-wrap .owl-prev:hover,
.hero-wrap .owl-next:hover {
    background: #FDBE33 !important;
    border-color: #FDBE33 !important;
    color: #20212B !important;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll-hint a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    animation: scrollBounce 2.2s infinite;
    text-decoration: none;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(10px); }
}

/* Hero responsive */
@media (max-width: 991.98px) {
    .hero-slide {
        height: auto;
        min-height: 100svh;
        max-height: none;
    }
    .hero-inner {
        padding-top: 130px;
        padding-bottom: 100px;
        min-height: unset;
    }
    .hero-heading { font-size: 38px; }
    .hero-sub     { font-size: 16px; }
    .hero-wrap .owl-prev { left: 8px !important; }
    .hero-wrap .owl-next { right: 8px !important; }
    .hero-wrap .owl-prev,
    .hero-wrap .owl-next { width: 44px !important; height: 44px !important; font-size: 18px !important; }
}

@media (max-width: 575.98px) {
    .hero-heading { font-size: 30px; }
    .hero-actions { flex-direction: column; }
    .btn-hero-primary,
    .btn-hero-ghost { width: 100%; justify-content: center; }
    .hsr-item { padding: 0 12px; }
    .hsr-num  { font-size: 22px; }
}


/* ======  ABOUT SECTION  ====== */
.about { padding: 80px 0; background: #fff; }


/* ======  SERVICE SECTION  ====== */
.service {
    background: linear-gradient(135deg, #f8faff 0%, #eef1fa 100%);
    padding: 80px 0 50px;
}

.service .service-item {
    background: #fff;
    padding: 28px 28px 28px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service .service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 42px rgba(0,0,0,0.12);
}


/* ======  FACTS / STATS  ====== */
.facts {
    background: linear-gradient(135deg, #20212B 0%, #0a1628 100%);
}


/* ======  CROWDFUNDING CAUSES SECTION  ====== */
.crowd-section {
    padding: 80px 0;
    background: #f8faff;
    position: relative;
}

/* Owl nav for crowd carousel */
.crowd-section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 5;
}

.crowd-section .owl-prev,
.crowd-section .owl-next {
    pointer-events: all;
    position: absolute !important;
    top: 0 !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: #FDBE33 !important;
    color: #20212B !important;
    border: none !important;
    box-shadow: 0 4px 18px rgba(253,190,51,0.42);
    transition: all 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    margin: 0 !important;
}

.crowd-section .owl-prev { left: -23px !important; }
.crowd-section .owl-next { right: -23px !important; }

.crowd-section .owl-prev:hover,
.crowd-section .owl-next:hover {
    background: #20212B !important;
    color: #FDBE33 !important;
}

/* Cause card */
.crowd-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
    margin: 10px 15px 25px;
}

.crowd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.14);
}

.crowd-card-img {
    position: relative;
    overflow: hidden;
    height: 218px;
}

.crowd-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.crowd-card:hover .crowd-card-img img {
    transform: scale(1.08);
}

.crowd-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10,22,40,0.72);
    color: #FDBE33;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.crowd-percent-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #FDBE33;
    color: #20212B;
    font-size: 14px;
    font-weight: 800;
    padding: 4px 13px;
    border-radius: 50px;
}

.crowd-card-body { padding: 24px; }

.crowd-title {
    font-size: 18px;
    font-weight: 700;
    color: #20212B;
    margin-bottom: 10px;
    line-height: 1.4;
}

.crowd-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 18px;
    line-height: 1.75;
}

.crowd-progress-wrap { margin-bottom: 12px; }

.crowd-progress-bar {
    width: 100%;
    height: 8px;
    background: #e6eaf4;
    border-radius: 50px;
    overflow: hidden;
}

.crowd-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FDBE33 0%, #f0a800 100%);
    border-radius: 50px;
    transition: width 1.6s ease;
    width: 0%;
}

.crowd-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.crowd-stat { display: flex; flex-direction: column; }

.crowd-stat-center { align-items: center; }

.cs-val {
    font-size: 16px;
    font-weight: 800;
    color: #20212B;
}

.crowd-stat-center .cs-val {
    font-size: 19px;
    color: #FDBE33;
}

.cs-lbl {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.crowd-footer { display: flex; gap: 10px; }

.crowd-btn-outline {
    flex: 1;
    padding: 11px;
    text-align: center;
    border: 2px solid #FDBE33;
    color: #20212B;
    font-weight: 600;
    font-size: 13px;
    border-radius: 9px;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crowd-btn-outline:hover {
    background: #FDBE33;
    color: #20212B;
    text-decoration: none;
}

.crowd-btn-donate {
    flex: 1;
    padding: 11px;
    text-align: center;
    background: linear-gradient(135deg, #FDBE33 0%, #f0a800 100%);
    color: #20212B;
    font-weight: 700;
    font-size: 13px;
    border-radius: 9px;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(253,190,51,0.32);
}

.crowd-btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(253,190,51,0.48);
    color: #20212B;
    text-decoration: none;
}

/* View-all button shared */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 38px;
    background: transparent;
    color: #20212B;
    border: 2px solid #FDBE33;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-view-all:hover {
    background: #FDBE33;
    color: #20212B;
    transform: translateY(-2px);
    text-decoration: none;
}


/* ======  DONATE SECTION  ====== */
.donate {
    background: linear-gradient(135deg, rgba(10,22,40,0.93) 0%, rgba(10,22,40,0.82) 100%);
}


/* ======  EVENTS SECTION (CAMPAIGN STYLE)  ====== */
.events-section {
    padding: 80px 0;
    background: #fff;
}

.event-card-new {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 26px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card-new:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 55px rgba(0,0,0,0.15);
}

.ecn-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.ecn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card-new:hover .ecn-img img { transform: scale(1.07); }

.ecn-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #FDBE33;
    color: #20212B;
    border-radius: 12px;
    padding: 8px 16px;
    text-align: center;
    min-width: 60px;
}

.ecn-day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.ecn-month {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 2px;
}

.ecn-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ecn-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #20212B;
    margin-bottom: 10px;
}

.ecn-body > p {
    font-size: 14px;
    color: #888;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}

.ecn-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.ecn-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.ecn-meta i { color: #FDBE33; }

.ecn-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f3fa;
    padding-top: 18px;
    margin-top: auto;
}

.ecn-seats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

.ecn-seats i { color: #FDBE33; }

.ecn-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #FDBE33 0%, #f0a800 100%);
    color: #20212B;
    font-weight: 700;
    font-size: 13px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(253,190,51,0.32);
}

.ecn-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253,190,51,0.48);
    color: #20212B;
    text-decoration: none;
}


/* ======  TEAM SECTION (MODERN CARDS)  ====== */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #eef1fa 100%);
}

.team-card-new {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
    margin-bottom: 10px;
}

.team-card-new:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 52px rgba(0,0,0,0.14);
}

.tcn-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.tcn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-new:hover .tcn-img img { transform: scale(1.07); }

.tcn-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 22px;
}

.team-card-new:hover .tcn-overlay { opacity: 1; }

.tcn-social { display: flex; gap: 10px; }

.tcn-social a {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #FDBE33;
    color: #20212B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
}

.tcn-social a:hover {
    background: #fff;
    color: #20212B;
    transform: translateY(-3px);
}

.tcn-body {
    padding: 20px;
    text-align: center;
    border-top: 3px solid #FDBE33;
}

.tcn-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #20212B;
    margin-bottom: 5px;
}

.tcn-body span {
    font-size: 13px;
    color: #aaa;
    font-weight: 500;
}


/* ======  VOLUNTEER SECTION  ====== */
.volunteer {
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.78) 100%);
}


/* ======  TESTIMONIALS SECTION  ====== */
.testi-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #20212B 0%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.testi-section::before {
    content: '\201C';
    position: absolute;
    font-size: 380px;
    font-family: Georgia, serif;
    color: rgba(253,190,51,0.04);
    top: -60px;
    left: -20px;
    line-height: 1;
    pointer-events: none;
}

.testi-section .section-header p  { color: #FDBE33; }
.testi-section .section-header h2 { color: #fff; }

.testi-section .section-header::after {
    background: linear-gradient(90deg, #FDBE33, #f0a800);
}

.testi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 30px;
    margin: 10px;
    transition: all 0.35s ease;
    backdrop-filter: blur(12px);
}

.testi-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(253,190,51,0.35);
    transform: translateY(-5px);
}

.testi-stars {
    color: #FDBE33;
    font-size: 13px;
    margin-bottom: 14px;
    letter-spacing: 3px;
}

.testi-q-icon {
    font-size: 28px;
    color: rgba(253,190,51,0.38);
    margin-bottom: 10px;
    display: block;
}

.testi-quote p {
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 18px;
}

.testi-author img {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #FDBE33;
    flex-shrink: 0;
    display: block;
}

.testi-author-info strong {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.testi-author-info span {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

/* Owl dots for testi */
.testi-section .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.testi-section .owl-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    margin: 0 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.testi-section .owl-dot.active {
    width: 26px;
    border-radius: 50px;
    background: #FDBE33;
}


/* ======  BLOG SECTION  ====== */
.blog-section {
    padding: 80px 0;
    background: #f8faff;
}

.blog-card-new {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-new:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 52px rgba(0,0,0,0.12);
}

.bcn-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.bcn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-new:hover .bcn-img img { transform: scale(1.07); }

.bcn-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0.52);
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-new:hover .bcn-overlay { opacity: 1; }

.bcn-read-more {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FDBE33;
    color: #20212B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: scale(0.6);
    transition: transform 0.35s;
    text-decoration: none;
}

.blog-card-new:hover .bcn-read-more { transform: scale(1); }

.bcn-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bcn-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.bcn-meta span {
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bcn-meta i { color: #FDBE33; }

.bcn-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #20212B;
    margin-bottom: 10px;
    line-height: 1.5;
}

.bcn-body h3 a {
    color: #20212B;
    text-decoration: none;
    transition: color 0.3s;
}

.bcn-body h3 a:hover { color: #FDBE33; }

.bcn-body > p {
    font-size: 14px;
    color: #888;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}

.bcn-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #FDBE33;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: gap 0.3s;
    margin-top: auto;
}

.bcn-link:hover {
    gap: 12px;
    color: #f0a800;
    text-decoration: none;
}


/* ======  GLOBAL SECTION HEADER TWEAK  ====== */
.section-header::after {
    content: '';
    display: block;
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, #FDBE33, #f0a800);
    border-radius: 3px;
    margin-top: 10px;
}

.section-header.text-center::after { margin: 10px auto 0; }
.section-header:not(.text-center)::after { margin-left: 0; }

/* ======  MARGIN CLEAN-UP  ====== */
.crowd-section + .donate,
.events-section + .team-section { margin-top: 0; }

/* ======  CONTACT SECTION  ====== */
.contact { background: #fff; }
