/********** Template CSS **********/
:root {
    --bs-tertiary: #797E88;
    --bs-primary: red;
    --bs-secondary: black;
    --bs-yellow: yellow;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Top Bar ***/
.top-bar {
    height: 90px;
    padding: 0 90px;
}

.top-bar h6 {
    letter-spacing: 1px;
}


/*** Nav Bar ***/
.nav-bar {
    padding: 0 90px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: var(--bs-yellow);
    font-size: 18px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header Carousel ***/
.header-carousel {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
    transition: 0.4s ease;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
    cursor: pointer;
}

.page-header {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
}

/*** header logo ***/
/* Logo image styling */
.logo-img {
    width: 100px;
    max-height: 60px;
    width: auto;
    transition: transform 0.4s ease;
}

/* Hover effect */
.navbar-brand:hover .logo-img {
    transform: scale(1.08);
}

/* Responsive size */
@media (max-width: 768px) {
    .logo-img {
        max-height: 50px;
    }
}


/*** Video ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-dark);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#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: var(--bs-white);
    background: #000000;
    opacity: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}


/* General About Page */
.about-page {
    background-color: #f8f9fa;
}

.about-page h2 {
    font-weight: 700;
}

.about-page h4 {
    font-weight: 600;
    color: #343a40;
}

.about-page p {
    color: #495057;
    line-height: 1.7;
}

.about-list li {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 10px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Images */
.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-list li {
        padding: 8px 12px;
        font-size: 0.95rem;
    }

    .about-img {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .about-list li {
        font-size: 0.9rem;
    }

    .about-page h2 {
        font-size: 1.75rem;
    }
}

/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

.service-item a {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    transition: .5s;
}

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    border-bottom: 2px solid var(--bs-primary);
}


/*** Donation ***/
.donation-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.donation-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.donation-item .donation-progress {
    width: 80px;
}

.donation-item .progress .progress-bar {
    height: 20px;
    overflow: visible;
    transition: 3s;
}


/*** Banner ***/
.banner .banner-inner {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}


/*** Event ***/
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}


/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, 0.81);
}

.donate .donate-form .btn-group {
    display: flex;
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group .btn-check:checked + .btn {
    border: none;
    background: var(--bs-white);
}



/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}

/*** founder ***/
/* Founder / Leadership Section */
.leadership-section {
    background-color: #f9f9f9;
}

.leadership-section h2 {
    font-weight: 700;
}

.leadership-section h3 {
    font-weight: 600;
    color: #343a40;
}

.leadership-section h5 {
    color: #007bff;
}

.about-list li {
    background-color: #fff;
    border: 1px solid #dee2e6;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 10px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.founder-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* SDG Badges */
.badge {
    font-size: 0.9rem;
    padding: 0.5em 0.75em;
    border-radius: 0.75rem;
}

/* Quote */
.leadership-section blockquote {
    font-style: italic;
    border-left: 5px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-img {
        max-width: 250px;
        margin-bottom: 20px;
    }

    .about-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .founder-img {
        max-width: 200px;
    }

    .leadership-section h2 {
        font-size: 1.75rem;
    }

    .about-list li {
        font-size: 0.9rem;
    }
}




/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    transition: .5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    color: var(--bs-secondary);
    background: var(--bs-white);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}



