/* =========================================
   ABOUT US PAGE - ISOLATED CSS
   All styles scoped under .aboutus-page
   ========================================= */

/* Body styles for aboutus page */
.aboutus-page {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

/* =========================================
   CONTAINER CENTERING (MATCHING INDEX.PHP)
   ========================================= */
.aboutus-page .aboutus-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (min-width: 576px) {
    .aboutus-page .aboutus-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 768px) {
    .aboutus-page .aboutus-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 992px) {
    .aboutus-page .aboutus-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        max-width: 1140px;
    }
}

@media (min-width: 1200px) {
    .aboutus-page .aboutus-container {
        max-width: 1320px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1400px) {
    .aboutus-page .aboutus-container {
        max-width: 1400px;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.aboutus-page .aboutus-hero-section {
    background: #fed7aa;
    padding: 6rem 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutus-page .aboutus-hero-title {
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .aboutus-page .aboutus-hero-title { 
        font-size: 3.5rem; 
    }
    .aboutus-page .aboutus-hero-span { 
        display: inline; 
    }
}

@media (max-width: 767px) {
    .aboutus-page .aboutus-hero-title { 
        font-size: 2.2rem; 
    }
    .aboutus-page .aboutus-hero-span { 
        display: block; 
        margin-bottom: 0.5rem; 
    }
}

.aboutus-page .aboutus-hero-title .aboutus-text-primary { 
    color: #F07E00 !important; 
}

.aboutus-page .aboutus-hero-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.aboutus-page .aboutus-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.aboutus-page .aboutus-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #1AA75B;
    margin: 10px auto 0;
}

/* =========================================
   OUR STORY SECTION
   ========================================= */
.aboutus-page .aboutus-story-section { 
    padding: 5rem 0;
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.aboutus-page .aboutus-story-section * {
    box-sizing: border-box;
}

.aboutus-page .aboutus-story-section .aboutus-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
}

.aboutus-page .aboutus-story-section .aboutus-row {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.aboutus-page .aboutus-story-section .col-lg-6 {
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.aboutus-page .aboutus-story-text {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.aboutus-page .aboutus-story-image {
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop Layout - Split Screen */
@media (min-width: 1024px) {
    .aboutus-page .aboutus-story-section .aboutus-row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 60px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .aboutus-page .aboutus-story-section .col-lg-6 {
        flex: 1;
        max-width: 50%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .aboutus-page .aboutus-story-text {
        text-align: left;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .aboutus-page .aboutus-story-image {
        height: 500px;
        max-height: 500px;
        width: 100%;
        object-fit: cover;
        margin: 0;
    }
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .aboutus-page .aboutus-story-section {
        padding: 4rem 0;
    }
    
    .aboutus-page .aboutus-story-section .aboutus-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .aboutus-page .aboutus-story-section .aboutus-row {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        gap: 2rem;
    }
    
    .aboutus-page .aboutus-story-section .col-lg-6 {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .aboutus-page .aboutus-story-text {
        text-align: center;
        width: 100%;
        padding: 0 1rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }
    
    .aboutus-page .aboutus-story-image {
        height: 400px;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .aboutus-page .aboutus-story-section {
        padding: 3rem 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .aboutus-page .aboutus-story-section .aboutus-container {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .aboutus-page .aboutus-story-section .aboutus-row {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .aboutus-page .aboutus-story-section .col-lg-6 {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .aboutus-page .aboutus-story-text {
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.75;
        box-sizing: border-box;
    }
    
    .aboutus-page .aboutus-story-image {
        height: 300px;
        margin-bottom: 1.5rem;
        width: 90%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        box-sizing: border-box;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .aboutus-page .aboutus-story-section {
        padding: 2rem 0;
        width: 100%;
        max-width: 100vw;
    }
    
    .aboutus-page .aboutus-story-section .aboutus-container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .aboutus-page .aboutus-story-text {
        text-align: center;
        padding: 0 15px;
        font-size: 1rem;
        line-height: 1.7;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .aboutus-page .aboutus-story-image {
        height: 250px;
        border-radius: 0.75rem;
        width: 90%;
        max-width: 90%;
        margin: 0 auto 1.5rem auto;
        box-sizing: border-box;
    }
}

/* =========================================
   MISSION VISION VALUES
   ========================================= */
.aboutus-page .aboutus-mvv-section { 
    background: #f9fafb;
    padding: 5rem 0;
    overflow: hidden;
}

.aboutus-page .aboutus-mvv-section .aboutus-container {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.aboutus-page .aboutus-mvv-section .aboutus-row {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.aboutus-page .aboutus-mvv-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.aboutus-page .aboutus-mvv-card:hover {
    border-color: #F07E00;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Desktop: Force 3-column grid layout */
@media (min-width: 1024px) {
    .aboutus-page .aboutus-mvv-section .aboutus-row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px;
        align-items: stretch;
    }

    .aboutus-page .aboutus-mvv-section .aboutus-row > * {
        width: 100% !important;
        max-width: none !important;
        flex: none !important;
    }

    .aboutus-page .aboutus-mvv-card {
        width: 100% !important;
        max-width: none !important;
    }
}

/* Mobile: Stack vertically */
@media (max-width: 1023px) {
    .aboutus-page .aboutus-mvv-section .aboutus-row {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .aboutus-page .aboutus-mvv-section .aboutus-row {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .aboutus-page .aboutus-mvv-section {
        padding: 3rem 0;
    }
    
    .aboutus-page .aboutus-mvv-section .aboutus-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .aboutus-page .aboutus-mvv-card {
        aspect-ratio: auto;
        min-height: 200px;
    }
}

.aboutus-page .aboutus-mvv-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #fed7aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F07E00;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.aboutus-page .aboutus-mvv-title { 
    font-weight: 700; 
    margin-bottom: 0.5rem; 
    font-size: 1.35rem; 
}

.aboutus-page .aboutus-mvv-text { 
    font-size: 0.95rem; 
    color: #6b7280; 
    line-height: 1.5; 
}

/* =========================================
   WHAT WE DO
   ========================================= */
.aboutus-page .aboutus-what-we-do-section { 
    padding: 5rem 0; 
    background: white; 
}

.aboutus-page .aboutus-programs-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile Default */
    gap: 2rem;
    /* Let the grid expand with the wider container */
    max-width: 100%; 
    margin: 0 auto;
}

/* Laptop: 2 Columns */
@media (min-width: 992px) {
    .aboutus-page .aboutus-programs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.aboutus-page .aboutus-program-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    padding: 1rem;
    background: transparent; 
}

.aboutus-page .aboutus-program-icon { 
    font-size: 2.5rem; 
    flex-shrink: 0; 
}

.aboutus-page .aboutus-program-title { 
    font-weight: 700; 
    font-size: 1.25rem; 
    margin-bottom: 0.5rem; 
    color: #111827; 
}

.aboutus-page .aboutus-program-description { 
    color: #4b5563; 
    font-size: 1rem; 
    line-height: 1.6; 
    margin: 0; 
}

/* =========================================
   TEAM SECTION
   ========================================= */
.aboutus-page .aboutus-team-section { 
    padding: 5rem 0; 
    background: #f9fafb; 
}

.aboutus-page .aboutus-team-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.aboutus-page .aboutus-team-carousel-window {
    overflow: hidden;
    width: 100%;
    /* Let carousel expand with container */
    max-width: 100%;
}

.aboutus-page .aboutus-team-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px; 
}

.aboutus-page .aboutus-team-card {
    /* Desktop: Show 3 */
    min-width: calc(33.333% - 14px);
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Mobile: Show 1 */
@media (max-width: 991px) {
    .aboutus-page .aboutus-team-card {
        min-width: 100%;
    }
}

.aboutus-page .aboutus-team-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #F07E00;
}

.aboutus-page .aboutus-nav-arrow {
    background: white;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    font-size: 1.2rem;
}

.aboutus-page .aboutus-nav-arrow:hover { 
    background: #F07E00; 
    color: white; 
    border-color: #F07E00; 
}

/* =========================================
   SHIKSHA-NA-RUKE PAGE - ISOLATED CSS
   All styles scoped under .shiksha-page
   ========================================= */

.shiksha-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.shiksha-page {
    font-family: 'Inter', sans-serif;
    color: #111827;
    background: #ffffff;
    overflow-x: hidden;
}

.shiksha-page .shiksha-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hero Section */
.shiksha-page .shiksha-hero-section {
    background: #fed7aa;
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-hero-section {
        padding: 5rem 1rem;
    }
}

.shiksha-page .shiksha-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.shiksha-page .shiksha-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-hero-grid {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .shiksha-page .shiksha-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.shiksha-page .shiksha-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
    .shiksha-page .shiksha-hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-hero-title {
        font-size: 3.5rem;
    }
}

.shiksha-page .shiksha-hero-title .shiksha-text-primary {
    color: #F07E00;
}

.shiksha-page .shiksha-hero-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-hero-text {
        font-size: 1.25rem;
    }
}

.shiksha-page .shiksha-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-hero-buttons {
        gap: 1rem;
    }
}

.shiksha-page .shiksha-btn-primary {
    background: #f97316;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

.shiksha-page .shiksha-btn-primary:hover {
    background: #ea580c;
    color: white;
    transform: translateY(-2px);
}

.shiksha-page .shiksha-btn-outline {
    background: white;
    color: #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #d1d5db;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: inherit;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-btn-outline {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

.shiksha-page .shiksha-btn-outline:hover {
    border-color: #1AA75B;
    color: #1AA75B;
}

.shiksha-page .shiksha-hero-image {
    position: relative;
    height: 300px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    width: 100%;
}

@media (min-width: 480px) {
    .shiksha-page .shiksha-hero-image {
        height: 400px;
    }
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-hero-image {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .shiksha-page .shiksha-hero-image {
        height: 600px;
    }
}

.shiksha-page .shiksha-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mission Section */
.shiksha-page .shiksha-mission-section {
    padding: 5rem 0;
    background: white;
}

.shiksha-page .shiksha-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-section-title {
        font-size: 2.5rem;
    }
}

.shiksha-page .shiksha-section-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 1.5rem;
}

/* Programs Section */
.shiksha-page .shiksha-programs-section {
    padding: 5rem 0;
    background: #f0fdf4;
}

.shiksha-page .shiksha-programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-programs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.shiksha-page .shiksha-program-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.shiksha-page .shiksha-program-card:hover {
    border-color: #1AA75B;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.shiksha-page .shiksha-program-content {
    display: flex;
    gap: 1rem;
}

.shiksha-page .shiksha-program-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(26, 167, 91, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1AA75B;
    font-size: 2rem;
}

.shiksha-page .shiksha-program-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.shiksha-page .shiksha-program-description {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.shiksha-page .shiksha-program-beneficiaries {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1AA75B;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Impact Section */
.shiksha-page .shiksha-impact-section {
    padding: 5rem 0;
    background: white;
}

.shiksha-page .shiksha-impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .shiksha-page .shiksha-impact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.shiksha-page .shiksha-impact-image {
    position: relative;
    height: 400px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.shiksha-page .shiksha-impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shiksha-page .shiksha-impact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.shiksha-page .shiksha-impact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shiksha-page .shiksha-impact-item i {
    color: #1AA75B;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.shiksha-page .shiksha-impact-item span {
    color: #374151;
}

/* Stories Section with Carousel */
.shiksha-page .shiksha-stories-section {
    padding: 5rem 0;
    background: #f0fdf4;
}

.shiksha-page .shiksha-stories-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.shiksha-page .shiksha-stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shiksha-page .shiksha-story-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.shiksha-page .shiksha-story-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.shiksha-page .shiksha-story-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.shiksha-page .shiksha-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shiksha-page .shiksha-story-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F07E00, #1AA75B);
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.shiksha-modal-initials {
    width: 100%;
    height: 100%;
    font-size: 4rem;
    border-radius: 0;
}

.shiksha-page .shiksha-story-content {
    padding: 1.5rem;
}

.shiksha-page .shiksha-story-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.shiksha-page .shiksha-story-achievement {
    color: #1AA75B;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.shiksha-page .shiksha-story-text {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.6;
    font-style: italic;
}

/* Story Modal Styles */
.story-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.story-modal-content {
    background-color: #fff;
    border-radius: 1rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s;
}

.story-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.story-modal-body {
    display: flex;
    flex-direction: column;
}

.story-modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}

.story-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-modal-text {
    padding: 2rem;
}

.story-modal-name {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.story-modal-achievement {
    color: #1AA75B;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.story-modal-story {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
}

@media (max-width: 768px) {
    .story-modal-content {
        max-width: 95%;
        margin: 1rem;
    }
    
    .story-modal-image {
        height: 200px;
    }
    
    .story-modal-text {
        padding: 1.5rem;
    }
    
    .story-modal-name {
        font-size: 1.5rem;
    }
    
    .story-modal-achievement {
        font-size: 1rem;
    }
    
    .story-modal-story {
        font-size: 1rem;
    }
    
    .story-modal-close {
        right: 1rem;
        top: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.75rem;
    }
}

/* Story Modal Navigation Buttons */
.story-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 10002;
}

.story-modal-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.story-modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.story-modal-prev {
    left: 1rem;
}

.story-modal-next {
    right: 1rem;
}

@media (max-width: 768px) {
    .story-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .story-modal-prev {
        left: 0.5rem;
    }
    
    .story-modal-next {
        right: 0.5rem;
    }
}

.shiksha-page .shiksha-story-text::before {
    content: '"';
}

.shiksha-page .shiksha-story-text::after {
    content: '"';
}

/* Carousel Navigation */
.shiksha-page .shiksha-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.shiksha-page .shiksha-carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #374151;
    font-size: 1.25rem;
}

.shiksha-page .shiksha-carousel-arrow:hover {
    background: #1AA75B;
    border-color: #1AA75B;
    color: white;
}

.shiksha-page .shiksha-carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.shiksha-page .shiksha-carousel-arrow:disabled:hover {
    background: white;
    border-color: #e5e7eb;
    color: #374151;
}

/* Statistics Section */
.shiksha-page .shiksha-stats-section {
    padding: 5rem 0;
    background: #1AA75B;
    color: white;
}

.shiksha-page .shiksha-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.shiksha-page .shiksha-stat-item {
    text-align: center;
}

.shiksha-page .shiksha-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.shiksha-page .shiksha-stat-label {
    color: rgba(255,255,255,0.9);
}

/* Help Section - Enhanced */
.shiksha-page .shiksha-help-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fffbf5 0%, #ffffff 100%);
}

.shiksha-page .shiksha-help-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.shiksha-page .shiksha-help-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #f97316;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid #fed7aa;
}

.shiksha-page .shiksha-help-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-help-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.shiksha-page .shiksha-help-card {
    position: relative;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.shiksha-page .shiksha-help-card:hover {
    border-color: #f97316;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.shiksha-page .shiksha-help-card.shiksha-featured {
    border-color: #f97316;
    background: linear-gradient(180deg, #fffbf5 0%, #ffffff 100%);
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-help-card.shiksha-featured {
        transform: scale(1.05);
    }
}

.shiksha-page .shiksha-help-card.shiksha-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-help-card.shiksha-featured:hover {
        transform: scale(1.08) translateY(-8px);
    }
}

.shiksha-page .shiksha-help-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.shiksha-page .shiksha-help-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.shiksha-page .shiksha-help-icon i {
    font-size: 1.75rem;
    color: #f97316;
}

.shiksha-page .shiksha-help-card:hover .shiksha-help-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: scale(1.1);
}

.shiksha-page .shiksha-help-card:hover .shiksha-help-icon i {
    color: white;
}

.shiksha-page .shiksha-help-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.shiksha-page .shiksha-help-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.shiksha-page .shiksha-help-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.shiksha-page .shiksha-help-impact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
    font-size: 0.8rem;
    color: #059669;
    font-weight: 500;
}

.shiksha-page .shiksha-help-impact i {
    font-size: 1rem;
}

/* Progress Section */
.shiksha-page .shiksha-help-progress {
    max-width: 500px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.shiksha-page .shiksha-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.shiksha-page .shiksha-progress-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.shiksha-page .shiksha-progress-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #f97316;
}

.shiksha-page .shiksha-progress-bar {
    height: 10px;
    background: #f3f4f6;
    border-radius: 50px;
    overflow: hidden;
}

.shiksha-page .shiksha-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    border-radius: 50px;
    transition: width 1s ease;
    position: relative;
}

.shiksha-page .shiksha-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.shiksha-page .shiksha-progress-text {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 0.75rem;
}

/* CTA Section */
.shiksha-page .shiksha-help-cta {
    text-align: center;
}

.shiksha-page .shiksha-help-cta .shiksha-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.shiksha-page .shiksha-help-cta .shiksha-btn-primary i {
    font-size: 1.25rem;
}

.shiksha-page .shiksha-help-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.shiksha-page .shiksha-help-note i {
    color: #059669;
}

/* CTA Section */
.shiksha-page .shiksha-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    text-align: center;
}

.shiksha-page .shiksha-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .shiksha-page .shiksha-cta-title {
        font-size: 2.5rem;
    }
}

.shiksha-page .shiksha-cta-text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.shiksha-page .shiksha-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.shiksha-page .shiksha-btn-white {
    background: white;
    color: #f97316;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.shiksha-page .shiksha-btn-white:hover {
    background: #f1f5f9;
    color: #f97316;
}

.shiksha-page .shiksha-btn-outline-white {
    background: transparent;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.shiksha-page .shiksha-btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* =========================================
   WATER-DONATION PAGE - ISOLATED CSS
   All styles scoped under .water-page
   NO class names changed in HTML
   ========================================= */

.water-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.water-page body {
    font-family: 'Inter', sans-serif;
    color: #111827;
    background: #ffffff;
    overflow-x: hidden;
}

.water-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hero Section */
.water-page .water-hero-section {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .water-page .water-hero-section {
        padding: 5rem 1rem;
    }
}

.water-page .water-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.water-page .water-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .water-page .water-hero-grid {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .water-page .water-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.water-page .water-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
    .water-page .water-hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .water-page .water-hero-title {
        font-size: 3.5rem;
    }
}

.water-page .water-hero-title .water-text-primary {
    color: #0284c7;
}

.water-page .water-hero-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .water-page .water-hero-text {
        font-size: 1.25rem;
    }
}

.water-page .water-water-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .water-page .water-hero-buttons {
        gap: 1rem;
    }
}

.water-page .water-btn-primary {
    background: #f97316;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .water-page .water-btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

.water-page .water-btn-primary:hover {
    background: #ea580c;
    color: white;
    transform: translateY(-2px);
}

.water-page .water-btn-outline {
    background: white;
    color: #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #d1d5db;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: inherit;
}

@media (min-width: 768px) {
    .water-page .water-btn-outline {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

.water-page .water-btn-outline:hover {
    border-color: #0284c7;
    color: #0284c7;
}

.water-page .water-hero-image {
    position: relative;
    height: 300px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    width: 100%;
}

@media (min-width: 480px) {
    .water-page .water-hero-image {
        height: 400px;
    }
}

@media (min-width: 768px) {
    .water-page .water-hero-image {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .water-page .water-hero-image {
        height: 600px;
    }
}

.water-page .water-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission Section */
.water-page .mission-section {
    padding: 5rem 0;
    background: white;
}

.water-page .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    .water-page .section-title {
        font-size: 2.5rem;
    }
}

.water-page .section-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 1.5rem;
    font-family: 'Inter', sans-serif;
}

/* Initiatives Section */
.water-page .initiatives-section {
    padding: 5rem 0;
    background: #f0f9ff;
}

.water-page .initiatives-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .water-page .initiatives-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.water-page .initiative-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.water-page .initiative-card:hover {
    border-color: #0284c7;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.water-page .initiative-content {
    display: flex;
    gap: 1rem;
}

.water-page .initiative-icon {
    flex-shrink: 0;
    font-size: 2.5rem;
}

.water-page .initiative-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.water-page .initiative-description {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.water-page .initiative-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0284c7;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Challenge Section */
.water-page .challenge-section {
    padding: 5rem 0;
    background: white;
}

.water-page .challenge-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .water-page .challenge-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.water-page .challenge-image {
    position: relative;
    height: 400px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.water-page .challenge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.water-page .challenge-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.water-page .challenge-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.water-page .challenge-item i {
    color: #0284c7;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.water-page .challenge-item span {
    color: #374151;
    font-family: 'Inter', sans-serif;
}

/* Testimonials Section */
.water-page .testimonials-section {
    padding: 5rem 0;
    background: #f0f9ff;
}

.water-page .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .water-page .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.water-page .testimonial-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.water-page .testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.water-page .testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.water-page .testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.water-page .testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.water-page .testimonial-village {
    font-size: 0.875rem;
    color: #0284c7;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.water-page .testimonial-quote {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Statistics Section */
.water-page .stats-section {
    padding: 3rem 0;
    background: #0284c7;
    color: white;
    overflow-x: hidden;
}

.water-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .water-page .stats-section {
        padding: 5rem 0;
    }
    
    .water-page .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.water-page .stat-item {
    text-align: center;
    padding: 0.5rem;
}

.water-page .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

@media (min-width: 480px) {
    .water-page .stat-number {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .water-page .stat-number {
        font-size: 3rem;
    }
}

.water-page .stat-label {
    color: #bfdbfe;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .water-page .stat-label {
        font-size: 1rem;
    }
}

/* Contribute Section */
/* Contribute Section - Enhanced */
.water-page .contribute-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.water-page .contribute-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.water-page .contribute-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid #7dd3fc;
}

.water-page .contribute-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
    .water-page .contribute-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.water-page .contribute-card {
    position: relative;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.water-page .contribute-card:hover {
    border-color: #0ea5e9;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}

.water-page .contribute-card.featured {
    border-color: #0ea5e9;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .water-page .contribute-card.featured {
        transform: scale(1.05);
    }
    .water-page .contribute-card.featured:hover {
        transform: scale(1.08) translateY(-8px);
    }
}

.water-page .contribute-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.water-page .contribute-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.water-page .contribute-icon i {
    font-size: 1.75rem;
    color: #0ea5e9;
}

.water-page .contribute-card:hover .contribute-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    transform: scale(1.1);
}

.water-page .contribute-card:hover .contribute-icon i {
    color: white;
}

.water-page .contribute-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.water-page .contribute-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.water-page .contribute-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.water-page .contribute-impact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
    font-size: 0.8rem;
    color: #0891b2;
    font-weight: 500;
}

.water-page .contribute-impact i {
    font-size: 1rem;
}

/* Contribute Stats */
/* Contribute CTA */
.water-page .contribute-cta {
    text-align: center;
}

.water-page .contribute-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.water-page .contribute-cta .btn-primary i {
    font-size: 1.25rem;
}

.water-page .contribute-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.water-page .contribute-note i {
    color: #0891b2;
}

/* CTA Section */
.water-page .cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    text-align: center;
    margin-bottom: 0 !important;
}

.water-page .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    .water-page .cta-title {
        font-size: 2.5rem;
    }
}

.water-page .cta-text {
    font-size: 1.25rem;
    color: #fed7aa;
    margin-bottom: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
}

.water-page .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.water-page .btn-white {
    background: white;
    color: #f97316;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.water-page .btn-white:hover {
    background: #f1f5f9;
    color: #f97316;
}

.water-page .btn-outline-white {
    background: transparent;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
}

.water-page .btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* =========================================
   SEVA-SAHAYOG PAGE - ISOLATED CSS
   All styles scoped under .seva-page
   NO class names changed in HTML
   ========================================= */

.seva-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.seva-page body {
    font-family: 'Inter', sans-serif;
    color: #111827;
    background: #ffffff;
    overflow-x: hidden;
}

.seva-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hero Section */
/* Hero Section */
.seva-page .seva-hero-section {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .seva-page .seva-hero-section {
        padding: 5rem 1rem;
    }
}

.seva-page .seva-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.seva-page .seva-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .seva-page .seva-hero-grid {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .seva-page .seva-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.seva-page .seva-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
    .seva-page .seva-hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .seva-page .seva-hero-title {
        font-size: 3.5rem;
    }
}

.seva-page .seva-hero-title .seva-text-accent {
    color: #f97316;
}

.seva-page .seva-hero-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .seva-page .seva-hero-text {
        font-size: 1.25rem;
    }
}

.seva-page .seva-seva-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .seva-page .seva-hero-buttons {
        gap: 1rem;
    }
}

.seva-page .seva-btn-primary {
    background: #f97316;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .seva-page .seva-btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

.seva-page .seva-btn-primary:hover {
    background: #ea580c;
    color: white;
    transform: translateY(-2px);
}

.seva-page .seva-btn-outline {
    background: white;
    color: #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #d1d5db;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: inherit;
}

@media (min-width: 768px) {
    .seva-page .seva-btn-outline {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

.seva-page .seva-btn-outline:hover {
    border-color: #f97316;
    color: #f97316;
}

.seva-page .seva-hero-image {
    position: relative;
    height: 300px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    width: 100%;
}

@media (min-width: 480px) {
    .seva-page .seva-hero-image {
        height: 400px;
    }
}

@media (min-width: 768px) {
    .seva-page .seva-hero-image {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .seva-page .seva-hero-image {
        height: 600px;
    }
}

.seva-page .seva-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission Section */
.seva-page .mission-section {
    padding: 5rem 0;
    background: white;
}

.seva-page .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    .seva-page .section-title {
        font-size: 2.5rem;
    }
}

.seva-page .section-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 1.5rem;
    font-family: 'Inter', sans-serif;
}

/* Programs Section */
.seva-page .programs-section {
    padding: 5rem 0;
    background: #fef3c7;
}

.seva-page .programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .seva-page .programs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.seva-page .program-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.seva-page .program-card:hover {
    border-color: #f97316;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.seva-page .program-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.seva-page .program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seva-page .program-content {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.seva-page .program-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-size: 2rem;
}

.seva-page .program-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.seva-page .program-description {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.seva-page .program-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f97316;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Activities Section */
.seva-page .activities-section {
    padding: 5rem 0;
    background: white;
}

.seva-page .activities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.seva-page .activity-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-left: 4px solid #f97316;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.seva-page .activity-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.seva-page .activity-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .seva-page .activity-header {
        grid-template-columns: 1fr auto;
    }
}

.seva-page .activity-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.seva-page .activity-description {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.seva-page .activity-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f97316;
    font-weight: 600;
    font-size: 0.875rem;
}

.seva-page .activity-date {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #f97316;
    white-space: nowrap;
}

/* Statistics Section */
.seva-page .stats-section {
    padding: 3rem 0;
    background: #1AA75B;
    color: white;
    overflow-x: hidden;
}

.seva-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .seva-page .stats-section {
        padding: 5rem 0;
    }
    
    .seva-page .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.seva-page .stat-item {
    text-align: center;
    padding: 0.5rem;
}

.seva-page .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

@media (min-width: 480px) {
    .seva-page .stat-number {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .seva-page .stat-number {
        font-size: 3rem;
    }
}

.seva-page .stat-label {
    color: #d1fae5;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .seva-page .stat-label {
        font-size: 1rem;
    }
}

/* Ways Section */
.seva-page .ways-section {
    padding: 5rem 0;
    background: #fef3c7;
}

.seva-page .ways-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .seva-page .ways-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .seva-page .ways-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.seva-page .way-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.seva-page .way-card:hover {
    border-color: #f97316;
    transform: translateY(-4px);
}

.seva-page .way-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.seva-page .way-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.seva-page .way-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
}

/* Donation Section - Enhanced */
.seva-page .donation-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fef3c7 0%, #ffffff 100%);
}

.seva-page .donation-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.seva-page .donation-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid #fcd34d;
}

.seva-page .donation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
    .seva-page .donation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.seva-page .donation-card {
    position: relative;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.seva-page .donation-card:hover {
    border-color: #f59e0b;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
}

.seva-page .donation-card.featured {
    border-color: #f59e0b;
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .seva-page .donation-card.featured {
        transform: scale(1.05);
    }
    .seva-page .donation-card.featured:hover {
        transform: scale(1.08) translateY(-8px);
    }
}

.seva-page .donation-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.seva-page .donation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.seva-page .donation-icon i {
    font-size: 1.75rem;
    color: #f59e0b;
}

.seva-page .donation-card:hover .donation-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: scale(1.1);
}

.seva-page .donation-card:hover .donation-icon i {
    color: white;
}

.seva-page .donation-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.seva-page .donation-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.seva-page .donation-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.seva-page .donation-impact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
    font-size: 0.8rem;
    color: #059669;
    font-weight: 500;
}

.seva-page .donation-impact i {
    font-size: 1rem;
}

/* Donation Stats */
/* Donation CTA */
.seva-page .donation-cta {
    text-align: center;
}

.seva-page .donation-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.seva-page .donation-cta .btn-primary i {
    font-size: 1.25rem;
}

.seva-page .donation-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.seva-page .donation-note i {
    color: #059669;
}

/* CTA Section */
.seva-page .cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    text-align: center;
    margin-bottom: 0 !important;
}

.seva-page .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    .seva-page .cta-title {
        font-size: 2.5rem;
    }
}

.seva-page .cta-text {
    font-size: 1.25rem;
    color: #fed7aa;
    margin-bottom: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
}

.seva-page .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.seva-page .btn-white {
    background: white;
    color: #f97316;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.seva-page .btn-white:hover {
    background: #f1f5f9;
    color: #f97316;
}

.seva-page .btn-outline-white {
    background: transparent;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
}

.seva-page .btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* =========================================
   INDEX PAGE - COMPREHENSIVE CSS
   All styles for index.php sections
   ========================================= */

/* Modern Design System - New Orange-Dominant Theme */
:root {
    --primary: #F07E00;
    --primary-hover: #E59746;
    --accent: #F07E00;
    --accent-hover: #E59746;
    --secondary: #F5B774;
    --blue-accent: #0C97CC;
    --light-blue: #6BBFDF;
    --green-accent: #1AA75B;
    --text-primary: #3A3A3A;
    --text-secondary: #6F6F6F;
    --white: #FFFFFF;
    --light-gray-bg: #F7F7F7;
    --gray-50: #F7F7F7;
    --gray-100: #F5B774;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* ===========================================
   HERO SLIDER SECTION
   =========================================== */

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* -------------------------------------------------------
   Slider fixed-rectangle — clamp() keeps height near
   16:9 on every screen without changing shape between
   breakpoints. Images stay in normal flow (no position
   absolute) so Bootstrap's carousel-inner never collapses
   and white gaps cannot appear above or below the slider.
   ------------------------------------------------------- */

/* The carousel-item defines the visible rectangle.
   height: clamp(min, preferred, max)
     preferred = 56.25vw  →  width / height ≈ 16:9 at any
     viewport where the clamp limits are not hit.
   No matter what image the admin uploads (portrait or
   landscape), it fills this fixed box via object-fit:cover. */
.hero-slider .carousel-item {
    overflow: hidden;
    background: #111;          /* shown while image loads */
    height: clamp(220px, 56.25vw, 660px);
}

/* Slide image stretches to fill the entire carousel box. */
.carousel-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-content {
    background: linear-gradient(135deg, #F5B774 0%, #fed7aa 100%);
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.carousel-caption {
    position: static;
    text-align: left;
    padding: 0;
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111827;
}

.slide-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 2rem;
    max-width: 500px;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--primary);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(240, 126, 0, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary);
}

@media (max-width: 768px) {
    .hero-content {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .carousel-caption {
        text-align: center;
    }
    
    .slide-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

/* ===========================================
   IMPACT STATS SECTION
   =========================================== */

.section-secondary {
    background-color: #fed7aa;
    padding: 5rem 0;
    margin-bottom: 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 126, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(240, 126, 0, 0.15);
    border-color: rgba(240, 126, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: #F07E00;
    margin-bottom: 1rem;
}

/* Index page stat-number - Orange color for light backgrounds */
.section-secondary .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F07E00 !important;
    -webkit-text-fill-color: #F07E00 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #374151;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-secondary {
        padding: 3rem 0;
    }
    
    .section-secondary .row.g-4 {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 !important;
        gap: 0 !important;
    }
    
    .section-secondary .row.g-4 > div[class*="col-"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0.5rem !important;
        width: auto !important;
    }
    
    .stat-card {
        padding: 1.25rem 0.75rem;
        height: 100%;
        margin-bottom: 0;
    }
    
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .section-secondary .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .stat-icon {
        font-size: 1.75rem;
    }
    
    .section-secondary .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Mobile - Remove gap between header and content */
@media (max-width: 768px) {
    /* Only target index page hero slider */
    body .hero-slider:first-child,
    main .hero-slider:first-child {
        margin-top: 0 !important;
    }
    
    /* Breadcrumb sections on campaign/info pages */
    .modern-breadcrumb,
    .page-hero-section,
    .water-hero-section,
    .shiksha-hero-section,
    .seva-hero-section {
        margin-top: 0 !important;
    }
    
    /* Regular sections - allow normal padding */
    section:not(.hero-slider):not(.modern-breadcrumb):not(.page-hero-section) {
        margin-top: 0 !important;
    }
}

/* ===========================================
   COLLABORATORS SECTION
   =========================================== */

.collaborators-section {
    background: white;
    padding: 4rem 0;
    overflow: hidden;
    margin-bottom: 0;
}

.collaborators-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.collaborators-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.collaborators-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.collaborator-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0 2rem;
}

.collaborator-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.collaborator-logo:hover img {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .collaborator-logo {
        width: 150px;
        height: 80px;
        margin: 0 1rem;
    }
}

/* ===========================================
   BLOG GRID SECTION
   =========================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #1AA75B;
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===========================================
   VIDEO SECTION
   =========================================== */

.video-section {
    background: #f9fafb;
    padding: 5rem 0;
    margin-bottom: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.25rem;
}

.video-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    margin: 0;
    padding: 0;
}

/* ===========================================
   BASE STYLES
   =========================================== */

/* Container Centering */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (min-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 992px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        max-width: 1140px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Primary Button for Campaign Pages */
.btn-primary {
    background: linear-gradient(135deg, #F07E00 0%, #E59746 100%);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(240, 126, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E66B0F 0%, #D4882E 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 126, 0, 0.4);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--accent);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-custom:hover {
    background-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--text-primary);
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--text-primary);
}

.btn-outline-custom:hover {
    background-color: var(--text-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styling */
.section {
    padding: 5rem 0;
    margin-bottom: 0;
}

.section-white {
    background-color: var(--white);
    margin-bottom: 0;
}

.section-secondary {
    background-color: #fed7aa;
    margin-bottom: 0;
}

.section-primary {
    background-color: var(--primary);
    color: var(--white);
    margin-bottom: 0;
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-title-white {
    color: var(--white);
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

/* Row Centering */
.row {
    margin-left: auto;
    margin-right: auto;
}

/* Image with Text Section */
.image-text-section {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .image-text-section .row {
        gap: 0;
    }
}

.image-text-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
}

@media (min-width: 992px) {
    .image-text-section img {
        height: 450px;
    }
}

.content-title {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .image-text-section .col-lg-6:first-child {
        padding-right: 2rem;
    }
    
    .image-text-section .col-lg-6:last-child {
        padding-left: 2rem;
    }
}

.content-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.btn-link-custom {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-link-custom:hover {
    color: var(--primary-hover);
    gap: 0.75rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.view-all-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-link:hover {
    color: var(--primary-hover);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, #C2410C 100%);
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    margin-bottom: 0 !important;
}

.cta-title {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-white {
    background-color: var(--white);
    color: var(--accent);
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-white:hover {
    background-color: #f3f4f6;
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--accent);
    transform: translateY(-2px);
}

button.btn-outline-white {
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-section,
    .section {
        padding: 3rem 0;
    }
    
    .hero-section .row,
    .image-text-section .row {
        gap: 2rem;
    }
    
    .hero-title,
    .hero-text {
        text-align: center;
    }
    
    .hero-section .d-flex {
        justify-content: center;
    }
    
    .hero-image {
        max-height: 300px;
        margin-top: 2rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .image-text-section img {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .image-text-section .content-title,
    .image-text-section .content-text {
        text-align: center;
    }
    
    .image-text-section .btn-link-custom {
        display: flex;
        justify-content: center;
    }
    
    .row {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Center all text on mobile */
    .section-title,
    .section-text,
    .blog-card-title,
    .video-title {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
}

/*---------------------------------------------------
--------------------------FOOTER---------------------
---------------------------------------------------*/
.bf-footer {
    background: linear-gradient(to bottom right, #111827, #1f2937);
    color: #e5e7eb;
    font-size: 14px;
}

.bf-footer-container {
    max-width: 1280px;
    margin: auto;
    padding: 48px 16px 24px;
}

@media (max-width: 768px) {
    .bf-footer-container {
        padding: 32px 20px 20px;
    }
}

.bf-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .bf-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bf-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bf-footer-logo {
    display: block;
    margin-left: -30px !important;
    margin-right: 0 !important;
    margin-top: -55px;
    margin-bottom: 6px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .bf-footer-logo {
        width: 130px;
        max-width: 130px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0;
        margin-bottom: 12px;
    }
}

.bf-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 768px) {
    .bf-footer-brand {
        max-width: 100%;
        padding-right: 0;
    }
}

/* FORCE left alignment for logo + text column */
.bf-footer-grid > div:first-child {
    text-align: left !important;
    justify-self: start !important;
}

.bf-footer-text {
    color: #d1d5db;
    line-height: 1.45;
    margin-top: -55px;  
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .bf-footer-text {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.5;
        padding-right: 10px;
    }
}

.bf-footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.bf-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bf-footer-links li {
    margin-bottom: 8px;
}

.bf-footer-links a {
    color: #d1d5db;
    text-decoration: none;
}

.bf-footer-links a:hover,
.bf-footer-links .highlight {
    color: #f39200;
}

.bf-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.bf-footer-contact li {
    margin-bottom: 6px;
}

.bf-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.bf-footer-social a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bf-footer-social a:hover {
    color: #ffffff;
    background: #f39200;
    transform: translateY(-3px);
}

.bf-footer-social a ion-icon {
    font-size: 1.25rem;
}

.bf-footer-bottom {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #374151;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.bf-footer-credits {
    color: #9ca3af;
    font-size: 0.9rem;
}

.bf-footer-credits a {
    color: #f39200;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.bf-footer-credits a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .bf-footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

.bf-footer-bottom-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bf-footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
}

.bf-footer-bottom-links a:hover {
    color: #f39200;
}

/* ===========================================
   TEAM & VOLUNTEER PAGES - SHARED STYLES
   =========================================== */

/* Hero Section (Team & Volunteer pages) */
.page-hero-section {
    background: #fed7aa;
    padding: 110px 0;
    text-align: center;
}

.page-hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
}

.page-hero-section h1 span,
.page-hero-section h1 .text-primary,
.water-hero-title span,
.water-hero-title .water-text-primary,
.shiksha-hero-title span,
.shiksha-hero-title .shiksha-text-primary,
.seva-hero-title span,
.seva-hero-title .seva-text-accent {
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

.page-hero-section .text-primary {
    color: #000000;
}

.page-hero-section p {
    max-width: 780px;
    margin: 1rem auto;
    color: #4a5568;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

/* Volunteers Section */
.volunteers-section {
    padding: 100px 0;
    text-align: center;
}

/* Shared Section Header */
.page-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.page-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-section-header p {
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Volunteer Grid */
.volunteers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Team Card */
.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-image {
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    padding: 1.5rem;
}

.team-role {
    color: #F58220;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Volunteer Card */
.volunteer-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    text-align: center;
}

.volunteer-card:hover {
    transform: translateY(-6px);
}

.volunteer-image {
    height: 260px;
}

.volunteer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.volunteer-name {
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a1a1a;
}

/* Join Section (Team & Volunteer pages) */
.page-join-section {
    text-align: center;
    padding: 60px 0 110px;
}

.join-actions {
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.join-actions .btn {
    min-width: 220px;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    font-weight: 600;
}

/* CTA Section (Team & Volunteer pages) */
.page-cta-section {
    background: linear-gradient(135deg, #F58220, #e66b0f);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.page-cta-section h2 {
    margin-bottom: 1rem;
}

.page-cta-section p {
    margin-bottom: 1.5rem;
}

/* Shared Button Styles */
.btn-primary-orange {
    background: #F58220;
    border: none;
    color: #fff;
}

.btn-primary-orange:hover {
    background: #e66b0f;
    color: #fff;
}

.btn-outline-orange {
    border: 2px solid #F58220;
    color: #F58220;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background: #F58220;
    color: #fff;
}

.btn-secondary-white {
    background: #fff;
    color: #F58220;
    padding: 0.9rem 2.4rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-secondary-white:hover {
    background: #f0f0f0;
    color: #e66b0f;
}

/* ===========================================
   DONATE PAGE STYLES
   =========================================== */

/* Donate Hero Section */
.donate-hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.95) 0%, rgba(230, 107, 15, 0.95) 100%),
                url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&q=80') center/cover;
    padding: 120px 0 100px;
    color: #fff;
    overflow: hidden;
}

.donate-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.trust-badge i {
    font-size: 1.3rem;
}

.trust-badge span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Why Donate Section */
.why-donate-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-donate-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-donate-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-donate-section .section-description {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

.donate-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: #F58220;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: rgba(245, 130, 32, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
}

.donate-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3A3A3A;
    margin-bottom: 20px;
    line-height: 1.3;
}

.donate-section-description {
    font-size: 1.1rem;
    color: #6F6F6F;
    line-height: 1.8;
}

.why-donate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 45px 35px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

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

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(245, 130, 32, 0.12);
    border-color: transparent;
}

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

.why-icon-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, #F58220 0%, #FFA726 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(245, 130, 32, 0.25);
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon-wrapper {
    transform: scale(1.05) rotate(3deg);
}

.why-icon-wrapper i {
    font-size: 2.2rem;
    color: #fff;
}

.why-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.why-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 992px) {
    .why-donate-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-donate-section {
        padding: 70px 0;
    }
    
    .why-donate-section .section-header {
        padding: 0 15px;
    }
    
    .why-donate-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        padding: 35px 25px;
    }
    
    .why-donate-section .section-title {
        font-size: 2rem;
        color: #1a1a1a;
    }
}

/* Impact Stats Section */
.impact-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F58220 0%, #E66B0F 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Main Donation Section (Two Columns) */
.main-donation-wrapper {
    padding: 100px 0;
    background: #F7F7F7;
}

.donation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

/* Impact Content Column */
.impact-content-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.impact-visual-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 50px 40px;
    border: 2px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.impact-visual-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #3A3A3A;
    margin-bottom: 20px;
    line-height: 1.3;
}

.impact-visual-card p {
    font-size: 1.1rem;
    color: #6F6F6F;
    line-height: 1.8;
    margin-bottom: 30px;
}

.impact-list {
    list-style: none;
    margin-bottom: 35px;
    padding: 0;
}

.impact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-left: 0;
}

.impact-list li i {
    color: #F58220;
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.impact-list li span {
    font-size: 1.05rem;
    color: #3A3A3A;
    line-height: 1.6;
}

.impact-image-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-top: 30px;
    border: 2px solid #E5E7EB;
}

.impact-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.impact-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Donation Form Column */
.donation-form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.donation-form-section {
    padding: 0;
    background: transparent;
    display: flex;
    justify-content: center;
    width: 100%;
}

.donation-form-section .container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.donation-form-section .row {
    width: 100%;
    margin: 0;
}

.donation-form-section .col-lg-8 {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.donation-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 50px 40px;
    border: 2px solid #E5E7EB;
    margin: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
}

.donation-header {
    text-align: center;
    margin-bottom: 35px;
}

.donation-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #3A3A3A;
    margin-bottom: 12px;
}

.donation-header p {
    color: #6F6F6F;
    font-size: 1.05rem;
}

.form-section {
    margin-bottom: 30px;
}

.section-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #3A3A3A;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amount-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.amount-option {
    position: relative;
    flex: 1;
    min-width: 0;
    max-width: none;
}

.amount-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.amount-label {
    display: block;
    padding: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    color: #3A3A3A;
    background: #fff;
}

.amount-option input[type="radio"]:checked + .amount-label {
    border-color: #F58220;
    background: #F58220;
    color: #fff;
    transform: translateY(-2px);
}

.amount-label:hover {
    border-color: #F58220;
    background: rgba(245, 130, 32, 0.05);
}

.custom-amount-wrapper {
    margin-top: 20px;
}

.custom-amount-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #3A3A3A;
}

.custom-amount-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.custom-amount-input:focus {
    outline: none;
    border-color: #F58220;
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
}

/* Inline QR Code Container */
.inline-qr-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    padding: 0;
    background: transparent;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.inline-qr-container.show {
    opacity: 1;
    transform: translateY(0);
}

.inline-qr-title {
    display: none;
}

.inline-qr-amount {
    display: none;
}

.inline-qr-image {
    max-width: 250px;
    height: auto;
    border-radius: 0;
    margin: 0 auto;
    display: block;
}

.inline-qr-instruction {
    display: none;
}

.inline-qr-upi {
    display: none;
}

.donate-btn {
    width: 100%;
    padding: 0.875rem 2rem;
    background: #F58220;
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.donate-btn:hover {
    background: #E66B0F;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.donate-btn:active {
    transform: translateY(0);
}

.tax-benefit-note {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: #FFF8E7;
    border-radius: 0.375rem;
    border-left: 4px solid #F58220;
}

.tax-benefit-note strong {
    color: #F58220;
    font-weight: 800;
}

.tax-benefit-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #3A3A3A;
    line-height: 1.6;
}

/* Offline Donation Section */
.offline-donation-section {
    padding: 60px 0;
    background: #F5F7FA;
}

.offline-donation-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.offline-donation-header {
    text-align: center;
    margin-bottom: 40px;
}

.offline-donation-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.offline-donation-header p {
    color: #4a5568;
    font-size: 1.05rem;
}

.offline-donation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bank-details-text {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background: white;
    padding: 30px 35px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(245, 130, 32, 0.15);
    border: 2px solid #F58220;
}

.bank-details-text p {
    margin: 0 0 14px 0;
    font-size: 1.05rem;
    color: #1a1a1a;
    line-height: 1.8;
}

.bank-details-text p:last-child {
    margin-bottom: 0;
}

.bank-details-text strong {
    font-weight: 600;
    color: #F58220;
}

.bank-details-text span {
    color: #4a5568;
}

.bank-details-text span[style*="font-family: monospace"] {
    font-family: monospace;
}

.bank-qr-image {
    flex: 0 0 auto;
    background: white;
    padding: 25px;
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(245, 130, 32, 0.15);
    border: 2px solid #F58220;
}

.bank-qr-image img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* =========================================
   JOIN US MODAL - BEAUTIFUL DESIGN
   ========================================= */

/* Modal Overlay */
.join-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.join-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal Container */
.join-modal-content {
    background: white;
    border-radius: 0;
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

/* Modal Header */
.join-modal-header {
    padding: 24px 28px 16px;
    position: relative;
}

.join-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    color: #f97316;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.3s ease;
    line-height: 0.8;
    font-weight: 300;
    z-index: 10;
}

.join-modal-close:hover {
    background: #fff7ed;
    color: #ea580c;
    transform: rotate(90deg);
}

.join-modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    padding-right: 40px;
}

.join-modal-header p {
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Step Indicator */
.join-step-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px 20px;
}

.join-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: #fed7aa;
    transition: all 0.3s;
}

.join-step-dot.active {
    background: #f97316;
    width: 24px;
    border-radius: 0;
}

/* Form Steps */
.join-form-step {
    display: none;
    padding: 0 28px 28px;
}

.join-form-step.active {
    display: block;
    animation: fadeInStep 0.3s ease;
}

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

.join-step-title {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

/* Form Fields */
.join-form-group {
    margin-bottom: 16px;
}

.join-form-label {
    font-weight: 500;
    color: #000000;
    margin-bottom: 6px;
    display: block;
    font-size: 13px;
}

.join-form-control,
.join-form-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #000000;
    border-radius: 0;
    font-size: 13px;
    transition: all 0.2s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: white;
}

.join-form-control:focus,
.join-form-select:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.join-form-control::placeholder {
    color: #9ca3af;
}

textarea.join-form-control {
    resize: vertical;
    min-height: 100px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Grid Layout */
.join-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Radio Options - Custom Styled */
.join-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.join-radio-group-horizontal {
    flex-direction: row;
    gap: 16px;
}

.join-radio-group-horizontal .join-radio-option {
    flex: 1;
    justify-content: center;
}

.join-radio-option {
    display: flex;
    align-items: center;
    padding: 14px;
    border: 1px solid #000000;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.join-radio-option:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.join-radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #f97316;
    flex-shrink: 0;
}

.join-radio-option.selected {
    border-color: #f97316;
    background: #fff7ed;
}

.join-radio-content {
    flex: 1;
}

.join-radio-label {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    display: block;
    margin-bottom: 4px;
}

.join-radio-description {
    font-size: 12px;
    color: #000000;
}

/* Checkbox Grid */
.join-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.join-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #000000;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.join-checkbox-label:hover {
    background: #fff7ed;
}

.join-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #f97316;
    flex-shrink: 0;
}

/* Buttons */
.join-button-group {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.join-btn-secondary {
    flex: 1;
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.join-btn-secondary::before {
    content: '\2190';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.join-btn-secondary:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #1f2937;
}

.join-btn-secondary:hover::before {
    transform: translateX(-4px);
}

.join-btn-secondary:active {
    background: #e5e7eb;
    transform: scale(0.98);
}

.join-btn-primary {
    flex: 1.8;
    padding: 11px 32px;
    border: none;
    background: #f97316;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
}

.join-btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(249, 115, 22, 0.35);
}

.join-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
}

.join-btn-primary:disabled {
    background: #fed7aa;
    cursor: not-allowed;
    transform: none;
}

.join-required {
    color: #dc2626;
    font-weight: 600;
}

/* Success Message */
.join-success-container {
    text-align: center;
    padding: 60px 32px;
}

.join-success-icon {
    width: 80px;
    height: 80px;
    background: #fff7ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.join-success-icon i {
    font-size: 40px;
    color: #f97316;
}

.join-success-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.join-success-message {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.join-btn-home {
    display: inline-block;
    padding: 12px 32px;
    background: #f97316;
    color: white;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
}

.join-btn-home:hover {
    background: #ea580c;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Modal scrollbar */
.join-modal-content::-webkit-scrollbar {
    width: 8px;
}

.join-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.join-modal-content::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.join-modal-content::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Responsive Design */
@media (max-width: 640px) {
    .join-modal {
        padding: 10px;
    }
    
    .join-modal-content {
        max-height: 95vh;
    }
    
    .join-modal-header {
        padding: 24px 20px 16px;
    }
    
    .join-modal-close {
        top: 12px;
        right: 12px;
        font-size: 28px;
        width: 36px;
        height: 36px;
    }
    
    .join-modal-header h2 {
        font-size: 20px;
    }
    
    .join-step-indicator {
        padding: 16px 20px 20px;
    }
    
    .join-form-step {
        padding: 0 20px 24px;
    }
    
    .join-step-title {
        font-size: 16px;
    }
    
    .join-form-row {
        grid-template-columns: 1fr;
    }
    
    .join-checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .join-button-group {
        margin-top: 24px;
    }
    
    .join-success-container {
        padding: 40px 20px;
    }
}

/* Loading State (optional) */
.join-btn-primary.loading {
    position: relative;
    color: transparent;
}

.join-btn-primary.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* ===========================================
   FORCE COLLABORATORS TO STAY IN COLOR
   Override any hidden grayscale effects
   =========================================== */
.collaborators-section img, 
.collaborators-section .collaborator-logo img,
.collaborators-section .partners-logo,
.partners-section img {
    filter: grayscale(0%) !important;
    -webkit-filter: grayscale(0%) !important;
    transition: none !important;
}

/* ===========================================
   BLOG PAGE STYLES - Strict Isolation with #blogs-unique-context
   Priority: ID selector ensures maximum specificity
   =========================================== */

/* ============================================
   STEP 3: Header Collision Fix (Displacement)
   The header is fixed at ~70px height (65px mobile)
   Body padding already handles header offset in bhavya-modern.css
   ============================================ */
#blogs-unique-context {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Base Container */
#blogs-unique-context .blog-page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ============================================
   STEP 4: Breadcrumb Restoration
   Explicit visibility and positioning
   ============================================ */
#blogs-unique-context .blog-page-modern-breadcrumb {
    background: #fed7aa !important;
    padding: 100px 0 80px !important;
    color: #3A3A3A !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    z-index: 10 !important;
    box-sizing: border-box !important;
}

#blogs-unique-context .blog-page-modern-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

#blogs-unique-context .blog-page-breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

#blogs-unique-context .blog-page-page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #3A3A3A;
}

#blogs-unique-context .blog-page-breadcrumb-path {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #3A3A3A;
}

#blogs-unique-context .blog-page-breadcrumb-path a {
    color: #F07E00;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 600;
}

#blogs-unique-context .blog-page-breadcrumb-path a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ============================================
   STEP 5: Responsive Media Queries
   All prefixed with #blogs-unique-context
   ============================================ */
@media (max-width: 768px) {
    #blogs-unique-context .blog-page-modern-breadcrumb {
        padding: 60px 0 50px !important;
    }
    
    #blogs-unique-context .blog-page-page-title {
        font-size: 2rem;
    }
}

/* Featured Section */
#blogs-unique-context .blog-page-featured-section {
    padding: 4rem 0;
    background: white;
}

#blogs-unique-context .blog-page-section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111827;
}

