/**
 * SHRI RADHA GOVIND ASHRAM Mumbai - Premium Spiritual Organization Website
 * Main Custom CSS Stylesheet
 */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* CSS VARIABLES - Premium Theme Config */
:root {
    /* Dark Theme (Default) */
    --bg-primary: #0A0704;
    --bg-secondary: #140E0A;
    --bg-card: rgba(24, 17, 12, 0.85);
    --bg-card-hover: rgba(36, 26, 18, 0.95);

    --text-primary: #F5EFEB;
    --text-secondary: #C3B8AE;
    --text-muted: #8E8276;

    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --saffron: #FF9933;
    --saffron-glow: rgba(255, 153, 51, 0.25);

    --border-color: rgba(212, 175, 55, 0.15);
    --border-color-hover: rgba(212, 175, 55, 0.35);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    --glass-blur: blur(16px);
    --glow-effect: 0 0 25px rgba(255, 153, 51, 0.15);
    --accent: #E07A5F;
}

/* Light Theme Overrides */
[data-theme="light"] {
    --bg-primary: #FAF6F0;
    --bg-secondary: #F0EAD6;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: #FFFFFF;

    --text-primary: #2C1A0F;
    --text-secondary: #5A4738;
    --text-muted: #8A7B6E;

    --gold: #B38600;
    --gold-glow: rgba(179, 134, 0, 0.2);
    --saffron: #E65C00;
    --saffron-glow: rgba(230, 92, 0, 0.15);

    --border-color: rgba(179, 134, 0, 0.2);
    --border-color-hover: rgba(179, 134, 0, 0.4);
    --shadow: 0 10px 30px rgba(90, 71, 56, 0.12);
    --glow-effect: 0 0 25px rgba(230, 92, 0, 0.08);
}

/* RESET & BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-primary);
}

/* SECTIONS */
section {
    padding: 55px 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* =========================
   PRELOADER
========================= */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-logo {
    max-width: 260px;
    width: 60%;
    object-fit: contain;
}

/* PREMIUM BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
    color: #0A0704;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

/* =========================
   PREMIUM HEADER DESIGN
========================= */

header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    max-width: 1450px;
    margin: auto;
}

/* =========================
   LOGO
========================= */

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffcc70, #ff7b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    letter-spacing: 1px;
}

/* =========================
   NAVIGATION
========================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Hover */
.nav-link:hover {
    color: #000;
}

/* Active Menu — simple underline only, no pill */
.nav-link.active {
    color: #ff7b00;
}

/* Animated underline */
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: #ffb347;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 65%;
}

/* =========================
   DROPDOWN
========================= */

.dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 260px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    text-decoration: none;
    color: #444;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(45deg, #ff7b00, #ffb347);
    color: #111;
    transform: translateX(5px);
}

/* =========================
   PREMIUM BUTTON STYLE
========================= */

.btn-premium {
    padding: 13px 24px;
    border-radius: 14px;
    background: linear-gradient(45deg, #ff7b00, #ffb347);
    color: #111;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 123, 0, 0.35);
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 123, 0, 0.45);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px) {

    .header-container {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dropdown-menu {
        position: relative;
        top: 10px;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .logo-main {
        font-size: 1.25rem;
    }
}

/* HEADER STYLE 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 7, 4, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

[data-theme="light"] header {
    background: rgba(250, 246, 240, 0.8);
}

header.scrolled {
    padding: 10px 0;
    background: var(--bg-primary);
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.4s ease;
}

header.scrolled .header-container {
    padding: 10px 0;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--saffron);
    letter-spacing: 3px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--saffron);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
} 
    */

/* Theme Switcher Toggle */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--gold);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* =========================================
   PREMIUM HERO SLIDER - RECTANGLE VERSION
========================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 78vh;
    overflow: hidden;
    background: #000;

    /* RECTANGLE SHAPE */
    border-radius: 0;
}

/* =========================================
   SLIDES
========================================= */

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition: opacity 1s ease-in-out;
    z-index: 1;

    border-radius: 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* =========================================
   IMAGE
========================================= */

.slide-img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    /* ORIGINAL IMAGE */
    filter: none;

    /* REMOVE ZOOM EFFECT */
    transform: scale(1);

    transition: none;

    border-radius: 0;
}

/* =========================================
   REMOVE OVERLAY
========================================= */

.slide-overlay {
    display: none;
}

/* =========================================
   CONTENT
========================================= */

.slide-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 850px;

    text-align: center;

    z-index: 3;

    opacity: 0;
    transition: all 0.8s ease;
}

.slide.active .slide-content {
    opacity: 1;
}

.slide-subtitle {
    color: #ffb347;

    font-size: 1rem;
    text-transform: uppercase;

    letter-spacing: 4px;

    margin-bottom: 16px;
    font-weight: 600;
}

.slide-title {
    font-size: 3.2rem;
    line-height: 1.2;

    margin-bottom: 20px;

    color: #fff;

    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.slide-text {
    font-size: 1.05rem;

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 30px;

    max-width: 680px;
    margin-inline: auto;
}

/* =========================================
   BUTTONS
========================================= */

.slide-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.slide-actions .btn {
    padding: 13px 28px;

    border-radius: 14px;

    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}

.slide-actions .btn-primary {
    background: linear-gradient(45deg, #ff7b00, #ffb347);

    color: #111;

    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.35);
}

.slide-actions .btn-primary:hover {
    transform: translateY(-3px);
}

/* =========================================
   SLIDER BUTTONS
========================================= */

.slider-btn {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 58px;
    height: 58px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.15);

    background: rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(10px);

    color: #ffb347;
    font-size: 1.3rem;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 5;

    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #ffb347;
    color: #111;
}

.slider-prev {
    left: 25px;
}

.slider-next {
    right: 25px;
}

/* =========================================
   DOTS
========================================= */

.slider-dots {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 10px;

    z-index: 5;
}

.dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.35);

    transition: all 0.3s ease;

    cursor: pointer;
}

.dot.active {
    background: #ffb347;

    transform: scale(1.2);

    box-shadow: 0 0 10px #ffb347;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .hero-slider {
        height: 60vh;
        border-radius: 0;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-text {
        font-size: 0.95rem;
    }

    .slide-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .slider-btn {
        display: none;
    }

    .slide-actions {
        flex-direction: column;
        align-items: center;
    }

    .slide-actions .btn {
        width: 100%;
        max-width: 240px;
    }
}

/* DYNAMIC COUNTDOWN WIDGET */
.countdown-banner {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #20150D 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.countdown-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.countdown-info h4 {
    color: var(--saffron);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.countdown-info h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.time-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 18px;
    min-width: 75px;
    text-align: center;
    box-shadow: var(--shadow);
}

.time-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1.2;
}

.time-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .countdown-container {
        flex-direction: column;
        text-align: center;
    }
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    color: var(--saffron);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

/* ABOUT SECTION - SPLIT LAYOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-quote {
    border-left: 3px solid var(--saffron);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.about-image-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    border-radius: 8px;
    z-index: 1;
    transition: all 0.5s ease;
}

.about-image-wrapper:hover .about-image-glow {
    top: -10px;
    right: -10px;
    border-color: var(--saffron);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* TEMPLE DARSHAN SECTION */
.darshan-section {
    background: var(--bg-secondary);
}

.darshan-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 25px;
}

@media (max-width: 992px) {
    .darshan-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



.darshan-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.darshan-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.timings-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.timings-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    text-align: center;
}

.timing-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.1);
}

.timing-item:last-child {
    border-bottom: none;
}

.timing-name {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.timing-time {
    color: var(--saffron);
    font-weight: 500;
}

/* DONATION CALL-TO-ACTION */
.donation-cta-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 60px 0;
}

.donation-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 7, 4, 0.92) 0%, rgba(36, 20, 10, 0.92) 100%);
}

.donation-cta-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.donation-cta-content h2 {
    font-size: 2.8rem;
    color: #FFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.donation-cta-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.donation-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.donation-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.donation-card:hover,
.donation-card.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.donation-card-amount {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.donation-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 10px;
}

.donation-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .donation-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* EVENTS SLIDER SECTION */
.events-section {
    background: var(--bg-primary);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.event-item:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 35px rgba(255, 153, 51, 0.1);
}

.event-img-link {
    display: block;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-item:hover .event-img {
    transform: scale(1.08);
}

.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--saffron);
    color: #0A0704;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
}

.event-body {
    padding: 25px;
}

.event-title {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.event-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* GALLERY MASONRY */
.gallery-section {
    background: var(--bg-secondary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #120C06;
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 250px;
}

.gallery-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 7, 4, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: #FFF;
    padding: 20px;
}

.gallery-info h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    position: relative;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    object-fit: cover;
}

.testimonial-name {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
}

.testimonial-designation {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* BLOG NEWS SECTION */
.blog-section {
    background: var(--bg-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
}

.blog-img-link {
    display: block;
    height: 200px;
    overflow: hidden;
}

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

.blog-item:hover .blog-img {
    transform: scale(1.05);
}

.blog-body {
    padding: 25px;
}

.blog-meta-date {
    font-size: 0.8rem;
    color: var(--saffron);
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.blog-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-readmore {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-readmore:hover {
    color: var(--saffron);
}

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

/* FOOTER SECTION */
footer {
    background: #060403;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: #120C06;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 12px;
    color: #FFF;
    font-family: inherit;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-btn {
    background: var(--gold);
    border: none;
    color: #0A0704;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   PREMIUM FLOATING MANTRA PLAYER
========================================= */
.premium-mantra-player {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: rgba(12, 8, 5, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    padding: 8px 12px 8px 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    overflow: hidden;
}

.premium-mantra-player:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.7);
}

.player-glow {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, transparent 70%);
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 0;
}

.premium-mantra-player.playing .player-glow {
    opacity: 1;
    transform: translateY(-50%) scale(1.5);
    animation: pulse-glow 3s infinite alternate;
}

.player-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.player-artwork {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a1f18 0%, #1a120c 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.artwork-disk {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #d4af37, #f3e5ab, #d4af37, #bfaea0, #d4af37);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1a120c;
    font-size: 1.2rem;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    animation: spin 8s linear infinite;
    animation-play-state: paused;
}

.premium-mantra-player.playing .artwork-disk {
    animation-play-state: running;
}

.artwork-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px dashed rgba(212, 175, 55, 0.4);
    animation: spin 15s linear infinite reverse;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-mantra-player.playing .artwork-ring {
    opacity: 1;
}

.player-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 120px;
}

.player-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #f8f1e7;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.player-subtitle {
    font-size: 0.7rem;
    color: #bfaea0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 10px;
    margin-left: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-mantra-player.playing .equalizer {
    opacity: 1;
}

.equalizer span {
    width: 2px;
    background: #d4af37;
    border-radius: 1px;
    animation: equalize 1s infinite alternate;
}

.equalizer span:nth-child(1) {
    height: 40%;
    animation-delay: 0.1s;
}

.equalizer span:nth-child(2) {
    height: 80%;
    animation-delay: 0.3s;
}

.equalizer span:nth-child(3) {
    height: 60%;
    animation-delay: 0.5s;
}

.equalizer span:nth-child(4) {
    height: 100%;
    animation-delay: 0.2s;
}

.player-controls {
    margin-left: 5px;
}

.play-pause-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}

.play-pause-btn:hover {
    background: linear-gradient(135deg, #d4af37, #e5a93b);
    color: #1a120c;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.2);
    }

    100% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1.6);
    }
}

@keyframes equalize {
    0% {
        height: 20%;
    }

    100% {
        height: 100%;
    }
}

/* MOBILE APP BAR NAVIGATION */
.mobile-app-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-app-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: rgba(10, 7, 4, 0.95);
        backdrop-filter: var(--glass-blur);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
        z-index: 1001;
    }

    [data-theme="light"] .mobile-app-bar {
        background: rgba(250, 246, 240, 0.95);
    }

    .mobile-app-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.65rem;
        color: var(--text-secondary);
        font-family: 'Cinzel', serif;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-app-link.active,
    .mobile-app-link:hover {
        color: var(--gold);
    }

    .mobile-app-icon {
        font-size: 1.25rem;
        margin-bottom: 2px;
    }

    /* Make body scroll bottom padding to accommodate bar */
    body {
        padding-bottom: 60px;
    }

    /* Adjust mantra player to be above app bar on mobile */
    .premium-mantra-player {
        bottom: 75px;
        right: 15px;
        border-radius: 30px;
        padding: 6px 10px 6px 6px;
    }

    .player-title {
        font-size: 0.75rem;
    }

    /* Hide desktop headers actions if too tight */
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: block !important;
        position: fixed !important;
        top: 80px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background: #ffffff !important;
        padding: 0 0 140px 0 !important;
        z-index: 10001 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        box-sizing: border-box !important;
        transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }

    .nav-menu.open {
        left: 0 !important;
    }

    /* Every direct child of the nav must stack vertically */
    .nav-menu>*,
    .nav-menu>a,
    .nav-menu>.dropdown {
        display: block !important;
        width: 100% !important;
        float: none !important;
        clear: both !important;
    }

    .nav-link {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 1.1rem !important;
        font-family: 'Cinzel', serif !important;
        font-weight: 700 !important;
        color: #222 !important;
        width: 100% !important;
        text-align: left !important;
        padding: 16px 25px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
        box-sizing: border-box !important;
    }

    .nav-link:hover {
        color: #ff7b00 !important;
    }

    .dropdown.active>.nav-link {
        color: #ff7b00 !important;
    }

    .dropdown {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
    }

    .dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        background: #f8f8f8 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin-top: 0 !important;
        padding: 5px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        overflow: visible !important;
    }

    .dropdown.active>.dropdown-menu {
        display: block !important;
    }

    .dropdown-menu a {
        display: block !important;
        font-size: 0.95rem !important;
        color: #555 !important;
        padding: 12px 20px 12px 35px !important;
        text-align: left !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.06) !important;
    }

    .dropdown-menu a:last-child {
        border-bottom: none !important;
    }

    .dropdown-menu a:hover {
        color: #ff7b00 !important;
    }
}



/* SUBPAGE BANNER */
.subpage-banner {
    padding: 110px 0 50px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.subpage-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 7, 4, 0.6) 0%, rgba(10, 7, 4, 0.9) 100%);
}

.subpage-banner-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.subpage-banner-content h1 {
    font-size: 3rem;
    color: #FFF;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--saffron);
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px 16px;
    color: #FFF;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px var(--gold-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #FFF;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-title {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    text-align: center;
    margin-top: 15px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #d48b00;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* =========================================
   PREMIUM GLIMPSES SECTION
========================================= */



.premium-glimpses {
    padding: 60px 0;
    background: #f8f8f8;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 55px;
    font-weight: 800;
    color: #5a189a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
}

/* =========================================
   GRID - 4 CARDS
========================================= */

.carousel-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* =========================================
   CARD
========================================= */

/* =========================================
   GLIMPSE CARD
========================================= */

.glimpse-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 28px;
}

/* IMAGE */
.glimpse-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.15));

    z-index: 1;
}

/* =========================================
   CONTENT
========================================= */

.card-content {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;
}

/* TITLE */
.card-content h3 {
    color: #fff !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;

    /* text-shadow:
        0 3px 10px rgba(0,0,0,0.7); */
}

/* DATE */
.card-content span {
    color: #ffcc70 !important;
    font-size: 15px;
    font-weight: 600;


}

/* HOVER */
.glimpse-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18);
}

.glimpse-card:hover img {
    transform: scale(1.10);
}