/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
    background: linear-gradient(rgba(5, 19, 17, .95), rgba(5, 19, 17, .95)), url(../img/bg-footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-tertiary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/*** footer logo***/
.office-logo img {
    width: 120px;
    /* Default size */
    height: 120px;
    /* Keep it square for perfect circle */
    object-fit: cover;
    /* Ensure logo fits within circle without stretching */
    border-radius: 50%;
    /* Ensure circle shape even if not using Bootstrap */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .office-logo img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .office-logo img {
        width: 180px;
        height: 180px;
    }

    .office-logo {
        text-align: center;
        padding-bottom: 30px;
    }
}


/*** footer gallery ***/
/* Gallery Hover */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Overlay effect */
.gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/*** gallery modal ***/
/* ===== Modal Background ===== */
.gallery-modal {
    background: rgba(0, 0, 0, 0.74);
    border: none;
}

/* ===== Close Button ===== */
.gallery-close {
    position: absolute;
    top: 25px;
    right: 40px;
    z-index: 9999;
    font-size: 20px;
    opacity: 0.8;
}

.gallery-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ===== Carousel Images ===== */
/* Ensure carousel is positioning reference */
.gallery-carousel {
    position: relative;
}

.gallery-carousel .item {
    width: 100%;
    text-align: center;
    aspect-ratio: 12 / 6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-carousel img {
    max-height: 90vh;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    margin: auto;
    border-radius: 10px;
    transition: 0.5s ease
}

.gallery-carousel .item:hover img {
    transform: scale(1.03);
}

/* ===== Navigation Arrows ===== */
/* Remove default positioning */
.gallery-carousel .owl-nav {
    margin: 0;
}

/* Base style for both buttons */
.gallery-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 0;
    width: 70px;
    height: 120px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover effect */
.gallery-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Navigation buttons - responsive positioning */
.gallery-carousel .owl-nav .owl-prev,
.gallery-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    padding: 10px;
    z-index: 10;
    transition: background 0.3s ease;
}

/* Previous button */
.gallery-carousel .owl-nav .owl-prev {
    left: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Next button */
.gallery-carousel .owl-nav .owl-next {
    right: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* Icon style */
.gallery-carousel .owl-nav i {
    color: #fff;
    font-size: 30px;
}

/* Remove dots */
.gallery-carousel .owl-dots {
    display: none;
}

/* Optional: adjust button size on smaller screens */
@media (max-width: 768px) {

    .gallery-carousel .owl-nav .owl-prev,
    .gallery-carousel .owl-nav .owl-next {
        padding: 6px;
    }

    .gallery-carousel .owl-nav i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {

    .gallery-carousel .owl-nav .owl-prev,
    .gallery-carousel .owl-nav .owl-next {
        padding: 4px;
    }

    .gallery-carousel .owl-nav i {
        font-size: 20px;
    }
}



/************* Additional Styles ***********/
/**** call to action for programs ********/
.bg-warning {
    background-image: url('../img/bg.jpg');
    background-color: #F7B500 !important;
    /* adjust to match template */
}

.btn-warning {
    background-color: #d61936;
    border: none;
    color: #fff;
    transition: 0.3s ease;
}

.btn-warning:hover {
    background-color: #163944;
    color: yellow;
    transform: translateY(-3px);
}

.shadow-sm {
    transition: 0.3s ease;
}

.shadow-sm:hover {
    transform: translateY(-5px);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: #1F4E5F;
    color: #fff;
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* CONTINUOUS EVENT ANIMATION   */
/* ============================= */

/* Floating card effect */
.event-box {
    position: relative;
    animation: floatCard 4s ease-in-out infinite;
}

/* Floating movement */
@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Soft glowing pulse */
.event-box {
    animation: floatCard 4s ease-in-out infinite,
        pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(13, 110, 253, 0.05);
    }

    50% {
        box-shadow: 0 0 35px rgba(13, 110, 253, 0.2);
    }

    100% {
        box-shadow: 0 0 0 rgba(13, 110, 253, 0.05);
    }
}

/* Icon subtle bounce */
.icon-wrapper i {
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Button breathing animation */
.event-btn {
    animation: buttonBreath 2.5s ease-in-out infinite;
}

@keyframes buttonBreath {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Ribbon shimmer */
.ribbon-animated {
    animation: ribbonShine 3s linear infinite;
}

@keyframes ribbonShine {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.4);
    }

    100% {
        filter: brightness(1);
    }
}


/***** AKA FOODS *****/
/* AKA Foods Page Styling */
.aka-foods-page {
    background-color: #fff8f0;
    font-family: 'Poppins', sans-serif;
}

.aka-foods-page h1,
.aka-foods-page h2,
.aka-foods-page h3,
.aka-foods-page h4,
.aka-foods-page h5 {
    font-weight: 600;
}

.aka-foods-page p {
    line-height: 1.7;
    color: #495057;
}

.aka-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aka-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Cards Hover */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Cards Body Padding */
.card-body {
    padding: 1rem 1.25rem;
}

/* Product Titles */
.card-title {
    font-weight: 600;
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .aka-img {
        max-width: 90%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .aka-foods-page h1 {
        font-size: 2rem;
    }

    .aka-foods-page h2 {
        font-size: 1.5rem;
    }

    .card-body p {
        font-size: 0.9rem;
    }
}


/**** events and workshops ****/
/* Hero Section */
.conference-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../img/banner-1.jpg') center/cover no-repeat;
    height: 60vh;
}

/* Event Card */
.event-card {
    background: #ffffff;
    transition: 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

/* Table */
.table th {
    font-weight: 600;
}


/*** skills workshop ***/
/* Hero */
.skills-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../img/banner-1.jpg') center/cover no-repeat;
    min-height: 70vh;
    color: #fff;
    padding: 80px 0;
}

/* Workshop Cards */
.workshop-card {
    border-radius: 15px;
    transition: 0.4s ease;
    background: #fff;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Process Section */
.process-box {
    background: #f8f9fa;
    border-radius: 15px;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: #ad0007;
    color: #ffffff;
    font-weight: bold;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}


/**** networking ****/
/* Networking Hero */
.networking-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../img/banner-1.jpg') center/cover no-repeat;
    min-height: 70vh;
    padding: 100px 0;
}

/* List Style */
.network-list {
    list-style: none;
    padding: 0;
}

.network-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.network-list i {
    margin-right: 8px;
}

/* Cards */
.network-card {
    border-radius: 15px;
    transition: 0.4s ease;
    background: #fff;
}

.network-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mentorship Section */
.mentorship-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../img/mentorship-bg.jpg') center/cover no-repeat;
}


/*** donation page ***/
.donate-form {
    border-radius: 20px;
}

.btn-group .btn {
    transition: 0.3s;
}

.btn-group .btn:hover {
    transform: translateY(-5px);
}

.form-floating label {
    color: #898888;
}

.form-control, .form-select {
    border-radius: 10px;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    border-color: #ffc107;
}

/**** Our programs ****/
.hero {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/programs-banner.jpg') center/cover no-repeat;
        color: #fff;
        text-align: center;
        padding: 8rem 1rem;
    }

    .hero h1 {
        font-size: 3rem;
        font-weight: 600;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 1rem auto 0;
    }

    .program-card {
        border: none;
        border-top: 4px solid #ff0000;
        border-radius: 0.5rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .program-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .program-card h5 {
        font-weight: 600;
        color: #2c4b33;
    }

    .program-card p {
        color: #555;
        font-size: 0.95rem;
    }

    .program-card a {
        color: #de0000;
        font-weight: 500;
        text-decoration: none;
    }

    .program-card a:hover {
        color: #218838;
    }

    .cta-section {
        background: url('../img/bg-footer2.jpg');
        color: #fff;
        text-align: center;
        padding: 4rem 1rem;
    }

    .cta-section a {
        background: #fff;
        color: #a72828;
        padding: 0.8rem 2rem;
        border-radius: 50px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.5s ease;
    }

    .cta-section a:hover {
        background: #f20000;
        color: #ffffff;
        border: none;
    }
    
    /* Cookie Consent Styling */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    display: none;
}

.cookie-consent p {
    font-size: 14px;
    margin: 0;
}

.cookie-consent .btn {
    border-radius: 20px;
}

/*** contact form ****/
.help-block {
    color: red;
    padding: 5px;
    font-size: 15px;
}
.help-block-donation {
    color: #00ff14;
    padding: 5px;
    font-size: 15px;
}