#blogs-unique-context .blog-page-featured-card {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background: white;
    border: 1px solid #e5e7eb;
}

#blogs-unique-context .blog-page-featured-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

#blogs-unique-context .blog-page-featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

#blogs-unique-context .blog-page-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#blogs-unique-context .blog-page-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #1AA75B;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

#blogs-unique-context .blog-page-featured-content {
    padding: 2rem;
}

#blogs-unique-context .blog-page-meta-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

#blogs-unique-context .blog-page-meta-info i {
    color: #F07E00;
}

#blogs-unique-context .blog-page-featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

#blogs-unique-context .blog-page-featured-excerpt {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

#blogs-unique-context .blog-page-btn-primary {
    background: #F07E00;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

#blogs-unique-context .blog-page-btn-primary:hover {
    background: #E59746;
    color: white;
}

/* Blog Grid Section */
#blogs-unique-context .blog-page-blog-grid-section {
    padding: 4rem 0;
    background: #f9fafb;
    overflow: visible !important;
}

#blogs-unique-context .blog-page-blog-grid-section .container {
    overflow: visible !important;
}

/* Blog grid wrapper */
#blogs-unique-context .blog-page-blog-layout {
    display: flex;
    align-items: flex-start;
    overflow: visible !important;
}

/* Sidebar column - make it sticky */
#blogs-unique-context .blog-page-blog-layout > .col-lg-3 {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px !important;
    align-self: flex-start;
    height: fit-content;
}