/* =========================================
   BUTTON
========================================= */

.btn-wrap {
    text-align: center;
    margin-top: 60px;
}

.news-btn {
    display: inline-block;

    padding: 16px 40px;

    background: linear-gradient(135deg,
            #ff9800,
            #ff6d00);

    color: #fff;
    text-decoration: none;

    border-radius: 50px;

    font-size: 16px;
    font-weight: 700;

    transition: 0.4s ease;
}

.news-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .carousel-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:991px) {

    .carousel-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 42px;
    }

    .glimpse-card {
        height: 380px;
    }
}

@media(max-width:767px) {

    .carousel-track {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .section-header p {
        font-size: 16px;
    }

    .glimpse-card {
        height: 340px;
    }
}

/* =========================================
   TEMPLE VISIT SECTION
========================================= */



.temple-visit-section {
    padding: 60px 0;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
}

/* =========================================
   SECTION HEADER
 ========================================= */

.section-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 58px;
    font-weight: 800;
    color: #5e239d;
    margin-bottom: 22px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.9;
}

/* =========================================
   VISIT GRID
========================================= */

.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* =========================================
   VISIT CARD
========================================= */

.visit-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 520px;
    display: block;
    text-decoration: none;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);

    transition: 0.5s ease;
}

/* IMAGE */
.visit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.7s ease;
}

/* DARK OVERLAY */
.visit-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.10));

    z-index: 1;
}

/* HOVER */
.visit-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18);
}

/* IMAGE ZOOM */
.visit-card:hover img {
    transform: scale(1.12);
}

/* =========================================
   CONTENT
========================================= */

.visit-content {
    position: absolute;
    left: 35px;
    bottom: 35px;
    z-index: 2;
}

/* TAG */
.visit-tag {
    display: inline-block;

    padding: 10px 22px;

    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;

    margin-bottom: 18px;
}

/* TITLE */
.visit-content h3 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;

    transition: 0.4s ease;
}

/* HOVER TEXT */
.visit-card:hover .visit-content h3 {
    transform: translateX(6px);
}

/* =========================================
   GLOW EFFECT
========================================= */

.visit-card::after {
    content: "";
    position: absolute;

    width: 250px;
    height: 250px;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    top: -100px;
    right: -100px;

    z-index: 1;

    transition: 0.5s ease;
}

.visit-card:hover::after {
    transform: scale(1.3);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .visit-content h3 {
        font-size: 30px;
    }

    .section-header h2 {
        font-size: 48px;
    }
}

@media(max-width:991px) {
    .visit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .visit-card {
        height: 320px;
    }

    .section-header h2 {
        font-size: 42px;
    }
}

@media(max-width:767px) {
    .temple-visit-section {
        padding: 50px 0;
    }

    /* Horizontal carousel on mobile */
    .visit-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 10px 20px 20px 20px !important;
        grid-template-columns: unset !important;
    }

    .visit-grid::-webkit-scrollbar {
        display: none;
    }

    .visit-card {
        flex: 0 0 78vw !important;
        width: 78vw !important;
        height: 280px !important;
        scroll-snap-align: start !important;
        border-radius: 18px !important;
    }

    .visit-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 15px;
    }

    .visit-content {
        left: 20px;
        bottom: 20px;
    }

    .visit-content h3 {
        font-size: 22px;
    }
}

/* =========================================
   DISCOVER MORE SECTION
========================================= */

.discover-more {
    padding: 100px 0;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 55px;
    font-weight: 800;
    color: #6a1b9a;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

/* =========================================
   GRID
========================================= */

.discover-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* =========================================
   CARD
========================================= */

/* =========================================
   CARD LAYOUT
========================================= */

.discover-card {
    text-decoration: none;
    text-align: center;
    background: transparent;
    box-shadow: none;
}

/* IMAGE */
.card-img {
    width: 220px;
    height: 260px;
    margin: auto;
    overflow: hidden;
    border-radius: 30px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* HOVER */
.discover-card:hover img {
    transform: scale(1.08);
}

/* =========================================
   TEXT BELOW IMAGE
========================================= */

.card-content {
    margin-top: 22px;
    position: relative;
    padding: 0;
}

/* TITLE */
.card-content h3 {
    color: #222 !important;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* SUBTEXT */
.card-content span {
    color: #ff7b00 !important;
    font-size: 15px;
    font-weight: 600;
}

/* REMOVE OVERLAY */
.overlay {
    display: none;
}

/* =========================================
   CONTENT
========================================= */

.card-content {
    padding: 28px 24px;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    transition: 0.4s;
}

.card-content span {
    color: #ff7b00;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.4s;
}

/* HOVER TEXT */
.discover-card:hover .card-content h3 {
    color: #6a1b9a;
}

.discover-card:hover .card-content span {
    letter-spacing: 1px;
}

/* GLOW EFFECT */
.discover-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;

    width: 200%;
    height: 200%;

    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0));

    transform: rotate(25deg);

    transition: 0.8s;
}

.discover-card:hover::before {
    left: 100%;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1400px) {
    .discover-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .section-title h2 {
        font-size: 48px;
    }
}

@media(max-width:991px) {
    .discover-more {
        padding: 60px 0;
    }

    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card-img {
        width: 100% !important;
        height: 200px;
    }

    .section-title h2 {
        font-size: 40px;
    }
}

@media(max-width:767px) {
    .discover-more {
        padding: 40px 0;
    }

    /* Horizontal swipeable carousel on mobile */
    .discover-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 10px 20px 20px 20px !important;
        grid-template-columns: unset !important;
    }

    .discover-grid::-webkit-scrollbar {
        display: none;
    }

    .discover-card {
        flex: 0 0 72vw !important;
        width: 72vw !important;
        scroll-snap-align: start !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        background: #fff !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10) !important;
    }

    .card-img {
        width: 100% !important;
        height: 180px !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }

    .card-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .card-content {
        padding: 16px !important;
    }

    .card-content h3 {
        font-size: 18px !important;
        margin-bottom: 6px !important;
        color: #222 !important;
    }

    .card-content span {
        font-size: 13px !important;
        color: #ff7b00 !important;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 15px;
    }
}

/* MODAL BOX */

.form-box {
    max-width: 720px;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(123, 47, 247, 0.08);
}

/* HEADER */

.form-header {
    background: linear-gradient(135deg, #6f35b5, #9f44ff);
    color: white;
    padding: 28px 35px;
    position: relative;
}

.form-header h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 15px;
    opacity: 0.9;
}

.close-btn {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    opacity: 0.8;
}

/* FORM */

.form-content {
    padding: 35px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.form-control {
    width: 100%;
    height: 56px;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 15px;
    transition: 0.3s;
    background: #fafafa;
}

.form-control:focus {
    border-color: #7b2ff7;
    outline: none;
    background: white;
    box-shadow: 0 0 0 5px rgba(123, 47, 247, 0.10);
}

/* GRID */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 18px;
}

/* CONTRIBUTION */

.contribution-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 30px 0 20px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 25px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #faf7ff;
    padding: 12px 15px;
    border-radius: 14px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.checkbox-item:hover {
    border-color: #c9a7ff;
    background: #f5eeff;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    accent-color: #7b2ff7;
    cursor: pointer;
}

.checkbox-item label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

/* BUTTON */

.submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #7b2ff7, #9f44ff);
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 35px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(123, 47, 247, 0.20);
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(123, 47, 247, 0.30);
}

/* MOBILE */

@media(max-width:768px) {

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .form-content {
        padding: 25px;
    }

    .form-header h2 {
        font-size: 24px;
    }

}


.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.visit-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 30px;
    text-decoration: none;
    height: 450px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all .4s ease;
}

.visit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.visit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.visit-card:hover img {
    transform: scale(1.08);
}

/* Remove white circular overlap */
.visit-card::before,
.visit-card::after {
    display: none !important;
    content: none !important;
}

/* Bottom Gradient */
.visit-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    z-index: 2;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0) 100%);
}

