﻿:root {
    --primary: #b71c1c;
    --secondary: #e65100;
    --accent: #ffd700;
    --accent-soft: #ffb300;
    --bg: #fff8e1;
    --section: #fff3e0;
    --section-alt: #fff8ee;
    --text: #3e2723;
    --muted: #6d4c41;
    --white: #ffffff;
    --shadow-sm: 0 8px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 14px 35px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.18);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --transition: all 0.35s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(135deg,#fffaf0,#fff3e0);
    color: var(--text);
    font-family: 'Segoe UI','Noto Sans Devanagari',sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    transition: var(--transition);
}

    img:hover {
        transform: scale(1.03);
    }

a {
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1180px;
}

section {
    position: relative;
    overflow: hidden;
}

.section-sm {
    padding: 30px 0;
}

.section-md {
    padding: 50px 0;
}

.section-lg {
    padding: 80px 0;
}

/* Topbar */
.topbar {
    background: var(--primary);
    color: #fff;
    padding: 6px 0;
    font-size: 13px;
}

    .topbar a {
        color: #fff;
    }

/* Temple header */
.temple-header {
    padding: 10px 0;
    background: linear-gradient(135deg,#fff8e1,#ffe0b2,#fff3e0);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--accent);
}

    .temple-header::before {
        content: "";
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,215,0,0.12), transparent 60%);
        animation: divineGlow 8s linear infinite;
    }

@keyframes divineGlow {
    0% {
        transform: translate(-25%,-25%) rotate(0deg);
    }

    100% {
        transform: translate(-25%,-25%) rotate(360deg);
    }
}

.temple-title-box {
    text-align: center;
    position: relative;
    z-index: 2;
}

    .temple-title-box h2,
    .temple-title-box h3 {
        color: var(--primary);
        font-weight: 700;
        margin: 0;
    }

.main-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin: 6px 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 2px;
}

.location {
    font-size: 10px;
    color: #555;
    margin: 0;
}

.header-img {
    max-height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    padding: 3px;
    background: #fff;
    box-shadow: 0 0 14px rgba(255,215,0,0.5);
    animation: floatImg 3s ease-in-out infinite;
}

