* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d32f2f;
    --secondary-color: #f57c00;
    --dark-color: #333;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --text-color: #555;
    --border-color: #ddd;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-bar .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar {
    padding: 12px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f57c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 5px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(211, 47, 47, 0.08);
    font-weight: 700;
}

.nav-menu .donate-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f57c00 100%);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.nav-menu .donate-btn:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #d94020 100%);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
    transform: translateY(-2px);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    padding: 12px 0;
    margin-top: 8px;
    border-top: 3px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(211, 47, 47, 0.08) 0%, transparent 100%);
    color: var(--primary-color);
    padding-left: 25px;
}

.mega-menu {
    min-width: 700px;
    display: flex;
    padding: 25px;
    gap: 40px;
    border-top: 3px solid var(--primary-color);
}

.mega-menu > li {
    flex: 1;
}

.mega-menu h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 16px;
}

.mega-menu ul {
    list-style: none;
}

.mega-menu ul li {
    margin-bottom: 5px;
}

.mega-menu ul a {
    font-size: 14px;
    padding: 5px 0;
    border: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 40px;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8), 0px 0px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    background: linear-gradient(155deg, #f2d531, #b4a946, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.7));
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 0px 0px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    background: linear-gradient(135deg, #ffffff, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.7));
}

.hero-content p {
    font-size: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0px 0px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.hero-nav button {
    background: rgba(255,255,255,0.3);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
}

.hero-nav button:hover {
    background: rgba(255,255,255,0.5);
}

/* Quick Links Section */
.quick-links {
    padding: 60px 0;
    background: var(--light-color);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.quick-link-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-color);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.quick-link-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quick-link-item h3 {
    font-size: 16px;
    color: var(--dark-color);
}

/* Tagline Section */
.tagline-section {
    padding: 40px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.tagline {
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background: #b71c1c;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--light-color);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Operating Model Section */
.operating-model {
    padding: 80px 0;
    background: var(--white);
}

.model-tagline {
    font-size: 20px;
    color: var(--primary-color);
    margin: 20px 0;
}

.model-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.model-step {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s;
}

.model-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 35px;
    color: var(--white);
}

.model-step h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.model-step p {
    font-size: 16px;
    line-height: 1.6;
}

/* Get Associated Section */
.get-associated {
    padding: 80px 0;
    background: var(--light-color);
}

.associated-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.associated-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.associated-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 45px;
    color: var(--white);
}

.associated-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.associated-card p {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.card-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.card-btn:hover {
    background: #b71c1c;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.stats-section .section-header h2 {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--white);
}

.stat-label {
    font-size: 16px;
    line-height: 1.5;
}

/* Volunteer Section */
.volunteer-section {
    padding: 80px 0;
    background: var(--light-color);
}

.volunteer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.volunteer-content h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.volunteer-content h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.volunteer-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.join-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}

.join-btn:hover {
    background: #b71c1c;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 10px 0 0 20px;
    }

    .mega-menu {
        min-width: 100%;
        flex-direction: column;
    }

    .hero-content {
        padding: 25px;
        background: rgba(0, 0, 0, 0.35);
    }

    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .tagline {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .model-steps,
    .associated-options {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-bar .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 400px;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-section.alt-bg {
    background: var(--light-color);
}

.content-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    text-align: center;
}

/* Work Process */
.work-process {
    max-width: 800px;
    margin: 30px auto;
    padding-left: 20px;
}

.work-process li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 10px;
}

/* Approach List */
.approach-list {
    max-width: 600px;
    margin: 30px auto;
    list-style: none;
    text-align: left;
}

.approach-list li {
    font-size: 18px;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* Profile Content */
.profile-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

.profile-content p {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-info-card,
.contact-form-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info-card h2,
.contact-form-card h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: left;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #b71c1c;
}

/* Feedback Section */
.feedback-section {
    padding: 80px 0;
}

.feedback-form {
    max-width: 800px;
    margin: 30px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Donation Section */
.donation-info {
    padding: 60px 0;
    background: var(--light-color);
}

.donation-highlight {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.donation-highlight h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.donation-highlight p {
    font-size: 18px;
    line-height: 1.8;
}

.donation-options {
    padding: 80px 0;
    background: var(--white);
}

.donation-options h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.donation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.donation-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.donation-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.donation-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.donation-card p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.donation-details {
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: left;
}

.donation-details p {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
}

.donate-option-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 15px;
}

.donate-option-btn:hover {
    background: #b71c1c;
}

.donation-form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.donation-form-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.donation-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Ashram Grid */
.ashram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.ashram-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 500;
    color: var(--dark-color);
}

.ashram-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-placeholder {
    background: var(--light-color);
    padding: 80px 20px;
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gallery-placeholder p {
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 500;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.video-placeholder {
    background: var(--white);
    padding: 100px 20px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-placeholder i {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.video-placeholder p {
    font-size: 20px;
    color: var(--dark-color);
    font-weight: 500;
}

/* Literature List */
.literature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.literature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.literature-item i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.literature-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.download-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #b71c1c;
}

/* Reports List */
.reports-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.report-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.report-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.report-item p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
}

/* Volunteer Benefits */
.volunteer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 16px;
}

/* CSR Options */
.csr-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.csr-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.csr-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.csr-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* Headquarter Info */
.headquarter-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.8;
}

/* Ashram Features */
.ashram-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.facility-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.facility-item i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.facility-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.facility-item p {
    font-size: 16px;
}

/* Project List */
.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.project-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.project-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .donation-cards {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .ashram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .literature-list,
    .reports-list {
        grid-template-columns: 1fr;
    }

    .volunteer-benefits,
    .csr-options {
        grid-template-columns: 1fr;
    }

    .headquarter-info {
        grid-template-columns: 1fr;
    }
}
