* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fef9f0;
    overflow-x: hidden;
}

/* ---------- THEME SLIDER (LARGER) ---------- */
.theme-slider-container {
    position: relative;
    width: 100%; /* 1440px */
    height: 650px;
    overflow: hidden;
    margin-top: 0;
    background: #0f2b3d;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 43, 61, 0.9) 0%, rgba(15, 43, 61, 0.4) 100%);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.slider-content-inner {
    max-width: 650px;
}

.slider-subtitle {
    color: #f4a261;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards 0.2s;
}

.slider-title {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards 0.4s;
}

.slider-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards 0.6s;
}

.slider-buttons {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards 0.8s;
}

.slider-btn-primary {
    background: #e76f2d;
    color: white;
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    display: inline-block;
}

.slider-btn-primary:hover {
    background: #c95f22;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 111, 45, 0.3);
}

.slider-btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.slider-btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: #f4a261;
}

.slider-dot.active {
    background: #e76f2d;
    width: 30px;
    border-radius: 20px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-arrow:hover {
    background: #e76f2d;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

/* ----- MARQUEE STRIP (2cm height, modern gradient) ----- */
.donation-marquee-strip {
    background: linear-gradient(135deg, #1a3a4f 0%, #0f2b3d 100%);
    border-top: 2px solid #e76f2d;
    border-bottom: 2px solid #e76f2d;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    min-height: 2cm;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
}

.donation-marquee-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(231,111,45,0.08) 15px, rgba(231,111,45,0.08) 30px);
    pointer-events: none;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    animation: scrollMarquee 28s linear infinite;
    padding-right: 2rem;
    white-space: nowrap;
}

.donation-item {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border-left: 3px solid #f4a261;
    transition: all 0.2s ease;
    margin: 0 6px;
}

.donation-item:hover {
    background: rgba(231, 111, 45, 0.5);
    transform: translateY(-2px);
    border-left-color: white;
}

.donation-icon {
    font-size: 1.1rem;
    color: #f4a261;
    width: 28px;
    text-align: center;
}

.donation-info {
    display: inline-flex;
    align-items: baseline;
    gap: 0.6rem;
    flex-wrap: nowrap;
}

.donation-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffe0b5;
    background: rgba(0,0,0,0.2);
    padding: 2px 8px;
    border-radius: 20px;
}

.donation-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.2px;
    background: rgba(0,0,0,0.2);
    padding: 2px 8px;
    border-radius: 20px;
}

.marquee-copy-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.7rem;
    transition: 0.2s;
    margin-left: 6px;
}

.marquee-copy-btn:hover {
    background: white;
    color: #e76f2d;
    transform: scale(1.08);
}

.marquee-divider {
    display: inline-flex;
    align-items: center;
    color: #f4a261;
    font-size: 0.8rem;
    margin: 0 4px;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.donation-marquee-strip:hover .marquee-content {
    animation-play-state: paused;
}

.copy-toast-marquee {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0f2b3d;
    color: #fef9f0;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 9999;
    transition: transform 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
    pointer-events: none;
    backdrop-filter: blur(8px);
    border: 1px solid #f4a261;
}

.copy-toast-marquee.show {
    transform: translateX(-50%) translateY(0);
}

@media (min-width: 768px) {
    .donation-marquee-strip {
        min-height: 2cm;
    }
}

@media (max-width: 640px) {
    .donation-item {
        padding: 0.3rem 0.9rem;
        gap: 0.6rem;
    }
    .donation-value {
        font-size: 0.7rem;
    }
    .donation-label {
        font-size: 0.6rem;
    }
    .marquee-copy-btn {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }
    .marquee-content {
        gap: 1rem;
        animation: scrollMarquee 22s linear infinite;
    }
}

@media (max-width: 480px) {
    .donation-value {
        font-size: 0.65rem;
    }
    .donation-item {
        padding: 0.25rem 0.7rem;
    }
}

.donation-marquee-strip {
    cursor: pointer;
}

/* ========== EVENTS SECTION - MODERN GRADIENT THEME WITH OWL CAROUSEL ========== */
.events-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef9f0 0%, #fff5e6 100%);
    position: relative;
    overflow: hidden;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="%23e76f2d" opacity="0.1"/><circle cx="90" cy="20" r="3" fill="%23f4a261" opacity="0.1"/><circle cx="50" cy="80" r="4" fill="%23e76f2d" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    color: #e76f2d;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f2b3d;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e76f2d, #f4a261);
    border-radius: 2px;
}

