@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Yatra+One&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap");

/* ============================
   Premium CSS Variables
   ============================ */
:root {
    --primary: #851c27;        /* Rich Crimson/Maroon */
    --primary-light: #a92936;
    --primary-dark: #5a1017;
    --accent: #d4af37;         /* Metallic Gold */
    --accent-light: #fbe58a;
    --bg-white: #ffffff;
    --bg-light: #fdfbf9;       /* Creamy Off-White */
    --bg-alt: #f5f0ea;         /* Soft Sand */
    --text-dark: #1f1a1a;
    --text-body: #574f4b;
    --text-muted: #9c918b;
    --border: #e6dfd8;
    --header-height: 85px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 10px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 40px rgba(133, 28, 39, 0.08); /* Maroon tinted shadow */
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: "Outfit", sans-serif;
    color: var(--text-body);
    background: var(--bg-light);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.marathi-text, [data-mr], span[data-mr] {
    font-family: "Noto Sans Devanagari", sans-serif;
    letter-spacing: normal !important;
}

h1[data-mr], h2[data-mr], h3[data-mr] {
    font-family: "Noto Sans Devanagari", sans-serif;
    letter-spacing: normal !important;
    font-weight: 700;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================
   Top Strip
   ============================ */
.top-strip {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    color: var(--accent);
    font-size: 0.9rem;
    padding: 8px 0;
    font-weight: 500;
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-strip-text {
    font-family: "Noto Sans Devanagari", sans-serif;
    font-size: 1.05rem;
    letter-spacing: normal !important;
    font-weight: 700;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: "Outfit", sans-serif;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-1px);
}

/* ============================
   Header (Glassmorphism)
   ============================ */
header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary), #b83a48);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.translate-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(133, 28, 39, 0.2);
}

.translate-btn i {
    font-size: 1.1rem;
    color: var(--accent-light);
}

.translate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(133, 28, 39, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: var(--bg-alt);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding-top: 100px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.mobile-nav-links a {
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.mobile-nav-links a:hover {
    background: var(--bg-alt);
    color: var(--primary);
    padding-left: 28px;
}

/* ============================
   Hero Banner
   ============================ */
.hero-banner {
    position: relative;
    height: 65vh;
    min-height: 400px;
    max-height: 800px;
    overflow: hidden;
    margin: 15px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(30,10,15,0.4) 40%, rgba(30,10,15,0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 60px 5%;
    text-align: center;
}

.hero-text h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 4rem);
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    margin-bottom: 12px;
    animation: fadeUp 1s ease forwards;
}

.hero-text p {
    color: var(--accent-light);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: fadeUp 1s ease 0.2s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   Sections
   ============================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-white);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Image Slider (Draggable) */
.image-ticker {
    width: 100%;
    background: var(--bg-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}



.ticker-wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    cursor: grab;
    padding: 10px 20px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
}

.ticker-wrapper.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.ticker-wrapper::-webkit-scrollbar {
    display: none;
}

.ticker-content {
    display: flex;
    gap: 24px;
    align-items: center;
    pointer-events: none;
}

.ticker-content img {
    max-height: 280px;
    height: auto;
    width: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    pointer-events: auto;
    border: 4px solid white;
}

.ticker-content img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .ticker-content img { max-height: 160px; }
    .hero-banner { margin: 0; border-radius: 0; height: 50vh; min-height: 300px; max-height: 500px; }
}

