/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables - Hindu/Traditional Theme */
    --primary-orange: #FF6B35;
    --primary-saffron: #FF8C42;
    --deep-red: #8B0000;
    --maroon: #A0522D;
    --golden: #FFD700;
    --accent-gold: #FFA500;
    --cream: #F5F5DC;
    --light-cream: #FFFDD0;
    --bg-cream: #FAF7F0;
    --dark-brown: #3E2723;
    --medium-brown: #5D4037;
    --white: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-traditional: 'Crimson Text', serif;
    
    /* Spacing */
    --header-height: 80px;
    --container-padding: 20px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: var(--bg-cream);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.15);
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--container-padding);
    max-width: 1200px;
    margin: 0 auto;
    height: var(--header-height);
}

/* Logo and Brand Section */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-orange);
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.org-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-red);
    font-family: var(--font-traditional);
    margin: 0;
    line-height: 1.2;
}

.org-tagline {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link i {
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--primary-orange);
    background-color: var(--light-cream);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-saffron));
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Special Buttons */
.volunteer-btn {
    background: linear-gradient(135deg, var(--deep-red), var(--maroon));
    color: var(--white) !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.volunteer-btn:hover {
    background: linear-gradient(135deg, var(--maroon), var(--deep-red));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.donate-btn {
    background: linear-gradient(135deg, var(--golden), var(--accent-gold));
    color: var(--dark-brown) !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.donate-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--golden));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content Spacing */
.main-content {
    margin-top: var(--header-height);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-brand {
        flex: 1;
    }
    
    .org-name {
        font-size: 1.1rem;
    }
    
    .org-tagline {
        font-size: 0.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 107, 53, 0.1);
        padding: 20px 0;
        gap: 15px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        width: 90%;
        margin: 0 auto;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 15px;
    }
    
    .nav-logo {
        width: 40px;
        height: 40px;
    }
    
    .org-name {
        font-size: 1rem;
    }
    
    .org-tagline {
        font-size: 0.75rem;
    }
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        var(--bg-cream) 0%, 
        var(--light-cream) 30%, 
        var(--cream) 70%, 
        #FFF8DC 100%);
    overflow: hidden;
    padding: 40px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, 
        rgba(255, 107, 53, 0.08) 0%, 
        transparent 50%),
        radial-gradient(circle at 70% 80%, 
        rgba(255, 215, 0, 0.06) 0%, 
        transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content - Left Side */
.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-text {
    margin-bottom: 30px;
}

.hero-title {
    margin-bottom: 25px;
    line-height: 1.2;
}

.title-highlight {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-orange);
    font-family: var(--font-traditional);
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.2);
}

.title-main {
    display: block;
    font-size: 2.8rem;
    color: var(--deep-red);
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-red), var(--maroon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--medium-brown);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Hero Stats */
        .hero-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: nowrap;
            justify-content: flex-start;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 18px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 15px;
            border: 2px solid var(--primary-orange);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-width: 110px;
            flex: 1;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-orange);
            font-family: var(--font-traditional);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--dark-brown);
            font-weight: 500;
            text-align: center;
            margin-top: 5px;
        }

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--deep-red), var(--maroon));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--maroon), var(--deep-red));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--golden), var(--accent-gold));
    color: var(--dark-brown);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--golden));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

/* Hero Carousel - Right Side */
.hero-carousel {
    animation: slideInRight 1s ease-out;
}

.carousel-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.15);
    border: 2px solid var(--cream);
    position: relative;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.carousel-title {
    font-size: 1.3rem;
    color: var(--deep-red);
    font-weight: 600;
    font-family: var(--font-traditional);
}

.carousel-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.1rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.divider {
    color: var(--medium-brown);
}

/* Carousel Slides */
.carousel-slides {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.slide-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: var(--white);
}

