/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2E8B57;
    --primary-dark: #1f6b4a;
    --primary-light: #3cb371;
    --secondary: #D4AF37;
    --accent: #8B4513;
    --light: #f8fdf9;
    --dark: #2c3e50;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    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:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.section-label {
    display: inline-block;
    background: rgba(46, 139, 87, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(46, 139, 87, 0.1);
}

header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo i {
    margin-right: 12px;
    font-size: 32px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
}

nav ul li a:hover {
    color: var(--primary);
    background: rgba(46, 139, 87, 0.05);
}

nav ul li a.active {
    color: var(--primary);
    background: rgba(46, 139, 87, 0.1);
    font-weight: 600;
}

nav ul li a.active::after {
    display: none;
}

.btn-donate {
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-donate:hover {
    background: #c99c2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--dark);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
    background: rgba(46, 139, 87, 0.1);
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(46, 139, 87, 0.2);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 0 80px;
    color: white;
}

.slide-content h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    line-height: 1.6;
}

.slide-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    transform: translateY(-50%);
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-nav button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
    gap: 12px;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: white;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-home {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, #f0f8f4 100%);
    position: relative;
}

.about-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat h3 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat p {
    color: var(--gray);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.1;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Divine Mythology Section */
.mythology {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff8ec 0%, #fffaf4 100%);
}

.mythology h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
}

.mythology-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 80px 0;
    align-items: center;
}

.mythology-block.reverse {
    direction: rtl;
}

.mythology-block.reverse .mythology-text {
    direction: ltr;
}

.mythology-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.mythology-img img:hover {
    transform: scale(1.05);
}

.mythology-text h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.mythology-text p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

blockquote.sanskrit {
    font-family: "Noto Serif", serif;
    font-size: 1.4rem;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 5px solid var(--secondary);
    border-radius: 12px;
    margin: 20px 0;
    color: #8b5e00;
    text-align: center;
}

blockquote.sanskrit span {
    display: block;
    font-size: 1rem;
    margin-top: 5px;
    color: var(--primary);
}

.meaning {
    margin-top: -10px;
    font-style: italic;
    text-align: center;
    color: var(--gray);
}

.deity-list {
    margin: 15px 0;
    padding-left: 20px;
}

.deity-list li {
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
}

.emotional-end {
    text-align: center;
    margin-top: 60px;
    background: rgba(46, 139, 87, 0.05);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.emotional-end h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.emotional-end p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 15px;
}

.final-line {
    margin-top: 30px;
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
}

/* Services Section */
.services-home {
    padding: 100px 0;
    background: white;
    position: relative;
}

.services-home h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(46, 139, 87, 0.1);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(46, 139, 87, 0.3);
}

.service-box:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
}

.service-box h3 {
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 600;
}

.service-box p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(46, 139, 87, 0.05);
}

.service-link:hover {
    color: var(--primary-dark);
    background: rgba(46, 139, 87, 0.1);
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5ee 100%);
    position: relative;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray);
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