/* Wrapper inside sidebar */
#blogs-unique-context .blog-page-categories-sidebar-wrapper {
    position: relative;
    top: 0;
    z-index: 10;
}

/* Sidebar card styling */
#blogs-unique-context .blog-page-sidebar,
#blogs-unique-context .blog-page-sidebar-card {
    max-height: none;
    overflow: visible;
    height: auto;
}

/* Mobile styling - disable sticky */
@media (max-width: 991px) {
    #blogs-unique-context .blog-page-blog-layout {
        flex-direction: column;
    }
    
    #blogs-unique-context .blog-page-categories-sidebar-wrapper {
        position: relative;
        top: unset;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    #blogs-unique-context .blog-page-sidebar {
        overflow-y: visible;
    }
}

/* Sidebar card */
#blogs-unique-context .blog-page-sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

#blogs-unique-context .blog-page-sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

#blogs-unique-context .blog-page-category-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    text-align: left;
    border-radius: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
    color: #374151;
}

#blogs-unique-context .blog-page-category-btn:hover,
#blogs-unique-context .blog-page-category-btn.active {
    background: rgba(240, 126, 0, 0.1);
    color: #F07E00;
}

#blogs-unique-context .blog-page-category-btn.active {
    font-weight: 600;
}

#blogs-unique-context .blog-page-category-count {
    font-size: 0.875rem;
    color: #9ca3af;
}

