/********** Template CSS **********/
:root {
    --primary: #ff6f0f;
    --secondary: #fff0e6;
    --light: #f8f8f9;
    --dark: #001d23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff6f0f;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: #ff6f0f;
    background-color: #fff;
}

.back-to-top:hover {
    background-color: #ff6f0f;
    color: #fff;
}

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

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

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

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #ffffff;
}

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

.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;
}

/*** Navbar ***/
.fixed-top {
    transition: 0.5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 1100px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 20px;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        border-top: 1px solid rgba(0, 0, 0, 0.07);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
    #navbarCollapse {
        overflow-y: auto;
        padding-bottom: 20px; /* optional for breathing space */
    }

    /* Optional: hide horizontal scrollbar */
    #navbarCollapse::-webkit-scrollbar {
        width: 4px;
    }

    #navbarCollapse::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }

    #navbarCollapse::-webkit-scrollbar-track {
        background: transparent;
    }

    /* For mobile (small screens) */
    .navbar-collapse-right {
        position: fixed;
        top: 0;
        right: 0;
        background-color: #001d23;
        /* Match your navbar background */
        height: 100%;
        width: 300px;
        /* Adjust the width based on your requirement */
        transform: translateX(100%);
        /* Start off-screen */
        transition: transform 0.3s ease;
        /* Smooth sliding transition */
        z-index: 1000;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        /* Slide in from the right */
    }

    /* Ensuring the close button is visible and aligned */
    .navbar-toggler {
        margin-right: 25px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: 0.5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }

    .navbar-collapse-right {
        position: static;
        height: auto;
        width: auto;
        transform: none;
        background-color: transparent;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, 0.8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

#header-carousel .carousel-item {
    position: relative;
    min-height: 550px;
}

#header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 70px;
    }

    #header-carousel .carousel-item {
        position: relative;
        min-height: 300px;
    }
}

@media (max-width: 500px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 400px;
    }
}

.page-header {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: linear-gradient(rgba(0, 29, 35, 0.8), rgba(0, 29, 35, 0.8)),
        url(../img/pagebg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: #999999;
}

/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
    
    
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #ffffff;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}

/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
}

/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, 0.8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked + label {
    color: var(--primary);
    border-color: var(--primary);
}