.testimonial-content::before {
    content: '"';
    font-size: 80px;
    color: var(--primary-light);
    position: absolute;
    top: -40px;
    left: -10px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid var(--primary-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-author p {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.testimonials-nav button {
    background: var(--primary);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.testimonials-nav button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
    border-color: var(--primary-light);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #1a252f 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
    color: white;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 2px;
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-info li i {
    color: var(--primary-light);
    margin-top: 5px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    color: #95a5a6;
    font-size: 0.95rem;
}

/* =========================================== */
/* RESPONSIVE DESIGN FOR ALL SCREEN SIZES */
/* =========================================== */

/* Large Devices (Desktop) */
@media (max-width: 1200px) {
    .slide-content {
        width: 55%;
        padding: 0 60px;
    }
    
    .slide-image {
        width: 55%;
    }
    
    .slide-content h1 {
        font-size: 3.2rem;
    }
    
    .mythology-block {
        gap: 40px;
        margin: 60px 0;
    }
    
    .mythology-img img {
        height: 400px;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
    .slide-content {
        width: 60%;
        padding: 0 40px;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-image {
        width: 50%;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Mythology Section - FIXED for tablets */
    .mythology-block {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 50px 0;
    }
    
    .mythology-block.reverse {
        direction: ltr;
    }
    
    .mythology-img img {
        height: 350px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 20px;
    }
    
    .emotional-end {
        padding: 30px;
    }
}

/* Small Devices (Large Phones) */
@media (max-width: 768px) {
    /* Header */
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 85%;
        height: calc(100vh - 80px);
        background: white;
        transition: all 0.4s ease;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 40px 30px;
        border-radius: 0 20px 20px 0;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
        border-radius: 10px;
        width: 100%;
    }
    
    .btn-donate {
        margin: 20px 0 0 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 70vh;
        margin-top: 70px;
    }
    
    .slide-content {
        width: 100%;
        padding: 0 30px;
        text-align: center;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .slide-image {
        width: 100%;
    }
    
    .slide::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    }
    
    .slider-nav {
        padding: 0 20px;
    }
    
    .slider-nav button {
        width: 50px;
        height: 50px;
    }
    
    .slider-dots {
        bottom: 30px;
    }
    
    /* About Section */
    .about-home, .services-home, .mythology, .testimonials {
        padding: 70px 0;
    }
    
    .about-text h2,
    .services-home h2,
    .mythology h2,
    .testimonials h2 {
        font-size: 2.2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 30px 20px;
    }
    
    .stat h3 {
        font-size: 2.4rem;
    }
    
    /* Mythology Section - FIXED for mobile */
    .mythology h2 {
        font-size: 2.2rem;
    }
    
    .mythology-text h3 {
        font-size: 1.5rem;
    }
    
    /* Fix for reverse blocks on mobile */
    .mythology-block.reverse {
        display: flex;
        flex-direction: column;
    }
    
    .mythology-block.reverse .mythology-img {
        order: -1;
        margin-bottom: 30px;
    }
    
    blockquote.sanskrit {
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .emotional-end h3 {
        font-size: 1.5rem;
    }
    
    .final-line {
        font-size: 1.6rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-box {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    /* Testimonials */
    .testimonials-container {
        height: 320px;
    }
    
    .testimonial {
        padding: 30px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Extra Small Devices (Phones) */
@media (max-width: 576px) {
    /* Hero Slider */
    .hero-slider {
        height: 60vh;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    /* General Spacing */
    .about-home, .services-home, .mythology, .testimonials {
        padding: 50px 0;
    }
    
    /* Section Titles */
    .about-text h2,
    .services-home h2,
    .mythology h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }
    
    .section-label {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    /* About Section */
    .about-text p {
        font-size: 1rem;
    }
    
    /* Mythology Section - FIXED for small phones */
    .mythology-text h3 {
        font-size: 1.3rem;
    }
    
    .mythology-text p {
        font-size: 1rem;
    }
    
    .mythology-img img {
        height: 250px;
    }
    
    /* Ensure image comes first for reverse blocks on mobile */
    .mythology-block.reverse .mythology-img {
        order: -1;
    }
    
    .mythology-block:not(.reverse) .mythology-img {
        order: -1;
        margin-bottom: 30px;
    }
    
    .emotional-end {
        padding: 20px;
    }
    
    .emotional-end p {
        font-size: 1rem;
    }
    
    .final-line {
        font-size: 1.3rem;
    }
    
    /* Services */
    .service-box h3 {
        font-size: 1.2rem;
    }
    
    .service-box p {
        font-size: 0.95rem;
    }
    
    /* Testimonials */
    .testimonials-container {
        height: 350px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    /* Footer */
    footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    /* Container Padding */
    .container {
        padding: 0 15px;
    }
}

/* Very Small Devices (Small Phones) */
@media (max-width: 400px) {
    .logo span {
        font-size: 20px;
    }
    
    .logo img {
        height: 30px;
        margin-right: 8px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .stats {
        padding: 20px 15px;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .mythology-text h3 {
        font-size: 1.2rem;
    }
    
    blockquote.sanskrit {
        font-size: 1rem;
    }
    
    .testimonial-author img {
        width: 60px;
        height: 60px;
    }
}

/* =========================================== */
/* FIX FOR MYTHOLOGY SECTION ON MOBILE */
/* =========================================== */

/* Make all mythology blocks stack vertically on mobile */
@media (max-width: 992px) {
    .mythology-block {
        display: flex;
        flex-direction: column;
    }
    
    .mythology-block.reverse {
        flex-direction: column;
    }
    
    .mythology-img {
        order: -1;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .mythology-text {
        width: 100%;
    }
    
    .mythology-block.reverse .mythology-img {
        order: -1;
    }
    
    .mythology-block.reverse .mythology-text {
        order: 2;
    }
}

/* =========================================== */
/* ANIMATIONS & TRANSITIONS */
/* =========================================== */

/* Loading animation */
body.loaded .hero-slider {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Service box hover animation */
.service-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Mythological section animations */
.mythology-block {
    animation-delay: 0.1s;
}

.mythology-img {
    animation-delay: 0.2s;
}

.mythology-text {
    animation-delay: 0.3s;
}

/* Mobile menu animations */
nav {
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

.menu-toggle.active i {
    transform: rotate(180deg);
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .service-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide animations */
.slide {
    transition: opacity 1s ease, transform 1s ease;
}

/* =========================================== */
/* MOBILE-SPECIFIC ENHANCEMENTS */
/* =========================================== */

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    .btn, nav ul li a, .service-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-nav button,
    .testimonials-nav button {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .slider-dots .dot,
    .testimonial-dots .dot {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
    }
    
    /* Improve readability on mobile */
    p, li {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    h1, h2, h3 {
        line-height: 1.3 !important;
    }
    
    /* Prevent text from being too small */
    .stats h3 {
        font-size: 2rem !important;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero-slider {
        height: calc(var(--vh, 1vh) * 100);
    }
    
    input, textarea, select {
        font-size: 16px !important;
    }
}

/* =========================================== */
/* ACCESSIBILITY IMPROVEMENTS */
/* =========================================== */

/* Focus styles for keyboard navigation */
.btn:focus,
button:focus,
a:focus,
.service-link:focus,
.slider-nav button:focus,
.testimonials-nav button:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.3);
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================== */
/* PERFORMANCE OPTIMIZATIONS */
/* =========================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize images for mobile */
@media (max-width: 768px) {
    .slide-image {
        background-attachment: scroll;
    }
    
    .about-image img,
    .mythology-img img {
        height: 300px;
    }
}

/* =========================================== */
/* PRINT STYLES */
/* =========================================== */

@media print {
    .hero-slider,
    .slider-nav,
    .slider-dots,
    .menu-toggle,
    .btn-donate,
    .social-links {
        display: none !important;
    }
    
    .slide {
        position: relative !important;
        opacity: 1 !important;
        height: auto !important;
    }
    
    .slide-content {
        width: 100% !important;
        padding: 20px !important;
        color: #000 !important;
        text-shadow: none !important;
    }
    
    .slide-image {
        display: none !important;
    }
    
    a {
        color: #000 !important;
        text-decoration: none !important;
    }
    
    .btn {
        display: none !important;
    }
}

/* =========================================== */
/* UTILITY CLASSES */
/* =========================================== */

.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-none { display: none; }

@media (max-width: 768px) {
    .d-mobile-none { display: none; }
    .d-mobile-block { display: block; }
    .d-mobile-flex { display: flex; }
}

@media (min-width: 769px) {
    .d-desktop-none { display: none; }
    .d-desktop-block { display: block; }
    .d-desktop-flex { display: flex; }
}
/* -------------------------------------About us----------------------------------------------- */
/* About Page Specific Styles */

/* Page Header */
/* About Page Specific Styles */

/* Page Header */
/* Divine About Page Styles */

/* Sanskrit Font Support */
@font-face {
    font-family: 'Sanskrit';
    src: url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari&display=swap');
}

.sanskrit-text {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary-dark);
}

/* Page Header Divine */
.page-header {
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.85) 0%, 
        rgba(101, 67, 33, 0.85) 100%), 
        url('/assets/images/aboutus.jpg'); /* Changed to relative path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #FFD700;
    text-align: center;
    padding: 180px 0 120px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: 'ॐ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    color: rgba(255, 215, 0, 0.1);
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-weight: 900;
    z-index: 1;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    color: #FFF8DC;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.header-stats .stat h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Divine Prologue */
.divine-prologue {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FAF0E6 100%);
    position: relative;
    overflow: hidden;
}

.divine-prologue::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" opacity="0.05"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-family="Noto Sans Devanagari" font-size="80">ॐ</text></svg>');
    background-size: 200px;
}

.prologue-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sanskrit-mantra {
    background: linear-gradient(135deg, var(--primary) 0%, #8B4513 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
    border: 3px solid #FFD700;
    position: relative;
}

.sanskrit-mantra h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.sanskrit-mantra .sanskrit-text {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    line-height: 1.8;
}

.translation {
    color: #FFF8DC;
    font-style: italic;
    font-size: 1.1rem;
}

.prologue-text h2 {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 30px;
    font-weight: 700;
}

.prologue-text p {
    font-size: 1.2rem;
    color: #654321;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hindi-quote {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.hindi-quote i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.hindi-quote p {
    font-size: 1.3rem;
    color: #654321;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 10px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.hindi-quote cite {
    color: var(--primary);
    font-weight: 600;
}

/* Divine Mission */
.divine-mission {
    padding: 120px 0;
    background: linear-gradient(135deg, #F5F5DC 0%, #DEB887 100%);
    position: relative;
}

.shloka-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 2px dashed var(--primary);
    position: relative;
}

.shloka-section::before {
    content: '🕉️';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 2rem;
    background: white;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.shloka {
    text-align: center;
}

.shloka .sanskrit {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.4rem;
    color: var(--primary-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.shloka .meaning {
    font-size: 1.1rem;
    color: #654321;
    font-style: italic;
    padding: 15px;
    background: #FFF8DC;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.principle {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary);
}

.principle:hover {
    transform: translateY(-10px);
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #8B4513 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.principle h4 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.principle p {
    color: #654321;
    line-height: 1.6;
}

.mission-image {
    position: relative;
}

.image-frame {
    border: 15px solid white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(139, 69, 19, 0.9));
    color: white;
    padding: 20px;
    text-align: center;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.2rem;
}

.image-caption i {
    margin-right: 10px;
    color: #FFD700;
}

/* Mythology Section */
.mythology-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FAF0E6 0%, #F5DEB3 100%);
}

.mythology-stories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.story-card.reverse {
    direction: rtl;
}

.story-card.reverse .story-content {
    direction: ltr;
}

.story-image {
    position: relative;
    height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #8B4513 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.story-content {
    padding: 40px;
}

.story-content h3 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-content h3 i {
    color: #FFD700;
    margin-right: 10px;
}

.shloka-inline {
    background: #FFF8DC;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--primary);
}

.shloka-inline p {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    line-height: 1.6;
}

.shloka-inline small {
    color: #654321;
    font-style: italic;
}

.story-content p {
    color: #654321;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.story-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.point i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 25px;
}

.point span {
    color: #654321;
    font-weight: 500;
}

/* 33 Crore Deities Section */
.deities-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #E6D3A7 0%, #D2B48C 100%);
    position: relative;
    overflow: hidden;
}

.deities-section::before {
    content: '३३';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    color: rgba(139, 69, 19, 0.05);
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-weight: 900;
    z-index: 1;
}

.deities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cow-diagram {
    width: 100%;
    height: 500px;
    background: white;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.cow-body {
    width: 70%;
    height: 70%;
    background-image: url('/assets/images/33croreee.png');
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    opacity: 0.8;
}

.deity-point {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deity-point:hover .tooltip {
    opacity: 1;
    transform: translate(-50%, -100%);
}

.point {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #FF0000 100%);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.tooltip {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #8B4513 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #8B4513;
}

.deities-list h3 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.shloka-full {
    background: linear-gradient(135deg, #FFF8DC 0%, #FAF0E6 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid var(--primary);
}

.shloka-full p {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.3rem;
    color: var(--primary-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

.shloka-full small {
    color: #654321;
    font-style: italic;
    font-size: 0.9rem;
}

.deity-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.deity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.deity-item:hover {
    transform: translateY(-5px);
}

.deity-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #8B4513 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.deity-item h4 {
    color: #8B4513;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.deity-item p {
    color: #654321;
    font-size: 0.9rem;
    line-height: 1.4;
}

.divine-fact {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #8B4513;
}

.divine-fact i {
    font-size: 2rem;
    color: #8B4513;
}

.divine-fact p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Krishna Section */
.krishna-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 100%);
    position: relative;
    overflow: hidden;
}

.krishna-section::before {
    content: '🪕';
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 10rem;
    opacity: 0.1;
    z-index: 1;
}

.krishna-section::after {
    content: '🐄';
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 1;
}

.krishna-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.krishna-text h3 {
    color: #4B0082;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.krishna-text p {
    color: #483D8B;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.krishna-shloka {
    background: linear-gradient(135deg, #9370DB 0%, #4B0082 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    color: white;
}

.krishna-shloka .sanskrit {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: white;
}

.krishna-shloka .meaning {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.krishna-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.fact {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fact:hover {
    transform: translateY(-5px);
}

.fact i {
    font-size: 2.5rem;
    color: #4B0082;
    margin-bottom: 15px;
    display: block;
}

.fact h4 {
    color: #4B0082;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.fact p {
    color: #483D8B;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.krishna-frame {
    border: 15px solid white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.krishna-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.krishna-frame:hover img {
    transform: scale(1.05);
}

.frame-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(75, 0, 130, 0.9));
    color: white;
    padding: 20px;
    text-align: center;
}

.frame-quote p {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-style: italic;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.frame-quote small {
    opacity: 0.8;
    font-size: 0.9rem;
}

.bhagavad-gita {
    margin-top: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gita-verse i {
    font-size: 3rem;
    color: #4B0082;
    margin-bottom: 20px;
    display: block;
}

.gita-verse h4 {
    color: #4B0082;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.gita-verse p {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.4rem;
    color: #4B0082;
    line-height: 1.8;
    margin-bottom: 10px;
}

.gita-verse .translation {
    font-size: 1.1rem;
    color: #8B4513;
    font-style: italic;
}

/* Scientific Section */
.scientific-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F0FFF0 0%, #98FB98 100%);
}

.science-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.science-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.science-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary);
}

.science-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #228B22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
}

.science-card h3 {
    color: #228B22;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.science-card p {
    color: #2E8B57;
    margin-bottom: 20px;
    line-height: 1.7;
}

.science-list {
    list-style: none;
    padding: 0;
}

.science-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    color: #2E8B57;
}

.science-list li i {
    color: var(--primary);
    margin-top: 3px;
}

.ancient-wisdom {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
}

.wisdom-card h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.wisdom-card h3 i {
    margin-right: 10px;
}

.wisdom-card p {
    color: #FFF8DC;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.wisdom-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wisdom-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.wisdom-point strong {
    color: #FFD700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.wisdom-point span {
    color: #FFF8DC;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Spiritual Approach */
.spiritual-approach {
    padding: 120px 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E1 100%);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.rituals {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ritual {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ritual:hover {
    transform: translateX(10px);
}

.ritual-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC143C 0%, #FF69B4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ritual-details h4 {
    color: #DC143C;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.ritual-details p {
    color: #654321;
    margin-bottom: 8px;
    line-height: 1.5;
}

.time {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    padding: 5px 15px;
    background: #FFF0F5;
    border-radius: 15px;
}

.spiritual-quote {
    display: flex;
    align-items: center;
}

.quote-card {
    background: linear-gradient(135deg, #DC143C 0%, #FF69B4 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
    position: relative;
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
}

.quote-card i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    display: block;
}

.quote-card p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
}

.quote-author h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.quote-author span {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Divine CTA */
.divine-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(75, 0, 130, 0.9) 0%, 
        rgba(139, 0, 139, 0.9) 100%), 
        url('');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.divine-cta::before {
    content: '🕉️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-text p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.blessings {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.blessing {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.blessing i {
    color: #FFD700;
    font-size: 1.3rem;
}

.final-shloka {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.final-shloka p {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #FFD700;
}

.final-shloka small {
    opacity: 0.8;
    font-style: italic;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn-divine {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #4B0082;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.btn-divine:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
    border-color: white;
}

.btn-divine-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid white;
}

.btn-divine-outline:hover {
    background: white;
    color: #4B0082;
    transform: translateY(-5px);
}

.btn-divine-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-divine-light:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

/* Footer Divine */
footer {
    background: linear-gradient(135deg, #2F4F4F 0%, #1C1C1C 100%);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-col .logo {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-col h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-col ul li a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info li i {
    color: #FFD700;
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mission-content,
    .deities-content,
    .krishna-content,
    .science-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-card {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .story-image {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .principles,
    .deity-items,
    .krishna-facts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .mythology-section,
    .deities-section,
    .krishna-section,
    .scientific-section,
    .spiritual-approach,
    .divine-cta {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .principles,
    .deity-items,
    .krishna-facts {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 140px 0 80px;
    }
    
    .header-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .story-card.reverse {
        direction: ltr;
    }
    
    .blessings {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .sanskrit-text,
    .shloka .sanskrit,
    .shloka-inline p {
        font-size: 1rem;
    }
    
    .science-card,
    .ritual,
    .quote-card {
        padding: 25px;
    }
}
/* ---------------------------------------Services---------------------------------------- */
/* Services Page Specific Styles */

/* ============================================
   SERVICES PAGE STYLES
   Add these to your existing style.css file
=============================================== */

/* Page Header for Services */
.page-header {
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.85) 0%, 
        rgba(101, 67, 33, 0.85) 100%);
    background-size: cover;
    background-position: center;
    color: #FFD700;
    text-align: center;
    padding: 180px 0 120px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.sanskrit-quote {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.sanskrit-quote p {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 5px;
}

.sanskrit-quote small {
    color: #FFF8DC;
    opacity: 0.8;
    font-style: italic;
}

/* Divine Intro */
.divine-intro {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FAF0E6 100%);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    color: #8B4513;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text p {
    color: #654321;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hindi-quote {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #8B4513;
    margin-top: 30px;
}

.hindi-quote i {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
}

.hindi-quote p {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.2rem;
    color: #654321;
    font-style: italic;
    margin-bottom: 10px;
}

.hindi-quote cite {
    color: #8B4513;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Sacred Services */
.sacred-services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513 0%, #FFD700 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #8B4513;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.service-card p {
    color: #654321;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-benefits {
    margin-bottom: 30px;
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.benefit i {
    color: #8B4513;
    margin-right: 12px;
    font-size: 1rem;
}

.benefit span {
    color: #654321;
    font-size: 0.95rem;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.btn-service {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-service:hover {
    background: transparent;
    color: #8B4513;
    border-color: #8B4513;
    transform: translateY(-3px);
}

/* Divine Benefits */
.divine-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F5DC 0%, #DEB887 100%);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: #8B4513;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.benefit-text p {
    color: #654321;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.shloka-card {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.3);
}

.shloka-content i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    display: block;
}

.shloka-content .sanskrit {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: white;
}

.shloka-content .meaning {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    font-style: italic;
}

/* Divine Offerings */
.divine-offerings {
    padding: 100px 0;
    background: white;
}

.offerings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.offering-card {
    background: linear-gradient(135deg, #FFF8DC 0%, #FAF0E6 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #8B4513;
}

.offering-header {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    padding: 30px;
    text-align: center;
    color: white;
}

.offering-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.offering-header h3 {
    font-size: 1.8rem;
    margin: 0;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.offering-details {
    padding: 40px;
}

.offering-price {
    text-align: center;
    margin-bottom: 25px;
}

.offering-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
    display: block;
}

.offering-price .period {
    color: #654321;
    font-size: 1.1rem;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.offering-details > p {
    text-align: center;
    color: #654321;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.offering-benefits {
    margin-bottom: 30px;
}

.offering-benefits .benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #8B4513;
}

.offering-benefits .benefit i {
    color: #8B4513;
    margin-right: 15px;
    font-size: 1.1rem;
}

.offering-benefits .benefit span {
    color: #654321;
    font-weight: 500;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.scripture-quote {
    background: rgba(139, 69, 19, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.scripture-quote p {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.1rem;
    color: #8B4513;
    margin-bottom: 5px;
}

.scripture-quote small {
    color: #654321;
    font-style: italic;
    font-size: 0.9rem;
}

.btn-offering {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-offering:hover {
    background: transparent;
    color: #8B4513;
    border-color: #8B4513;
    transform: translateY(-3px);
}

.offering-info h3 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #FFF8DC;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: #8B4513;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-text p {
    color: #654321;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.donation-notes {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 25px;
    border-radius: 15px;
    color: #8B4513;
}

.donation-notes h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.donation-notes p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Ritual Details */
.ritual-details {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0FFF0 0%, #98FB98 100%);
}

.rituals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ritual-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.ritual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.ritual-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ritual-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.ritual-content {
    padding: 30px;
}

.ritual-content h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.ritual-content p {
    color: #654321;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.ritual-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
}

.ritual-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #654321;
    font-size: 0.9rem;
}

.ritual-features i {
    color: #8B4513;
}

.btn-ritual {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-ritual:hover {
    background: transparent;
    color: #8B4513;
    border-color: #8B4513;
}

/* Panchgavya Section */
.panchgavya-section {
    padding: 100px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: #FFF8DC;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #8B4513;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
}

.product-card h3 {
    color: #8B4513;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.product-card p {
    color: #654321;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 25px;
}

.btn-product {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-product:hover {
    background: transparent;
    color: #8B4513;
    border-color: #8B4513;
}

/* Visit Section */
.visit-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 100%);
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.visit-text h2 {
    color: #4B0082;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.visit-text p {
    color: #483D8B;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.visit-features {
    margin-bottom: 40px;
}

.visit-features .feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.visit-features .feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4B0082 0%, #9370DB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.visit-features .feature h4 {
    color: #4B0082;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.visit-features .feature p {
    color: #483D8B;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-visit {
    display: inline-block;
    background: linear-gradient(135deg, #4B0082 0%, #9370DB 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.btn-visit:hover {
    background: transparent;
    color: #4B0082;
    border-color: #4B0082;
    transform: translateY(-5px);
}

/* Divine Testimonials */
.divine-testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #FFF8DC;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-content i {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.5;
}

.testimonial-content p {
    color: #654321;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #8B4513;
}

.testimonial-author h4 {
    color: #8B4513;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #654321;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Divine CTA */
.divine-cta {
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #FFD700;
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.cta-features .feature i {
    color: #FFD700;
    font-size: 1.3rem;
}

.cta-features .feature span {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #4B0082;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
    border-color: white;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid white;
}

.btn-cta-outline:hover {
    background: white;
    color: #4B0082;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .intro-content,
    .benefits-content,
    .offerings-content,
    .visit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rituals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .divine-intro,
    .sacred-services,
    .divine-benefits,
    .divine-offerings,
    .ritual-details,
    .panchgavya-section,
    .visit-section,
    .divine-testimonials,
    .divine-cta {
        padding: 80px 0;
    }
    
    .services-grid,
    .rituals-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .sanskrit-quote p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .ritual-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}
/* ----------------------------contact us------------------------------------- */
/* Contact Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 30px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(5px);
}

/* Contact Main Section */
.contact-main {
    padding: 100px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-form-section > p {
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Form Styles */
.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group i {
    position: absolute;
    right: 15px;
    top: 42px;
    color: var(--gray);
    transition: color 0.3s ease;
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-section {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
}

.map-section h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.map-container {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.map-placeholder span {
    opacity: 0.9;
}

.map-btn {
    width: 100%;
    text-align: center;
}

.quick-contact {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
}

.quick-contact h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.quick-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quick-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-item i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.quick-item div {
    flex: 1;
}

.quick-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.quick-item span {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Visit Information Section */
.visit-info {
    padding: 100px 0;
    background-color: var(--light);
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.visit-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.visit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.visit-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 25px;
}

.visit-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.visit-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Volunteer Section */
.volunteer-section {
    padding: 100px 0;
    background: white;
}

.volunteer-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.volunteer-text {
    flex: 1;
}

.volunteer-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.volunteer-text > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.volunteer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
}

.benefit i {
    color: var(--primary);
    font-size: 1.2rem;
}

.benefit span {
    color: var(--dark);
    font-weight: 500;
}

.volunteer-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.volunteer-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.volunteer-image:hover img {
    transform: scale(1.05);
}

/* Volunteer Form Section */
.volunteer-form-section {
    padding: 100px 0;
    background-color: var(--light);
}

.volunteer-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 50px auto 0;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: #e9ecef;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

/* Emergency Section */
.emergency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    text-align: center;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.emergency-icon i {
    font-size: 4rem;
    opacity: 0.9;
}

.emergency-text {
    flex: 1;
    padding: 0 40px;
    text-align: left;
}

.emergency-text h2 {
    margin-bottom: 15px;
    color: white;
}

.emergency-text p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.emergency-contact i {
    font-size: 1.5rem;
}

.emergency-btn {
    background: white;
    color: #ff6b6b;
    border: none;
    font-weight: 700;
    padding: 15px 30px;
}

.emergency-btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .volunteer-content {
        flex-direction: column;
    }
    
    .volunteer-text, .volunteer-image {
        width: 100%;
    }
    
    .emergency-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .emergency-text {
        text-align: center;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-info-section, .contact-main, .visit-info, .volunteer-section, .volunteer-form-section, .emergency-section {
        padding: 60px 0;
    }
    
    .contact-form, .volunteer-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .volunteer-benefits {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form, .volunteer-form {
        padding: 20px;
    }
    
    .quick-item {
        flex-direction: column;
        text-align: center;
    }
}