#blogs-unique-context .blog-page-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    #blogs-unique-context .blog-page-blog-grid {
        grid-template-columns: 1fr;
    }
}

#blogs-unique-context .blog-page-blog-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

#blogs-unique-context .blog-page-blog-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

#blogs-unique-context .blog-page-blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

#blogs-unique-context .blog-page-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

#blogs-unique-context .blog-page-blog-card:hover .blog-page-blog-image img {
    transform: scale(1.05);
}

#blogs-unique-context .blog-page-blog-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #1AA75B;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

#blogs-unique-context .blog-page-blog-content {
    padding: 1.25rem;
}

#blogs-unique-context .blog-page-blog-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

#blogs-unique-context .blog-page-blog-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#blogs-unique-context .blog-page-blog-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#blogs-unique-context .blog-page-blog-link {
    color: #F07E00;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.3s;
}

#blogs-unique-context .blog-page-blog-link:hover {
    gap: 0.75rem;
}

#blogs-unique-context .blog-page-btn-outline {
    background: white;
    color: #374151;
    padding: 0.75rem 1.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

#blogs-unique-context .blog-page-btn-outline:hover {
    border-color: #1AA75B;
    color: #1AA75B;
}

/* Video Section */
#blogs-unique-context .blog-page-video-section {
    padding: 4rem 0;
    background: white;
}