/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: 0.5s;
    width: 100%;
    height: 35vh;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: 0.5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: 0.5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #ffffff;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #ffffff;
    background: var(--primary);
}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(0.8);
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.custom-icon {
    height: 40px;
    width: 40px;
    border: 0.5px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    border-radius: 5px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.custom-icon:hover {
    transform: rotateY(180deg);
}

.custom-icon-white {
    height: 30px;
    width: 30px;
    border: 0.5px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    border-radius: 5px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.custom-icon-white:hover {
    transform: rotateY(180deg);
}

.topbarLink {
    color: #fff;
}

.topbarLink:hover {
    color: #ff6f0f;
}

/***** Award Gallery *****/
.award {
    column-count: 3;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-gap: 1.5rem;
}

/* Each item inside the award */
.award .image {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award .image:hover {
    transform: translateY(-5px);
}

/* Image inside the card */
.award .image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Title styling */
.award .image h6 {
    font-size: 1rem;
    margin-top: 10px;
    color: #007bff;
    text-align: center;
}

/* Responsiveness */
@media screen and (max-width: 810px) {
    .award {
        column-count: 3;
        -webkit-column-count: 3;
        -moz-column-count: 3;
    }
}

@media screen and (max-width: 600px) {
    .award {
        column-count: 2;
    }
}

@media screen and (max-width: 400px) {
    .award {
        column-count: 1;
    }
}

/**** Gallery ***/
#baguetteBox-overlay .full-image img {
    max-height: 90% !important;
    max-width: 90% !important;
}

.gallery {
    column-count: 4;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    gap: 1rem;
}

.image img {
    height: auto;
    width: 100%;
    margin-bottom: 15px;
}

/* Responsive-ness for different screen-sizes */
@media screen and (max-width: 810px) {
    .gallery {
        column-count: 3;
        -webkit-column-count: 3;
        -moz-column-count: 3;
    }
}

@media screen and (max-width: 500px) {
    .gallery {
        column-count: 1;
    }
}

@media screen and (max-width: 400px) {
    .gallery {
        column-count: 1;
        -webkit-column-count: 1;
        -moz-column-count: 1;
    }
}

/* Related image gallery*/
.related-page-gallery {
    column-count: 3;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    gap: 1rem;
}

.image img {
    height: auto;
    width: 100%;
    margin-bottom: 15px;
}

/* Responsive-ness for different screen-sizes */
@media screen and (max-width: 810px) {
    .related-page-gallery {
        column-count: 3;
        -webkit-column-count: 3;
        -moz-column-count: 3;
    }
}

@media screen and (max-width: 500px) {
    .related-page-gallery {
        column-count: 2;
    }
}

@media screen and (max-width: 400px) {
    .related-page-gallery {
        column-count: 2;
        -webkit-column-count: 2;
        -moz-column-count: 2;
    }
}

/* Accordion styles */
.faq-container {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 18px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
    border-radius: 15px;
}

.faq-question {
    background-color: #ff6212;
    color: #fff;
    font-family: "Poppins", sans-serif;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    border-radius: 5px 5px 0px 0px;
    word-spacing: 1px !important;
    font-size: 17px;
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 500px; /* Arbitrary large value */
}

/** Video show on FAQS **/
.youtube-video-container {
    position: relative;
    width: 100%;
    max-width: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.youtube-video-container:hover {
    transform: scale(1.02);
}

.youtube-thumbnail img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 0, 0, 0.8);
    color: #fff;
    padding: 5px 8px;
    border-radius: 50%;
    font-size: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.youtube-video-container:hover .play-button {
    background-color: rgba(255, 0, 0, 1);
}

/**** Team member css ****/
.team-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 5px 5px 20px 5px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6212, #fbac2f);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-img-container {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 15px;
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: box-shadow 0.4s ease;
}

.team-card:hover .team-img {
    box-shadow: 0 20px 30px -10px #ff6212;
}

.team-name {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6212, #fbac2f);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/***Supporter/Alies css**/
.support-tooltip-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.support-grid {
    column-count: 4;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-gap: 1.5rem;
}

.support-card {
    position: relative;
    overflow: visible;
    padding: 10px;
    /* Show tooltip */
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
        rgba(0, 0, 0, 0.23) 0px 6px 6px;
    z-index: 0;
    margin-bottom: 1rem;
    background: white;
}

.support-img {
    transition: transform 0.3s ease;
    display: block;
    width: 100%;
    border-radius: 12px;
}

/* .support-tooltip-container:hover .support-img {
                        transform: scale(1.03);
                    } */

.custom-tooltip {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(45deg, #ff6212, #fbac2f);
    color: white;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 0.95rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.custom-tooltip .tooltip-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fbac2f;
}

.support-tooltip-container:hover .custom-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 991px) {
    .support-grid {
        column-count: 3;
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-gap: 1.5rem;
    }
}

@media (max-width: 500px) {
    .support-grid {
        column-count: 2;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-gap: 1.5rem;
    }
}

.support-carousel .owl-stage {
    display: flex !important;
    align-items: center !important;
}

/*** CSS for video and counter ***/

.hero-section {
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #ff6f0f 0%, #ff6f0f 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.content-wrapper {
    position: relative;
    color: white;
}

.video-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.thumbnail-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-wrapper:hover {
    transform: scale(1.02);
}

.thumbnail {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.thumbnail:hover {
    filter: brightness(1.1);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.play-overlay:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    font-size: 2rem;
    color: #ff6f0f;
    margin-left: 4px;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 20%;
    right: 30%;
    animation-delay: 4s;
}

.floating-circle:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 40%;
    animation-delay: 4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .video-container {
        padding: 1rem;
    }

    .thumbnail {
        height: 250px;
    }

    .play-overlay {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        font-size: 1.5rem;
    }
}

/**** Annual report defaul design ****/
/* Main container */
.main-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Glass morphism effect */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
   box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    padding: 3rem;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

/* Logo and branding */
.logo {
    width: 80px;
    height: 80px;
    background: #f59e0b;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6f0f, #ff6f0f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: black;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.8;
    color: grey;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .glass-card {
        padding: 2rem;
        margin: 1rem;
    }
}

        /* Progress section */
        .progress-section {
            margin: 3rem 0;
        }

        .progress-label-default {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color:black;
        }

        .progress-default {
            height: 8px;
            background: rgb(185, 183, 183);
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-bar-default {
            background: linear-gradient(45deg, #fbbf24, #FF6F0F);
            border-radius: 10px;
            animation: progressFill 2s ease-out 1.5s both;
        }

        @keyframes progressFill {
            from { width: 0; }
            to { width: 75%; }
        }