/*
 * Sachkhand Nanak Dham - Main Stylesheet
 * Version: 1.0
 * Author: Sachkhand Nanak Dham International
 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===================================
   CSS Variables
   =================================== */
:root {
    --wdtBorderColor: #cfa670;
    /* REQUIRED */
    --text-color-light: #ffffff;

    --box-shadow-inset: inset 0 22px 56px -36px rgba(255, 255, 255, .5),
        inset 0 4px 5px -4px rgba(255, 255, 255, 1),
        inset 0 -31px 34px -32px rgba(96, 68, 144, .3),
        inset 0 39px 50px -34px rgba(202, 172, 255, .3),
        inset 0 2px 9px rgba(154, 146, 210, .3),
        inset 0 1px 10px rgba(227, 222, 255, .2);

    --box-shadow-inset-hover: inset 0 19px 28px -18px rgba(255, 255, 255, .5),
        inset 0 4px 6px -3px rgba(255, 255, 255, 1),
        inset 0 -51px 44px -42px rgba(96, 68, 144, .3),
        inset 0 59px 60px -32px rgba(202, 172, 255, .3),
        inset 0 4px 16px rgba(154, 146, 210, .3),
        inset 0 2px 25px rgba(227, 222, 255, .23);

    --drop-shadow: 0 0 8px rgba(161, 165, 247, .8);
    --drop-shadow-hover: 0 0 14px rgba(161, 165, 247, .8);

    --text-shadow: 0 0 8px rgba(161, 165, 247, .8);
    --text-shadow-hover: 0 0 14px rgba(161, 165, 247, .8);
    --primary: #FF6B00;
    --primary-dark: #E55A00;
    --secondary: #1E3A5F;
    --gold: #FFD700;
    --light-gold: #FFF8E7;
    --white: #FFFFFF;
    --dark: #1A1A2E;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --text: #374151;
    --light: #F9FAFB;
    --light-pink: #f5f0e3;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    font-size: 12px;
    height: 36px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar .contact-info a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 6px 12px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 12px;
}

.top-bar .contact-info a:last-child {
    border-right: none;
}

.top-bar .contact-info a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.top-bar .contact-info i {
    color: var(--gold);
    font-size: 11px;
}

.top-bar .social-icons {
    display: flex;
    align-items: center;
    height: 100%;
}

.top-bar .social-icons a {
    color: rgba(255, 255, 255, 0.85);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 13px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.top-bar .social-icons a:hover {
    background: var(--primary);
    color: white;
}

.top-bar .social-icons a:hover i {
    transform: scale(1.1);
}

/* ===================================
   Container
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: 60px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled .logo-icon {
    width: 45px;
    height: 45px;
}

.navbar.scrolled .logo-text h1 {
    font-size: 16px;
}

.navbar.scrolled .logo-text span {
    font-size: 10px;
}

.navbar.scrolled .nav-links a {
    height: 60px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    padding: 2px;
    background: white;
    transition: all 0.3s ease;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text h1 {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 700;
    transition: font-size 0.3s ease;
    margin-bottom: 0;
}

.logo-text span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: font-size 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    height: 100%;
    align-items: center;
    margin: 0px !important;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    padding: 0 18px;
    height: 33px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
    border-bottom: 3px solid var(--primary);
}

.nav-links li:last-child a {
    height: auto;
    border-bottom: none;
}

.nav-links li:last-child a:hover {
    background: transparent;
    border-bottom: none;
}

.music-menu {
    position: relative;
}

.music-menu .music-dropdown {
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.music-menu .music-item {
    margin-bottom: 10px;
}

.music-menu .music-item:hover {
    background: #f4f4f4;
    color: #000;
    border-bottom: none;
}

/* Optional: icons spacing */
.music-video::before {
    content: " ";
}

.music-audio::before {
    content: " ";
}

.music-photo::before {
    content: " ";
}

/* Hover dropdown open */
.music-menu:hover>.music-dropdown {
    position: absolute;
    display: block;
    top: 100%;
    left: 12%;
}

/* Remove default arrow click dependency */
.music-menu>.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

/* Optional: arrow rotate on hover */
.music-menu:hover>.dropdown-toggle::after {
    transform: rotate(180deg);
}

.live-btn {
    background: #E53935;
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    animation: pulse 2s infinite;
    border-bottom: none !important;
}

.live-btn i {
    font-size: 8px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.live-btn:hover {
    background: #C62828 !important;
    transform: translateY(-1px);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(229, 57, 53, 0);
    }
}

.mobile-menu {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--light);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--secondary);
    font-size: 20px;
    transition: all 0.3s;
}

.mobile-menu:hover {
    background: var(--primary);
    color: white;
}

/* ===================================
   Hero Slider Section
   =================================== */
.hero-slider {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    z-index: 1;
}

/* Hero Slider Background Images */
.hero-slider .slide:nth-child(1) .slide-bg {
    background-image: url("https://sachkhandnanakdham.com/wp-content/uploads/2024/07/Loni_Darbar.jpg");
}

.hero-slider .slide:nth-child(2) .slide-bg {
    background-image: url("https://sachkhandnanakdham.com/wp-content/uploads/2025/11/Banner-2.jpg");
}

.hero-slider .slide:nth-child(3) .slide-bg {
    background-image: url("https://sachkhandnanakdham.com/wp-content/uploads/2024/07/batala_darbar.jpg");
}

/* Common Background Styling */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Ensure Content Appears Above */
.slide-overlay,
.slide-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 90vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomEffect 8s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(26, 26, 46, 0.45) 100%);
}

.slide-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    max-width: 900px;
}

.slide-content .hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slide-content .gurmukhi {
    font-style: italic;
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: bold;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.slide-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.slide-content .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
    border-color: white;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--gold);
    z-index: 10;
    animation: progressBar 6s linear infinite;
}