#blogs-unique-context .blog-page-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

#blogs-unique-context .blog-page-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

#blogs-unique-context .blog-page-view-all-link {
    color: #1AA75B;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#blogs-unique-context .blog-page-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    #blogs-unique-context .blog-page-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    #blogs-unique-context .blog-page-video-grid {
        grid-template-columns: 1fr;
    }
}

#blogs-unique-context .blog-page-video-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
    cursor: pointer;
}

#blogs-unique-context .blog-page-video-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#blogs-unique-context .blog-page-video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #000;
}

#blogs-unique-context .blog-page-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

#blogs-unique-context .blog-page-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

#blogs-unique-context .blog-page-video-card:hover .blog-page-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

#blogs-unique-context .blog-page-play-button i {
    font-size: 1.5rem;
    color: white;
    margin-left: 0.25rem;
}

#blogs-unique-context .blog-page-video-info {
    padding: 1rem;
}

#blogs-unique-context .blog-page-video-title {
    font-size: 0.938rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#blogs-unique-context .blog-page-video-date {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Newsletter Section */
#blogs-unique-context .blog-page-newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F07E00 0%, #E59746 100%);
    color: white;
    text-align: center;
}

#blogs-unique-context .blog-page-newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

#blogs-unique-context .blog-page-newsletter-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#blogs-unique-context .blog-page-newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    #blogs-unique-context .blog-page-newsletter-form {
        flex-direction: column;
    }
}