.section-description {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.events-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.event-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    margin: 15px 10px;
}

.event-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(231, 111, 45, 0.15);
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card-modern:hover .event-image img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e76f2d;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.event-badge.emergency {
    background: #dc3545;
    animation: pulse-badge 1.5s infinite;
}

.event-badge.completed {
    background: #28a745;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.event-content {
    padding: 25px;
}

.event-category {
    display: inline-block;
    color: #e76f2d;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.event-category i {
    margin-right: 5px;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f2b3d;
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.event-progress {
    flex: 1;
    margin-right: 15px;
}

.progress-bar-custom {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e76f2d, #f4a261);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.7rem;
    color: #999;
}

.event-donate-btn {
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.event-donate-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(231, 111, 45, 0.3);
}

.events-carousel-container .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.events-carousel-container .owl-nav button {
    position: absolute;
    pointer-events: auto;
    width: 45px;
    height: 45px;
    background: #e76f2d !important;
    color: white !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-carousel-container .owl-nav button:hover {
    background: #f4a261 !important;
    transform: scale(1.1);
}

.events-carousel-container .owl-nav .owl-prev {
    left: -20px;
}

.events-carousel-container .owl-nav .owl-next {
    right: -20px;
}

.events-carousel-container .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.events-carousel-container .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.events-carousel-container .owl-dots .owl-dot.active span {
    background: #e76f2d;
    width: 30px;
    border-radius: 10px;
}

.events-carousel-container .owl-dots .owl-dot:hover span {
    background: #f4a261;
}

/* ========== MEDICAL CASES SECTION  ========== */
    .medical-cases-section {
        padding: 60px 0;
        background: #f8f4ef;
        position: relative;
    }

    /* Simple divider line */
    .medical-cases-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, #e76f2d, #f4a261);
        border-radius: 3px;
    }

    .medical-grid-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 30px;
    }

    /* 3-Column Grid - Cards exactly 300px width */
    .medical-grid {
        display: grid;
        grid-template-columns: repeat(3, 300px);
        justify-content: center;
        gap: 25px;
        margin-top: 20px;
    }

    /* Medical Card - Fixed width 300px */
    .medical-card {
        width: 300px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid #eee;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .medical-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(231, 111, 45, 0.12);
        border-color: #f4a261;
    }

    .medical-card-inner {
        display: flex;
        flex-direction: column;
    }

    /* Image Section - Fixed 300px width × 150px height */
    .medical-img {
        position: relative;
        width: 300px;
        height: 150px;
        overflow: hidden;
        background: #e9ecef;
    }

    .medical-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .medical-card:hover .medical-img img {
        transform: scale(1.05);
    }

    .medical-urgency {
        position: absolute;
        top: 8px;
        right: 8px;
        background: #dc3545;
        color: white;
        font-size: 0.6rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 20px;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    /* Content Area - Only description and link */
    .medical-info {
        padding: 14px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    /* Description text */
    .medical-description {
        font-size: 0.85rem;
        line-height: 1.45;
        color: #2c3e4e;
        margin-bottom: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 56px;
        font-weight: 500;
    }

    /* Link to details page */
    .details-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: transparent;
        color: #e76f2d;
        font-weight: 700;
        font-size: 0.8rem;
        text-decoration: none;
        padding: 6px 0;
        border-bottom: 2px solid #ffe0cc;
        width: fit-content;
        transition: all 0.25s ease;
        margin-top: auto;
    }

    .details-link i {
        font-size: 0.7rem;
        transition: transform 0.2s;
    }

    .details-link:hover {
        color: #c7491a;
        border-bottom-color: #e76f2d;
        gap: 10px;
    }

    .details-link:hover i {
        transform: translateX(4px);
    }

    /* View All Button */
    .medical-view-all {
        text-align: center;
        margin-top: 40px;
    }

    .medical-view-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: #e76f2d;
        padding: 10px 28px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        border: 2px solid #e76f2d;
    }

    .medical-view-btn:hover {
        background: #e76f2d;
        color: white;
        transform: translateY(-2px);
    }

    .medical-view-btn i {
        transition: transform 0.3s;
    }

    .medical-view-btn:hover i {
        transform: translateX(4px);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
        .medical-grid {
            grid-template-columns: repeat(2, 300px);
            gap: 20px;
        }
    }

    @media (max-width: 680px) {
        .medical-grid {
            grid-template-columns: 300px;
            gap: 18px;
        }
        .medical-grid-container {
            padding: 0 20px;
        }
        .medical-cases-section {
            padding: 50px 0;
        }
    }

    @media (max-width: 480px) {
        .medical-card {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }
        .medical-img {
            width: 100%;
            height: 150px;
        }
        .medical-cases-section {
            padding: 40px 0;
        }
    }