@keyframes progressBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-orange {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

/* ===================================
   Mool Mantra Banner
   =================================== */
.mantra-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    padding: 25px 0;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.mantra-text {
    font-size: 20px;
    color: var(--secondary);
    font-weight: 600;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ===================================
   Section Common Styles
   =================================== */
.section-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: var(--light-gold);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 35px;
    color: var(--secondary);
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 100px 0;
    background: var(--light-pink);
}

.about-card {
    gap: 10px;
    padding: 25px;
    border-radius: 6px;
}

.icon-circle {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfa670;
    font-size: 20px;
}

.content-box h5 {
    font-size: 18px;
    text-transform: uppercase;
}

.divider {
    position: relative;
    text-align: center;
    margin: 40px 0;
}

.divider span {
    font-size: 28px;
    display: inline-block;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* LEFT dashed line */
.divider span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -180px;
    width: 160px;
    height: 2px;
    background: repeating-linear-gradient(to right,
            var(--primary) 0,
            var(--primary) 6px,
            transparent 6px,
            transparent 12px);
    transform: translateY(-50%);
    animation: dash 20s linear infinite;
}

/* RIGHT dashed line */
.divider span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -180px;
    width: 160px;
    height: 2px;
    background: repeating-linear-gradient(to left,
            var(--primary) 0,
            var(--primary) 6px,
            transparent 6px,
            transparent 12px);
    transform: translateY(-50%);
    animation: dash 20s linear infinite;
}

/* 🔥 SOLID LINE BELOW (LEFT) */
.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(51% - 231px);
    width: 160px;
    height: 1px;
    background: var(--primary);
    transform: translateY(10px);
}

/* 🔥 SOLID LINE BELOW (RIGHT) */
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(52% - 244px);
    width: 160px;
    height: 1px;
    background: var(--primary);
    transform: translateY(10px);
}

.wdt-content-separator.separator-1 hr {
    width: 225px;
    height: 2px;
    /* thickness */
    background-color: var(--primary);
    border: none;
    /* IMPORTANT */
    opacity: 1;
    margin-top: 8px;
}


.content-box p {
    font-size: 14px;
    padding-top: 14px;
    line-height: 1.6;
}



.wdt-content-separator {
    margin: 12px 0;
}

.wdt-content-separator.separator-1 span {
    display: block;
    position: relative;
    width: 86%;
    height: 1px;
}

/* dashed animated line */
.wdt-content-separator.separator-1 span::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 1px;
    background:
        linear-gradient(90deg, var(--primary) 50%, transparent 50%);
    background-size: 8px 1px;
    animation: dash 20s linear infinite;
}

/* animation */
@keyframes dash {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1000px 0;
    }
}



/* ===================================
       Event Sections
    =================================== */
.event-subtitle {
    color: #d89b2b;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.event-title {
    font-size: 36px;
    font-weight: 700;
}

.event-wrapper {
    background: #f1f1f1;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    padding: 0;
}

.event-image {
    flex: 0 0 45%;
    height: 297px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 0 0 40px;
}

.event-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}


.event-meta li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

.event-meta li span {
    font-size: 12px;
    display: flex;
    align-items: center;
}



.join-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.join-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ===================================
   Schedule Section
   =================================== */.schedule {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    position: relative;
}

/* Schedule Badge Styling */
.daily-schedule-badge {
    margin-bottom: 8px;
    background: var(--primary);
    color: var(--light-gold);
}

.schedule::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-40 0a40 40 0 1 0 80 0a40 40 0 1 0-80 0' stroke='%23FFD700' stroke-opacity='0.03' fill='none' stroke-width='1'/%3E%3C/svg%3E");
}

.schedule .section-header h2,
.schedule .section-header p {
    color: var(--white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px 0px 50px 0px;
    padding: 50px 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.schedule-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
}

.schedule-card .time {
    display: inline-block;
    background: var(--primary);
    color: var(--light-gold);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.schedule-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
}

.schedule-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* ===================================
   Events Section
   =================================== */
.events {
    padding: 100px 0;
    background: var(--light-gray);
}

.events .event-content {
    padding: 30px;
}

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

.event-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}



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

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 6px 14px 8px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-date .day {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 2;
    margin-top: -2px;
    /* 🔥 THIS fixes top space */
}

.event-date .month {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    line-height: 1;
    margin-top: -2px;
}


.event-section .event-content {
    padding: 30px 50px;
    flex: 0 0 55%;
}

.event-section .owl-dots {
    margin-top: 20px;
}

.event-content h3 {
    text-transform: uppercase;
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.event-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.event-meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 14px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 90px;
}

.event-meta i {
    color: var(--primary);
    margin-right: 8px;

}

/* ===================================
   upcoming-events   Section
   =================================== */
.upcoming-events .event-box img {
    height: 230px;
    object-fit: cover;
}

.event-box h5 {
    font-size: 18px;
}

.event-box p {
    font-size: 15px;

}

.upcoming-events span {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.upcoming-events .event-badge {
    background: #FFF;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
}

.upcoming-events .event-day {
    font-size: 22px;
    line-height: 1;
}

.upcoming-events .event-month {
    font-size: 12px;
    text-transform: uppercase;
}

/* ===================================
  our vision Section
   =================================== */
.our-vision {
    background: #f2ebe3;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

/* LEFT CONTENT */
.vision-content {
    padding-right: 60px;
}

.vision-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    color: #c97a2c;
    text-transform: uppercase;
    display: block;
    margin-bottom: 18px;
}

.vision-content h2 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.15;
    color: #2b1c14;
}

.vision-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
}