#blogs-unique-context .blog-page-newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1rem;
}

#blogs-unique-context .blog-page-newsletter-input:focus {
    outline: 2px solid white;
}

#blogs-unique-context .blog-page-btn-secondary {
    background: white;
    color: #F07E00;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

#blogs-unique-context .blog-page-btn-secondary:hover {
    background: #f1f5f9;
}

/* =====================================================
   INDEX PAGE - HOME PAGE STYLES
   Bhavya Foundation Main Homepage Styling
   (Merged from index-page.css)
   ===================================================== */

/* =====================================================
   HERO SLIDER SECTION
   Full-width carousel with auto-rotating slides
   ===================================================== */

/* Main slider container */
.hero-slider {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0; /* kills any inherited inline gap */
    font-size: 0;
}

/* Individual carousel slides — height/overflow set above */
.hero-slider .carousel-item {
    background: #111;
}

/* Slide images — fills container via .carousel-slide-image */
.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Content overlay on slides */
.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

/* Carousel caption styling */
.hero-slider .carousel-caption {
    position: static;
    padding: 0;
    text-align: left;
}

/* Slide title text */
.slide-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Slide description text */
.slide-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Carousel navigation arrows (prev/next) */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    z-index: 10; /* Ensures arrows are clickable above other elements */
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Arrow hover effect */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--white);
}

