/* ===== Animations ===== */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--primary-color);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Donate Now Button ===== */
.donate-now-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    padding: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px var(--primary-color);
    font-size: 15px;
}
.btn{
    font-size: 15px !important;
}

.donate-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-color);
    animation: none;
}

.donate-now-btn .bi-heart-fill {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.donate-now-btn:hover .bi-heart-fill {
    transform: scale(1.2);
}

/* ===== Project Detail Page ===== */
.project-hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 3rem;
    overflow: hidden;
}

.project-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 119, 18, 0.8) 0%, rgba(22, 169, 44, 0.2) 100%);
}

.project-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 2rem 0;
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.project-meta-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.project-meta-item i {
    color: white;
    font-size: 1.1rem;
}

.project-description {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.project-description h2 {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.project-description h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ===== Gallery ===== */
.project-gallery {
    margin: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: white;
    font-size: 2rem;
}

/* ===== Activity Cards ===== */
.activity-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.activity-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .card-img-top {
    transform: scale(1.05);
}

.activity-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-card .card-footer {
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===== Donation Progress ===== */
.progress {
    height: 8px;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.progress-bar {
    background-color: var(--primary-color);
}

.donation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.donation-stat {
    text-align: center;
    padding: 1.5rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.donation-stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.donation-stat h4 {
    margin: 0;
    font-weight: 700;
    color: white;
    font-size: 1.5rem;
}

.donation-stat p {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Floating Donate Button ===== */
.donate-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0, 119, 18, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.donate-btn i {
    margin-right: 8px;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 119, 18, 0.4);
}

.user-avatar {
    background: var(--primary-color) !important;
}
.hero-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slide {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--bs-primary);
    opacity: 1;
    transform: scale(1.2);
}

/* Text styles */
.hero-slide h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-slide .lead {
    font-size: 1.25rem;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
    margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-slide {
        min-height: 60vh;
        padding: 60px 0;
    }
    
    .hero-slide h1 {
        font-size: 2.5rem;
    }
    
    .hero-slide .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 80vh;
        padding: 40px 0;
    }
    
    .hero-slide h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-slide .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-slide .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Content spacing */
main {
    padding-top: 0 !important;
}

/* About Section Styles */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(var(--bs-primary-rgb), 0.03);
    z-index: 0;
    border-radius: 30% 0 0 30%;
    transform: translateX(30%);
}

.about-section h2 {
    position: relative;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-section .lead {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-section .feature-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.about-section .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-section .feature-box i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-section .feature-box h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-section .feature-box p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.about-section .btn {
    padding: 0.7rem 1.8rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-section .btn-outline-primary {
    border-width: 2px;
}

@media (max-width: 991.98px) {
    .about-section::before {
        width: 100%;
        border-radius: 0;
        transform: none;
        opacity: 0.5;
    }
    
    .about-section .ps-lg-5 {
        padding-left: 15px !important;
        margin-top: 2rem;
    }
}
/* ===== Base Styles ===== */
:root {
    --primary-color: #007712;
    --secondary-color: #007712;
    --accent-color: #f6c23e;
    --dark-color: #5a5c69;
    --light-color: #f8f9fc;
    --success-color: #1cc88a;
    --danger-color: #e74a3b;
    --warning-color: #f6c23e;
    --info-color: #36b9cc;
    --font-primary: 'Raleway', sans-serif;
    --bs-primary-rgb: #006033;
}

body {
    font-family: var(--font-primary);
    color: #333;
    line-height: 1.6;
    padding-top: 80px;
    /* For fixed navbar */
    background-color: #f8fafc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ===== Navbar ===== */
.navbar {
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
}

/* ===== Buttons ===== */
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 10rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* ===== Cards ===== */
.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.card-header {
    background-color: var(--primary-color);
    border-bottom: 1px solid #e3e6f0;
    font-weight: 700;
    padding: 1rem 1.25rem;
}

.card-body {
    padding: 1.5rem;
}

/* ===== Forms ===== */
.form-control,
.form-select {
    padding: 0.65rem;
    border-radius: 0.35rem;
    border: 1px solid #d1d3e2;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* ===== Alerts ===== */
.alert {
    border: none;
    border-radius: 0.35rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.alert-dismissible .btn-close {
    padding: 1rem 1.5rem;
}

/* ===== Footer ===== */
footer {
    background-color: #2c3e50;
    color: #fff;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Utility Classes ===== */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--bs-primary);
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-pagination-bullet {
    background: #dee2e6;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--bs-primary);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .project-hero {
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .donation-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .project-meta {
        gap: 10px;
    }
    
    .project-meta-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ===== Modal Customization ===== */
.modal-content {
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem 1.5rem;
}

/* ===== Call to Action Section ===== */
.cta-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin-top: 4rem;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        padding: 0.5rem 0 !important;
    }

    .nav-link.active::after {
        display: none;
    }
}

/* ===== Custom Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

    :root {
        --primary-color:rgb(0, 96, 51);
        --secondary-color:rgb(0, 148, 0);
        --accent-color: #4ecdc4;
        --dark-color: #2d3436;
        --light-color: #f8f9fa;
        --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }
    
    /* Hero Section */
    .hero-section {
        background: var(--gradient);
        color: white;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.5;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    
    /* Activities Section */
    .section-title {
        position: relative;
        display: inline-block;
        margin-bottom: 3rem;
        color: var(--dark-color);
    }
    .activity-card {
        height: 100%;
        transition: all 0.3s ease;
        border: none;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 1.5rem;
    }
    
    .activity-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .activity-image {
        height: 220px;
        object-fit: cover;
        width: 100%;
        transition: transform 0.5s ease;
    }
    
    .activity-card:hover .activity-image {
        transform: scale(1.05);
    }
    
    .activity-date {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--primary-color);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .activity-body {
        padding: 1.5rem;
    }
    
    .activity-title {
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--dark-color);
    }
    
    .activity-text {
        color: #6c757d;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    /* Stats Section */
    .stats-section {
        background-color: #f8f9fa;
        padding: 80px 0;
        position: relative;
    }
    
    .stat-card {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
    
    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--dark-color);
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .stat-text {
        color: #6c757d;
        font-size: 1.1rem;
    }
    
    /* CTA Section */
    .cta-section {
        background: var(--gradient);
        color: white;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }
    
    .cta-content {
        position: relative;
        z-index: 1;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }
    
    .cta-text {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-cta {
        background: white;
        color: var(--primary-color);
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        border: 2px solid white;
    }
    
    .btn-cta:hover {
        background: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .hero-title {
            font-size: 2.8rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    }
    
    @media (max-width: 767.98px) {
        .hero-section {
            padding: 80px 0;
        }
        
        .hero-title {
            font-size: 2.2rem;
        }
        
        .cta-title {
            font-size: 2rem;
        }
    }
    
    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .fade-in-up {
        animation: fadeInUp 0.8s ease forwards;
    }
    
    /* Swiper Customization */
    .swiper-pagination-bullet {
        background: var(--primary-color);
        opacity: 0.5;
        width: 10px;
        height: 10px;
    }
    
    .swiper-pagination-bullet-active {
        opacity: 1;
        background: var(--primary-color);
        width: 30px;
        border-radius: 5px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        color: var(--primary-color);
        background: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.2rem;
    }
    
    /* Sponsors Section Styles */
.sponsors-section {
    position: relative;
    overflow: hidden;
}

.sponsors-section .divider {
    position: relative;
    width: 80px;
    height: 2px;
    /* background: rgba(0, 0, 0, 0.1); */
    margin: 0 auto;
}

.sponsors-section .divider span {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 2px;
    display: block;
    margin: 0 auto;
    background: var(--primary);
}

.sponsors-slider {
    position: relative;
    padding: 20px 0;
}

.sponsor-item {
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sponsor-item img {
    max-width: 90%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%) brightness(0.8); */
    /* opacity: 0.8; */
    transition: all 0.3s ease;
}

.sponsor-item:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

/* Custom Pagination */
.sponsors-pagination {
    position: relative;
    margin-top: 20px !important;
}

.sponsors-pagination .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: all 0.3s ease;
}

.sponsors-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scaleX(1.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sponsor-item {
        height: 100px;
        padding: 15px 10px;
    }
    
    .sponsor-item img {
        max-height: 50px;
    }
}

/* YouTube Video Background */
.youtube-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

#player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 177.77vh; /* 16:9 Aspect Ratio */
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-width: 100%;
    min-height: 100%;
}

.youtube-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Hero Video Styles */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 121, 0, 0.3);
    z-index: 2;
}

.hero-video-container .container {
    position: relative;
    z-index: 3;
    padding-top: 80px;
}

.hero-video-container h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color:#fff;
    /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
}

.hero-video-container .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* .gradient-text {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
} */

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-video-container h1 {
        font-size: 3rem;
    }
    
    .hero-video-container .lead {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-video-container {
        min-height: 500px;
    }
    
    .hero-video-container h1 {
        font-size: 2.5rem;
    }
    
    .hero-video-container .lead {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hero-video-container .btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

/* Button Hover Effects */
.btn-hover-scale {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hover-scale:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

    /* Project Card Styles */
    .project-card {
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }
    
    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .project-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .project-card:hover .project-image {
        transform: scale(1.05);
    }
    
    .project-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        color: white;
    }