.vision-btn {
    background: #d4642b;
    color: #fff;
    padding: 15px 36px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.vision-btn:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.vision-btn:hover {
    background: #b75322;
}

/* RIGHT AREA */
.vision-media {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* STAT */
.vision-stat {
    position: absolute;
    top: 38px;
    right: 169px;
    text-align: center;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vision-stat h3 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 5px;
}

.vision-stat p {
    font-size: 14px;
    color: #555;
}

.lotus-icon {
    font-size: 28px;
    color: #d4642b;
    margin-top: 8px;
}

/* IMAGES */
.vision-images {
    display: flex;
    gap: 35px;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.image-main img {
    width: 300px;
    border-radius: 6px;
}

.image-small {
    position: relative;
    overflow: hidden;
}

.image-small img {
    width: 220px;
    border-radius: 6px;
    display: block;
}

/* Play button */
.image-small .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Icon */
.image-small .play-btn i {
    color: #fff;
    font-size: 20px;
    margin-left: 3px;
}

/* Hover effect */
.image-small:hover .play-btn {
    background: var(--primary);
}

/* TESTIMONIAL CARD */
.vision-testimonial {
    position: absolute;
    bottom: -78px;
    left: -159px;
    background: #fff;
    padding: 26px 30px;
    max-width: 307px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.vision-stat img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
}

.vision-testimonial p {
    text-align: justify;
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.vision-testimonial h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.vision-testimonial span {
    font-size: 13px;
    color: #999;
}


/* ===================================
   GALLERY SECTION
=================================== */
.gallery-section {
    background: #faf9f7;
}

/* HEADER */
.gallery-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

/* ===================================
   LEFT SIDE (TEXT + IMAGES)
=================================== */
.gallery-text-card {
    background: #f5e2a6;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-text-card h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.gallery-text-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BUTTON */
.gallery-btn {
    background: transparent;
    border: 1px solid #000;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: #000;
    color: #fff;
}

/* ===================================
   IMAGE STYLES
=================================== */
.img-big,
.img-small {
    position: relative;
    overflow: hidden;
}

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

/* Text overlay (hidden by default) */
.img-big span,
.img-small span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Show text on hover */
.img-big:hover span,
.img-small:hover span {
    opacity: 1;
    transform: translateY(0);
}

.img-big:hover img,
.img-small:hover img {
    transform: scale(1.08);
}

/* BIG IMAGE HEIGHT */
.img-big {
    height: 100%;
    min-height: 420px;
}

/* SMALL STACKED IMAGES */
.img-small {
    height: 250px;
}

/* ===================================
   VIDEO CARD
=================================== */
.gallery-video-card {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 516px;
    overflow: hidden;
}

.gallery-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play button */
.play-btn {
    position: absolute;
    bottom: 21px;
    left: 1px;

    background: var(--primary);
    border-radius: 102px;
    padding: 14px 16px;

    display: flex;
    /* NEW */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */

    transform: translateY(10px) scale(0.8);
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 2;
}

/* Text */
.play-btn p {
    margin: 0;
    /* IMPORTANT */
    font-size: 12px;
    color: #fff;

    display: flex;
    /* icon + text center */
    align-items: center;
    gap: 6px;
}



/* ===================================
   Live Stream Section
   =================================== */
.live-stream {
    padding: 100px 0;
    background: var(--white);
}

.stream-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-placeholder {
    text-align: center;
    color: var(--white);
}

.video-placeholder i {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 20px;
}

.video-placeholder p {
    font-size: 18px;
    opacity: 0.8;
}

.stream-info {
    background: linear-gradient(135deg, var(--light-gold) 0%, #FFF0D1 100%);
    border-radius: 20px;
    padding: 35px;
}

.stream-info h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stream-info h3 i {
    color: var(--primary);
}

.stream-schedule {
    list-style: none;
}

.stream-schedule li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.stream-schedule li:last-child {
    border: none;
}

.stream-schedule .program {
    font-weight: 500;
    color: var(--secondary);
}

.stream-schedule .timing {
    color: var(--primary);
    font-weight: 600;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.gallery-item::before {
    content: '☬';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    position: relative;
    z-index: 1;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
}

/* ===================================
   Publications Section
   =================================== */
.publications {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    justify-items: center;
    padding: 20px 0;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.book-3d {
    text-align: center;
    perspective: 1200px;
    margin-bottom: 40px;
}

.book-3d h4 {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.book-3d p {
    color: var(--gray);
    font-size: 13px;
}

.book-container {
    display: inline-block;
    perspective: 1000px;
    width: 150px;
    height: 220px;
}

.book {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateY(-25deg);
    transition: transform 0.8s ease;
}

.book-container:hover .book {
    transform: rotateY(-25deg);
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 0 3px 3px 0;
    box-shadow:
        5px 5px 20px rgba(0, 0, 0, 0.3),
        inset -2px 0 10px rgba(0, 0, 0, 0.1);
    transform-origin: left center;
    transform: translateZ(12px);
    overflow: hidden;
    transition: transform 0.8s ease;
}

.book-container:hover .book-cover {
    transform: translateZ(12px) rotateY(-35deg);
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-spine {
    position: absolute;
    width: 24px;
    height: 100%;
    background: linear-gradient(90deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
    transform: rotateY(90deg);
    transform-origin: left center;
    border-radius: 3px 0 0 3px;
}

.book-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
    transform: rotateY(180deg) translateZ(15px);
    border-radius: 3px 0 0 3px;
    box-shadow: inset 5px 0 20px rgba(0, 0, 0, 0.2);

}

.book-page {
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 6px);
    top: 3px;
    right: 3px;
    transform: translateZ(5px);
    background: linear-gradient(90deg, #fff 0%, #f5f5f0 100%);
    border-radius: 0 2px 2px 0;
    transform-origin: left center;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

.book-page:nth-child(4) {
    transform: translateZ(9px);
}

.book-page:nth-child(5) {
    transform: translateZ(6px);
}

.book-page:nth-child(6) {
    transform: translateZ(3px);
}

/* Book hover glow effect */
.book-3d:hover .book-cover {
    box-shadow:
        5px 5px 30px rgba(255, 107, 0, 0.4),
        inset -2px 0 10px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
    overflow-x: hidden;
}

.contact button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    width: 100%;
    justify-content: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--gold);
}

.contact-item p {
    opacity: 0.8;
    font-size: 15px;
}

.contact-form {
    background: var(--light-gray);
    border-radius: 25px;
    padding: 50px 40px;
}

.contact-form h3 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
   ROOT VARIABLES
   ========================= */

:root {
    --body-font: 'Poppins', sans-serif;

    --text-color-light: #ffffff;

    --gold: #FFD700;
    --secondary: #120C2D;
    --dark: #07051A;
    --primary: #FF7A00;
    --light-gold: #FFF4D6;

    --box-shadow-inset: inset 0 22px 56px -36px rgba(255, 255, 255, .5),
        inset 0 4px 5px -4px rgba(255, 255, 255, 1),
        inset 0 -31px 34px -32px rgba(96, 68, 144, .3),
        inset 0 39px 50px -34px rgba(202, 172, 255, .3),
        inset 0 2px 9px rgba(154, 146, 210, .3),
        inset 0 1px 10px rgba(227, 222, 255, .2);

    --box-shadow-inset-hover: inset 0 19px 28px -18px rgba(255, 255, 255, .5),
        inset 0 4px 6px -3px rgba(255, 255, 255, 1),
        inset 0 -51px 44px -42px rgba(96, 68, 144, .3),
        inset 0 59px 60px -32px rgba(202, 172, 255, .3),
        inset 0 4px 16px rgba(154, 146, 210, .3),
        inset 0 2px 25px rgba(227, 222, 255, .23);

    --drop-shadow: 0 0 8px rgba(161, 165, 247, .8);
    --drop-shadow-hover: 0 0 14px rgba(161, 165, 247, .9);

    --text-shadow: 0 0 8px rgba(161, 165, 247, .8);
    --text-shadow-hover: 0 0 14px rgba(161, 165, 247, .9);
}

/* =========================
   DONATE SECTION
   ========================= */

.donate-section-custom {
    font-family: var(--body-font);
    background: linear-gradient(135deg, var(--light-gold), #FFF0D1);
}

.donate-info {
    padding: 30px;
}

/* Badge */
.donate-badge-custom {
    display: inline-block;
    background: var(--gold);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Main Box */
.donate-box-custom {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
}

/* ===============================
   NEON DONATE CARDS
   =============================== */

.donate-card-custom {
    height: 270px;
    background-color: rgba(255, 255, 255, 0.01);
    color: var(--text-color-light);
    backdrop-filter: blur(10px);
    border-radius: 3rem;
    padding: 3.5rem 1.75rem 2.25rem;
    transition: 0.5s;
}

/* Icon Box */
.donate-icon-custom {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    transition: 0.5s;
}

/* Title & Text Glow */
.donate-card-custom h5,
.donate-card-custom p {
    text-shadow: var(--text-shadow);
    transition: 0.5s;
}

.donate-card-custom:hover h5,
.donate-card-custom:hover p {
    text-shadow: var(--text-shadow-hover);
}

/* =========================
   ICON VARIANTS
   ========================= */

.donate-icon-gold {
    background: var(--gold);
    color: var(--secondary);
}

.donate-icon-upi {
    background: linear-gradient(135deg, #00C853, #009624);
}

.donate-icon-uk {
    background: linear-gradient(135deg, #1E3A5F, #0D47A1);
}

.donate-icon-visit {
    background: linear-gradient(135deg, var(--primary), #E55A00);
}

/* =========================
   UPI BADGES
   ========================= */

.donate-upi-badge {
    background: #fff;
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

/* Gold Text */
.donate-text-gold {
    color: var(--gold);
}

/* =========================
   TAX INFO BOX
   ========================= */

.donate-tax-box {
    background: rgba(255, 215, 0, 0.1);
    border: 1px dashed var(--gold);
    border-radius: 16px;
    padding: 20px;
}

/* =========================
   OWL CAROUSEL ARROWS
   ========================= */

.donate-carousel-custom {
    position: relative;
}

.donate-carousel-custom .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -25px;
    right: -25px;
    transform: translateY(-50%);
    pointer-events: none;
}

.donate-carousel-custom .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary) !important;
    color: var(--light-gold) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    pointer-events: all;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}

.donate-carousel-custom .owl-nav button:hover {
    background: #ffffff !important;
    color: var(--primary) !important;
    transform: scale(1.1);
}

/* Hide arrows on mobile */
@media (max-width: 575px) {
    .donate-carousel-custom .owl-nav {
        display: none;
    }
}
 
/* ===================================
 event -page css
   =================================== */
/* Section Background */
.why-choose-us {
    background-color:var(--light-pink);
    padding: 90px 0;
 }

/* Heading */
.subtitle {
    letter-spacing: 3px;
    font-size: 13px;
     text-transform: uppercase;
}

.why-choose-us h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0;
}

.why-choose-us .lead {
    max-width: 900px;
    margin: auto;
 }

/* Card */
.security-card {
    display: block;
    background: var(--primary);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.security-card:hover {
    color: #1A1A2E;
    transform: translateY(-6px);
 }

/* Content */
.card-content {
    padding: 0px 40px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 15px;
    color: #cbd0ff;
}

/* Image Container */
.card-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

/* 🔥 IMAGE ZOOM ON HOVER */
.security-card:hover .card-image img {
    transform: scale(1.15);
}

/* Number Overlay */
.card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}


/* ===================================
   Music Payer section
   =================================== */
.wpo-breadcumb-area {
    background: url('../assets/images/eid-card-illustration_53876-78945.jpg') no-repeat center top / cover;
    min-height: 250px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

.breadcumb-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #87380036;
    z-index: -1;
    height: 100%;
}

.wpo-breadcumb-area:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(84, 84, 84, 0.34);
    content: "";
    z-index: -1;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap {
    text-align: center;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap h2 {
    font-size: 50px;
    color: #fff;
    line-height: 60px;
    margin-top: -10px;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap ul li {
    display: inline-block;
    padding: 0px 5px;
    color: #fff;
    position: relative;
    font-size: 20px;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap ul li a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap ul {
    padding-left: 0;
    margin: 0;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap ul li a:after {
    content: "/";
    position: relative;
    left: 7px;
}

/* ===================================
    audio pages css 
   =================================== */

/* ===================================
    audio section
   =================================== */
.audio-section {
    padding: 100px 0;
    background: #fff;
}

.audio-row {
    row-gap: 50px;
}

.audio-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.audio-section img {
    max-width: 250px;
    height: auto;
    filter: grayscale(0%);
    transition: transform 0.3s ease;
}

.audio-section img:hover {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .audio-section img {
        max-width: 140px;
    }
}

/* ===================================
    video pages css 
   =================================== */

/* ===================================
    video section
   =================================== */
.video-gallery {
    padding: 100px 0 70px;
}

.video-gallery .photo-gallery figure,
.video-gallery .photo-gallery img {
    border-radius: 0;
}

.video-thumb {
    position: relative;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    display: block;
}

/* PLAY ICON */
.play-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* HOVER EFFECT */
.video-item:hover .play-icon {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-gallery .page-gallery-box .photo-gallery img {
    border-radius: 0px;
}

.video-gallery .page-gallery-box .photo-gallery figure {
    border-radius: 0px;
}

.gallery-pagination button {
    padding: 8px 20px;
    font-size: 14px;
}

.gallery-pagination .btn-outline-orange {
    background: var(--primary);
    color: var(--white);
    border: none;
}

/* ===================================
    photo pages css 
   =================================== */

/* ===================================
    Gallery section
   =================================== */

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    text-decoration: none;
}

.page-gallery-box .photo-gallery figure {
    border-radius: 0 0 100px 0;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

figure {
    margin: 0;
}

.page-gallery-box .photo-gallery img {
    aspect-ratio: 1 / 0.97;
    object-fit: cover;
    border-radius: 0 0 100px 0;
    max-width: 100%;
    vertical-align: middle;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

/* ===================================
   Music Payer section
   =================================== */
/* Music Section */
.music-section {
    padding: 80px 0;
}

.music-title {
    font-weight: 700;
    letter-spacing: 1px;
    color: #3b2f2f;
}

.music-subtitle {
    color: #7a6a58;
    font-size: 17px;
}

/* Spotify Card */
.spotify-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.spotify-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.spotify-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.spotify-header i {
    font-size: 36px;
    color: #1DB954;
}

.spotify-header h3 {
    margin: 0;
    font-weight: 700;
    color: #2e2e2e;
}

.spotify-header span {
    display: block;
    font-size: 14px;
    color: #777;
}

iframe {
    border-radius: 18px;
    width: 100%;
    border: none;
}

/* Small devotional touch */
.blessing {
    margin-top: 25px;
    text-align: center;
    font-size: 15px;
    color: #6b5b4b;
}

.blessing i {
    color: #caa85c;
    margin-right: 6px;
}

@media (max-width: 768px) {
    .music-section {
        padding: 50px 15px;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--secondary);
    color: var(--white);
}

.footer-top {
    padding: 50px 0 40px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about .footer-logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    padding: 2px;
    background: white;
    flex-shrink: 0;
}

.footer-about .footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.footer-about .footer-logo-text h3 {
    font-size: 20px;
    color: white;
    font-weight: 700;
    margin-bottom: 0px !important;
}

.footer-about .footer-logo-text span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-mid {
    background: rgba(0, 0, 0, 0.15);
    padding: 20px 0;
}

.footer-mid-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-contact-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 14px;
    width: 16px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-locations {
    display: flex;
    gap: 15px;
}

.footer-locations a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s;
}

.footer-locations a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom .gurmukhi {
    color: var(--primary);
    font-size: 14px;
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.footer-bottom .copyright a {
    color: var(--primary);
    text-decoration: none;
}

.footer-links ul {
    padding-left: 0px !important;
}

/* ===================================
   Music Platform Cards
   =================================== */
.music-streaming {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: url('../assets/images/image.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.music-bg-pattern {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23FFD700' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.music-streaming .section-badge {
    background: var(--primary);
    color: var(--light-gold);
}

.music-streaming h2 {
    color: white;
}

.music-streaming p {
    color: rgba(255, 255, 255, 0.7);
}

.additional-platforms a:first-child {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.additional-platforms a:first-child img {
    width: 24px;
    height: 24px;
    border-radius: 5px;
}

.additional-platforms a:nth-child(2) {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.additional-platforms a:nth-child(2) i {
    font-size: 20px;
    color: #FF5500;
}

.additional-platforms a:last-child {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.additional-platforms a:last-child i {
    font-size: 20px;
    color: #FF5500;
}

.additional-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.featured-album {
    margin-top: 50px;
    text-align: center;
}

.featured-album p {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.featured-album h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Overlay */
.music-streaming::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /* overlay strength */
    z-index: 0;
}

/* Content above overlay */
.music-streaming>* {
    position: relative;
    z-index: 1;
}



.music-streaming a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Grid Layout */
.music-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

/* Background Image */
.music-streaming.music-platforms-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../assets/images/wave.avif') center/cover no-repeat;
    z-index: 0;
}



/* Platform Cards */
.music-streaming .platform-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-streaming .platform-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../assets/images/images (1).jfif') center/cover no-repeat;
    opacity: 0.25;
    /* 👈 image opacity */
    z-index: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Icons */
.music-streaming .platform-card i {
    font-size: 50px;
}

/* Platform Colors */
.music-streaming .platform-card.spotify {
    background: linear-gradient(135deg, #1DB954 0%, #158a3d 100%);
}

.music-streaming .platform-card.apple {
    background: linear-gradient(135deg, #FA2D48 0%, #A12137 100%);
}

.music-streaming .platform-card.amazon {
    background: linear-gradient(135deg, #00A8E1 0%, #006B8F 100%);
}

.music-streaming .platform-card.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

/* Hover Effect */
.music-streaming .platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* ===================================
   Scroll Reveal Animations
   =================================== */
.reveal {
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.reveal-fade.active {
    opacity: 1;
}

/* Staggered animations for children */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(6) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Page Loader
   =================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.loader-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    padding: 3px;
    background: white;
    animation: logoPulse 2s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }
}

.loader-spinner {
    display: flex;
    gap: 8px;
}

.loader-spinner span {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: loaderBounce 1.4s ease-in-out infinite both;
}

.loader-spinner span:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-spinner span:nth-child(2) {
    animation-delay: -0.16s;
}

.loader-spinner span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes loaderBounce {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loader-text {
    color: white;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

.loader-text-gurmukhi {
    color: var(--gold);
    font-size: 16px;
    margin-top: -10px;
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top i {
    transition: transform 0.3s;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* =========================
   music-playlist SECTION
   ========================= */

/* =========================
   DONATION SECTION
   ========================= */

.donation-hero {
    min-height: 100vh;
    background: url('../assets/images/donation1.jpg') center/cover no-repeat;
    position: relative;
}

.donation-text {
    background: rgba(255, 255, 255, 0.9);
    /* subtle white background */
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.donation-text h2 span {
    color: #000;
    /* gold accent */
}

.donation-text h2 {
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 800;
    color: #ff5a2c;
    /* gold accent */
    margin-bottom: 20px;
    line-height: 1.2;
}

.donation-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.donation-overlay {
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px;
}

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

.donation-card {
    background: #ffffff;
    max-width: 480px;
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Badge */
.donation-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #ff5a2c;
    margin-bottom: 16px;
}

/* Title */
.donation-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.donation-card h2 span {
    color: #ff5a2c;
}

/* Description */
.donation-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Input */
.donation-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    margin-bottom: 20px;
    font-size: 14px;
}

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

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.amount-btn {
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #fff1eb;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.amount-btn:hover {
    background: #ffe1d6;
}

.amount-btn.active {
    background: #ff5a2c;
    color: #ffffff;
}

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

.donate-btn {
    width: 100%;
    padding: 14px;
    background: #ff5a2c;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.donate-btn span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #ff5a2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.donate-btn:hover {
    background: #e84d22;
}

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

@media (max-width: 768px) {
    .donation-overlay {
        justify-content: center;
        padding: 30px;
    }
}

/* ===================================
   even  section
   =================================== */
/* Position nav buttons */
.event-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

/* Common button style */
.event-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary) !important;
    color: #fff !important;
    border: none !important;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: 0.3s ease;
}

/* Left button */
.event-carousel .owl-nav .owl-prev {
    margin-left: -60px;
    border-radius: 50px;
}

/* Right button */
.event-carousel .owl-nav .owl-next {
    margin-right: -60px;
    border-radius: 50px;

}

/* Hover effect */
.event-carousel .owl-nav button:hover {
    background: var(--primary) !important;
}

/* ===================================
    schedule pages css
   =================================== */
/* ===================================
   schedule-section sectiion
   =================================== */
 
/* ===================================
    about us pages css
   =================================== */
/* ===================================
     about us sectiion
   =================================== */
.about-us-section {
    padding: 100px 0px;
}
.about-dham-section {
    padding: 80px 0;
    background: linear-gradient(to right, #fffaf0, #ffffff);
}

.about-dham-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.about-dham-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-dham-image:hover img {
    transform: scale(1.05);
}

.spiritual-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--light-gold);
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.about-dham-content .section-tag {
    display: inline-block;
    background: var(--light-gold);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-dham-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-dham-content h2 span {
    color: var(--primary);
}

.about-dham-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.about-highlights .highlight {
    background: #fff;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.darbar-section {
    padding: 80px 0;
}

.darbar-card {
    perspective: 1200px;
    height: 380px;
}

.darbar-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

/* Hover flip */
.darbar-card:hover .darbar-inner {
    transform: rotateY(180deg);
}

/* Front & Back common */
.darbar-front,
.darbar-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    overflow: hidden;
}

/* FRONT */
.darbar-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.darbar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.darbar-overlay h3 {
    color: #fff;
    font-size: 36px;
    letter-spacing: 2px;
}

/* BACK */
.darbar-back {
    background: linear-gradient(135deg, #111, #000);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.darbar-back-content {
    color: #fff;
}

.darbar-back-content h4 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffd700;
}

.darbar-back-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* Mobile (tap-friendly) */
@media (max-width: 768px) {
    .darbar-card {
        height: 260px;
    }

    .darbar-overlay h3 {
        font-size: 26px;
    }

    .darbar-back-content h4 {
        font-size: 22px;
    }
}

.spiritual-facebook {
    padding: 90px 0;
    background: #f7f9fc;
}

.fb-spiritual-card {
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    padding: 40px 30px;
    text-decoration: none;
    color: #222;
    transition: all 0.4s ease;
    height: 100%;
}
 .fb-profile {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary);
    box-shadow: 0 8px 20px  var(--primary-dark);
}

.fb-spiritual-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px var(--primary-dark);
}

.fb-content {
    text-align: center;
}

.fb-content i {
    font-size: 36px;
    color: #1877f2;
    margin-bottom: 15px;
}

.fb-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.fb-content span {
    font-size: 14px;
    color: #666;
}

/* ===================================
   Responsive - Tablet & Mobile
   =================================== */
@media (max-width: 1024px) {
    .vision-content h2 {
        font-size: 26px !important;
    }

    .navbar.scrolled {
        height: 93px;
    }

    .navbar {
        height: 90px;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .vision-stat {
        right: 100px !important;
    }

    .logo-icon {
        width: 64px;
        height: 50px;
    }

    .vision-testimonial {
        bottom: -106px !important;
        left: -90px !important;
        max-width: 274px !important;
    }

    .slider-nav {
        display: none;
    }

    .gallery-video-card {
        max-height: 613px;
    }



    .vision-content p {
        font-size: 14px;
    }
}

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

    .nav-links a {
        padding: 0 12px;
        font-size: 13px;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .logo-text h1 {
        font-size: 16px;
    }
}


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

    .navbar {
        height: 60px;
    }

    .nav-container {
        padding: 0 15px;
    }

    /* Show hamburger */
    .mobile-menu {
        display: flex;
    }

    /* Hide menu initially */
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: auto;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 999;

    }


    /* Show menu on toggle */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        height: auto;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 15px;
        height: auto;
        border-radius: 6px;
        border-bottom: none;
    }

    .nav-links a:hover {
        background: rgba(255, 107, 0, 0.1);
        border-bottom: none;
    }

    .nav-links li:last-child {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links li:last-child a {
        margin-left: 0;
        width: 100%;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-text h1 {
        font-size: 15px;
    }

    .logo-text span {
        font-size: 10px;
    }
}


/* SMALL MOBILE */
@media (max-width: 480px) {

    .logo-text h1 {
        font-size: 14px;
    }

    .logo-text span {
        font-size: 9px;
    }

    .mobile-menu {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* ===================================
   Responsive Styles
=================================== */

/* -----------------------------
   Small Mobile (max-width: 480px)
----------------------------- */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Section Header */
    .section-header h2 {
        font-size: 26px;
    }

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

    /* Hero Slider */
    .slide-content h1 {
        font-size: 24px !important;
    }

    .slide-content .gurmukhi {
        font-size: 14px !important;
    }

    .slide-content p {
        font-size: 13px !important;
        line-height: 1.5;
    }

    .hero-badge {
        font-size: 10px !important;
        padding: 5px 12px !important;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .about-card {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .icon-circle {
        margin: 0 auto 12px auto !important;
        /* ✅ CENTER */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content-box {
        text-align: center;
    }

    /* Schedule Cards */
    .schedule-card {
        padding: 30px 18px;
    }

    .schedule-card .time {
        margin-bottom: 15px;
    }

    /* Event Cards */
    .event-date .day {
        font-size: 28px;
    }

    /* Books */
    .books-grid {
        gap: 20px !important;
    }

    .book-container {
        width: 100px;
        height: 150px;
    }

    .book-3d h4 {
        font-size: 12px;
    }

    .book-3d p {
        font-size: 10px;
    }

    /* Footer */
    .footer-logo-icon {
        width: 50px;
        height: 50px;
    }

    .footer-logo-text h3 {
        font-size: 18px;
    }

    .wdt-content-separator.separator-1 span::before {
        left: 103px;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 10px;
    }

    .footer-contact-item {
        font-size: 13px;
    }

    /* Location Tabs */
    .location-tab {
        padding: 8px 12px !important;
        font-size: 11px !important;
    }

    /* Music Platforms */
    .music-streaming .container>div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }

    /* Satguru Section */
    .satguru img {
        max-width: 280px !important;
    }

    .satguru h2 {
        font-size: 24px !important;
    }

    .satguru p {
        font-size: 14px !important;
    }

    /* Loader */
    .loader-logo {
        width: 80px;
        height: 80px;
    }

    .loader-text {
        font-size: 14px;
    }

    .loader-text-gurmukhi {
        font-size: 20px;
    }

    .about {
        padding: 50px 0;
    }

    .about-card {
        padding: 18px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .content-box h5 {
        font-size: 14px;
    }

    .content-box p {
        font-size: 12.5px;
        line-height: 1.5;
    }

    .wdt-content-separator.separator-1 hr {
        width: 130px;
    }

    .event-section .event-content {
        padding: 14px;
        border-radius: 0px 0px 5px 5px;

    }

    .contact-info {
        padding: 11px 20px !important;
    }

    .navbar {
        height: 76px !important;
    }

    .scroll-to-top {
        right: 56px !important;
    }

    .navbar.scrolled {
        height: 78px !important;
    }

    .event-section .event-wrapper {
        padding: 0;
    }

    .event-section .event-meta {
        display: block;
    }
}

/* -----------------------------
   Mobile (max-width: 576px)
----------------------------- */
@media (max-width: 576px) {
    .gallery-title {
        font-size: 28px;
    }

    .gallery-text-card {
        padding: 25px 20px;
    }

    .gallery-video-card {
        min-height: 280px;
    }
}

/* -----------------------------
   Tablet / Mobile Large (max-width: 768px)
----------------------------- */
@media (max-width: 768px) {
    .divider {
        display: none;
    }

    /* Top Bar */
    .top-bar {
        height: auto;
        padding: 8px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 8px;
    }

    .top-bar .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        padding: 8px 20px !important;
    }

    .top-bar .contact-info a {
        padding: 4px 10px;
        font-size: 11px;
        border-right: none;
    }

    .top-bar .contact-info a:last-child {
        display: none;
    }

    .top-bar .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 12px;
        border-left: none;
        border-radius: 4px;
        margin: 0 2px;
        text-decoration: none !important;
    }

    /* Navbar */
    .navbar {
        height: 80px;
    }

    .navbar.scrolled {
        height: 80px;
    }

    .navbar.scrolled .logo-icon {
        width: 40px;
        height: 40px;
    }

    /* Nav Links */
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 15px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        height: auto;
        width: 100%;
    }

    .nav-links a {
        height: auto;
        padding: 12px 15px;
        border-radius: 8px;
        width: 100%;
    }

    .nav-links li:last-child {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }



    /* Buttons & Hero */
    .live-btn {
        padding: 12px 20px;
        border-radius: 8px;
    }

    .mobile-menu {
        display: flex;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .logo-text span {
        font-size: 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Section Header */
    .section-header h2 {
        font-size: 32px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-about .footer-logo,
    .footer-social {
        justify-content: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links a::before {
        display: none;
    }

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

    .footer-contact-row {
        justify-content: center;
    }

    .footer-locations {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Satguru */
    .satguru .container>div {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .satguru h2 {
        font-size: 28px !important;
    }

    /* Slider */
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-nav {
        display: none;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    /* Scroll To Top */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    /* Hero Slider Responsive */
    .slide-content {
        padding: 0 20px;
    }

    .slide-content h1 {
        font-size: 28px !important;
    }

    .slide-content .gurmukhi {
        font-size: 16px !important;
    }

    .slide-content p {
        font-size: 14px !important;
        padding: 0 10px;
    }

    .hero-badge {
        font-size: 11px !important;
        padding: 6px 15px !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* About & Schedule Cards */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .about-card {
        padding: 25px 20px;
    }

    .schedule {
        padding: 60px 0;
    }

    .schedule .section-header {
        text-align: center;
        padding: 0 10px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        /* ✅ ONE CARD PER ROW */
        gap: 18px;
    }

    .schedule-card {
        padding: 35px 20px;
        border-radius: 30px;
    }

    .schedule-card .time {
        font-size: 13px;
        padding: 6px 16px;
    }

    .schedule-card h3 {
        font-size: 18px;
    }

    .schedule-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Event Cards */
    .events-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    /* 3D Books */
    .books-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
        max-width: 100% !important;
    }

    .book-container {
        width: 120px;
        height: 180px;
    }

    .book-3d h4 {
        font-size: 14px;
        margin-top: 15px;
    }

    .book-3d p {
        font-size: 11px;
    }

    /* Donate Section */
    .donate .container>div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }

    /* Music Streaming */
    .music-streaming .container>div[style*="grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* Stream Schedule */
    .stream-schedule li {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    /* Location Tabs */
    .location-tab {
        padding: 10px 15px !important;
        font-size: 12px !important;
    }

    /* Map Container */
    .map-container iframe {
        height: 300px !important;
    }

    /* Mantra Banner */
    .mantra-banner {
        padding: 12px 0;
    }

    .mantra-text {
        font-size: 14px;
    }

    .wdt-content-separator.separator-1 span {
        width: 72%;
    }

    .event-section .event-content {
        border-radius: 0px 0px 10px 10px;
    }
}

/* -----------------------------
   Desktop / Small Laptop (max-width: 991px)
----------------------------- */
@media (max-width: 991px) {
    .about {
        padding: 80px 0;
    }

    .about-card {
        padding: 22px;
    }

    .icon-circle {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }

    .content-box h5 {
        font-size: 16px;
    }

    .content-box p {
        font-size: 13.5px;
    }

    /* Divider adjustment */
    .divider span::before,
    .divider span::after {
        width: 120px;
        left: -140px;
        right: -140px;
    }

    .divider::before,
    .divider::after {
        width: 120px;
    }

    .wdt-content-separator.separator-1 hr {
        width: 180px;
    }

    /* Event Cards */
    .event-wrapper {
        flex-direction: column;
    }

    .event-image,
    .event-content {
        width: 100%;
        border-radius: 0;
    }

    .event-image img {
        border-radius: 40px 40px 0 0;
    }

    .event-content {
        border-radius: 0 0 40px 40px;
    }

    /* Vision Section */
    .vision-images {
        flex-direction: column;
        align-items: center;
    }

    .vision-testimonial {
        position: static;
        margin-top: 25px;
    }

    .vision-stat {
        position: static;
        margin-bottom: 20px;
    }

    .vision-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    /* Gallery Video Cards */
    .gallery-video-card {
        min-height: 400px;
        margin-top: 30px;
    }

    .img-big {
        min-height: 300px;
    }

    .img-small {
        height: 200px;
    }

    .schedule {
        padding: 70px 0;
    }

    .schedule-grid {
        gap: 20px;
    }

    .schedule-card {
        padding: 40px 25px;
        border-radius: 35px 0 35px 0;
    }

    .schedule-card h3 {
        font-size: 20px;
    }

    .schedule-card p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {

    .about {
        padding: 60px 0;
    }

    /* Stack icon on top */
    .about-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .icon-circle {
        margin: 0 0 12px 0 !important;
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 17px;
    }

    .content-box h5 {
        font-size: 15px;
    }

    .content-box p {
        font-size: 13px;
        padding-top: 10px;
    }

    /* Hide long divider lines on mobile */
    .divider span::before,
    .divider span::after,
    .divider::before,
    .divider::after {
        display: none;
    }

    .divider span {
        font-size: 24px;
        padding: 0;
    }

    .wdt-content-separator.separator-1 hr {
        width: 150px;
        margin: 10px auto;
    }
}

/* -----------------------------
   Tablet / Desktop (max-width: 992px)
----------------------------- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-about {
        grid-column: span 2;
        text-align: center;
    }

    .footer-about .footer-logo,
    .footer-social {
        justify-content: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }
}