@keyframes floatImg {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Announcement bar */
.announcement-bar {
    background: linear-gradient(90deg,var(--accent),var(--accent-soft));
    color: #000;
    font-weight: 700;
    padding: 8px 0;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
    z-index: 1;
}

/* Language switcher */
.language-switcher {
    align-items: center;
}

.lang-btn {
    padding: 5px 12px;
    font-size: 13px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    display: inline-block;
}

    .lang-btn:hover,
    .lang-btn.active {
        background: var(--accent);
        color: #000;
        box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    }

/* Navbar */
.main-nav {
    background: linear-gradient(90deg,var(--secondary),#d84315);
    position: relative;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

    .main-nav .navbar-brand,
    .main-nav .nav-link {
        color: #fff !important;
        font-weight: 600;
    }

        .main-nav .nav-link:hover,
        .main-nav .nav-link:focus,
        .main-nav .nav-link.active {
            color: var(--accent) !important;
        }

.custom-toggler {
    border: none;
    background: transparent;
    box-shadow: none;
}

    .custom-toggler span {
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px 0;
        transition: var(--transition);
    }

.navbar-toggler i {
    color: #fff;
}

/* Dropdown */
.dropdown-menu {
    background: linear-gradient(180deg,#ff6f00,#e65100);
    border: none;
    border-radius: 10px;
    padding: 6px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.16);
}

.dropdown-item {
    color: #fff;
    font-weight: 500;
    padding: 10px 18px;
}

    .dropdown-item:hover,
    .dropdown-item:focus,
    .dropdown-item.active {
        background: rgba(255,255,255,0.14);
        color: var(--accent);
    }

.dropdown-menu.show {
    background-color: transparent;
}

.nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

/* Home hero slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.slider-img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    object-position: center;
}

.carousel-item.active .slider-img {
    transform: scale(1.03);
    transition: transform 6s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.35),rgba(183,28,28,0.25));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: auto;
    color: #fff;
}

    .hero-content h1,
    .hero-title {
        font-size: 48px;
        font-weight: 800;
        color: var(--accent);
        text-shadow: 2px 2px 12px rgba(0,0,0,0.55);
    }

    .hero-content h3 {
        font-size: 22px;
        margin: 10px 0;
        color: #fff;
    }

    .hero-content p,
    .hero-sub,
    .hero-subtitle {
        font-size: 16px;
        color: #fff;
        margin-bottom: 0;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators li {
    background-color: var(--accent);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: var(--secondary);
}

/* Buttons */
.btn-gold {
    background: linear-gradient(45deg,var(--accent),var(--accent-soft));
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 28px;
    border: none;
}

    .btn-gold:hover {
        transform: translateY(-2px);
        color: #000;
        box-shadow: 0 10px 24px rgba(255,179,0,0.28);
    }

/* Common sections */
.section-dark {
    background: var(--section);
    padding: 70px 0;
}

    .section-dark:nth-child(even) {
        background: var(--bg);
    }

.section-block {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

    .section-block::before {
        content: "";
        position: absolute;
        top: -100px;
        left: -100px;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(230,81,0,0.10), transparent);
        border-radius: 50%;
    }

    .section-block::after {
        content: "";
        position: absolute;
        right: -100px;
        bottom: -100px;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(183,28,28,0.10), transparent);
        border-radius: 50%;
    }

.section-alt {
    padding: 90px 0;
    background: linear-gradient(135deg,#fff5ec,#ffe9d6);
}

    .section-alt .container {
        background: rgba(255,255,255,0.62);
        backdrop-filter: blur(8px);
        border-radius: 18px;
        padding: 40px;
    }

.section-highlight {
    background: linear-gradient(90deg,var(--primary),var(--secondary));
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

    .section-highlight h2 {
        font-size: 38px;
        font-weight: 800;
    }

    .section-highlight p {
        max-width: 820px;
        margin: auto;
        opacity: 0.96;
    }

.temple-stats-section {
    background: linear-gradient(135deg,var(--secondary),var(--primary));
    color: #fff;
    padding: 60px 0;
}

    .temple-stats-section h2 {
        font-size: 36px;
        font-weight: 800;
    }

/* Section titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

    .section-title::before {
        content: "";
        width: 40px;
        height: 4px;
        background: var(--accent);
        display: block;
        margin: 0 auto 8px;
        border-radius: 999px;
    }

    .section-title::after {
        content: "";
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg,var(--primary),var(--secondary));
        display: block;
        margin: 8px auto 0;
        border-radius: 999px;
    }

    .section-title.text-left {
        text-align: left;
    }

        .section-title.text-left::before,
        .section-title.text-left::after {
            margin-left: 0;
        }

.section-desc {
    font-size: 16px;
    color: #555;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

/* Generic card */
.card,
.card-custom {
    border-radius: 14px;
    border: 1px solid #f1e0c6;
    transition: var(--transition);
    overflow: hidden;
    background: #fff;
}

    .card:hover,
    .card-custom:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(255,152,0,0.25);
    }

    .card h5,
    .card-custom h5 {
        color: var(--primary);
        font-weight: 700;
    }

    .card-custom img {
        height: 220px;
        object-fit: cover;
    }

/* Banjara / heritage cards */
.banjara-card {
    background: linear-gradient(145deg,#ffffff,#fff3e0);
    border-radius: 16px;
    border: 1px solid #f1d9b5;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

    .banjara-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 0;
        background: linear-gradient(90deg,var(--accent),var(--secondary));
        transition: var(--transition);
    }

    .banjara-card:hover::before {
        width: 100%;
    }

    .banjara-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 35px rgba(255,152,0,0.25);
    }

    .banjara-card h3 {
        font-size: 32px;
        font-weight: 800;
        color: var(--primary);
    }

    .banjara-card p {
        color: #5d4037;
        font-size: 14px;
    }

.card-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 10px auto;
}

.heritage-card {
    background: linear-gradient(145deg,#ffffff,#fff3e0);
    border-radius: 16px;
    border: 1px solid #f1d9b5;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

    .heritage-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 4px;
        background: linear-gradient(90deg,var(--accent),var(--secondary));
        transition: var(--transition);
        z-index: 2;
    }

    .heritage-card:hover::before {
        width: 100%;
    }

    .heritage-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 15px 40px rgba(255,152,0,0.28);
    }

    .heritage-card h5 {
        color: var(--primary);
        font-weight: 700;
    }

    .heritage-card p {
        font-size: 14px;
        color: #5d4037;
    }

.card-img-box,
.heritage-img,
.card-img-top {
    height: 180px;
    overflow: hidden;
}

    .card-img-box img,
    .heritage-img img,
    .card-img-top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s ease;
    }

.heritage-card:hover img,
.banjara-card:hover img {
    transform: scale(1.1);
}

.heritage-body,
.heritage-card .card-body {
    padding: 15px;
}

/* Special image wrappers */
.image-wrapper {
    position: relative;
    display: inline-block;
    padding: 10px;
    border-radius: 20px;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

    .image-wrapper img {
        border-radius: 15px;
    }

    .image-wrapper:hover img {
        transform: scale(1.05);
    }

.sant-img-box {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255,152,0,0.25);
}

    .sant-img-box:hover img {
        transform: scale(1.05);
    }

.sant-section {
    background: linear-gradient(180deg,#fff8e1,#fff3e0);
    padding: 70px 0;
}

.sant-quote {
    background: linear-gradient(90deg,var(--accent),var(--accent-soft));
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 600;
    color: #000;
    margin-top: 15px;
    font-style: italic;
}

/* Ramrao / info cards */
.info-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: center;
    color: var(--text);
    border: 1px solid rgba(230,81,0,0.08);
}

    .info-card h4,
    .info-card h5 {
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 12px;
    }

    .info-card p {
        font-size: 15px;
        color: #5d4037;
        opacity: 1;
        margin-bottom: 0;
    }

    .info-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 0;
        background: linear-gradient(90deg,var(--accent),#ff5722);
        transition: width 0.4s ease;
        z-index: 2;
    }

    .info-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: linear-gradient(var(--accent),#ff5722);
        transition: height 0.4s ease;
        z-index: 2;
    }

    .info-card:hover::before {
        width: 100%;
    }

    .info-card:hover::after {
        height: 100%;
    }

    .info-card:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: var(--shadow-lg);
        border-color: rgba(255,140,0,0.25);
    }