.section-title-bar {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-bar h2 {
    color: var(--primary);
    font-size: 2.2rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title-bar h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

/* ============================
   Services Grid
   ============================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-alt);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(133, 28, 39, 0.2);
}

.service-card span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ============================
   About Section
   ============================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-md);
    position: relative;
}

.about-img-wrap::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px dashed var(--accent);
    border-radius: calc(var(--radius-lg) + 5px);
    z-index: 0;
    opacity: 0.5;
}

.about-img-wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.about-img-wrap:hover img {
    transform: scale(1.05);
}

.about-text-wrap p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 20px;
    text-align: justify;
}

@media (min-width: 992px) {
    .about-content {
        grid-template-columns: 5fr 6fr;
        gap: 60px;
        align-items: center;
    }
    .about-img-wrap img {
        height: 380px;
    }
}

/* ============================
   News Spotlight Section
   ============================ */
.news-spotlight {
    background: linear-gradient(135deg, #fdfaf5, var(--bg-alt));
    padding: 80px 0;
}

.news-frame {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

.news-scroll-container {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 16px;
    border-radius: var(--radius-sm);
}

.news-scroll-container::-webkit-scrollbar {
    width: 8px;
}
.news-scroll-container::-webkit-scrollbar-track {
    background: var(--bg-alt);
    border-radius: 10px;
}
.news-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

.news-badge {
    position: absolute;
    top: -15px;
    left: 50px;
    background: linear-gradient(90deg, var(--accent), #e5b31f);
    color: var(--text-dark);
    padding: 6px 20px;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: var(--shadow-gold);
}

.news-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.news-caption {
    font-family: "Playfair Display", serif;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .news-frame {
        padding: 18px 14px 16px;
    }

    .news-badge {
        left: 18px;
        top: -14px;
        padding: 6px 14px;
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    .news-scroll-container {
        max-height: 360px;
        padding-right: 10px;
    }

    .news-caption {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* ============================
   President Section
   ============================ */
.president-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.president-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 8px; height: 100%;
    background: var(--primary);
}

.president-img-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.president-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 6px solid var(--bg-white);
    box-shadow: inset 0 0 0 4px var(--accent);
}

.president-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.president-name {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.president-title {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .president-content {
        flex-direction: row;
        text-align: left;
        padding: 50px;
        gap: 60px;
    }
    .president-img-wrap {
        width: 260px;
        height: 260px;
        flex-shrink: 0;
    }
}

/* ============================
   Aarti Section
   ============================ */
.aarti-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .aarti-layout {
        grid-template-columns: 1.3fr 1fr;
        align-items: start;
    }
}

.aarti-card, .timing-card {
    background: var(--bg-white);
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.aarti-card h3, .timing-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

/* Timings */
.timing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timing-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.timing-list li:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
    border-left-color: var(--primary);
}

.timing-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f5d061, #d4af37);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.timing-list li:hover .timing-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.timing-info { display: flex; flex-direction: column; }
.timing-lbl { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;}
.timing-val { font-size: 1.25rem; color: var(--text-dark); font-family: "Outfit", sans-serif; font-weight: 700; margin-top: 4px;}

.timing-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
}

/* Aarti Verses */
.aarti-verses {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 15px;
}

.aarti-verses::-webkit-scrollbar { width: 8px; }
.aarti-verses::-webkit-scrollbar-track { background: var(--bg-alt); border-radius: 10px; }
.aarti-verses::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

.aarti-verses p {
    font-size: 1.1rem;
    padding: 14px 20px;
    margin-bottom: 12px;
    background: var(--bg-light);
    border-left: 3px solid var(--border);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    line-height: 2;
    transition: var(--transition);
}

.aarti-verses p:hover {
    background: var(--bg-white);
    border-left-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

/* ============================
   Devasthan Utsav Card
   ============================ */
.utsav-card {
    background: var(--bg-white);
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 40px;
}

.utsav-card h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
}

.utsav-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .utsav-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.utsav-list li {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}

.utsav-list li:hover {
    background: var(--bg-white);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.utsav-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #fff;
    border-bottom: 4px solid var(--accent);
    transition: transform 0.5s ease;
}

.utsav-list li:hover .utsav-img {
    transform: scale(1.02);
}

.utsav-info {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
    background: var(--bg-white);
}

.utsav-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.utsav-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ============================
   Gallery
   ============================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }

/* ============================
   Donation
   ============================ */
.donation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
}

.donation-img {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    align-content: start;
}

.donation-img img,
.donation-img video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* Sleek floating shadow */
    border: 4px solid var(--bg-white); /* White bezel/frame effect */
}

.donation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    min-width: 0;
}

.annadate-section {
    background: linear-gradient(145deg, var(--bg-white), var(--bg-alt));
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--accent);
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.annadate-section::before {
    content: '✨';
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    opacity: 0.1;
}

.annadate-title {
    font-family: "Outfit", sans-serif !important;
    font-size: 0.95rem !important;
    text-transform: uppercase;
    color: var(--primary) !important;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 800;
}

.annadate-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.annadate-address {
    font-size: 0.95rem !important;
    color: var(--text-body);
    line-height: 1.6 !important;
    margin-bottom: 12px;
}

.annadate-gst {
    font-size: 0.85rem !important;
    color: var(--text-dark);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.15);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
}

.donation-icon { font-size: 3rem; }
.donation-info h3 { font-size: 2rem; color: var(--primary); }
.donation-info p { font-size: 1.1rem; }

.stats-row {
    display: flex;
    gap: 40px;
    margin: 15px 0;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-lbl { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}

@media (min-width: 992px) {
    .donation-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 60px;
        align-items: stretch;
    }
    .donation-img {
        align-content: center;
    }
}