/* ========== SPECIAL CASES SECTION ========== */
.special-cases-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2b3d 0%, #1a3a4f 100%);
    position: relative;
    overflow: hidden;
}

.special-cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="3" fill="%23e76f2d" opacity="0.08"/><circle cx="80" cy="70" r="4" fill="%23f4a261" opacity="0.08"/><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.05"/></svg>') repeat;
    pointer-events: none;
}

.special-cases-section .section-header h2 {
    color: #ffffff;
}

.special-cases-section .section-header h2:after {
    background: linear-gradient(90deg, #e76f2d, #f4a261);
}

.special-cases-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.special-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    border-radius: 20px;
}

.special-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.special-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateX(50px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.special-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    z-index: 2;
}

.special-slide-img {
    flex: 0 0 40%;
    height: 400px;
    overflow: hidden;
}

.special-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.special-slide:hover .special-slide-img img {
    transform: scale(1.05);
}

.special-slide-content {
    flex: 1;
    padding: 40px;
}

.special-slide-content h3 {
    font-size: 1.8rem;
    color: #0f2b3d;
    margin-bottom: 20px;
    font-weight: 700;
}

.special-slide-content p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1rem;
}

.special-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 111, 45, 0.3);
}

.special-read-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 111, 45, 0.4);
    background: linear-gradient(135deg, #c95f22, #e76f2d);
}

.special-read-btn i {
    transition: transform 0.3s;
}

.special-read-btn:hover i {
    transform: translateX(5px);
}

.special-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.special-dots-container {
    display: flex;
    gap: 12px;
}

.special-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.special-dot.active {
    background: #e76f2d;
    width: 30px;
    border-radius: 20px;
}

.special-dot:hover {
    background: #f4a261;
}

.special-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.special-nav-btn:hover {
    background: #e76f2d;
    transform: scale(1.1);
    border-color: #e76f2d;
}

/* SECTION */
.education-support-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff8f0, #ffe8d6);
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 25px;
}

.hindi-caption {
    font-size: 0.9rem;
    color: #e76f2d;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.education-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.education-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(231,111,45,0.25);
}

.education-img {
    height: 130px;
    position: relative;
}

.education-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge {
    position: absolute;
    top: 8px;
    padding: 4px 10px;
    font-size: 0.6rem;
    border-radius: 20px;
    font-weight: bold;
}

.urgent {
    left: 8px;
    background: #ff4d4d;
    color: white;
}

.verified {
    right: 8px;
    background: #4caf50;
    color: white;
}

.education-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.education-info h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #222;
}

.small-text {
    font-size: 0.7rem;
    color: #777;
}

.education-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff914d);
    color: white;
    padding: 7px;
    border-radius: 25px;
    text-align: center;
    font-size: 0.7rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.education-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255,107,107,0.4);
}

.education-view-more {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    border: 2px solid #e76f2d;
    padding: 7px 20px;
    border-radius: 25px;
    color: #e76f2d;
    text-decoration: none;
    font-size: 0.85rem;
}

@media (max-width: 1000px) {
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .education-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CHARITY SECTION ========== */
.charity-parallax-section {
    position: relative;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/2.webp');    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.charity-parallax-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 43, 61, 0.85), rgba(26, 58, 79, 0.9));
    z-index: -1;
    pointer-events: none;
}

.charity-parallax-section .container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    background: transparent;
}

.charity-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.occasion-options {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.occasion-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    width: 220px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.occasion-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(244, 162, 97, 0.5);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

.occasion-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(231, 111, 45, 0.3), rgba(244, 162, 97, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(244, 162, 97, 0.4);
}

.occasion-card:hover .occasion-icon-wrapper {
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    transform: scale(1.05);
}

.occasion-icon-wrapper img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.occasion-card h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.occasion-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    color: white;
    padding: 14px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 111, 45, 0.4);
}