.mini-card {
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

    .mini-card:hover {
        transform: scale(1.05);
    }

.stats-card {
    background: rgba(255,255,255,0.95);
}

    .stats-card h2 {
        font-size: 36px;
        font-weight: 800;
        color: var(--primary);
    }

    .stats-card p {
        font-size: 14px;
        color: #5d4037;
    }

    .stats-card:hover {
        transform: translateY(-10px) scale(1.03);
    }

/* Live video */
.live-video-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* History / saint hero support */
.history-hero,
.sevalal-hero {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.history-hero {
    background: url('/img/home5.jpg') center/cover no-repeat;
    min-height: 300px;
}

    .history-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,rgba(0,0,0,0.78),rgba(139,0,0,0.58));
    }

    .history-hero .container {
        position: relative;
        z-index: 2;
    }

    .history-hero h1 {
        font-size: 48px;
        font-weight: 800;
    }

    .history-hero p {
        font-size: 20px;
    }

.sevalal-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(139,0,0,0.7)), url('/img/sevalal/banner.jpg') center/cover no-repeat;
    padding: 120px 20px;
}

/* Ramrao page hero */
.hero-premium {
    min-height: 300px;
    background: url('/img/home5.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-premium .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(0,0,0,0.55),rgba(183,28,28,0.40));
    }

    .hero-premium .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

/* Timeline */
.timeline {
    position: relative;
    margin-top: 50px;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        width: 4px;
        height: 100%;
        background: #ddd;
        transform: translateX(-50%);
    }

.timeline-item {
    width: 45%;
    padding: 24px;
    background: #fff;
    margin: 28px 0;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    position: relative;
    transition: var(--transition);
}

    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 55%;
    }

    .timeline-item:hover {
        transform: scale(1.05);
        background: #fff7f0;
    }

    .timeline-item::before {
        content: "";
        position: absolute;
        top: 22px;
        width: 12px;
        height: 12px;
        background: var(--secondary);
        border-radius: 50%;
    }

    .timeline-item:nth-child(odd)::before {
        right: -25px;
    }

    .timeline-item:nth-child(even)::before {
        left: -25px;
    }

    .timeline-item h5 {
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 8px;
    }

    .timeline-item p {
        margin: 0;
        color: #5d4037;
    }