.slide-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.slide-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 10px;
    pointer-events: none;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 107, 53, 0.9);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-btn:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.deco-lotus {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.lotus-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.lotus-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.deco-om {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.03;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-orange);
    z-index: 3;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .title-main {
        font-size: 2.4rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .carousel-slides {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 0;
        min-height: auto;
    }
    
    .title-highlight {
        font-size: 1.5rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .carousel-slides {
        height: 200px;
    }
    
    .carousel-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}



/* About Summary Section Styles */
.about-summary {
    padding: 80px 0;
    background: linear-gradient(135deg, #FAF7F0 0%, #FFFDD0 100%);
    position: relative;
    overflow: hidden;
}

.about-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lotus-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FF6B35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23lotus-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 20px;
}

.title-hindi {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 10px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.title-english {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #3E2723;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #FFD700);
    border-radius: 2px;
}

.decoration-lotus {
    font-size: 1.5rem;
    animation: lotus-glow 3s ease-in-out infinite;
}

@keyframes lotus-glow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* About Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Text Content */
.about-text {
    padding-right: 20px;
}

.about-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 25px;
    position: relative;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FFD700);
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3E2723;
    margin-bottom: 20px;
    text-align: justify;
}

.about-description:first-of-type {
    margin-bottom: 25px;
}

.about-button {
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FF6B35, #FF8C42);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Right Side - Statistics */
.about-stats {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(62, 39, 35, 0.1);
    border: 1px solid #F5F5DC;
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(255, 215, 0, 0.02));
    border-radius: 20px;
    z-index: -1;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B0000;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #FFD700);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #FAF7F0;
    border-radius: 15px;
    border-left: 4px solid #FF6B35;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-count {
    font-size: 2rem;
    font-weight: 800;
    color: #8B0000;
    display: inline-block;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-left: 2px;
}

.stat-text {
    font-size: 0.9rem;
    color: #5D4037;
    margin: 5px 0 0 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Mission Highlight */
.mission-highlight {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: mission-pattern 10s linear infinite;
}

@keyframes mission-pattern {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.mission-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mission-text {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-summary {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .title-hindi {
        font-size: 2rem;
    }
    
    .title-english {
        font-size: 1.4rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-subtitle {
        font-size: 1.6rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-stats {
        padding: 30px 20px;
    }
    
    .stat-card {
        padding: 15px;
        gap: 15px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-count {
        font-size: 1.6rem;
    }
    
    .mission-highlight {
        padding: 20px;
    }
    
    .mission-icon {
        font-size: 1.5rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title-hindi {
        font-size: 1.8rem;
    }
    
    .title-english {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .decoration-line {
        width: 40px;
    }
    
    .about-subtitle {
        font-size: 1.4rem;
    }
    
    .stats-grid {
        gap: 15px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* CSS Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #B71C1C;
    --accent-color: #FFC107;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --background-light: #FAFAFA;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header .english {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.8em;
}

.lotus-divider {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 20px 0;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Impact Section */
.our-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    position: relative;
}

.our-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(183, 28, 28, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.impact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 400px;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.card-content h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.card-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-content ul {
    list-style: none;
    padding-left: 0;
}

.card-content ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.card-content ul li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

/* Latest Work Section */
.latest-work {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin-top: 50px;
}

.news-card.featured {
    grid-row: span 2;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:not(.featured) .news-image img {
    height: 200px;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.news-meta .date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta .category {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.category.festival { background: var(--primary-color); }
.category.humanitarian { background: var(--secondary-color); }
.category.animal { background: #FFA726; }
.category.community { background: #4CAF50; }

.news-content h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card.featured .news-content h3 {
    font-size: 1.6rem;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    gap: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: 'Crimson Text', serif;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    margin-top: 8px;
}

.rating i {
    color: #FFC107;
    font-size: 0.9rem;
    margin-right: 2px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #4A0E0E 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.footer-logo p {
    font-style: italic;
    margin-bottom: 15px;
    color: #FFE0B2;
}

.om-symbol {
    font-size: 2rem;
    color: var(--accent-color);
    margin: 15px 0;
    text-align: center;
    font-family: 'Crimson Text', serif;
}

.footer-section h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--accent-color);
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #E0E0E0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.contact-item i {
    color: var(--primary-color);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.footer-divider {
    text-align: center;
    margin-bottom: 25px;
}

.lotus-pattern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: #B0B0B0;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* RESPONSIVE DESIGN */

/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .news-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

/* Medium Tablets (768px and below) */
@media (max-width: 768px) {
    .our-impact,
    .latest-work,
    .testimonials {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .impact-card {
        min-height: auto;
        padding: 30px 25px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .news-card.featured {
        grid-row: span 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 50px 0 30px;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Small Mobile Devices (576px and below) */
@media (max-width: 576px) {
    .our-impact,
    .latest-work,
    .testimonials {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .impact-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-card.featured .news-content h3 {
        font-size: 1.4rem;
    }
    
    .news-content h3 {
        font-size: 1.2rem;
    }
    
    .testimonial-author {
        gap: 12px;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px 0 25px;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
}

/* Extra Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .impact-grid,
    .news-grid,
    .testimonials-grid {
        gap: 15px;
    }
    
    .impact-card,
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-meta {
        gap: 10px;
    }
    
    .news-meta .date {
        font-size: 0.8rem;
    }
    
    .footer-top {
        padding: 35px 0 20px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.impact-card,
.news-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

.impact-card:nth-child(2) { animation-delay: 0.1s; }
.impact-card:nth-child(3) { animation-delay: 0.2s; }
.impact-card:nth-child(4) { animation-delay: 0.3s; }

.news-card:nth-child(2) { animation-delay: 0.1s; }
.news-card:nth-child(3) { animation-delay: 0.2s; }
.news-card:nth-child(4) { animation-delay: 0.3s; }

.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }


.gallery-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery-track {
  display: flex;
  width: calc(250px * 20); /* Adjust based on number of images */
  animation: scroll 40s linear infinite;
}

.gallery-track img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  margin-right: 20px;
  border: 4px solid #FF6B35;
  border-radius: 12px;
  transition: transform 0.3s ease;
}


.gallery-track img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Slow down the scroll a bit */
.gallery-track {
  animation: scroll 60s linear infinite;
}

/* Lightbox Styles */
#lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid #FF6B35;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}


#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#lightbox-img {
  max-width: 80%;
  max-height: 80%;
  border: 5px solid #FF6B35;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  animation: zoomIn 0.3s ease;
}

/* Navigation buttons */
.lightbox-nav {
  background: rgba(255, 107, 53, 0.8);
  border: none;
  color: white;
  font-size: 3rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  transition: background 0.3s ease;
}

.lightbox-nav:hover {
  background: #FF6B35;
}

.nav-brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