/* ============================
   Buttons
   ============================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-family: inherit;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(133, 28, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(133, 28, 39, 0.4);
    color: white;
}

/* ============================
   Contact & Map
   ============================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.map-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.map-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.seo-location-copy {
    margin-top: 16px;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-box h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

@media (min-width: 992px) {
    .contact-layout { grid-template-columns: 1.5fr 1fr; gap: 40px; }
}

/* ============================
   Footer
   ============================ */
footer {
    background: #1e1b19;
    color: #e6dfd8;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-col h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-col p,
.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: #a8a29e;
    line-height: 2;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--bg-white);
    transform: translateX(5px);
}

.footer-bottom {
    padding: 24px;
    background: #141211;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #78716c;
}

.footer-bottom a {
    color: var(--accent);
    font-weight: 600;
}

.footer-bottom a:hover { color: #fff; }

@media (min-width: 768px) {
    .footer-top { grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; }
}

/* ============================
   Abhishek Section
   ============================ */
.abhishek-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .abhishek-layout {
        flex-direction: row;
        justify-content: space-between;
    }
}

.abhishek-info { flex: 1; }
.abhishek-info h3 { color: var(--primary); font-size: 1.8rem; margin-bottom: 16px; }

.abhishek-animation {
    width: 240px;
    height: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-white) 100%);
    border-radius: 50% 50% 10% 10%;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.02), var(--shadow-sm);
    padding-bottom: 30px;
    flex-shrink: 0;
}

.shivaling-container {
    position: relative;
    width: 120px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.oil-drop {
    position: absolute;
    top: -90px;
    width: 14px;
    height: 22px;
    background: linear-gradient(135deg, #ffd700, #b8860b);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: dropFall 1.5s infinite ease-in;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes dropFall {
    0% { top: -90px; opacity: 0; transform: scaleY(0.8); }
    10% { opacity: 1; transform: scaleY(1); }
    80% { top: 30px; opacity: 1; transform: scaleY(1.2); }
    100% { top: 50px; opacity: 0; transform: scaleY(0.5) scaleX(1.5); }
}

.shivaling {
    width: 70px;
    height: 90px;
    background: #2a2a2a;
    border-radius: 40px 40px 0 0;
    position: relative;
    z-index: 2;
    box-shadow: inset -15px -15px 30px rgba(0,0,0,0.6), inset 5px 5px 15px rgba(255,255,255,0.15);
}

.shivaling-base {
    width: 110px;
    height: 36px;
    background: #333;
    border-radius: 50px;
    position: relative;
    margin-top: -18px;
    z-index: 1;
    box-shadow: inset -10px -10px 20px rgba(0,0,0,0.6), 0 10px 15px rgba(0,0,0,0.2);
}

/* ============================
   Responsive Specific Overrides
   ============================ */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    .section { padding: 40px 0; }
    .section-title-bar h2 { font-size: 1.8rem; }
    
    .abhishek-layout, .aarti-card, .timing-card, .utsav-card, .contact-box {
        padding: 24px;
        border-radius: var(--radius-md);
    }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .service-card { padding: 20px 10px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .gallery-item img { height: 180px; }
    
    /* Mobile scrolling limiters */
    .about-img-wrap img { height: 250px; }
    .donation-img img, .donation-img video { 
        max-height: 250px; /* Constrain Reels on mobile */ 
        width: 100%;
    }
    .donation-img { max-width: 480px; margin: 0 auto; }
    
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .top-strip-text { font-size: 0.85rem; letter-spacing: 0.5px; }
    .logo-main { font-size: 1.1rem; }
    .hero-text h1 { font-size: 1.6rem; }
    .hero-text p { font-size: 1rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
}

/* --- News Headline Ticker --- */
.news-headline-ticker {
  background-color: var(--primary-color, #d32f2f);
  color: white;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  overflow: hidden;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
  position: relative;
  z-index: 10;
}

.headline-label {
  background-color: #b71c1c;
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  margin-right: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}

.headline-content-wrap {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  display: flex;
}

.headline-content {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-size: 1.05rem;
  font-weight: 500;
  /* Faster speed since it translates one span length out of 10 */
  animation: scrollHeadline 15s linear infinite;
}

.ticker-text {
  padding-right: 50px;
}

@keyframes scrollHeadline {
  0% { transform: translateX(0); }
  /* Translates exactly 10%, which equals 1 of the 10 spans, making it snap seamlessly */
  100% { transform: translateX(-10%); }
}

.headline-content:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .news-headline-ticker {
    padding: 6px 10px;
  }
  .headline-label {
    font-size: 0.85rem;
    padding: 5px 10px;
    margin-right: 10px;
  }
  .headline-content {
    font-size: 0.95rem;
    animation: scrollHeadline 20s linear infinite;
  }
}