.donate-btn i {
    transition: transform 0.3s;
}

.donate-btn:hover i {
    transform: translateX(5px);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #f4a261;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(244, 162, 97, 0.4);
}

.download-btn:hover {
    background: rgba(231, 111, 45, 0.25);
    color: white;
    transform: translateY(-3px);
    border-color: #e76f2d;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .charity-parallax-section .container {
        padding: 50px 20px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-description {
        font-size: 0.9rem;
    }
    .occasion-card {
        width: 180px;
        padding: 20px 15px;
    }
    .occasion-icon-wrapper {
        width: 65px;
        height: 65px;
    }
    .occasion-icon-wrapper img {
        width: 35px;
        height: 35px;
    }
    .occasion-card h3 {
        font-size: 1rem;
    }
    .donate-btn, .download-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .occasion-options {
        gap: 15px;
    }
    .occasion-card {
        width: 160px;
        padding: 15px 12px;
    }
    .occasion-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    .occasion-icon-wrapper img {
        width: 30px;
        height: 30px;
    }
    .occasion-card h3 {
        font-size: 0.85rem;
    }
    .donate-btn, .download-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.3rem;
    }
    .section-subtitle {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    .occasion-card {
        width: 140px;
        padding: 12px 10px;
    }
    .occasion-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    .occasion-icon-wrapper img {
        width: 26px;
        height: 26px;
    }
    .occasion-card h3 {
        font-size: 0.75rem;
    }
}

/* Our Project Section */
#our-project {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef9f0 0%, #fff5e6 100%);
    position: relative;
    overflow: hidden;
}

#our-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="%23e76f2d" opacity="0.1"/><circle cx="90" cy="20" r="3" fill="%23f4a261" opacity="0.1"/><circle cx="50" cy="80" r="4" fill="%23e76f2d" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.sec-title1 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.sec-title1 h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f2b3d;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.sec-title1 h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e76f2d, #f4a261);
    border-radius: 2px;
}