/* Arrow icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* Carousel indicator dots */
.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
}

/* =====================================================
   COLLABORATORS/PARTNERS INFINITE CAROUSEL
   Auto-scrolling logo carousel for partners
   ===================================================== */

.collaborators-section {
    padding: 3rem 0;
    background: var(--white);
    overflow: hidden;
}

.collaborators-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

/* Carousel container */
.collaborators-carousel {
    overflow: hidden;
    position: relative;
}

/* Scrolling track with animation */
.collaborators-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

/* Pause animation on hover */
.collaborators-track:hover {
    animation-play-state: paused;
}

/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Individual logo container */
.collaborator-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

/* Logo hover effect */
.collaborator-logo:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Logo images */
.collaborator-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Hover effect */
.collaborator-logo:hover img {
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .collaborator-logo {
        width: 140px;
        height: 80px;
    }
    
    .collaborators-track {
        gap: 2rem;
    }
}

/* =====================================================
   GALLERY CAROUSEL SECTION
   Infinite scrolling gallery of foundation activities
   ===================================================== */

.gallery-carousel-section {
    padding: 4rem 0;
    background: var(--gray-50);
    overflow: hidden;
}

.gallery-carousel-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

/* Gallery carousel container */
.gallery-carousel-container {
    overflow: hidden;
    position: relative;
}