.visit-tag {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.visit-content h3 {
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

/* Tablet */
@media(max-width:992px) {

    .visit-grid {
        gap: 25px;
    }

    .visit-card {
        height: 400px;
    }

    .visit-content h3 {
        font-size: 34px;
    }
}

/* Mobile */
@media(max-width:768px) {

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .visit-card {
        height: 350px;
    }

    .visit-content {
        padding: 22px;
    }

    .visit-tag {
        padding: 10px 22px;
        font-size: 14px;
    }

    .visit-content h3 {
        font-size: 28px;
    }
}


.donation-cta-section {
    background-color: #F0EAD6;
    padding: 80px 0;
}

.donation-cta-content {
    text-align: center;
    max-width: 1200px;
    margin: auto;
}


.section-title {
    color: #000 !important;
}

.section-subtitle {
    color: #c79a2b !important;
}

.section-title {
    color: #000;
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
}

.section-description {
    max-width: 850px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 45px;
}

.donation-card {
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.donation-card:hover {
    transform: translateY(-8px);
}

.card-line {
    width: 60px;
    height: 5px;
    margin: 0 auto 20px;
    border-radius: 20px;
}

/* Card 1 */
.card-prasadam {
    background: linear-gradient(135deg, #fffaf0, #f8e7c6);
    border: 2px solid rgba(212, 175, 55, 0.25);
}

.card-prasadam .card-line {
    background: linear-gradient(90deg, #ff9800, #ffc107);
}

.card-prasadam .amount {
    color: #c88700;
}

/* Card 2 */
.card-gaushala {
    background: linear-gradient(135deg, #f8f1ff, #eadcff);
    border: 2px solid rgba(142, 36, 170, 0.20);
}

.card-gaushala .card-line {
    background: linear-gradient(90deg, #8e24aa, #ba68c8);
}

.card-gaushala .amount {
    color: #8e24aa;
}

/* Card 3 */
.card-annadan {
    background: linear-gradient(135deg, #f1fff4, #dff7e5);
    border: 2px solid rgba(67, 160, 71, 0.20);
}

.card-annadan .card-line {
    background: linear-gradient(90deg, #43a047, #81c784);
}

.card-annadan .amount {
    color: #2e7d32;
}

.amount {
    display: block;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.donation-card h4 {
    color: #5d3a00;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.donation-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.donate-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.donate-btn:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .amount {
        font-size: 34px;
    }
}

/* Abou section */
.about-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.about-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.sidebar-wrapper {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.sidebar-card {
    background: linear-gradient(135deg,
            rgba(255, 183, 77, 0.75),
            rgba(255, 140, 0, 0.75));
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(212, 206, 210, 0.25);
    position: sticky;
    top: 20px;
}

.sidebar-link {
    display: block;
    padding: 16px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.18);
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.sidebar-link:last-child {
    margin-bottom: 0;
}

.sidebar-link:hover,
.sidebar-link.active {
    transform: translateX(10px);
    background: #000;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .sidebar-wrapper {
        max-width: 100%;
    }

    .sidebar-card {
        position: relative;
        top: 0;
    }

    .sidebar-link {
        font-size: 16px;
        padding: 14px 18px;
    }
}

.content-box {
    flex: 2;
    min-width: 300px;
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.top-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(123, 47, 247, 0.08);
    border-radius: 50%;
}

.main-title {
    font-size: 42px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 25px;
    font-weight: 800;
    font-family: 'Cinzel', serif;
}

.content-text {
    font-size: 19px;
    line-height: 2;
    color: #555;
    margin-bottom: 35px;
}

.mission-box {
    background: linear-gradient(135deg, #f5f0ff, #ffffff);
    border-left: 5px solid #7b2ff7;
    padding: 30px;
    border-radius: 18px;
    margin-bottom: 35px;
    box-shadow: 0 10px 20px rgba(123, 47, 247, 0.08);
}

.mission-box h3 {
    color: #6c2bd9;
    margin-bottom: 15px;
    font-size: 28px;
}

.mission-box p {
    color: #555;
    font-size: 18px;
    line-height: 1.9;
}

.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #7b2ff7, #9f44ff);
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(123, 47, 247, 0.25);
    transition: 0.4s;
}

.btn-primary:hover {
    transform: translateY(-5px);
}

.btn-outline {
    background: #fff;
    color: #7b2ff7;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #7b2ff7;
    transition: 0.4s;
}

.btn-outline:hover {
    background: #7b2ff7;
    color: #fff;
}

/* Responsive */
@media(max-width:768px) {

    .content-box {
        padding: 30px 20px;
    }

    .main-title {
        font-size: 30px;
    }

    .content-text {
        font-size: 17px;
        line-height: 1.8;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        text-align: center;
    }
}

/* About us  */
.about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.sidebar-wrapper {
    width: 320px;
    flex-shrink: 0;
}

.content-box {
    flex: 1;
    width: calc(100% - 360px);
}

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.sidebar-wrapper {
    width: 320px;
    flex-shrink: 0;
}

.content-box {
    flex: 1;
    min-width: 0;
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Mobile */
@media(max-width:991px) {
    .about-container {
        flex-direction: column;
    }

    .sidebar-wrapper {
        width: 100%;
    }
}

.about-section {
    padding: 60px 2%;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.about-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 1600px;
    margin: auto;
}

/* Sidebar */

.sidebar-wrapper {
    width: 300px;
    min-width: 300px;
}

.sidebar-card {
    background: linear-gradient(135deg,
            rgba(255, 183, 77, 0.75),
            rgba(255, 140, 0, 0.75));
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(212, 206, 210, 0.25);
    position: sticky;
    top: 20px;
}

.sidebar-link {
    display: block;
    padding: 16px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.18);
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.sidebar-link:last-child {
    margin-bottom: 0;
}

.sidebar-link:hover {
    transform: translateX(10px);
    background: #000;
    color: #fff;
}

.sidebar-link.active {
    background: #000;
    color: #fff;
}

/* Content */

.content-box {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.top-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(123, 47, 247, 0.08);
    border-radius: 50%;
}

.main-heading {
    font-size: 34px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 25px;
    font-weight: 800;
}

.content-text {
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 35px;
}

.mission-box {
    background: linear-gradient(135deg, #f5f0ff, #ffffff);
    border-left: 5px solid #7b2ff7;
    padding: 30px;
    border-radius: 18px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(123, 47, 247, 0.08);
}

/* Responsive */

@media(max-width:991px) {

    .about-container {
        flex-direction: column;
    }

    .sidebar-wrapper {
        width: 100%;
        min-width: 100%;
    }

    .content-box {
        width: 100%;
        padding: 25px;
    }

    .main-heading {
        font-size: 28px;
    }

    .content-text {
        font-size: 16px;
    }
}

/* Our Mission */

.mission-section {
    padding: 60px 2%;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.mission-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 1600px;
    margin: auto;
}

/* Sidebar */
.sidebar-wrapper {
    width: 300px;
    min-width: 300px;
}

.sidebar-box {
    background: linear-gradient(135deg,
            rgba(255, 183, 77, .75),
            rgba(255, 140, 0, .75));
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(212, 206, 210, .25);
    position: sticky;
    top: 20px;
}

.menu-link {
    display: block;
    padding: 16px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, .18);
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: .4s;
}

.menu-link:last-child {
    margin-bottom: 0;
}

.menu-link:hover {
    transform: translateX(10px);
    background: #000;
    color: #fff;
}

.menu-link.active {
    background: #000;
    color: #fff;
}

/* Content */
.content-box {
    flex: 1;
    background: #fff;
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.top-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(123, 47, 247, .08);
}

.page-title {
    font-size: 34px;
    line-height: 1.3;
    color: #000;
    font-weight: 800;
    margin-bottom: 30px;
}

.mission-content {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 28px;
    border: 1px solid rgba(123, 47, 247, .08);
    box-shadow: 0 10px 35px rgba(123, 47, 247, .08);
}

.intro-text {
    font-size: 19px;
    line-height: 2;
    color: #555;
    margin-bottom: 35px;
}

.mission-card {
    background: linear-gradient(135deg, #fff7ef, #fff);
    padding: 28px;
    border-radius: 22px;
    margin-bottom: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
}

.mission-card.purple {
    border-left: 6px solid #7b2ff7;
}

.mission-card.purple h3 {
    color: #7b2ff7;
}

.mission-card.orange {
    border-left: 6px solid #ff9800;
}

.mission-card.orange h3 {
    color: #ff9800;
}

/* Mobile */
@media(max-width:991px) {

    .mission-container {
        flex-direction: column;
    }

    .sidebar-wrapper {
        width: 100%;
        min-width: 100%;
    }

    .content-box {
        width: 100%;
        padding: 25px;
    }

    .mission-content {
        padding: 25px;
    }

    .page-title {
        font-size: 28px;
    }
}

/* Founder Section */
.founder-section {
    padding: 60px 2%;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.founder-container {
    max-width: 1600px;
    margin: auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Sidebar */
.sidebar-wrapper {
    width: 300px;
    min-width: 300px;
}

.sidebar-box {
    background: linear-gradient(135deg,
            rgba(255, 183, 77, .75),
            rgba(255, 140, 0, .75));
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(212, 206, 210, .25);
    position: sticky;
    top: 20px;
}

.menu-link {
    display: block;
    padding: 16px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, .18);
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: .4s;
}

.menu-link:hover,
.menu-link.active {
    background: #000;
    color: #fff;
    transform: translateX(10px);
}

/* Content */
.content-box {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.top-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(123, 47, 247, .08);
}

.page-title {
    font-size: 34px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
}

.founder-wrapper {
    background: rgba(255, 255, 255, .9);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.founder-intro {
    font-size: 24px;
    line-height: 1.8;
    color: #222;
    font-weight: 600;
    margin-bottom: 35px;
}

.founder-intro span {
    font-size: 34px;
    font-family: serif;
}

.founder-image {
    text-align: center;
    margin-bottom: 40px;
}

.founder-image img {
    width: 100%;
    border-radius: 28px;
    border: 8px solid #fff;
    box-shadow: 0 15px 40px rgba(123, 47, 247, .18);
}

.founder-content {
    background: linear-gradient(135deg, #fffaf3, #fff);
    padding: 40px;
    border-radius: 28px;
    border-left: 6px solid #7b2ff7;
}

.founder-content h2 {
    font-size: 40px;
    color: #111;
    font-family: serif;
    margin-bottom: 10px;
}

.title-line {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #7b2ff7, #ff9800);
    border-radius: 10px;
    margin-bottom: 30px;
}

.founder-content p {
    font-size: 18px;
    line-height: 2.1;
    color: #555;
    margin-bottom: 28px;
}

.purple {
    color: #7b2ff7;
    font-weight: 600;
}

.orange {
    color: #ff9800;
    font-weight: 600;
}

@media(max-width:991px) {

    .founder-container {
        flex-direction: column;
    }

    .sidebar-wrapper {
        width: 100%;
        min-width: 100%;
    }

    .content-box,
    .founder-wrapper {
        padding: 25px;
    }
}


/* Ashram Construction Expansive */


.about-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.about-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 1600px;
    margin: auto;
}

.sidebar-wrapper {
    width: 300px;
    min-width: 300px;
}

.sidebar-card {
    background: linear-gradient(135deg,
            rgba(255, 183, 77, .75),
            rgba(255, 140, 0, .75));
    padding: 25px;
    border-radius: 22px;
    position: sticky;
    top: 20px;
    box-shadow: 0 10px 30px rgba(212, 206, 210, .25);
}

.sidebar-link {
    display: block;
    padding: 16px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, .18);
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: .4s;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: #000;
    color: #fff;
    transform: translateX(10px);
}

.content-box {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.top-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(123, 47, 247, .08);
}

.main-heading {
    font-size: 40px;
    color: #000;
    font-weight: 800;
    margin-bottom: 25px;
}

.donation-content {
    padding: 40px 5%;
    background: linear-gradient(135deg, #fff8ef, #fff);
    border-radius: 20px;
}

.content-inner {
    max-width: 1100px;
    margin: auto;
}

.content-header {
    text-align: center;
    margin-bottom: 20px;
}

.content-header h1 {
    font-size: 44px;
    font-weight: 800;
    color: #1b1b1b;
}

.content-header p {
    font-size: 18px;
    color: #5d5d5d;
    max-width: 820px;
    margin: auto;
}

.date-btn-wrap {
    text-align: center;
    margin-top: 25px;
}

.orange-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff9f2f, #ff7b00);
    color: #fff;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(255, 123, 0, .35);
}

.intro-card,
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
    border: 1px solid #f1e5d6;
}

.intro-card {
    margin-top: 25px;
}

.intro-card h2,
.info-card h3 {
    color: #232323;
    margin-bottom: 12px;
}

.intro-card p,
.info-card p,
.info-card li {
    color: #4f4f4f;
    line-height: 1.9;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

@media(max-width:991px) {

    .about-container {
        flex-direction: column;
    }

    .sidebar-wrapper {
        width: 100%;
        min-width: 100%;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .content-header h1 {
        font-size: 30px;
    }

    .main-heading {
        font-size: 30px;
    }
}

.donation-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.donation-container {
    max-width: 1200px;
    margin: auto;
}

/* Title */

.donation-title {
    text-align: center;
    margin-bottom: 25px;
}

.donation-title h2 {
    font-size: 42px;
    color: #5b2ca0;
    margin-bottom: 12px;
    font-weight: 800;
}

.donation-title p {
    color: #777;
    font-size: 17px;
}

/* Donation Bar */

.donation-bar {
    background: #fff;
    border-radius: 22px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.amount-box {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f6f3ff;
    border-radius: 18px;
    padding: 0 20px;
    height: 65px;
}

.rupee {
    font-size: 26px;
    color: #5b2ca0;
    margin-right: 15px;
    font-weight: 700;
}

.amount-box input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 18px;
    color: #333;
}

.donate-btn {
    padding: 18px 42px;
    border-radius: 60px;
    text-decoration: none;
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 10px 25px rgba(91, 44, 160, .3);
    white-space: nowrap;
}

.small-btn {
    padding: 14px 34px;
    display: inline-block;
}

/* Payment Title */

.payment-title {
    margin-bottom: 20px;
}

.payment-title h3 {
    font-size: 40px;
    color: #5b2ca0;
    font-weight: 800;
    margin-bottom: 10px;
}

.payment-title p {
    color: #555;
    font-size: 17px;
    font-style: italic;
}

/* Cards */

.donation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.donation-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

.purple .card-line {
    background: linear-gradient(90deg, #7b3ff2, #a855f7);
}

.blue .card-line {
    background: linear-gradient(90deg, #00b4db, #0083b0);
}

.green .card-line {
    background: linear-gradient(90deg, #00c853, #64dd17);
}

.donation-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #222;
    font-weight: 800;
}

.card-details {
    line-height: 2.2;
    color: #444;
    font-size: 17px;
}

.qr-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.qr-content img {
    width: 130px;
    border-radius: 16px;
    border: 5px solid #f2f2f2;
}

.paytm-title {
    font-size: 38px;
    font-weight: 800;
    color: #004aad;
    margin-bottom: 20px;
}

.paytm-title span {
    color: #5b2ca0;
    font-size: 22px;
    font-weight: 600;
}

.upi-box {
    background: #f5f8ff;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    color: #5b2ca0;
    font-weight: 700;
    font-size: 17px;
}

.upi-note {
    color: #777;
    line-height: 1.8;
    font-size: 16px;
    max-width: 240px;
}

/* Responsive */

@media(max-width:768px) {

    .donation-title h2 {
        font-size: 32px;
    }

    .payment-title h3 {
        font-size: 28px;
    }

    .donation-bar {
        flex-direction: column;
    }

    .donate-btn {
        width: 100%;
        text-align: center;
    }
}

.seva-showcase {
    margin-top: 50px;
    font-family: 'Poppins', sans-serif;
}

.seva-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.seva-track-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.seva-track {
    display: flex;
    gap: 24px;
    transition: transform .4s cubic-bezier(0.25, 1, 0.5, 1);
}

.seva-card {
    min-width: calc((100% - 48px)/3);
    background: #fff;
    border: 1px solid #eef0f6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.seva-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(91, 44, 160, 0.12);
    border-color: rgba(91, 44, 160, 0.2);
}

.seva-card.active {
    border-color: #5b2ca0;
    box-shadow: 0 16px 36px rgba(91, 44, 160, 0.16);
}

.seva-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9f2f, #ff7b00);
}

.seva-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.seva-card:hover img {
    transform: scale(1.05);
}

.seva-card-body {
    padding: 20px;
    text-align: center;
}

.seva-card-body h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #1e2c43;
    font-weight: 700;
}

.seva-card-body p {
    margin: 0 0 12px;
    font-size: 15px;
    color: #666;
}

.seva-link {
    display: inline-block;
    color: #5b2ca0;
    font-weight: 700;
    font-size: 16px;
    background: #f5f2fc;
    padding: 6px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.seva-card.active .seva-link {
    background: #5b2ca0;
    color: #fff;
}

.seva-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eef0f6;
    background: #fff;
    color: #5b2ca0;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.seva-nav:hover {
    background: #5b2ca0;
    color: #fff;
    box-shadow: 0 8px 20px rgba(91, 44, 160, 0.3);
    transform: scale(1.05);
}

.seva-detail-box {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #eef0f6;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.seva-side-tabs {
    border-right: 1px solid #eef0f6;
    padding: 24px 16px;
    background: #fafbfe;
}

.seva-side-tabs button {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 14px 20px;
    margin-bottom: 10px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #4f5e74;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seva-side-tabs button::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.seva-side-tabs button.active::after {
    opacity: 1;
    transform: translateX(0);
}

.seva-side-tabs button:hover {
    background: #f1ecfa;
    color: #5b2ca0;
}

.seva-side-tabs button.active {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    box-shadow: 0 8px 20px rgba(91, 44, 160, 0.25);
}

.seva-detail-list {
    padding: 20px;
    background: #fff;
    max-height: 520px;
    overflow-y: auto;
}

/* custom scrollbar */
.seva-detail-list::-webkit-scrollbar {
    width: 6px;
}

.seva-detail-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.seva-detail-list::-webkit-scrollbar-thumb {
    background: #c7b9e5;
    border-radius: 10px;
}

.seva-detail-list::-webkit-scrollbar-thumb:hover {
    background: #5b2ca0;
}

.seva-panel {
    display: none;
}

.seva-panel.active {
    display: block;
}

.seva-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f6f8fb;
    gap: 16px;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 6px;
}

.seva-row:hover {
    background: #fafbfe;
    transform: translateX(4px);
}

.seva-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.seva-row span {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.seva-row a {
    text-decoration: none;
    background: transparent;
    border: 2px solid #5b2ca0;
    border-radius: 30px;
    padding: 8px 20px;
    color: #5b2ca0;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.seva-row a:hover {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(91, 44, 160, 0.25);
}

.summary-btn {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(91, 44, 160, 0.35);
    transition: all 0.3s ease;
}

.summary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(91, 44, 160, 0.45);
}

@media (max-width: 900px) {
    h1 {
        font-size: 34px !important;
    }

    section {
        padding: 52px 18px !important;
    }

    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .seva-card {
        min-width: 100%;
    }

    .seva-detail-box {
        grid-template-columns: 1fr;
    }

    .seva-side-tabs {
        border-right: none;
        border-bottom: 1px solid #ececec;
    }

    .seva-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .seva-nav {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .summary-btn {
        font-size: 20px;
    }
}

/* Anna Daan */

.about-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.about-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Sidebar */

.sidebar-wrapper {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.sidebar-card {
    background: linear-gradient(135deg,
            rgba(255, 183, 77, 0.75),
            rgba(255, 140, 0, 0.75));
    padding: 25px;
    border-radius: 22px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(212, 206, 210, 0.25);
    position: sticky;
    top: 20px;
}

.sidebar-link {
    display: block;
    padding: 16px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.18);
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.sidebar-link:last-child {
    margin-bottom: 0;
}

.sidebar-link:hover {
    transform: translateX(10px);
    background: #000;
    color: #fff;
}

.sidebar-link.active {
    background: #000;
    color: #fff;
}

/* Content */

.content-box {
    flex: 2;
    min-width: 300px;
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.top-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(123, 47, 247, 0.08);
    border-radius: 50%;
}

.main-heading {
    font-size: 40px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 25px;
    font-weight: 800;
}

/* Responsive */

@media(max-width:991px) {

    .about-container {
        flex-direction: column;
    }

    .sidebar-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .content-box {
        width: 100%;
        padding: 30px;
    }

    .main-heading {
        font-size: 32px;
    }
}

/* Anna Daan - Detailed View */

.about-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.about-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Sidebar */

.sidebar-wrapper {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.sidebar-card {
    background: linear-gradient(135deg,
            rgba(255, 183, 77, 0.75),
            rgba(255, 140, 0, 0.75));
    padding: 25px;
    border-radius: 22px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(212, 206, 210, 0.25);
    position: sticky;
    top: 20px;
}

.sidebar-link {
    display: block;
    padding: 16px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.18);
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.sidebar-link:last-child {
    margin-bottom: 0;
}

.sidebar-link:hover {
    transform: translateX(10px);
    background: #000;
    color: #fff;
}

.sidebar-link.active {
    background: #000;
    color: #fff;
}

/* Content */

.content-box {
    flex: 2;
    min-width: 300px;
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.top-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(123, 47, 247, 0.08);
    border-radius: 50%;
}

.main-heading {
    font-size: 40px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 25px;
    font-weight: 800;
}

/* Responsive */

@media(max-width:991px) {

    .about-container {
        flex-direction: column;
    }

    .sidebar-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .content-box {
        width: 100%;
        padding: 30px;
    }

    .main-heading {
        font-size: 32px;
    }
}

.donation-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.donation-container {
    max-width: 1200px;
    margin: auto;
}

/* Title */

.donation-title {
    text-align: center;
    margin-bottom: 25px;
}

.donation-title h2 {
    font-size: 42px;
    color: #5b2ca0;
    margin-bottom: 12px;
    font-weight: 800;
}

.donation-title p {
    color: #777;
    font-size: 17px;
}

/* Donation Bar */

.donation-bar {
    background: #fff;
    border-radius: 22px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.amount-box {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f6f3ff;
    border-radius: 18px;
    padding: 0 20px;
    height: 65px;
}

.rupee-icon {
    font-size: 26px;
    color: #5b2ca0;
    margin-right: 15px;
    font-weight: 700;
}

.amount-box input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 18px;
    color: #333;
}

.donate-btn {
    padding: 18px 42px;
    border-radius: 60px;
    text-decoration: none;
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 10px 25px rgba(91, 44, 160, 0.3);
    transition: .3s;
    white-space: nowrap;
}

.donate-btn:hover {
    transform: translateY(-2px);
}

/* Heading */

.payment-heading {
    margin-bottom: 20px;
}

.payment-heading h3 {
    font-size: 40px;
    color: #5b2ca0;
    font-weight: 800;
    margin-bottom: 10px;
}

.payment-heading p {
    color: #555;
    font-size: 17px;
    font-style: italic;
}

/* Cards */

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.donation-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.card-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

.purple-card .card-top-line {
    background: linear-gradient(90deg, #7b3ff2, #a855f7);
}

.blue-card .card-top-line {
    background: linear-gradient(90deg, #00b4db, #0083b0);
}

.green-card .card-top-line {
    background: linear-gradient(90deg, #00c853, #64dd17);
}

.donation-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #222;
    font-weight: 800;
}

.bank-details {
    line-height: 2.2;
    color: #444;
    font-size: 17px;
}

.qr-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.qr-wrapper img {
    width: 130px;
    border-radius: 16px;
    border: 5px solid #f2f2f2;
}

.paytm-title {
    font-size: 38px;
    font-weight: 800;
    color: #004aad;
    margin-bottom: 20px;
}

.paytm-title span {
    color: #5b2ca0;
    font-size: 22px;
    font-weight: 600;
}

.small-donate-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(91, 44, 160, 0.25);
}

.upi-box {
    background: #f5f8ff;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    color: #5b2ca0;
    font-weight: 700;
    font-size: 17px;
}

.upi-note {
    color: #777;
    line-height: 1.8;
    font-size: 16px;
    max-width: 240px;
}

/* Responsive */

@media(max-width:768px) {

    .donation-title h2 {
        font-size: 32px;
    }

    .payment-heading h3 {
        font-size: 28px;
    }

    .donation-bar {
        flex-direction: column;
    }

    .donate-btn {
        width: 100%;
        text-align: center;
    }

    .qr-wrapper {
        justify-content: center;
    }
}

.certificate-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.certificate-container {
    max-width: 1250px;
    margin: auto;
}

/* Top Info Box */

.certificate-box {
    background: #fff;
    border-radius: 28px;
    padding: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #7b3ff2, #a855f7);
}

.certificate-title {
    font-size: 38px;
    color: #5b2ca0;
    margin-bottom: 25px;
    font-weight: 800;
}

.certificate-content {
    color: #555;
    font-size: 17px;
    line-height: 2;
}

.mail-link {
    color: #7b3ff2;
    text-decoration: none;
    font-weight: 700;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 700;
}

.time-text {
    color: #777;
}

/* Quote Section */

.quote-section {
    display: grid;
    grid-template-columns: 420px 1fr;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.quote-image {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.25),
            transparent);
}

.quote-content {
    background: linear-gradient(135deg, #4e342e, #6d4c41);
    padding: 40px 35px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-item {
    margin-bottom: 40px;
}

.quote-item:last-child {
    margin-bottom: 0;
}

.quote-line {
    width: 70px;
    height: 4px;
    background: #ffcc80;
    border-radius: 50px;
    margin-bottom: 20px;
}

.quote-item h3 {
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #fff3e0;
}

.quote-item p {
    font-size: 17px;
    line-height: 2;
    color: #f5f5f5;
}

/* Responsive */

@media(max-width:991px) {

    .quote-section {
        grid-template-columns: 1fr;
    }

    .quote-image {
        min-height: 350px;
    }

    .certificate-title {
        font-size: 28px;
    }

    .quote-item h3 {
        font-size: 22px;
    }
}


/* Gau Seva */

.donation-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.donation-container {
    max-width: 1200px;
    margin: auto;
}

/* Title */

.donation-title {
    text-align: center;
    margin-bottom: 25px;
}

.donation-title h2 {
    font-size: 42px;
    color: #5b2ca0;
    margin-bottom: 12px;
    font-weight: 800;
}

.donation-title p {
    color: #777;
    font-size: 17px;
}

/* Donation Bar */

.donation-bar {
    background: #fff;
    border-radius: 22px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.donation-input-box {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f6f3ff;
    border-radius: 18px;
    padding: 0 20px;
    height: 65px;
}

.currency-icon {
    font-size: 26px;
    color: #5b2ca0;
    margin-right: 15px;
    font-weight: 700;
}

.donation-input-box input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 18px;
    color: #333;
}

.donate-btn {
    padding: 18px 42px;
    border-radius: 60px;
    text-decoration: none;
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 10px 25px rgba(91, 44, 160, 0.3);
    transition: .3s;
    white-space: nowrap;
}

.donate-btn:hover {
    transform: translateY(-3px);
}

/* Heading */

.payment-section-title {
    margin-bottom: 20px;
}

.payment-section-title h3 {
    font-size: 40px;
    color: #5b2ca0;
    font-weight: 800;
    margin-bottom: 10px;
}

.payment-section-title p {
    color: #555;
    font-size: 17px;
    font-style: italic;
}

/* Cards */

.donation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.donation-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.card-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

.purple-card .card-strip {
    background: linear-gradient(90deg, #7b3ff2, #a855f7);
}

.blue-card .card-strip {
    background: linear-gradient(90deg, #00b4db, #0083b0);
}

.green-card .card-strip {
    background: linear-gradient(90deg, #00c853, #64dd17);
}

.donation-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #222;
    font-weight: 800;
}

.bank-info {
    line-height: 2.2;
    color: #444;
    font-size: 17px;
}

/* QR */

.qr-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.qr-content img {
    width: 130px;
    border-radius: 16px;
    border: 5px solid #f2f2f2;
}

.paytm-heading {
    font-size: 38px;
    font-weight: 800;
    color: #004aad;
    margin-bottom: 20px;
}

.paytm-heading span {
    color: #5b2ca0;
    font-size: 22px;
    font-weight: 600;
}

.small-donate-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(91, 44, 160, 0.25);
}

.upi-id-box {
    background: #f5f8ff;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    color: #5b2ca0;
    font-weight: 700;
    font-size: 17px;
}

.upi-note {
    color: #777;
    line-height: 1.8;
    font-size: 16px;
    max-width: 240px;
}

/* Responsive */

@media(max-width:768px) {

    .donation-title h2 {
        font-size: 32px;
    }

    .payment-section-title h3 {
        font-size: 28px;
    }

    .donation-bar {
        flex-direction: column;
    }

    .donate-btn {
        width: 100%;
        text-align: center;
    }

    .qr-content {
        justify-content: center;
        text-align: center;
    }
}

/* Life Patron Memberships */


.membership-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.membership-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Sidebar */

.sidebar-wrapper {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.sidebar-card {
    background: linear-gradient(135deg,
            rgba(255, 183, 77, 0.75),
            rgba(255, 140, 0, 0.75));
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(212, 206, 210, 0.25);
    position: sticky;
    top: 20px;
}

.sidebar-link {
    display: block;
    padding: 16px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.18);
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: .4s;
}

.sidebar-link:last-child {
    margin-bottom: 0;
}

.sidebar-link:hover,
.sidebar-link.active {
    transform: translateX(10px);
    background: #000;
    color: #fff;
}

/* Content */

.content-box {
    flex: 2;
    min-width: 300px;
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.top-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(123, 47, 247, 0.08);
    border-radius: 50%;
}

.main-heading {
    font-size: 40px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 25px;
    font-weight: 800;
}

.info-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 10px 35px rgba(123, 47, 247, 0.08);
    border: 1px solid rgba(123, 47, 247, 0.08);
}

.intro-text {
    font-size: 19px;
    line-height: 2;
    color: #555;
    margin-bottom: 35px;
}

.benefit-card {
    background: linear-gradient(135deg, #fff7ef, #fff);
    padding: 28px;
    border-radius: 22px;
    margin-bottom: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.benefit-card.purple {
    border-left: 6px solid #7b2ff7;
}

.benefit-card.orange {
    border-left: 6px solid #ff9800;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.benefit-card.purple h3 {
    color: #7b2ff7;
}

.benefit-card.orange h3 {
    color: #ff9800;
}

.benefit-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
}

.membership-note {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
    margin-top: 20px;
}

.button-wrapper {
    text-align: center;
    margin-top: 25px;
}

.enroll-btn {
    display: inline-block;
    background: linear-gradient(135deg, #7b2ff7, #9f44ff);
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(123, 47, 247, 0.25);
    transition: .4s;
}

.enroll-btn:hover {
    transform: translateY(-5px);
}

/* Responsive */

@media(max-width:991px) {

    .membership-container {
        flex-direction: column;
    }

    .sidebar-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .content-box {
        width: 100%;
        padding: 30px;
    }

    .main-heading {
        font-size: 30px;
    }
}

/* Contact us */
.nearby-places-section {
    padding: 70px 0;
    background: #f4f7fb;
    font-family: Poppins, sans-serif;
}

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

.section-header h2 {
    font-size: 40px;
    color: #0d2d62;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.place-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    transition: .3s;
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 61, 124, .15);
}

.place-icon {
    width: 70px;
    height: 70px;
    margin: auto auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #003d7c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.place-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    min-height: 45px;
}

.place-card span {
    background: #eef4ff;
    color: #0d6efd;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination button {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.pagination button:hover {
    background: #003d7c;
}

#pageInfo {
    font-weight: 600;
    color: #333;
}

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

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

@media(max-width:480px) {
    .places-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Section */
.team-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.team-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #d4af37;
    margin-bottom: 18px;
    transition: 0.3s;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 12px;
    font-weight: 700;
}

.team-member p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Tablet */
@media (max-width: 768px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }

    .team-member h3 {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .team-container {
        grid-template-columns: 1fr;
    }

    .team-member {
        padding: 20px;
    }

    .team-member img {
        width: 110px;
        height: 110px;
    }

    .team-member h3 {
        font-size: 18px;
    }

    .team-member p {
        font-size: 14px;
    }
}


/* LEADERSHIP SECTION  */

/* ── Base Section ── */
.leadership-section {
    padding: 90px 24px 100px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow background */
.leadership-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 10% 10%, rgba(201, 162, 39, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 90%, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Inner Wrapper ── */
.leadership-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Section Header ── */
.leadership-header {
    text-align: center;
    margin-bottom: 64px;
}

.leadership-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff8e7, #fef0c0);
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: #9a7a1a;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.leadership-badge i {
    font-size: 0.9rem;
    color: #C9A227;
}

.leadership-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.leadership-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 28px;
}

/* Gold ornament divider */
.leadership-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #C9A227;
}

.leadership-divider span {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A227, transparent);
    border-radius: 2px;
}

.leadership-divider i {
    font-size: 1.1rem;
}

/* ── Grid ── */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* Last row: center remaining cards when < 3 in row */
.leadership-grid .leader-card:nth-child(4) {
    grid-column: 1;
}

.leadership-grid .leader-card:nth-child(5) {
    grid-column: 2;
}

/* ── Card ── */
.leader-card {
    display: flex;
    flex-direction: column;
}

.leader-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 28px 28px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.04),
        0 10px 30px -8px rgba(201, 162, 39, 0.10);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Top gold accent bar */
.leader-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C9A227, #f0d060, #C9A227);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.leader-card:hover .leader-card-inner {
    transform: translateY(-10px);
    box-shadow:
        0 20px 50px -10px rgba(201, 162, 39, 0.22),
        0 8px 20px -5px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 162, 39, 0.4);
}

.leader-card:hover .leader-card-inner::before {
    opacity: 1;
}

/* ── Profile Image ── */
.leader-img-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    flex-shrink: 0;
}

.leader-img-wrap img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.35);
    display: block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
}

/* Animated gold ring on hover */
.leader-img-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(201, 162, 39, 0.4);
    animation: ringRotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leader-card:hover .leader-img-wrap img {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.55),
        0 8px 24px rgba(201, 162, 39, 0.20);
}

.leader-card:hover .leader-img-ring {
    opacity: 1;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ── Text Info ── */
.leader-info {
    flex: 1;
}

.leader-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
    line-height: 1.3;
}

.leader-role {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #9a7a1a;
    background: linear-gradient(135deg, #fff8e7, #fef5d0);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leader-role i {
    color: #C9A227;
    font-size: 0.78rem;
}

.leader-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #C9A227, #f0d060);
    border-radius: 2px;
    margin: 0 auto 14px;
}

.leader-desc {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
    /* Clamp to 4 lines, show full on hover via JS toggle */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.leader-desc.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* ── Card Footer / Button ── */
.leader-footer {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.leader-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #C9A227;
    color: #9a7a1a;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: 0.03em;
}

.leader-btn i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.leader-btn:hover,
.leader-btn:focus-visible {
    background: linear-gradient(135deg, #C9A227, #e8bf45);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
    transform: translateY(-2px);
    outline: none;
}

.leader-btn:hover i,
.leader-btn:focus-visible i {
    transform: translateX(4px);
}

/* ── Fade-Up Scroll Animation ── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for cards */
.leadership-grid .leader-card:nth-child(1) {
    transition-delay: 0.05s;
}

.leadership-grid .leader-card:nth-child(2) {
    transition-delay: 0.15s;
}

.leadership-grid .leader-card:nth-child(3) {
    transition-delay: 0.25s;
}

.leadership-grid .leader-card:nth-child(4) {
    transition-delay: 0.35s;
}

.leadership-grid .leader-card:nth-child(5) {
    transition-delay: 0.45s;
}

/* ── Responsive — Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leadership-grid .leader-card:nth-child(4),
    .leadership-grid .leader-card:nth-child(5) {
        grid-column: auto;
    }

    /* Centre the lone 5th card */
    .leadership-grid .leader-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ── Responsive — Mobile (≤ 640px) ── */
@media (max-width: 640px) {
    .leadership-section {
        padding: 60px 16px 70px;
    }

    .leadership-header {
        margin-bottom: 44px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .leadership-grid .leader-card:last-child:nth-child(odd) {
        max-width: 100%;
    }

    .leader-card-inner {
        padding: 28px 20px 22px;
    }

    .leader-img-wrap,
    .leader-img-wrap img {
        width: 160px;
        height: 160px;
    }

    .leader-name {
        font-size: 1.1rem;
    }
}

.temple-timing {
    padding: 80px 6%;
    background: #f8f7fc;
    font-family: Poppins, sans-serif;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #4b2aad;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.timing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.timing-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .4s;
    border: 1px solid #ececec;
}

.timing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(123, 47, 247, .18);
}

.time {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d28d9, #a855f7);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.content h3 {
    margin: 0;
    font-size: 24px;
    color: #222;
}

.content p {
    margin-top: 8px;
    color: #777;
    line-height: 1.6;
}

@media(max-width:768px) {

    .timing-card {
        flex-direction: column;
        text-align: center;
    }

    .time {
        width: 80px;
        height: 80px;
        font-size: 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

}

.events-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f5ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.events-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.events-content {
    flex: 2;
    min-width: 300px;
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.top-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(123, 47, 247, .08);
    border-radius: 50%;
}

.events-heading {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin-bottom: 35px;
}

.events-list {
    padding: 10px 0 40px;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 28px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .06);
    transition: .35s ease;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

.event-card img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #222;
    font-weight: 700;
    line-height: 1.2;
}

.event-info p {
    font-size: 21px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 900px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6c3cc9;
    font-size: 22px;
    font-weight: 600;
}

.event-footer a {
    color: #2196f3;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: .3s;
}

.event-footer a:hover {
    color: #6c3cc9;
}

@media(max-width:991px) {

    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-card img {
        width: 100%;
        height: 250px;
    }

    .event-info h3 {
        font-size: 28px;
    }

    .event-info p {
        font-size: 18px;
    }

    .event-date,
    .event-footer a {
        font-size: 18px;
    }

}

@media(max-width:768px) {

    .events-section {
        padding: 50px 20px;
    }

    .events-content {
        padding: 30px;
    }

    .events-heading {
        font-size: 32px;
    }

    .event-card img {
        height: 220px;
    }

}

/* ============================
   EVENT FORM
============================ */

.event-form {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.event-form h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #222;
    font-weight: 700;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    transition: .3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff9800;
    background: #fff;
    box-shadow: 0 0 12px rgba(255, 152, 0, .25);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.validation-error {
    color: #e53935;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.event-form.submitted input:invalid,
.event-form.submitted select:invalid,
.event-form.submitted textarea:invalid {
    border-color: #e53935;
}

.event-form.submitted input:valid,
.event-form.submitted select:valid,
.event-form.submitted textarea:valid {
    border-color: #43a047;
}

.submit-btn {
    background: #ff9800;
    color: #fff;
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.submit-btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: scale(.98);
}

/* Responsive */

@media(max-width:768px) {

    .event-form {
        margin: 30px 15px;
        padding: 25px;
    }

    .event-form h2 {
        font-size: 26px;
    }

}

/* Custom Premium Footer Styling */
footer {
    background: linear-gradient(180deg, #100a06 0%, #050302 100%) !important;
    border-top: 3px solid #d4af37 !important;
    /* Gold border */
    padding: 40px 0 20px 0 !important;
    position: relative;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.footer-col h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: 1.15rem;
    font-family: 'Cinzel', serif;
    color: #d4af37 !important;
}

.footer-col h3 span:first-child {
    text-align: left;
}

.footer-col-content p {
    color: #bfaea0 !important;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-col-content p strong {
    color: #d4af37 !important;
}

.footer-toggle-icon {
    display: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #d4af37;
}

.footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-links a {
    color: #bfaea0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: #e5a93b !important;
    transform: translateX(6px);
}

.newsletter-form {
    margin-top: 15px;
    display: flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    overflow: hidden;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-right: none !important;
    padding: 12px 20px !important;
    color: #FFF !important;
    font-size: 0.9rem;
    border-radius: 30px 0 0 30px !important;
    outline: none;
    width: 100%;
}

.newsletter-btn {
    background: linear-gradient(135deg, #e5a93b, #d4af37) !important;
    color: #0A0704 !important;
    padding: 0 24px !important;
    font-weight: 700 !important;
    border-radius: 0 30px 30px 0 !important;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Cinzel', serif;
}

.newsletter-btn:hover {
    filter: brightness(1.1);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #bfaea0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, #e5a93b, #d4af37) !important;
    color: #050302 !important;
    border-color: transparent !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    color: #8c7f75;
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 80px 0 !important;
        /* Extra bottom padding for mobile app bar */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-col {
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .footer-col h3 {
        cursor: pointer;
        margin: 0;
        padding: 16px 5px;
        border-bottom: none;
    }

    .footer-toggle-icon {
        display: block;
    }

    .footer-col-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        padding: 0 5px;
    }

    .footer-col.active .footer-col-content {
        max-height: 500px;
        /* slide down */
        padding-bottom: 20px;
    }

    .footer-col.active .footer-toggle-icon {
        transform: rotate(45deg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-top: 20px;
    }
}

.history-section {
    padding: 80px 5%;
    background: #f9fafc;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: left;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 10px;
}

.section-title span {
    color: #ff9800;
    font-size: 18px;
    font-weight: 600;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.history-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .35s;
}

.history-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.history-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #ff9800;
}

.history-card p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.history-card ul {
    margin: 0;
    padding-left: 20px;
}

.history-card ul li {
    margin-bottom: 12px;
    color: #555;
    font-size: 16px;
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 32px;
    }

    .history-card {
        padding: 25px;
    }

}

.seva-showcase {
    margin-top: 50px;
    font-family: 'Poppins', sans-serif;
}

.seva-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.seva-track-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.seva-track {
    display: flex;
    gap: 24px;
    transition: transform .4s cubic-bezier(0.25, 1, 0.5, 1);
}

.seva-card {
    min-width: calc((100% - 48px)/3);
    background: #fff;
    border: 1px solid #eef0f6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.seva-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(91, 44, 160, 0.12);
    border-color: rgba(91, 44, 160, 0.2);
}

.seva-card.active {
    border-color: #5b2ca0;
    box-shadow: 0 16px 36px rgba(91, 44, 160, 0.16);
}

.seva-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9f2f, #ff7b00);
}

.seva-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.seva-card:hover img {
    transform: scale(1.05);
}

.seva-card-body {
    padding: 20px;
    text-align: center;
}

.seva-card-body h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #1e2c43;
    font-weight: 700;
}

.seva-card-body p {
    margin: 0 0 12px;
    font-size: 15px;
    color: #666;
}

.seva-link {
    display: inline-block;
    color: #5b2ca0;
    font-weight: 700;
    font-size: 16px;
    background: #f5f2fc;
    padding: 6px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.seva-card.active .seva-link {
    background: #5b2ca0;
    color: #fff;
}

.seva-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eef0f6;
    background: #fff;
    color: #5b2ca0;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.seva-nav:hover {
    background: #5b2ca0;
    color: #fff;
    box-shadow: 0 8px 20px rgba(91, 44, 160, 0.3);
    transform: scale(1.05);
}

.seva-detail-box {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #eef0f6;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.seva-side-tabs {
    border-right: 1px solid #eef0f6;
    padding: 24px 16px;
    background: #fafbfe;
}

.seva-side-tabs button {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 14px 20px;
    margin-bottom: 10px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #4f5e74;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seva-side-tabs button::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.seva-side-tabs button.active::after {
    opacity: 1;
    transform: translateX(0);
}

.seva-side-tabs button:hover {
    background: #f1ecfa;
    color: #5b2ca0;
}

.seva-side-tabs button.active {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    box-shadow: 0 8px 20px rgba(91, 44, 160, 0.25);
}

.seva-detail-list {
    padding: 20px;
    background: #fff;
    max-height: 520px;
    overflow-y: auto;
}

/* custom scrollbar */
.seva-detail-list::-webkit-scrollbar {
    width: 6px;
}

.seva-detail-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.seva-detail-list::-webkit-scrollbar-thumb {
    background: #c7b9e5;
    border-radius: 10px;
}

.seva-detail-list::-webkit-scrollbar-thumb:hover {
    background: #5b2ca0;
}

.seva-panel {
    display: none;
}

.seva-panel.active {
    display: block;
}

.seva-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f6f8fb;
    gap: 16px;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 6px;
}

.seva-row:hover {
    background: #fafbfe;
    transform: translateX(4px);
}

.seva-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.seva-row span {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.seva-row a {
    text-decoration: none;
    background: transparent;
    border: 2px solid #5b2ca0;
    border-radius: 30px;
    padding: 8px 20px;
    color: #5b2ca0;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.seva-row a:hover {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(91, 44, 160, 0.25);
}

.summary-btn {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(91, 44, 160, 0.35);
    transition: all 0.3s ease;
}

.summary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(91, 44, 160, 0.45);
}

@media (max-width: 900px) {
    h1 {
        font-size: 34px !important;
    }

    section {
        padding: 52px 18px !important;
    }

    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .seva-card {
        min-width: 100%;
    }

    .seva-detail-box {
        grid-template-columns: 1fr;
    }

    .seva-side-tabs {
        border-right: none;
        border-bottom: 1px solid #ececec;
    }

    .seva-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .seva-nav {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .summary-btn {
        font-size: 20px;
    }
}

@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

.events-section {
    padding: 70px 20px;
    background: #f7f7fb;
}

.events-wrapper {
    max-width: 1500px;
    margin: auto;
}

.events-content {
    position: relative;
}

.events-heading {
    text-align: left;
    font-size: 48px;
    margin-bottom: 45px;
    font-family: 'Cinzel', serif;
    color: #1d2d4f;
}

.top-glow {
    width: 180px;
    height: 180px;
    position: absolute;
    top: -80px;
    left: -80px;
    background: radial-gradient(circle, #ffb6ff 0%, transparent 70%);
    opacity: .4;
    filter: blur(35px);
    pointer-events: none;
}

.festival-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.festival-image img {
    width: 250px;
    height: 160px;
    border-radius: 15px;
    object-fit: cover;
}

.festival-content {
    flex: 1;
}

.festival-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: #1d2d4f;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.festival-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.festival-date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6a3ef1;
    font-size: 18px;
    font-weight: 600;
}

.festival-date i {
    font-size: 20px;
}

@media(max-width:992px) {

    .festival-card {
        flex-direction: column;
        text-align: center;
    }

    .festival-image img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .festival-content h2 {
        font-size: 34px;
    }

    .festival-content p {
        font-size: 18px;
    }

    .festival-date {
        justify-content: center;
    }
}


/* ===========================
   Festival Card Animation
=========================== */

.festival-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

    transition: .45s ease;
    overflow: hidden;
    position: relative;

    /* Page Load Animation */
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp .8s ease forwards;
}

/* Stagger Animation (Multiple Cards) */
.festival-card:nth-child(2) {
    animation-delay: .2s;
}

.festival-card:nth-child(3) {
    animation-delay: .4s;
}

.festival-card:nth-child(4) {
    animation-delay: .6s;
}

/* Hover Effect */
.festival-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
    border-color: #8d61ff;
}

/* Shine Effect */
.festival-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .65),
            transparent);
    transition: .8s;
}

.festival-card:hover::before {
    left: 130%;
}

/* Image Zoom */
.festival-image {
    overflow: hidden;
    border-radius: 15px;
}

.festival-image img {
    width: 250px;
    height: 160px;
    object-fit: cover;
    transition: .6s ease;
}

.festival-card:hover img {
    transform: scale(1.12);
}

/* Heading Animation */
.festival-content h2 {
    transition: .35s;
}

.festival-card:hover h2 {
    color: #6a3ef1;
}

/* Date Animation */
.festival-date {
    transition: .35s;
}

.festival-card:hover .festival-date {
    transform: translateX(8px);
}

/* Floating Icon */
.festival-date i {
    animation: float 2s infinite ease-in-out;
}

/* Keyframes */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ==============================
   MEMBERSHIP SECTION
============================== */

.membership1 {
    width: 100%;
    padding: 90px 20px;
    background: #f8f9fb;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.membership1 * {
    box-sizing: border-box;
}

/* Heading */

.membership1 .heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.membership1 .heading h4 {
    color: #c59d5f;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.membership1 .heading h1 {
    font-size: 42px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.membership1 .heading p {
    color: #666;
    font-size: 16px;
    line-height: 28px;
}

/* Cards */

.membership1 .membership-containers {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.membership1 .card {
    position: relative;
    width: 350px;
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    overflow: hidden;
}

.membership1 .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

/* Top Border */

.membership1 .basic {
    border-top: 6px solid #28a745;
}

.membership1 .standard {
    border-top: 6px solid #ff9800;
}

.membership1 .advance {
    border-top: 6px solid #6f42c1;
}

/* Icon */

.membership1 .icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.membership1 .basic .icon {
    background: #28a745;
}

.membership1 .standard .icon {
    background: #ff9800;
}

.membership1 .advance .icon {
    background: #6f42c1;
}

/* Title */

.membership1 .card h2 {
    text-align: center;
    color: #222;
    font-size: 28px;
    margin-bottom: 25px;
}

/* Features */

.membership1 .card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.membership1 .card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 15px;
}

.membership1 .card ul li:last-child {
    border: none;
}

.membership1 .card ul li i {
    color: #28a745;
    font-size: 15px;
}

/* Button */

.membership1 .card a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 14px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: .3s;
}

/* Button Colors */

.membership1 .basic a {
    background: #28a745;
}

.membership1 .basic a:hover {
    background: #218838;
}

.membership1 .standard a {
    background: #ff9800;
}

.membership1 .standard a:hover {
    background: #e68900;
}

.membership1 .advance a {
    background: #6f42c1;
}

.membership1 .advance a:hover {
    background: #5d35a6;
}

/* Popular Badge */

.membership1 .popular {
    position: absolute;
    top: 20px;
    right: -45px;
    background: #ff9800;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 50px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Responsive */

@media(max-width:991px) {

    .membership1 .membership-containers {
        gap: 25px;
    }

    .membership1 .card {
        width: 320px;
    }

}

@media(max-width:768px) {

    .membership1 {
        padding: 70px 15px;
    }

    .membership1 .heading h1 {
        font-size: 32px;
    }

    .membership1 .membership-containers {
        flex-direction: column;
        align-items: center;
    }

    .membership1 .card {
        width: 100%;
        max-width: 400px;
    }

}

@media(max-width:480px) {

    .membership1 .heading h1 {
        font-size: 28px;
    }

    .membership1 .heading p {
        font-size: 15px;
    }

    .membership1 .card {
        padding: 30px 20px;
    }

    .membership1 .card h2 {
        font-size: 24px;
    }

}

/* ===== HERO CINEMATIC SLIDER — RESPONSIVE ===== */
.hero-slider {
    padding: 0;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* Nav Buttons */
.hero-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f7b23b;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slider .slider-btn:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: translateY(-50%) scale(1.08);
}

.hero-slider .slider-prev {
    left: 30px;
}

.hero-slider .slider-next {
    right: 30px;
}

/* Dots */
.hero-slider .slider-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider .dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-slider .dot.active {
    background: #f7b23b;
    transform: scale(1.2);
}

/* ── Tablet (≤ 768px) ── */
@media (max-width: 768px) {
    .hero-slider {
        height: 65vw;
        min-height: 320px;
    }

    .hero-slider .slide-img {
        object-position: center center;
    }

    .hero-slider .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .hero-slider .slider-prev {
        left: 12px;
    }

    .hero-slider .slider-next {
        right: 12px;
    }

    .hero-slider .slider-dots {
        bottom: 14px;
        gap: 8px;
    }

    .hero-slider .dot {
        width: 10px;
        height: 10px;
    }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
    .hero-slider {
        height: 70vw;
        min-height: 260px;
    }

    .hero-slider .slider-btn {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .hero-slider .slider-prev {
        left: 8px;
    }

    .hero-slider .slider-next {
        right: 8px;
    }

    .hero-slider .slider-dots {
        bottom: 10px;
        gap: 6px;
    }

    .hero-slider .dot {
        width: 8px;
        height: 8px;
    }
}


/* Home page all section mobile view  */
/* ─── BASE UTILITY ─────────────────────────────────────── */
/* Remove awkward <br><br> spacing on small screens */
@media (max-width: 768px) {
    br {
        display: none;
    }
}

/* Force reveal sections to be visible on mobile to prevent JS observer issues */
@media (max-width: 991px) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ─── COUNTDOWN BANNER ─────────────────────────────────── */
@media (max-width: 768px) {
    .countdown-banner {
        padding: 20px 0;
    }

    .countdown-container {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .countdown-info h3 {
        font-size: 1.2rem;
    }

    .countdown-timer {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .time-block {
        min-width: 60px;
        padding: 8px 12px;
    }

    .time-num {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 8px;
    }

    .time-block {
        min-width: 52px;
        padding: 6px 10px;
    }

    .time-num {
        font-size: 1.2rem;
    }

    .countdown-info h4 {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

/* ─── ABOUT SECTION ────────────────────────────────────── */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-content h2.section-title {
        text-align: center !important;
        font-size: 1.8rem;
    }

    .about-image-wrapper {
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-content p {
        font-size: 0.95rem;
    }

    .about-quote {
        font-size: 0.95rem;
        padding-left: 14px;
    }

    .about-content .btn {
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-content h2.section-title {
        font-size: 1.4rem;
    }

    .about-quote {
        font-size: 0.88rem;
    }
}

/* ─── DARSHAN / AARTI TIMINGS SECTION ─────────────────── */
@media (max-width: 992px) {
    .darshan-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .darshan-section .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .darshan-section {
        padding: 30px 0;
    }

    .darshan-video {
        border-radius: 8px;
    }

    .timings-card {
        padding: 20px 16px;
    }

    .timings-card h3 {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .timing-item {
        padding: 10px 0;
    }

    .timing-name {
        font-size: 0.85rem;
    }

    .timing-time {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .timings-card {
        padding: 16px 12px;
    }

    .timing-name,
    .timing-time {
        font-size: 0.8rem;
    }
}

/* ─── PREMIUM GLIMPSES CAROUSEL ────────────────────────── */
@media (max-width: 1200px) {
    .carousel-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .carousel-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .glimpse-card {
        height: 340px;
    }

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .premium-glimpses {
        padding: 36px 0 20px;
    }

    .carousel-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .glimpse-card {
        height: 300px;
        border-radius: 18px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 15px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-content span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .glimpse-card {
        height: 260px;
        border-radius: 14px;
    }

    .card-content {
        left: 16px;
        bottom: 16px;
    }

    .card-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
}

/* ─── DONATION CTA SECTION ─────────────────────────────── */
@media (max-width: 991px) {
    .donation-cta-section {
        padding: 50px 0;
    }

    .donation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .donation-cta-content h2.section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .donation-cta-section {
        padding: 36px 0;
    }

    .donation-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }

    .donation-card {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .amount {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .donation-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .donation-card p {
        font-size: 14px;
    }

    .section-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .donate-btn {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 14px 20px;
        font-size: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .amount {
        font-size: 28px;
    }

    .donation-card h4 {
        font-size: 16px;
    }

    .donation-card p {
        font-size: 13px;
    }

    .donate-btn {
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* ─── TEMPLE VISIT SECTION ─────────────────────────────── */
@media (max-width: 991px) {
    .temple-visit-section {
        padding: 40px 0;
    }

    .visit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .visit-card {
        height: 380px;
        border-radius: 22px;
    }

    .visit-content h3 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .temple-visit-section {
        padding: 30px 0;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }

    .visit-card {
        height: 320px;
        border-radius: 18px;
    }

    .visit-content {
        padding: 20px;
    }

    .visit-content h3 {
        font-size: 24px;
        letter-spacing: 0;
    }

    .section-header h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .visit-card {
        height: 260px;
        border-radius: 14px;
    }

    .visit-content {
        padding: 16px;
    }

    .visit-content h3 {
        font-size: 20px;
    }
}

/* ─── DISCOVER MORE SECTION ────────────────────────────── */
@media (max-width: 1400px) {
    .discover-more .discover-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .discover-more .discover-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .discover-more {
        padding: 40px 0;
    }

    .discover-more .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .discover-more .discover-title h2 {
        font-size: 32px;
    }

    .discover-more .card-img {
        height: 200px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .discover-more .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .discover-more .discover-title h2 {
        font-size: 26px;
    }

    .discover-more .discover-title p {
        font-size: 14px;
    }

    .discover-more .card-img {
        height: 160px;
        border-radius: 14px;
    }

    .discover-more .card-content h3 {
        font-size: 16px;
    }

    .discover-more .card-content span {
        font-size: 12px;
    }

    .discover-more .discover-card {
        border-radius: 16px;
        padding: 10px 8px 14px;
    }
}

@media (max-width: 480px) {
    .discover-more .discover-grid {
        grid-template-columns: 1fr;
    }

    .discover-more .card-img {
        height: 200px;
        max-width: 100%;
    }

    .discover-more .card-content h3 {
        font-size: 18px;
    }
}

/* ─── TESTIMONIALS SECTION ─────────────────────────────── */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 30px 0;
    }

    .testimonials-section .section-title {
        font-size: 1.6rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-name {
        font-size: 0.85rem;
    }

    .testimonial-avatar {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 18px 14px;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }
}

/* ─── BLOG / NEWS SECTION ──────────────────────────────── */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #blog {
        padding: 30px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-img-link {
        height: 180px;
    }

    .blog-body {
        padding: 18px;
    }

    .blog-title {
        font-size: 1rem;
    }

    .blog-desc {
        font-size: 0.88rem;
    }

    .blog-section .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .blog-img-link {
        height: 160px;
    }

    .blog-body {
        padding: 14px;
    }

    .blog-title {
        font-size: 0.95rem;
    }

    .blog-desc {
        font-size: 0.82rem;
    }
}

/* ─── SECTION HEADER — GLOBAL SCALE ───────────────────── */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 15px;
    }

    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 20px !important;
    }

    .section-header p {
        font-size: 14px;
    }
}

/* ─── MOBILE SLIDER FEATURE (DISCOVER, TESTIMONIALS, BLOG) ── */
@media (max-width: 767px) {
    .mobile-slider {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 15px;
        gap: 15px !important;
    }

    .mobile-slider::-webkit-scrollbar {
        display: none;
    }

    .mobile-slider>* {
        flex: 0 0 85% !important;
        max-width: 85% !important;
        scroll-snap-align: center;
    }

    .mobile-slider-wrapper {
        position: relative;
        padding-bottom: 60px;
        /* Space for arrows at the bottom */
    }

    .slider-arrow {
        position: absolute;
        bottom: 5px;
        top: auto;
        transform: none;
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #ff9800, #ff6f00);
        color: #fff;
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        z-index: 10;
        cursor: pointer;
    }

    .slider-arrow.left {
        left: calc(50% - 50px);
    }

    .slider-arrow.right {
        right: calc(50% - 50px);
    }

    .slider-arrow:active {
        transform: scale(0.9);
    }
}

/* ===================================================
   STYLES EXTRACTED FROM PAGES
=================================================== */

/* --- CSS from Aashram_Construction_Expansive.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Aashram_News.php --- */
@media (max-width: 992px) {
    h1 {
        font-size: 40px !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

    #cardsContainer {
        grid-template-columns: 1fr !important;
    }
}

/* --- CSS from Ashram_Book.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Bhajan_Subscription.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Book.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Book_Kirtan.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Book_Stall.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Daily_Mangala_Darshan.php --- */
@media (max-width: 992px) {
    h1 {
        font-size: 40px !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

    .belief-card {
        flex: 1 1 100% !important;
    }
}

/* --- CSS from Daily_Sringar_Darshanr.php --- */
@media (max-width: 992px) {
    h1 {
        font-size: 40px !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

    .belief-card {
        flex: 1 1 100% !important;
    }
}

/* --- CSS from Deity_Seva_Vigrah_Seva.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

.seva-showcase {
    margin-top: 50px;
    font-family: 'Poppins', sans-serif;
}

.seva-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.seva-track-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.seva-track {
    display: flex;
    gap: 24px;
    transition: transform .4s cubic-bezier(0.25, 1, 0.5, 1);
}

.seva-card {
    min-width: calc((100% - 48px)/3);
    background: #fff;
    border: 1px solid #eef0f6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.seva-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(91, 44, 160, 0.12);
    border-color: rgba(91, 44, 160, 0.2);
}

.seva-card.active {
    border-color: #5b2ca0;
    box-shadow: 0 16px 36px rgba(91, 44, 160, 0.16);
}

.seva-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9f2f, #ff7b00);
}

.seva-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.seva-card:hover img {
    transform: scale(1.05);
}

.seva-card-body {
    padding: 20px;
    text-align: center;
}

.seva-card-body h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #1e2c43;
    font-weight: 700;
}

.seva-card-body p {
    margin: 0 0 12px;
    font-size: 15px;
    color: #666;
}

.seva-link {
    display: inline-block;
    color: #5b2ca0;
    font-weight: 700;
    font-size: 16px;
    background: #f5f2fc;
    padding: 6px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.seva-card.active .seva-link {
    background: #5b2ca0;
    color: #fff;
}

.seva-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eef0f6;
    background: #fff;
    color: #5b2ca0;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.seva-nav:hover {
    background: #5b2ca0;
    color: #fff;
    box-shadow: 0 8px 20px rgba(91, 44, 160, 0.3);
    transform: scale(1.05);
}

.seva-detail-box {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #eef0f6;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.seva-side-tabs {
    border-right: 1px solid #eef0f6;
    padding: 24px 16px;
    background: #fafbfe;
}

.seva-side-tabs button {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 14px 20px;
    margin-bottom: 10px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #4f5e74;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seva-side-tabs button::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.seva-side-tabs button.active::after {
    opacity: 1;
    transform: translateX(0);
}

.seva-side-tabs button:hover {
    background: #f1ecfa;
    color: #5b2ca0;
}

.seva-side-tabs button.active {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    box-shadow: 0 8px 20px rgba(91, 44, 160, 0.25);
}

.seva-detail-list {
    padding: 20px;
    background: #fff;
    max-height: 520px;
    overflow-y: auto;
}

/* custom scrollbar */
.seva-detail-list::-webkit-scrollbar {
    width: 6px;
}

.seva-detail-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.seva-detail-list::-webkit-scrollbar-thumb {
    background: #c7b9e5;
    border-radius: 10px;
}

.seva-detail-list::-webkit-scrollbar-thumb:hover {
    background: #5b2ca0;
}

.seva-panel {
    display: none;
}

.seva-panel.active {
    display: block;
}

.seva-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f6f8fb;
    gap: 16px;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 6px;
}

.seva-row:hover {
    background: #fafbfe;
    transform: translateX(4px);
}

.seva-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.seva-row span {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.seva-row a {
    text-decoration: none;
    background: transparent;
    border: 2px solid #5b2ca0;
    border-radius: 30px;
    padding: 8px 20px;
    color: #5b2ca0;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.seva-row a:hover {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(91, 44, 160, 0.25);
}

.summary-btn {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(91, 44, 160, 0.35);
    transition: all 0.3s ease;
}

.summary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(91, 44, 160, 0.45);
}

@media (max-width: 900px) {
    h1 {
        font-size: 34px !important;
    }

    section {
        padding: 52px 18px !important;
    }

    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .seva-card {
        min-width: 100%;
    }

    .seva-detail-box {
        grid-template-columns: 1fr;
    }

    .seva-side-tabs {
        border-right: none;
        border-bottom: 1px solid #ececec;
    }

    .seva-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .seva-nav {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .summary-btn {
        font-size: 20px;
    }
}

/* --- CSS from Diaroma.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Festival_Darshan.php --- */
@media (max-width: 992px) {
    h1 {
        font-size: 40px !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

    #cardsContainer {
        grid-template-columns: 1fr !important;
    }
}

/* --- CSS from Gau_Seva.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Gift_Stall.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Govinda_Bakery.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Govinda_Restaurant.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Kirtan_bhajan.php --- */
@media(max-width:1200px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media(max-width:992px) {
    h1 {
        font-size: 40px !important;
    }
}

@media(max-width:768px) {
    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

    .cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- CSS from Kirtans_Lectures.php --- */
@media (max-width: 992px) {
    h1 {
        font-size: 40px !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

    #cardsContainer {
        grid-template-columns: 1fr !important;
    }
}

/* --- CSS from LIVE_Darshan.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Library.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Life_Patron_membership.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Multipurpose_Halls.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Prabhupada_Quarters.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Prasadam.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Purushottam_Adhik_Maas.php --- */
.seva-showcase {
    margin-top: 50px;
    font-family: 'Poppins', sans-serif;
}

.seva-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.seva-track-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.seva-track {
    display: flex;
    gap: 24px;
    transition: transform .4s cubic-bezier(0.25, 1, 0.5, 1);
}

.seva-card {
    min-width: calc((100% - 48px)/3);
    background: #fff;
    border: 1px solid #eef0f6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.seva-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(91, 44, 160, 0.12);
    border-color: rgba(91, 44, 160, 0.2);
}

.seva-card.active {
    border-color: #5b2ca0;
    box-shadow: 0 16px 36px rgba(91, 44, 160, 0.16);
}

.seva-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9f2f, #ff7b00);
}

.seva-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.seva-card:hover img {
    transform: scale(1.05);
}

.seva-card-body {
    padding: 20px;
    text-align: center;
}

.seva-card-body h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #1e2c43;
    font-weight: 700;
}

.seva-card-body p {
    margin: 0 0 12px;
    font-size: 15px;
    color: #666;
}

.seva-link {
    display: inline-block;
    color: #5b2ca0;
    font-weight: 700;
    font-size: 16px;
    background: #f5f2fc;
    padding: 6px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.seva-card.active .seva-link {
    background: #5b2ca0;
    color: #fff;
}

.seva-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eef0f6;
    background: #fff;
    color: #5b2ca0;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.seva-nav:hover {
    background: #5b2ca0;
    color: #fff;
    box-shadow: 0 8px 20px rgba(91, 44, 160, 0.3);
    transform: scale(1.05);
}

.seva-detail-box {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #eef0f6;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.seva-side-tabs {
    border-right: 1px solid #eef0f6;
    padding: 24px 16px;
    background: #fafbfe;
}

.seva-side-tabs button {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 14px 20px;
    margin-bottom: 10px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #4f5e74;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seva-side-tabs button::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.seva-side-tabs button.active::after {
    opacity: 1;
    transform: translateX(0);
}

.seva-side-tabs button:hover {
    background: #f1ecfa;
    color: #5b2ca0;
}

.seva-side-tabs button.active {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    box-shadow: 0 8px 20px rgba(91, 44, 160, 0.25);
}

.seva-detail-list {
    padding: 20px;
    background: #fff;
    max-height: 520px;
    overflow-y: auto;
}

/* custom scrollbar */
.seva-detail-list::-webkit-scrollbar {
    width: 6px;
}

.seva-detail-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.seva-detail-list::-webkit-scrollbar-thumb {
    background: #c7b9e5;
    border-radius: 10px;
}

.seva-detail-list::-webkit-scrollbar-thumb:hover {
    background: #5b2ca0;
}

.seva-panel {
    display: none;
}

.seva-panel.active {
    display: block;
}

.seva-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f6f8fb;
    gap: 16px;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 6px;
}

.seva-row:hover {
    background: #fafbfe;
    transform: translateX(4px);
}

.seva-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.seva-row span {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.seva-row a {
    text-decoration: none;
    background: transparent;
    border: 2px solid #5b2ca0;
    border-radius: 30px;
    padding: 8px 20px;
    color: #5b2ca0;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.seva-row a:hover {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(91, 44, 160, 0.25);
}

.summary-btn {
    background: linear-gradient(135deg, #7b3ff2, #5b2ca0);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(91, 44, 160, 0.35);
    transition: all 0.3s ease;
}

.summary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(91, 44, 160, 0.45);
}

@media (max-width: 900px) {
    h1 {
        font-size: 34px !important;
    }

    section {
        padding: 52px 18px !important;
    }

    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .seva-card {
        min-width: 100%;
    }

    .seva-detail-box {
        grid-template-columns: 1fr;
    }

    .seva-side-tabs {
        border-right: none;
        border-bottom: 1px solid #ececec;
    }

    .seva-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .seva-nav {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .summary-btn {
        font-size: 20px;
    }
}

/* --- CSS from Sweet_Hall.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Templae_hall.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Vaishnana_Calendar.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from Volunteer_for_Temple_Services.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from about.php --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--gold);
    border: 3px solid var(--bg-secondary);
    border-radius: 50%;
    top: 26px;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item-left {
    left: 0;
    text-align: right;
}

.timeline-item-left::after {
    right: -10px;
}

.timeline-item-right {
    left: 50%;
    text-align: left;
}

.timeline-item-right::after {
    left: -10px;
}

.timeline-badge {
    display: inline-block;
    background: var(--saffron);
    color: #0A0704;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.timeline-card-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.timeline-card-box:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px var(--gold-glow);
}

.timeline-item:hover::after {
    background-color: var(--saffron);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item-left {
        left: 0;
    }

    .timeline-item-right {
        left: 0;
    }

    .timeline-item-left::after,
    .timeline-item-right::after {
        left: 10px;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.value-card-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CSS from activities.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from blog-details.php --- */
.blog-details-section {
    padding: 80px 0;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.details-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.back-btn-wrapper {
    margin-bottom: 30px;
}

.back-btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-btn-link:hover {
    color: var(--saffron);
    transform: translateX(-5px);
}

.details-image {
    width: 100%;
    max-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

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

.details-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.details-date {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--saffron-glow);
    color: var(--saffron);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 153, 51, 0.2);
}

.details-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.article-body {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.article-body p {
    margin-bottom: 20px;
}

@media(max-width: 768px) {
    .blog-details-section {
        padding: 50px 0;
    }

    .details-content {
        padding: 25px;
    }

    .details-content h1 {
        font-size: 2rem;
    }

    .article-body {
        font-size: 1.05rem;
    }
}

/* --- CSS from blog.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from donation.php --- */
.donation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.donation-details h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.donation-details p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.donation-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.payment-method-box {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.payment-method-box input {
    display: none;
}

.payment-method-box:hover,
.payment-method-box.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.alert-container {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

@media (max-width: 992px) {
    .donation-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- CSS from donation_cart.php --- */
:root {
    --theme-gold: #b38600;
    --theme-saffron: #e65c00;
    --theme-bg-light: #faf6f0;
    --theme-card-light: #ffffff;
    --theme-text-dark: #2c1a0f;
    --theme-text-muted: #5a4738;
}

.cart-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f7f4ff, #eef3ff);
    font-family: 'Outfit', sans-serif;
    color: var(--theme-text-dark);
    min-height: 80vh;
    position: relative;
}

.cart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23d4af37" fill-opacity="0.03"><path d="M30 0l30 30-30 30L0 30z"/></g></g></svg>');
    pointer-events: none;
}

.cart-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
}

.cart-heading {
    text-align: center;
    margin-bottom: 40px;
    grid-column: 1 / -1;
}

.cart-heading h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--theme-gold);
    margin-bottom: 15px;
}

.cart-heading p {
    color: var(--theme-text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cart Items Table */
.cart-items-wrapper {
    background: var(--theme-card-light);
    border-radius: 20px;
    border: 1px solid rgba(179, 134, 0, 0.2);
    padding: 30px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.5fr;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(179, 134, 0, 0.3);
    font-weight: 600;
    color: var(--theme-gold);
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.5fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ececec;
    transition: background 0.3s;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-desc {
    font-weight: 500;
    font-size: 1.1rem;
    color: #111827;
}

.item-event {
    font-size: 0.9rem;
    color: var(--theme-text-muted);
}

.item-amt {
    font-weight: 700;
    color: #111827;
    font-size: 1.2rem;
}

.btn-remove {
    background: rgba(255, 50, 50, 0.1);
    color: #ff5555;
    border: 1px solid rgba(255, 50, 50, 0.3);
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-remove:hover {
    background: #ff5555;
    color: #fff;
}

/* Donor Form */
.donor-form-wrapper {
    background: var(--theme-card-light);
    border-radius: 20px;
    border: 1px solid rgba(179, 134, 0, 0.2);
    padding: 30px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.donor-form-wrapper h3 {
    font-family: 'Cinzel', serif;
    color: var(--theme-gold);
    margin-bottom: 25px;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(179, 134, 0, 0.2);
    padding-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--theme-text-muted);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid #ddd;
    color: #111827;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--theme-gold);
}

.total-display {
    background: linear-gradient(135deg, rgba(179, 134, 0, 0.05), rgba(230, 92, 0, 0.05));
    border: 1px solid var(--theme-gold);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.total-display span {
    font-size: 1.1rem;
    color: var(--theme-text-muted);
}

.total-display strong {
    font-size: 2rem;
    color: var(--theme-gold);
}

.btn-pay {
    width: 100%;
    background: linear-gradient(135deg, var(--theme-gold), var(--theme-saffron));
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-pay:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
}

.btn-pay:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.empty-cart {
    text-align: center;
    padding: 50px 20px;
}

.empty-cart i {
    font-size: 4rem;
    color: rgba(179, 134, 0, 0.3);
    margin-bottom: 20px;
}

.empty-cart p {
    font-size: 1.2rem;
    color: var(--theme-text-muted);
    margin-bottom: 25px;
}

.btn-add-donation {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid var(--theme-gold);
    color: var(--theme-gold);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-add-donation:hover {
    background: var(--theme-gold);
    color: #fff;
}

/* --- CSS from donation_success_redirect.php --- */
body {
    font-family: 'Outfit', sans-serif;
    text-align: center;
    padding-top: 100px;
    background: #fff8ef;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ff9933;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- CSS from guest_house.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from home.php --- */
.discover-more {
    padding: 60px 0;
    background: radial-gradient(circle at top right, #fff7e8 0%, #fff 45%, #f7f7f7 100%);
}

.discover-more .discover-title {
    text-align: center;
    margin-bottom: 30px;
}

.discover-more .discover-title h2 {
    font-size: 52px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 12px;
}

.discover-more .discover-title p {
    font-size: 18px;
    color: #5c5c5c;
    line-height: 1.7;
}

.discover-more .discover-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.discover-more .discover-card {
    text-decoration: none;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    padding: 14px 12px 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.discover-more .discover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    border-color: #ffd79b;
}

.discover-more .card-img {
    width: 100%;
    max-width: 220px;
    height: 250px;
    margin: auto;
    border-radius: 18px;
    overflow: hidden;
}

.discover-more .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s ease;
}

.discover-more .discover-card:hover .card-img img {
    transform: scale(1.08);
}

.discover-more .card-content {
    margin-top: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.discover-more .card-content h3 {
    font-size: 22px;
    color: #1f1f1f;
    margin-bottom: 6px;
}

.discover-more .card-content span {
    color: #c46a00;
    font-size: 14px;
    font-weight: 600;
}

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

@media (max-width:991px) {
    .discover-more {
        padding: 80px 0;
    }

    .discover-more .discover-title h2 {
        font-size: 40px;
    }

    .discover-more .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:767px) {
    .discover-more .discover-grid {
        grid-template-columns: 1fr;
    }

    .discover-more .discover-title h2 {
        font-size: 34px;
    }

    .discover-more .discover-title p {
        font-size: 16px;
    }
}


/* --- CSS from news-details.php --- */
/* ========================================= */
/* DETAILS PAGE */
/* ========================================= */

.news-details-section {
    padding: 100px 0;
    background: #f5f5f7;
}

.details-container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* IMAGE */

.details-image {
    width: 100%;
    height: 650px;

    border-radius: 30px;
    overflow: hidden;

    margin-bottom: 50px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.10);
}

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

/* CONTENT */

.details-content {
    max-width: 900px;
}

.details-date {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(109, 40, 217, 0.1);

    color: #6d28d9;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 25px;
}

/* TITLE */

.details-content h1 {
    font-size: 58px;
    line-height: 1.2;

    color: #111;

    margin-bottom: 28px;

    font-weight: 700;
}

/* DESCRIPTION */

.details-content p {
    font-size: 19px;
    line-height: 2;

    color: #666;

    margin-bottom: 45px;
}

/* BUTTON */

.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    border-radius: 999px;

    background: linear-gradient(135deg,
            #7c3aed,
            #5b21b6);

    color: #fff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: .4s ease;

    box-shadow:
        0 15px 35px rgba(124, 58, 237, 0.3);
}

.back-btn:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(124, 58, 237, 0.4);
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:992px) {

    .details-image {
        height: 500px;
    }

    .details-content h1 {
        font-size: 42px;
    }
}

@media(max-width:768px) {

    .news-details-section {
        padding: 70px 0;
    }

    .details-image {
        height: 340px;
        border-radius: 24px;
        margin-bottom: 35px;
    }

    .details-content h1 {
        font-size: 32px;
    }

    .details-content p {
        font-size: 16px;
        line-height: 1.9;
    }
}

/* --- CSS from our-beliefs.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from our-mission.php --- */
/* ===================================================
   OUR MISSION PAGE — PREMIUM STYLES
=================================================== */
.mission-banner {
    position: relative;
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 40%, #1a0a00 100%);
}

.mission-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(255, 153, 51, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.mission-banner-mandala {
    position: absolute;
    width: 500px;
    height: 500px;
    opacity: 0.06;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: mpSpin 30s linear infinite;
    z-index: 1;
}

.mission-banner-mandala::before,
.mission-banner-mandala::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid #FF9933;
}

.mission-banner-mandala::before {
    inset: 30px;
    animation: mpSpin 20s linear infinite reverse;
}

.mission-banner-mandala::after {
    inset: 80px;
    animation: mpSpin 15s linear infinite;
}

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

.mission-banner-content {
    position: relative;
    z-index: 2;
    padding: 70px 20px;
}

.mission-banner-eyebrow {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #FF9933;
    background: rgba(255, 153, 51, 0.12);
    border: 1px solid rgba(255, 153, 51, 0.3);
    padding: 6px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.mission-banner h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

.mission-banner h1 span {
    background: linear-gradient(90deg, #D4AF37, #FF9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.mission-breadcrumb a {
    color: #FF9933;
}

.mission-breadcrumb a:hover {
    color: #D4AF37;
}

/* PAGE WRAPPER */
.mission-page-wrapper {
    background: var(--bg-primary);
    padding-bottom: 80px;
}

/* SECTIONS */
.mp-section {
    padding: 80px 0;
    position: relative;
}

.mp-section-alt {
    background: var(--bg-secondary);
}

.mp-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* SECTION HEADER */
.mp-section-header {
    text-align: center;
    margin-bottom: 55px;
}

.mp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--saffron);
    background: rgba(255, 153, 51, 0.08);
    border: 1px solid rgba(255, 153, 51, 0.25);
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.mp-section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.mp-section-title .gold-word {
    background: linear-gradient(90deg, var(--gold), var(--saffron));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 22px;
    max-width: 300px;
}

.mp-divider-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mp-divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--saffron);
    flex-shrink: 0;
}

.mp-section-intro {
    max-width: 780px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

/* KEYWORD HIGHLIGHTS */
.kw {
    font-weight: 700;
    color: var(--saffron);
    border-bottom: 1.5px dotted var(--gold);
    cursor: default;
    transition: color 0.2s;
}

.kw:hover {
    color: var(--gold);
}

.kw-gold {
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold), var(--saffron));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* PROSE CARD */
.mp-prose {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px 52px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.mp-prose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--saffron), var(--gold));
}

.mp-prose p {
    color: var(--text-secondary);
    font-size: 1.03rem;
    line-height: 1.95;
    margin-bottom: 22px;
}

.mp-prose p:last-child {
    margin-bottom: 0;
}

.mp-prose h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.18rem;
    color: var(--gold);
    margin: 32px 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-prose h3 i {
    color: var(--saffron);
    font-size: 1rem;
}

.mp-prose h3:first-child {
    margin-top: 0;
}

@media(max-width:768px) {
    .mp-prose {
        padding: 30px 22px;
    }
}

/* VISION STATS */
.vision-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.vision-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 34px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.vision-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--saffron));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.vision-stat-card:hover::after {
    transform: scaleX(1);
}

.vision-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.vision-stat-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.vision-stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold), var(--saffron));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.vision-stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media(max-width:768px) {
    .vision-stats {
        grid-template-columns: 1fr;
    }
}

/* OBJECTIVES GRID */
.obj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.obj-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 30px 26px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.35s ease;
}

.obj-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.obj-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 153, 51, 0.1));
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.35s ease;
}

.obj-card:hover .obj-card-icon {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
}

.obj-card-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.03rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.obj-card-body p {
    font-size: 0.91rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

@media(max-width:768px) {
    .obj-grid {
        grid-template-columns: 1fr;
    }
}

/* GOALS TIMELINE */
.goals-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 45px;
    position: relative;
    padding-left: 52px;
}

.goals-list::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--saffron), transparent);
}

.goal-item {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 30px 32px;
    transition: all 0.35s ease;
}

.goal-item::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 33px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--saffron);
    border: 3px solid var(--bg-primary);
    transition: all 0.35s ease;
    box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.15);
}

.goal-item:hover {
    transform: translateX(8px);
    border-color: var(--gold);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.goal-item:hover::before {
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.2);
}

.goal-number {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 8px;
}

.goal-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.08rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.goal-item h3 i {
    color: var(--gold);
}

.goal-item p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media(max-width:768px) {
    .goals-list {
        padding-left: 36px;
    }

    .goals-list::before {
        left: 10px;
    }

    .goal-item::before {
        left: -28px;
    }
}

/* ABOUT COLS */
.about-content-cols {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

@media(max-width:900px) {
    .about-content-cols {
        grid-template-columns: 1fr;
    }
}

.about-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.35s ease;
}

.sidebar-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.sidebar-card-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.sidebar-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.sidebar-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* KEYWORD TAGS */
.kw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    justify-content: center;
}

.kw-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 153, 51, 0.08));
    border: 1px solid var(--border-color);
    color: var(--gold);
    transition: all 0.3s ease;
}

.kw-tag:hover {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #111;
    border-color: transparent;
    transform: translateY(-2px);
}

/* REVEAL */
.mp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.mp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.mp-reveal-delay-1 {
    transition-delay: 0.12s;
}

.mp-reveal-delay-2 {
    transition-delay: 0.22s;
}

.mp-reveal-delay-3 {
    transition-delay: 0.32s;
}

/* --- CSS from privacy.php --- */
.legal-section h2 {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px !important;
    }

    .legal-section {
        padding: 40px 15px !important;
    }
}

/* --- CSS from return-policy.php --- */
.legal-section h2 {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px !important;
    }

    .legal-section {
        padding: 40px 15px !important;
    }
}

/* --- CSS from shri-radha-govind-ashram.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* --- CSS from temple.php --- */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.schedule-column {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.schedule-column h3 {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-time {
    color: var(--saffron);
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 90px;
}

.schedule-name {
    font-weight: 500;
    text-align: right;
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rule-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.rule-card h4 {
    color: var(--saffron);
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.rule-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .rules-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CSS from terms.php --- */
.legal-section h2 {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px !important;
    }

    .legal-section {
        padding: 40px 15px !important;
    }
}

/* --- CSS from what_inside.php --- */
@media(max-width:992px) {

    h1 {
        font-size: 40px !important;
    }

}

@media(max-width:768px) {

    section {
        padding: 50px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    p {
        font-size: 16px !important;
    }

}

/* ==========================
      Tablet
========================== */

@media (max-width:992px) {

    .history-section {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .history-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .history-card {
        padding: 25px;
    }

    .history-card h3 {
        font-size: 22px;
    }

}

/* ==========================
      Mobile
========================== */

@media (max-width:768px) {

    .history-section {
        padding: 45px 15px;
    }

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

    .section-title h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-title span {
        font-size: 15px;
    }

    .history-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .history-card {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .history-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .history-card p,
    .history-card li {
        font-size: 15px;
        line-height: 1.7;
    }

}

/* ==========================
      Small Mobile
========================== */

@media (max-width:480px) {

    .history-section {
        padding: 35px 12px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .history-card {
        padding: 18px 15px;
    }

    .history-card h3 {
        font-size: 18px;
    }

    .history-card p,
    .history-card li {
        font-size: 14px;
    }

}

/* =================================================
   CSS for Aashram_Construction_Expansive.php - Responsive
================================================= */

/* Tablet (≤ 991px) */
@media (max-width: 991px) {

    .content-box {
        padding: 30px 20px !important;
    }

    .content-header h1 {
        font-size: 28px !important;
    }

    .payment-title h3 {
        font-size: 26px !important;
    }

    .paytm-title {
        font-size: 28px !important;
    }

    .paytm-title span {
        font-size: 17px !important;
    }

    .donation-card h3 {
        font-size: 22px !important;
    }

    /* Certificate section */
    .certificate-container {
        padding: 0 15px;
    }

    /* Quote section: stack image above text */
    .quote-section {
        grid-template-columns: 1fr !important;
    }

    .quote-image {
        min-height: 280px !important;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {

    .about-section {
        padding: 40px 4% !important;
    }

    .donation-content {
        padding: 20px 4% !important;
    }

    .content-inner {
        padding: 0;
    }

    .content-header h1 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .content-header p {
        font-size: 15px !important;
    }

    .orange-btn {
        padding: 12px 22px !important;
        font-size: 15px !important;
    }

    /* Seva slider: single card on mobile */
    .seva-card {
        min-width: 100% !important;
    }

    .seva-card img {
        height: 200px !important;
    }

    /* Seva detail box: tabs above list */
    .seva-detail-box {
        grid-template-columns: 1fr !important;
    }

    .seva-side-tabs {
        border-right: none !important;
        border-bottom: 1px solid #ececec !important;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 16px !important;
    }

    .seva-side-tabs button {
        flex: 1 1 auto;
        font-size: 13px !important;
        padding: 10px 12px !important;
        min-width: 0;
        text-align: center;
        justify-content: center;
    }

    .seva-side-tabs button::after {
        display: none;
    }

    .seva-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 14px 16px !important;
    }

    .seva-row a {
        width: 100% !important;
        text-align: center !important;
    }

    .summary-btn {
        width: 100% !important;
        font-size: 17px !important;
        padding: 14px 20px !important;
    }

    /* Payment section */
    .payment-title h3 {
        font-size: 22px !important;
    }

    .donation-cards {
        grid-template-columns: 1fr !important;
    }

    .donation-card {
        padding: 24px 18px !important;
    }

    .donation-card h3 {
        font-size: 20px !important;
        margin-bottom: 16px !important;
    }

    .paytm-title {
        font-size: 22px !important;
    }

    .qr-content {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .qr-content img {
        width: 100px !important;
    }

    /* Certificate section */
    .certificate-box {
        padding: 24px 18px !important;
    }

    .quote-section {
        grid-template-columns: 1fr !important;
    }

    .quote-image {
        min-height: 220px !important;
    }

    .quote-content {
        padding: 28px 20px !important;
    }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {

    .content-header h1 {
        font-size: 21px !important;
    }

    .seva-nav {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
    }

    .seva-slider-wrap {
        gap: 8px !important;
    }

    .card-details {
        font-size: 14px !important;
    }
}

/* =================================================
   CSS for what_inside.php - Responsive
================================================= */

/* Tablet (≤ 991px) — 2-column grid */
@media (max-width: 991px) {

    /* Override inline grid-template-columns: repeat(3,1fr) */
    div[style*="grid-template-columns:repeat(3,1fr)"],
    div[style*="grid-template-columns: repeat(3,1fr)"],
    div[style*="grid-template-columns:repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile (≤ 640px) — single column */
@media (max-width: 640px) {

    div[style*="grid-template-columns:repeat(3,1fr)"],
    div[style*="grid-template-columns: repeat(3,1fr)"],
    div[style*="grid-template-columns:repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* shrink card images on small screens */
    div[style*="grid-template-columns"] img[style*="height:260px"],
    div[style*="grid-template-columns"] img[style*="height: 260px"],
    div[style*="grid-template-columns"] img[style*="height:330px"],
    div[style*="grid-template-columns"] img[style*="height: 330px"] {
        height: 200px !important;
    }

    /* h1 inside inline content box */
    section[style*="padding:80px 5%"] h1[style*="font-size:40px"],
    section[style*="padding:80px 5%"] h1[style*="font-size: 40px"] {
        font-size: 26px !important;
    }

    /* content box padding */
    section[style*="padding:80px 5%"]>div>div[style*="padding:50px"] {
        padding: 22px !important;
    }

    section[style*="padding:80px 5%"] {
        padding: 36px 4% !important;
    }
}

/* =================================================
   CSS for Vaishnana_Calendar.php - Responsive
================================================= */

/* Tablet */
@media (max-width: 991px) {

    .calendar-container {
        overflow-x: auto;
    }

    #days-grid {
        grid-auto-rows: minmax(80px, auto) !important;
    }

    /* shrink calendar event tags */
    #days-grid div[style*="font-size:11px"],
    #days-grid div[style*="font-size: 11px"] {
        font-size: 10px !important;
    }

    /* Calendar header wraps nicely */
    .calendar-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    #calendar-title {
        font-size: 18px !important;
    }
}

/* Mobile (≤ 640px) */
@media (max-width: 640px) {

    /* Make the calendar container scrollable horizontally */
    .calendar-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Set a minimum width so the 7-day grid stays readable */
    #calendar-grid-view {
        min-width: 560px;
    }

    #days-grid {
        grid-auto-rows: minmax(65px, auto) !important;
    }

    /* View buttons — smaller font */
    .view-btn,
    .calendar-view-btn-group button {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }

    /* Calendar content box padding */
    section[style*="padding:80px 5%"]>div>div[style*="padding:30px"] {
        padding: 16px !important;
    }

    section[style*="padding:80px 5%"] {
        padding: 30px 3% !important;
    }

    #calendar-title {
        font-size: 16px !important;
    }
}

/* =================================================
   CSS for Life_Patron_membership.php - Responsive
================================================= */

/* Tablet */
@media (max-width: 991px) {

    .membership-section {
        padding: 50px 4% !important;
    }

    .info-wrapper {
        padding: 28px 22px !important;
    }

    .intro-text {
        font-size: 16px !important;
    }

    .benefit-card h3 {
        font-size: 20px !important;
    }

    .benefit-card p {
        font-size: 16px !important;
    }
}

/* Mobile */
@media (max-width: 640px) {

    .membership-section {
        padding: 36px 4% !important;
    }

    .membership-container {
        gap: 20px !important;
    }

    .content-box {
        padding: 22px 16px !important;
    }

    .main-heading {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .info-wrapper {
        padding: 20px 16px !important;
    }

    .intro-text {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    .benefit-card {
        padding: 20px 18px !important;
    }

    .benefit-card h3 {
        font-size: 18px !important;
    }

    .benefit-card p {
        font-size: 15px !important;
    }

    .button-wrapper {
        text-align: center;
    }

    .enroll-btn {
        display: block !important;
        text-align: center !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
}

/* Contact Us */
/* Location & Accessibility Section */

/* ===========================
   Location & Accessibility
=========================== */

.location-section {
    padding: 70px 0;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 58px;
    font-weight: 800;
    color: #003d7c;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.location-wrapper {
    background: #f0f1f2;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.location-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 72px;
    height: 72px;
    background: #ff8427;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    font-size: 32px;
    color: #fff;
}

.info-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #162238;
    margin-bottom: 30px;
}

.info-card p {
    font-size: 18px;
    color: #5a6775;
    line-height: 1.8;
    margin-bottom: 12px;
}

.highlight-text {
    font-weight: 700;
    margin-bottom: 30px;
}

.phone-number {
    font-size: 32px !important;
    font-weight: 700;
    color: #f9a602 !important;
    margin-bottom: 20px !important;
}

.email-address {
    font-size: 24px !important;
    font-weight: 700;
    color: #f9a602 !important;
    margin-bottom: 20px !important;
    word-break: break-word;
}

.direction-btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
}

.direction-btn:hover {
    background: #084fc7;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 992px) {
    .section-title {
        font-size: 42px;
    }

    .location-grid {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .location-section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 30px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-card h3 {
        font-size: 24px;
    }

    .phone-number {
        font-size: 26px !important;
    }

    .email-address {
        font-size: 20px !important;
    }

    .direction-btn {
        width: 100%;
    }
}

/*==========================
    How To Reach Section
===========================*/

.reach-section {
    padding: 20px;
    background: #f5f5f5;
}

.reach-container {
    max-width: 1500px;
    margin: auto;
    background: #f1f3f4;
    padding: 20px;
    border-radius: 6px;
}

.reach-title {
    margin: 0;
    text-align: center;
    color: #003d7c;
    font-size: 26px;
    font-weight: 700;
}

.reach-divider {
    border: none;
    border-top: 1px solid #d8d8d8;
    margin: 15px 0 18px;
}

.reach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.reach-card {
    flex: 1 1 300px;
    background: #fff;
    border-left: 3px solid #00cfff;
    border-radius: 4px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
    transition: all .3s ease;
}

.reach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.reach-icon {
    font-size: 42px;
    color: #ff8427;
    margin-bottom: 12px;
}

.reach-card h3 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.reach-card p {
    margin: 0;
    font-size: 14px;
    color: #222;
    line-height: 1.7;
}

.distance {
    margin: 6px 0 12px !important;
    color: #ff3b30 !important;
    font-size: 14px;
    font-weight: 700;
}

.description {
    font-size: 13px !important;
    color: #555 !important;
}

/*==========================
      Responsive
===========================*/

@media(max-width:992px) {

    .reach-grid {
        justify-content: center;
    }

    .reach-card {
        flex: 1 1 calc(50% - 18px);
    }

}

@media(max-width:768px) {

    .reach-title {
        font-size: 22px;
    }

    .reach-card {
        flex: 1 1 100%;
    }

}

@media(max-width:576px) {

    .reach-section {
        padding: 15px;
    }

    .reach-container {
        padding: 15px;
    }

    .reach-title {
        font-size: 20px;
    }

    .reach-card {
        padding: 16px;
    }

    .reach-icon {
        font-size: 36px;
    }

}

/*=========================
Nearby Places
=========================*/

.places-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.place-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    transition: .3s;
    flex: 0 0 auto;
}

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

.place-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ff8427;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.place-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.place-card span {
    color: #ff8427;
    font-weight: 700;
}

/*=========================
Tablet
=========================*/

@media(max-width:991px) {

    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/*=========================
Mobile Slider
=========================*/

@media(max-width:768px) {

    .mobile-slider {

        display: flex;
        overflow-x: auto;
        gap: 18px;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;

        padding-bottom: 15px;

    }

    .mobile-slider::-webkit-scrollbar {
        display: none;
    }

    .mobile-slider {
        scrollbar-width: none;
    }

    .mobile-slider .place-card {

        min-width: 280px;
        width: 280px;

        scroll-snap-align: center;

    }

    .pagination {
        display: none;
    }

}

/*==========================================
    Section
==========================================*/

.nearby-places-section {
    padding: 70px 0;
    background: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    color: #003d7c;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/*==========================================
      Desktop Grid
==========================================*/

.places-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.place-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .35s;
    cursor: pointer;
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
}

.place-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    border-radius: 50%;
    background: #ff8427;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.place-icon i {
    color: #fff;
    font-size: 30px;
}

.place-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
    font-weight: 600;
}

.place-card span {
    display: inline-block;
    background: #003d7c;
    color: #fff;
    padding: 7px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
}

/*==========================================
     Desktop Pagination
==========================================*/

.desktop-pagination {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.desktop-pagination button {
    border: none;
    background: #003d7c;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
    font-size: 15px;
}

.desktop-pagination button:hover {
    background: #ff8427;
}

#pageInfo {
    font-size: 17px;
    font-weight: 600;
}

/*==========================================
     Mobile Pagination
==========================================*/

.mobile-pagination {
    display: none;
}

/*==========================================
      Tablet
==========================================*/

@media(max-width:1200px) {

    .places-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:991px) {

    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/*==========================================
      Mobile Slider
==========================================*/

@media(max-width:768px) {

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 15px;
    }

    .places-grid {

        display: flex;
        overflow-x: auto;

        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;

        gap: 20px;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;

    }

    .places-grid::-webkit-scrollbar {
        display: none;
    }

    .place-card {

        min-width: 100%;
        scroll-snap-align: center;

    }

    .desktop-pagination {
        display: none;
    }

    .mobile-pagination {

        margin-top: 25px;

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 15px;

    }

    .mobile-pagination button {

        width: 45px;
        height: 45px;

        border: none;
        border-radius: 50%;

        background: #003d7c;
        color: #fff;

        cursor: pointer;

        transition: .3s;

    }

    .mobile-pagination button:hover {

        background: #ff8427;

    }

    #mobileDots {

        display: flex;
        gap: 8px;

    }

    #mobileDots span {

        width: 10px;
        height: 10px;

        background: #d5d5d5;

        border-radius: 50%;

        transition: .3s;

        cursor: pointer;

    }

    #mobileDots span.active {

        width: 28px;

        border-radius: 30px;

        background: #ff8427;

    }

}

/*==========================================
      Small Mobile
==========================================*/

@media(max-width:480px) {

    .nearby-places-section {
        padding: 50px 15px;
    }

    .place-card {

        padding: 25px 18px;

    }

    .place-icon {

        width: 65px;
        height: 65px;

    }

    .place-icon i {

        font-size: 26px;

    }

    .place-card h3 {

        font-size: 18px;

    }

    .place-card span {

        font-size: 14px;

    }

    .section-header h2 {

        font-size: 26px;

    }

}

/* ============================================================
   GLOBAL MOBILE FIX — Prevents horizontal overflow & left-shift
   on ALL pages for cards, sections, wrappers, grids
============================================================ */
@media (max-width: 767px) {

    /* Prevent ANY element from causing horizontal scroll */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    /* Reset ALL elements that may overflow */
    *,
    *::before,
    *::after {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Sections: remove horizontal padding from the section itself */
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* All common card/grid wrappers: constrain to viewport */
    .info-card,
    .visit-card,
    .discover-card,
    .blog-item,
    .event-card,
    .seva-card,
    .gallery-item,
    .team-card,
    .testimonial-card,
    .leader-card,
    .obj-card,
    .place-card,
    .guest-card,
    .donation-card,
    .darshan-card,
    .festival-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Grids: switch to single column on very small screens */
    .location-grid,
    .places-grid,
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
        padding: 0 !important;
    }

    /* Fix location wrapper extra padding */
    .location-wrapper {
        padding: 16px !important;
        margin: 0 !important;
        border-radius: 8px !important;
    }

    /* Location section: use container padding only */
    .location-section {
        padding: 30px 0 !important;
    }

    /* Nearby places section: use container padding only */
    .nearby-places-section {
        padding: 30px 0 !important;
    }

    /* Make sure all containers fill the viewport edge-to-edge */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 14px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    /* Carousels: prevent overflow */
    .carousel-wrapper {
        overflow: hidden !important;
        width: 100% !important;
    }

    .visit-grid,
    .discover-grid,
    .blog-grid,
    .testimonials-grid {
        padding-left: 14px !important;
        padding-right: 14px !important;
        box-sizing: border-box !important;
    }

    /* Fix info cards on contact page */
    .info-card {
        min-width: unset !important;
        padding: 24px 16px !important;
    }

    /* Fix darshan image centering */
    .darshan-img-container,
    .darshan-card img {
        width: 100% !important;
        max-width: 100% !important;
    }
}