.sec-title1 p {
    color: #666;
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.wave-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.wave {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23e76f2d" opacity="0.1"></path></svg>') repeat-x;
    background-size: 1200px 50px;
    pointer-events: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 0;
    padding: 0 20px;
}

.col-md-4 {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 280px;
}

.box {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    padding: 0 0 25px 0;
    text-align: center;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(231, 111, 45, 0.15);
}

.box .img-thumbnail {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
    border: none;
    padding: 0;
    background: transparent;
}

.box:hover .img-thumbnail {
    transform: scale(1.05);
}

.box h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f2b3d;
    margin: 20px 20px 12px;
    padding: 0;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 20px 20px;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.thm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    color: white;
    padding: 10px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin: 0 20px 10px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.thm-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(231, 111, 45, 0.3);
    background: linear-gradient(135deg, #c95f22, #e76f2d);
    color: white;
    text-decoration: none;
}

.thm-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.thm-btn:hover i {
    transform: translateX(3px);
}

.redhearts {
    color: #ff6b6b;
}

.ribbon {
    position: absolute;
    top: 15px;
    left: -7px;
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 0 20px 20px 0;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    font-family: 'Inter', sans-serif;
    animation: pulse-badge 1.5s infinite;
}

.ribbon:before {
    content: '';
    position: absolute;
    top: 0;
    left: -7px;
    width: 7px;
    height: 100%;
    background: #a71d2a;
    border-radius: 3px 0 0 3px;
}

.col-12 {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

.col-12 .thm-btn {
    background: transparent;
    border: 2px solid #e76f2d;
    color: #e76f2d;
    padding: 12px 35px;
    font-size: 0.9rem;
}

.col-12 .thm-btn:hover {
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.box {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

.box:nth-child(1) { animation-delay: 0.1s; }
.box:nth-child(2) { animation-delay: 0.3s; }
.box:nth-child(3) { animation-delay: 0.5s; }

@media (max-width: 1100px) {
    .sec-title1 h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    #our-project {
        padding: 60px 0;
    }
    .col-md-4 {
        flex: 0 0 calc(50% - 30px);
    }
    .box h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .row {
        gap: 25px;
        padding: 0 15px;
    }
    .col-md-4 {
        flex: 0 0 calc(100% - 30px);
        max-width: 400px;
        margin: 0 auto;
    }
    .box .img-thumbnail {
        height: 200px;
    }
    .box h2 {
        font-size: 1.2rem;
        margin: 18px 18px 10px;
    }
    .box p {
        font-size: 0.85rem;
        margin: 0 18px 18px;
    }
    .sec-title1 h2 {
        font-size: 1.8rem;
    }
    .sec-title1 p {
        font-size: 0.95rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    #our-project {
        padding: 50px 0;
    }
    .sec-title1 {
        margin-bottom: 40px;
    }
    .sec-title1 h2 {
        font-size: 1.6rem;
    }
    .box .img-thumbnail {
        height: 180px;
    }
    .box h2 {
        font-size: 1.1rem;
        margin: 15px 15px 8px;
    }
    .box p {
        font-size: 0.8rem;
        margin: 0 15px 15px;
    }
    .thm-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
        margin: 0 15px 10px;
    }
    .col-12 .thm-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    .ribbon {
        font-size: 0.6rem;
        padding: 4px 12px;
    }
}

/* ANIMAL RESCUE HERO BANNER */
.animal-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-collage-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.collage-img {
    position: absolute;
    object-fit: cover;
    opacity: 0.35;
    transition: all 0.5s ease;
}

.collage-img-1 {
    top: 0;
    left: 0;
    width: 35%;
    height: 50%;
    object-position: center;
}

.collage-img-2 {
    top: 0;
    right: 0;
    width: 30%;
    height: 45%;
    object-position: center;
}

.collage-img-3 {
    bottom: 0;
    left: 0;
    width: 40%;
    height: 55%;
    object-position: center;
}

.collage-img-4 {
    bottom: 0;
    right: 0;
    width: 35%;
    height: 50%;
    object-position: center;
}

.collage-img-5 {
    top: 30%;
    left: 25%;
    width: 25%;
    height: 40%;
    object-position: center;
    opacity: 0.25;
}

.animal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 43, 61, 0.85) 0%, rgba(26, 58, 79, 0.9) 100%);
    z-index: 2;
}

.animal-hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 60px 30px;
    animation: fadeInUp 0.8s ease-out;
}

.paw-decoration {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.paw-decoration i {
    font-size: 35px;
    color: #f4a261;
    opacity: 0.9;
    animation: bounce 2s infinite;
}

.paw-decoration i:nth-child(2) {
    animation-delay: 0.2s;
}

.paw-decoration i:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animal-hero h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.animal-hero h2 span {
    color: #f4a261;
    position: relative;
    display: inline-block;
}

.animal-hero h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e76f2d, #f4a261);
    border-radius: 2px;
}

.animal-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    color: white;
    padding: 14px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 111, 45, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 111, 45, 0.5);
    background: linear-gradient(135deg, #c95f22, #e76f2d);
    color: white;
}

.btn-primary-custom i {
    transition: transform 0.3s;
}

.btn-primary-custom:hover i {
    transform: translateX(5px);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #f4a261;
    color: #f4a261;
    padding: 14px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #f4a261;
    color: #0f2b3d;
    transform: translateY(-3px);
    border-color: #f4a261;
}

@media (max-width: 968px) {
    .animal-hero {
        min-height: 500px;
    }
    .animal-hero h2 {
        font-size: 2.5rem;
    }
    .animal-hero p {
        font-size: 1rem;
    }
    .collage-img {
        opacity: 0.25;
    }
}