/* Quote and footer */
.quote-section {
    background: linear-gradient(90deg,var(--primary),var(--secondary));
    color: #fff;
    padding: 55px 0;
    text-align: center;
}

    .quote-section h3 {
        margin: 0;
        font-weight: 700;
    }

.temple-footer {
    background: linear-gradient(180deg,#3e2723,#1b1b1b);
    color: #fff;
    padding: 50px 0;
}

.footer-title {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #ddd;
    }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

.footer-divider {
    border-color: rgba(255,255,255,0.2);
}

/* Utility */
.bg-warning {
    background: linear-gradient(90deg,var(--accent),var(--accent-soft)) !important;
}

    .bg-warning h2 {
        font-weight: 800;
    }

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }

.section-block,
.section-alt,
.section-highlight {
    animation: fadeUp 0.9s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 991px) {
    .main-nav .navbar-collapse {
        position: relative;
        width: 100%;
        background: linear-gradient(180deg,#b71c1c,#e65100);
        padding: 15px;
        border-radius: 0;
        margin-top: 10px;
    }

    .main-nav .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

        .main-nav .nav-item:last-child {
            border-bottom: none;
        }

    .main-nav .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        padding: 10px;
        border-radius: 8px;
    }

        .main-nav .nav-link:hover {
            background: rgba(255,255,255,0.12);
        }

    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 10px;
        opacity: 1;
        transform: none;
        display: none;
    }

        .dropdown-menu.show {
            display: block;
        }

    .dropdown-item {
        color: #fff;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: rgba(255,255,255,0.1);
            color: var(--accent);
        }

    .dropdown-toggle::after {
        margin-left: auto;
        margin-top: 8px;
    }

    .hero-content h1,
    .hero-title {
        font-size: 34px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

    .header-img {
        max-height: 50px;
    }

    .main-title {
        font-size: 15px;
    }

    .subtitle {
        font-size: 9px;
    }

    .location {
        font-size: 8px;
    }

    .timeline::before {
        left: 10px;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        margin-left: 0;
        padding-left: 20px;
    }

        .timeline-item::before {
            left: -1px !important;
            right: auto !important;
        }
}

@media (max-width: 768px) {
    .slider-img {
        height: 300px;
    }

    .hero-premium {
        min-height: 42vh;
    }

    .hero-content h1,
    .hero-title {
        font-size: 26px;
    }

    .hero-content h3,
    .hero-subtitle {
        font-size: 15px;
    }

    .history-hero h1 {
        font-size: 26px;
    }

    .history-hero p {
        font-size: 16px;
    }

    .section-dark,
    .section-block,
    .section-alt,
    .section-highlight,
    .sant-section,
    .temple-stats-section,
    .quote-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

        .section-alt .container {
            padding: 22px;
        }

    .section-title {
        font-size: 26px;
    }

    .row.align-items-center {
        flex-wrap: wrap;
    }

    .header-img {
        max-height: 45px;
    }
}
/* GALLERY */
.gallery-card {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

    .gallery-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: 0.4s;
    }

    .gallery-card:hover img {
        transform: scale(1.1);
    }

    /* OPTIONAL OVERLAY */
    .gallery-card::after {
        content: "🔍";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        color: #fff;
        font-size: 30px;
        transition: 0.3s;
    }

    .gallery-card:hover::after {
        transform: translate(-50%, -50%) scale(1);
    }