/* Scrolling track */
.gallery-track {
    display: flex;
    gap: 1.5rem;
    animation: galleryScroll 40s linear infinite;
}

/* Pause on hover */
.gallery-track:hover {
    animation-play-state: paused;
}

/* Gallery scroll animation */
@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Individual gallery item card */
.gallery-item {
    flex: 0 0 auto;
    width: 350px;
    height: 250px;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

/* Gallery item hover effect */
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Gallery images */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Image zoom on hover */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Caption overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* Show overlay on hover */
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Caption text */
.gallery-caption {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gallery-item {
        width: 280px;
        height: 200px;
    }
    
    .gallery-track {
        gap: 1rem;
    }
}

/* =====================================================
   STATS CARDS
   Impact statistics with hover effects
   ===================================================== */

.stat-card {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

/* Card hover effect */
.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Icon container */
.stat-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(234, 88, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* Icon itself */
.stat-icon i {
    font-size: 2rem;
    color: var(--accent);
}

/* Animated number */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

/* Label text */
.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* =====================================================
   VIDEO CARDS
   YouTube video grid display
   ===================================================== */

.video-section {
    padding: 4rem 0;
    background: white;
}

/* Video grid layout */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Individual video card */
.video-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
    cursor: pointer;
}

/* Video card hover effect */
.video-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

/* Video thumbnail */
.video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Play button overlay */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

/* Play button hover effect */
.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 1.5rem;
    color: white;
    margin-left: 0.25rem;
}

/* Video info section */
.video-info {
    padding: 1rem;
    background: white;
}

/* Video title */
.video-title {
    font-size: 0.938rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video date */
.video-date {
    font-size: 0.75rem;
    color: #6b7280;
}

/* =====================================================
   BLOG CARDS
   Blog post grid display
   ===================================================== */

/* Blog grid layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Individual blog card */
.blog-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* Blog card hover effect */
.blog-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

/* Blog image container */
.blog-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .blog-card-image {
        height: 11rem;
    }
}

@media (min-width: 992px) {
    .blog-card-image {
        height: 11.5rem;
    }
}

@media (min-width: 1200px) {
    .blog-card-image {
        height: 12rem;
    }
}

/* Blog images */
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image zoom on hover */
.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

/* Blog category badge */
.blog-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #1AA75B;
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Blog card content */
.blog-card-content {
    padding: 0.875rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .blog-card-content {
        padding: 1rem;
    }
}

/* Blog title */
.blog-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog description text */
.blog-card-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex-grow: 1;
}

/* Read more link */
.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

/* Read more hover effect */
.blog-read-more:hover {
    color: var(--primary-hover);
    gap: 0.75rem;
}

/* =====================================================
   MOBILE RESPONSIVE ADJUSTMENTS (INDEX PAGE)
   ===================================================== */

@media (max-width: 768px) {
    /* Adjust stat cards for mobile */
    .stat-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    /* Show 2 stats per row on mobile */
    .section-secondary .row.g-4 > .col-6 {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
    
    .section-secondary .row.g-4 {
        row-gap: 1rem !important;
        column-gap: 1rem !important;
    }
}