@media (max-width: 768px) {
    .animal-hero {
        min-height: 550px;
    }
    .animal-hero h2 {
        font-size: 1.8rem;
    }
    .animal-hero p {
        font-size: 0.95rem;
    }
    .btn-primary-custom, .btn-outline-custom {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .collage-img-2, .collage-img-4, .collage-img-5 {
        opacity: 0.15;
    }
}

@media (max-width: 480px) {
    .animal-hero h2 {
        font-size: 1.5rem;
    }
    .paw-decoration i {
        font-size: 25px;
    }
    .btn-primary-custom, .btn-outline-custom {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

.animal-hero:hover .collage-img {
    opacity: 0.45;
    transition: opacity 0.5s ease;
}

/* ========== UPCOMING PROJECTS - TIMELINE STYLE ========== */

.upcoming-timeline {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2b3d 0%, #1a3a4f 100%);
    position: relative;
    overflow: hidden;
}

.upcoming-timeline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='10' cy='10' r='2' fill='%23e76f2d' opacity='0.1'/%3E%3Ccircle cx='90' cy='20' r='3' fill='%23f4a261' opacity='0.1'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.timeline-header .subtitle {
    color: #f4a261;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-header h2 {
    font-size: 2.7rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.timeline-header h2 span {
    color: #f4a261;
}

.timeline-header p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    position: relative;
}

.timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(231,111,45,0.25);
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    position: relative;
    flex-wrap: wrap;
}

.timeline-img {
    width: 140px;
    height: 140px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-img img {
    transform: scale(1.06);
}

.timeline-info {
    flex: 1;
    min-width: 250px;
    position: relative;
    z-index: 2;
}

.timeline-info h3 {
    font-size: 1.6rem;
    color: #0f2b3d;
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-info p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.timeline-btn {
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(231,111,45,0.3);
}

.timeline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(231,111,45,0.4);
}

.timeline-btn i {
    transition: transform 0.3s ease;
}

.timeline-btn:hover i {
    transform: translateX(4px);
}

/* ========== MOBILE RESPONSIVE ========== */

@media (max-width: 768px) {

    .upcoming-timeline {
        padding: 60px 0;
    }

    .timeline-header h2 {
        font-size: 2rem;
    }

    .timeline-container {
        padding: 0 15px;
    }

    .timeline-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .timeline-img {
        width: 100%;
        height: 220px;
    }

    .timeline-info h3 {
        font-size: 1.4rem;
    }

    .timeline-btn {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {

    .timeline-header h2 {
        font-size: 1.7rem;
    }

    .timeline-info p {
        font-size: 0.95rem;
    }

    .timeline-btn {
        width: 100%;
        justify-content: center;
    }
}

/* FAQ SECTION */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef9f0, #fff5e6);
}

.sec-title1 {
    text-align: center;
    margin-bottom: 50px;
}

.sec-title1 h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.faq-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 20px;
}

.faq-column {
    flex: 1;
}

.panel {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.panel-heading {
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    cursor: pointer;
}

.panel-title a {
    display: flex;
    align-items: center;
    padding: 18px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.number-button {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.panel-title a::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: 0.3s;
}

.panel-title a.active::after {
    content: '−';
}

.panel-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.panel-body {
    padding: 20px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.panel-body ul {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
    }
}

/* COUNTER SECTION */
.counter-section {
    background: linear-gradient(135deg, #fef9f0 0%, #fff5e6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="%23e76f2d" opacity="0.1"/><circle cx="90" cy="20" r="3" fill="%23f4a261" opacity="0.1"/><circle cx="50" cy="80" r="4" fill="%23e76f2d" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.counter-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.counter-header {
    margin-bottom: 40px;
}

.counter-header .impact-text {
    color: #e76f2d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.counter-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f2b3d;
    margin: 0;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.counter-header h2 span {
    color: #e76f2d;
    position: relative;
    display: inline-block;
}

.counter-header h2 span:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e76f2d, #f4a261);
    border-radius: 2px;
}

.counter-header .year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
}

.counter-subtitle {
    color: #555;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    position: relative;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(231, 111, 45, 0.25);
}

.stat-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.stat-card:hover .stat-card-bg {
    transform: scale(1.05);
}

.stat-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 43, 61, 0.85), rgba(26, 58, 79, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f4a261;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-bar {
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    padding: 30px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(231, 111, 45, 0.3);
    transition: all 0.3s ease;
}

.cta-bar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 111, 45, 0.4);
}

.cta-bar p {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.cta-bar p i {
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.counter-divider {
    margin: 40px 0 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e76f2d, #f4a261, #e76f2d, transparent);
    max-width: 300px;
    margin: 40px auto 0;
}

@media (max-width: 991px) {
    .counter-section {
        padding: 60px 0;
    }
    .counter-header h2 {
        font-size: 2.2rem;
    }
    .counter-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    .stat-card {
        width: 220px;
        height: 220px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .cta-bar p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 20px;
    }
    .stat-card {
        width: calc(50% - 20px);
        min-width: 160px;
        height: 200px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-title {
        font-size: 0.85rem;
    }
    .counter-header h2 {
        font-size: 1.8rem;
    }
    .cta-bar {
        padding: 20px;
    }
    .cta-bar p {
        font-size: 1rem;
    }
}

@media (max-width: 550px) {
    .stat-card {
        width: 100%;
        max-width: 250px;
        height: 220px;
    }
    .counter-header h2 {
        font-size: 1.5rem;
    }
    .counter-subtitle {
        font-size: 0.9rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef9f0 0%, #fff5e6 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="%23e76f2d" opacity="0.1"/><circle cx="90" cy="20" r="3" fill="%23f4a261" opacity="0.1"/><circle cx="50" cy="80" r="4" fill="%23e76f2d" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.testimonials-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section .section-subtitle {
    color: #e76f2d;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f2b3d;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.testimonials-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e76f2d, #f4a261);
    border-radius: 2px;
}

.testimonials-section .section-description {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-stage {
    display: flex;
    padding: 10px 0;
}

.testimonial-carousel .owl-item {
    display: flex;
    height: auto;
}

.testimonial-card {
    padding: 15px;
    height: auto;
}

.testimonial-card-inner {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(231, 111, 45, 0.15);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: #f4a261;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e76f2d;
    flex-shrink: 0;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f2b3d;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 0.75rem;
    color: #e76f2d;
    font-weight: 500;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.testimonial-carousel .owl-nav button {
    position: absolute;
    pointer-events: auto;
    width: 45px;
    height: 45px;
    background: #e76f2d !important;
    color: white !important;
    border-radius: 50% !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav button:hover {
    background: #f4a261 !important;
    transform: scale(1.1);
}

.testimonial-carousel .owl-nav .owl-prev {
    left: -20px;
}

.testimonial-carousel .owl-nav .owl-next {
    right: -20px;
}

.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonial-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dots .owl-dot.active span {
    background: #e76f2d;
    width: 30px;
    border-radius: 10px;
}

.testimonial-carousel .owl-dots .owl-dot:hover span {
    background: #f4a261;
}

@media (max-width: 1100px) {
    .testimonials-section .section-title {
        font-size: 2.2rem;
    }
    .testimonial-carousel .owl-nav .owl-prev {
        left: -10px;
    }
    .testimonial-carousel .owl-nav .owl-next {
        right: -10px;
    }
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonials-section .container {
        padding: 0 20px;
    }
    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonials-section .section-title {
        font-size: 1.8rem;
    }
    .testimonial-card-inner {
        padding: 25px;
    }
    .testimonial-text {
        font-size: 0.85rem;
    }
    .testimonial-img {
        width: 48px;
        height: 48px;
    }
    .testimonial-info h4 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 0;
    }
    .testimonials-section .section-title {
        font-size: 1.5rem;
    }
    .testimonials-section .section-description {
        font-size: 0.85rem;
        padding: 0 15px;
    }
    .testimonial-card-inner {
        padding: 20px;
    }
    .testimonial-text {
        font-size: 0.8rem;
    }
    .testimonial-quote i {
        font-size: 1.5rem;
    }
}

/* PARTNERS & SPONSORS */
.partners-single-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 60px 40px;
}

.sub-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0e6d8;
}

.sub-header-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e76f2d, #f4a261);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-header-icon i {
    font-size: 1.3rem;
    color: white;
}

.sub-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f2b3d;
}

.sub-header p {
    color: #e76f2d;
    font-size: 0.8rem;
    margin-top: 4px;
}

.partner-slide {
    background: #fef9f0;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    margin: 15px 12px;
    transition: all 0.3s ease;
    border: 1px solid #f0e6d8;
    cursor: pointer;
}

.partner-slide:hover {
    transform: translateY(-8px);
    background: white;
    border-color: #f4a261;
    box-shadow: 0 15px 30px rgba(231, 111, 45, 0.1);
}

.partner-slide img {
    max-width: 100%;
    height: 90px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-slide h4 {
    font-size: 0.95rem;
    color: #0f2b3d;
    margin-bottom: 5px;
    font-weight: 700;
}

.partner-slide p {
    font-size: 0.7rem;
    color: #e76f2d;
    font-weight: 500;
}

.hospital-carousel .owl-nav button,
.supporters-carousel .owl-nav button {
    background: #e76f2d !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    font-size: 1.2rem !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hospital-carousel .owl-nav button:hover,
.supporters-carousel .owl-nav button:hover {
    background: #f4a261 !important;
    transform: translateY(-50%) scale(1.1);
}

.hospital-carousel .owl-nav .owl-prev,
.supporters-carousel .owl-nav .owl-prev {
    left: -15px;
}

.hospital-carousel .owl-nav .owl-next,
.supporters-carousel .owl-nav .owl-next {
    right: -15px;
}

.hospital-carousel .owl-dots,
.supporters-carousel .owl-dots {
    margin-top: 20px;
}

.hospital-carousel .owl-dots .owl-dot span,
.supporters-carousel .owl-dots .owl-dot span {
    background: #ccc !important;
}

.hospital-carousel .owl-dots .owl-dot.active span,
.supporters-carousel .owl-dots .owl-dot.active span {
    background: #e76f2d !important;
}

@media (max-width: 768px) {
    .partners-single-container {
        padding: 40px 20px;
        margin: 20px;
    }
    .sub-header h3 {
        font-size: 1.2rem;
    }
    .sub-header-icon {
        width: 38px;
        height: 38px;
    }
    .sub-header-icon i {
        font-size: 1rem;
    }
    .hospital-carousel .owl-nav .owl-prev,
    .supporters-carousel .owl-nav .owl-prev {
        left: -5px;
    }
    .hospital-carousel .owl-nav .owl-next,
    .supporters-carousel .owl-nav .owl-next {
        right: -5px;
    }
    .hospital-carousel .owl-nav button,
    .supporters-carousel .owl-nav button {
        width: 32px;
        height: 32px;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .hospital-carousel .owl-nav .owl-prev,
    .hospital-carousel .owl-nav .owl-next,
    .supporters-carousel .owl-nav .owl-prev,
    .supporters-carousel .owl-nav .owl-next {
        display: none;
    }
}

/* Sticky effect */
.stricky {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Responsive Styles for Slider and Other Sections */
@media (max-width: 1100px) {
    .slider-title {
        font-size: 3.5rem;
    }
    .theme-slider-container {
        height: 600px;
    }
    .message-container {
        padding: 0 30px;
        gap: 25px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .events-carousel-container {
        padding: 0 30px;
    }
    .events-carousel-container .owl-nav .owl-prev {
        left: -10px;
    }
    .events-carousel-container .owl-nav .owl-next {
        right: -10px;
    }
    .special-slide {
        flex-direction: column;
    }
    .special-slide-img {
        flex: 0 0 300px;
        width: 100%;
        height: 300px;
    }
    .special-slider-container {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .theme-slider-container {
        height: 550px;
    }
    .slider-title {
        font-size: 2.8rem;
    }
    .slider-content {
        padding: 0 30px;
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .events-carousel-container {
        padding: 0 20px;
    }
    .events-carousel-container .owl-nav .owl-prev,
    .events-carousel-container .owl-nav .owl-next {
        display: none;
    }
    .special-slider-container {
        padding: 0 20px;
    }
    .special-slide-content {
        padding: 30px;
    }
    .special-slide-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .special-slide-img {
        height: 250px;
    }
    .special-slide-content {
        padding: 25px;
    }
    .special-slide-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .theme-slider-container {
        height: 500px;
    }
    .slider-title {
        font-size: 2rem;
    }
    .slider-subtitle {
        font-size: 1rem;
    }
    .slider-description {
        font-size: 0.95rem;
    }
    .slider-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .slider-btn-primary, .slider-btn-secondary {
        text-align: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .slider-arrow {
        display: none;
    }
    .slider-content {
        padding: 0 20px;
    }
    .events-section {
        padding: 50px 0;
    }
    .special-cases-section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    .events-carousel-container {
        padding: 0 15px;
    }
    .event-title {
        font-size: 1.2rem;
    }
    .event-description {
        font-size: 0.8rem;
    }
    .event-donate-btn {
        padding: 6px 15px;
        font-size: 0.75rem;
    }
    .special-slider-container {
        padding: 0 15px;
    }
    .special-slide-content h3 {
        font-size: 1.2rem;
    }
    .special-read-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    .special-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}