/* VIDEO GALLERY */
.video-card iframe {
    width: 100%;
    height: 220px;
    border-radius: 12px;
}

.video-card {
    transition: 0.3s;
}

    .video-card:hover {
        transform: translateY(-5px);
    }
.hero-slider {
    position: relative;
}

.slider-img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    filter: brightness(60%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFD700;
    animation: fadeUp 1s ease;
}

.hero-sub {
    font-size: 24px;
    color: #fff;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.section-light {
    background: #fff;
    padding: 70px 0;
}

.section-alt {
    background: #f8f9fa;
    padding: 70px 0;
}
.banjara-card {
    background: #fff;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

    .banjara-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

.card-line {
    width: 50px;
    height: 3px;
    background: #FFD700;
    margin: 10px auto;
}
.image-wrapper {
    padding: 10px;
    border-radius: 20px;
    background: linear-gradient(135deg,#8B0000,#E65100);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

    .image-wrapper img {
        border-radius: 15px;
    }

.section-title.text-left {
    text-align: left;
}

.lead {
    font-size: 18px;
    font-weight: 600;
    color: #8B0000;
}
.culture-section {
    background: linear-gradient(135deg,#fff8e1,#fff3e0);
}

.section-desc {
    font-size: 17px;
    max-width: 700px;
    margin: auto;
    color: #6d4c41;
}

.culture-highlight {
    background: rgba(255,215,0,0.15);
    padding: 20px;
    border-radius: 12px;
    font-weight: 500;
}

.culture-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

    .culture-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    }

.culture-img {
    height: 180px;
    overflow: hidden;
}

    .culture-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

.culture-card:hover img {
    transform: scale(1.1);
}

.culture-body {
    padding: 15px;
    text-align: center;
}

    .culture-body h5 {
        color: #b71c1c;
        font-weight: 700;
    }

    .culture-body p {
        font-size: 14px;
        color: #5d4037;
    }
.temple-stats-section {
    background: linear-gradient(135deg,#8B0000,#E65100);
}

.stats-card {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

    .stats-card:hover {
        transform: translateY(-12px) scale(1.05);
        box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    }

    .stats-card h2 {
        font-size: 42px;
        font-weight: 800;
        color: #b71c1c;
    }

    .stats-card p {
        font-size: 15px;
        color: #5d4037;
        font-weight: 500;
    }

.card-line {
    display: block;
    width: 50px;
    height: 3px;
    background: #FFD700;
    margin: 10px auto;
}
.donation-section {
    background: linear-gradient(135deg,#FFD700,#FFC107);
    position: relative;
    overflow: hidden;
}

    .donation-section::before {
        content: "";
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 60%);
        animation: rotateBg 10s linear infinite;
    }

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.donation-title {
    font-size: 34px;
    font-weight: 800;
    color: #8B0000;
    position: relative;
    z-index: 2;
}

.donation-desc {
    font-size: 16px;
    max-width: 600px;
    margin: auto;
    color: #4e342e;
    position: relative;
    z-index: 2;
}

.donation-box {
    position: relative;
    z-index: 2;
}

    .donation-box .btn {
        font-size: 18px;
        padding: 12px 35px;
        border-radius: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

        .donation-box .btn:hover {
            transform: scale(1.08);
        }
.contact-section {
    background: linear-gradient(135deg,#fff8e1,#fff3e0);
}

.contact-info {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .contact-info h5 {
        color: #b71c1c;
        margin-top: 15px;
        font-weight: 700;
    }

    .contact-info p {
        color: #5d4037;
        margin-bottom: 10px;
    }

.contact-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .contact-form .form-control {
        border-radius: 10px;
        padding: 10px;
    }

        .contact-form .form-control:focus {
            border-color: #b71c1c;
            box-shadow: 0 0 8px rgba(183,28,28,0.3);
        }
