:root {
    --saffron: #FF9933;
    --saffron-light: #FFB366;
    --saffron-dark: #E67300;
    --deep-red: #8B0000;
    --red-light: #B22222;
    --red-dark: #660000;
    --gold: #FFD700;
    --gold-light: #FFED4E;
    --gold-dark: #DAA520;
    --white: #FFFFFF;
    --cream: #FFF8DC;
    --light-bg: #FFF5E6;
    --dark-text: #2C1810;
    --medium-text: #5C4033;
    --light-text: #8B7355;

    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-red) 100%);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
	
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.om-symbol {
    font-size: 3rem;
    font-weight: bold;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    50% { text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,215,0,0.6); }
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.logo-text .tagline {
    font-size: 0.9rem;
    opacity: 0.95;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;	
}

.nav-menu li {
    position: relative;
	
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.dropdown {
    position: relative;
	
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: var(--dark-text);
    padding: 0.75rem 1.5rem;
    display: block;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--saffron);
}

.arrow {
    font-size: 0.7rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
	
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
	
}

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-red) 100%);
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,153,51,0.9) 0%, rgba(139,0,0,0.9) 100%);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.sanskrit-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--deep-red);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    color: var(--saffron);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin: 1rem 0;
    font-weight: 700;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--deep-red));
    margin: 1rem auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border: 4px solid var(--gold);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.temple-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--saffron-light) 0%, var(--red-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hanuman-symbol {
    font-size: 5rem;
}

.about-text {
    text-align: left;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--medium-text);
}

.highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-item h3 {
    color: var(--deep-red);
    margin-bottom: 0.3rem;
}

.highlight-item p {
    margin: 0;
    color: var(--medium-text);
}

.read-more-btn, .primary-btn {
    display: inline-block;
    background: var(--saffron);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.read-more-btn:hover, .primary-btn:hover {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-btn {
    display: inline-block;
    background: transparent;
    color: var(--saffron);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--saffron);
}

.secondary-btn:hover {
    background: var(--saffron);
    color: var(--white);
}

.significance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.significance-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.significance-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.significance-card h3 {
    color: var(--deep-red);
    margin-bottom: 1rem;
}

.significance-card p {
    color: var(--medium-text);
}

.sevas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.seva-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--saffron);
}

.seva-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--deep-red);
}

.seva-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.seva-icon {
    font-size: 2.5rem;
}

.seva-header h3 {
    color: var(--deep-red);
    margin: 0;
}

.seva-time {
    font-weight: 600;
    color: var(--saffron);
    margin-bottom: 0.5rem;
}

.seva-card p {
    color: var(--medium-text);
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

.timings-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.timings-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.timings-content h2 {
    color: var(--deep-red);
    margin-bottom: 2rem;
}

.timing-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.timing-label {
    font-weight: 600;
    color: var(--dark-text);
}

.timing-value {
    color: var(--saffron);
    font-weight: 600;
}

.special-timing {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--saffron);
}

.special-timing p {
    margin-bottom: 0.5rem;
    color: var(--medium-text);
}

.quote-card {
    background: linear-gradient(135deg, var(--saffron-light) 0%, var(--red-light) 100%);
    padding: 3rem;
    border-radius: 15px;
    color: var(--white);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 4rem;
    opacity: 0.3;
    line-height: 1;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    margin: 1rem 0;
    line-height: 1.8;
}

.quote-translation {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: normal;
}

.cta-section {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-red) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .primary-btn {
    background: var(--white);
    color: var(--saffron);
}

.cta-section .primary-btn:hover {
    background: var(--cream);
}

.cta-section .secondary-btn {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .secondary-btn:hover {
    background: var(--white);
    color: var(--saffron);
}

.footer {
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--medium-text) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.footer-quote {
    color: var(--saffron-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--saffron);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.devotional-quote {
    color: var(--gold-light);
    font-size: 1.2rem;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--saffron);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--deep-red);
    transform: translateY(-5px);
}

.music-toggle {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
}

.music-btn {
    width: 50px;
    height: 50px;
    background: var(--deep-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.music-btn:hover {
    background: var(--saffron);
    transform: scale(1.1);
}

.music-btn.playing {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.page-hero {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-red) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-style: italic;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.about-main h2, .about-main h3 {
    color: var(--deep-red);
    margin: 2rem 0 1rem;
}

.deity-significance, .temple-features {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.significance-list {
    list-style: none;
    padding-left: 0;
}

.significance-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-bg);
    color: var(--medium-text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.temple-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.temple-features .feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.feature-number {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-item h4 {
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--saffron), var(--deep-red));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -3.6rem;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--saffron-light);
}

.timeline-content h4 {
    color: var(--saffron);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--medium-text);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.history-text h3 {
    color: var(--deep-red);
    margin: 2rem 0 1rem;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.belief-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.belief-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.belief-card h3 {
    color: var(--deep-red);
    margin-bottom: 1rem;
}

.large-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    color: var(--saffron);
    opacity: 0.3;
    line-height: 0;
}

.sanskrit-verse {
    font-size: 1.5rem;
    color: var(--deep-red);
    margin: 2rem 0;
    line-height: 1.8;
    font-style: italic;
}

.translation {
    color: var(--medium-text);
    font-style: italic;
}

.daily-schedule .schedule-container {
    display: grid;
    gap: 2rem;
}

.schedule-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--saffron);
    transition: var(--transition);
}

.schedule-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.time-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.time-badge.morning {
    background: linear-gradient(90deg, #FFE5B4, var(--gold-light));
    color: var(--dark-text);
}

.time-badge.afternoon {
    background: linear-gradient(90deg, var(--saffron-light), var(--saffron));
    color: var(--white);
}

.time-badge.evening {
    background: linear-gradient(90deg, var(--saffron), var(--red-light));
    color: var(--white);
}

.time-badge.night {
    background: linear-gradient(90deg, var(--deep-red), var(--red-dark));
    color: var(--white);
}

.schedule-card h3 {
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.schedule-card p {
    color: var(--medium-text);
}

.sevas-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.seva-detailed-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.seva-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.seva-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.seva-detailed-card h3 {
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.seva-price {
    color: var(--saffron);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.seva-description {
    color: var(--medium-text);
    margin-bottom: 1rem;
}

.seva-benefits {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
}

.seva-benefits li {
    padding: 0.3rem 0;
    color: var(--medium-text);
}

.seva-benefits li::before {
    content: "✓ ";
    color: var(--saffron);
    font-weight: bold;
}

.book-seva-btn {
    background: var(--saffron);
    color: var(--white);
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
}

.book-seva-btn:hover {
    background: var(--deep-red);
    transform: scale(1.05);
}

.special-days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.special-day-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.day-header {
    padding: 2rem;
    color: var(--white);
    text-align: center;
}

.day-header.tuesday {
    background: linear-gradient(135deg, var(--red-light), var(--deep-red));
}

.day-header.saturday {
    background: linear-gradient(135deg, #4B0082, #000080);
}

.day-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.day-subtitle {
    font-style: italic;
    opacity: 0.95;
}

.day-content {
    padding: 2rem;
}

.day-description {
    color: var(--medium-text);
    margin-bottom: 1.5rem;
}

.day-content h4 {
    color: var(--deep-red);
    margin: 1.5rem 0 1rem;
}

.ritual-list {
    list-style: none;
    padding-left: 0;
}

.ritual-list li {
    padding: 0.5rem 0;
    color: var(--medium-text);
}

.ritual-list li::before {
    content: "🔹 ";
    color: var(--saffron);
}

.timing-note {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--saffron);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--medium-text);
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-detail .icon {
    font-size: 1.8rem;
}

.contact-card .primary-btn {
    width: 100%;
    margin-top: 1.5rem;
}

.gallery-filters {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--saffron);
    background: transparent;
    color: var(--saffron);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--saffron);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.placeholder-text {
    line-height: 1.5;
}

.deity-bg {
    background: linear-gradient(135deg, var(--saffron), var(--red-light));
}

.festival-bg {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
}

.ritual-bg {
    background: linear-gradient(135deg, #A8E6CF, #56CCF2);
}

.architecture-bg {
    background: linear-gradient(135deg, #FFD93D, #FF6B6B);
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h3 {
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: var(--medium-text);
    font-size: 0.9rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(255,153,51,0.8), rgba(139,0,0,0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
}

.play-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-label {
    font-size: 1.2rem;
}

.video-card h3 {
    padding: 1rem 1.5rem 0.5rem;
    color: var(--deep-red);
}

.video-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-text);
}

.festivals-grid {
    display: grid;
    gap: 2rem;
}

.festival-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.festival-header {
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.festival-header.hanuman-jayanti {
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
}

.festival-header.ram-navami {
    background: linear-gradient(135deg, #4169E1, #1E3A8A);
}

.festival-header.dussehra {
    background: linear-gradient(135deg, #DC143C, #8B0000);
}

.festival-header.diwali {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
}

.festival-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.festival-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.festival-date {
    font-style: italic;
    opacity: 0.95;
}

.festival-content {
    padding: 2rem;
}

.festival-description {
    color: var(--medium-text);
    margin-bottom: 1.5rem;
}

.festival-content h4 {
    color: var(--deep-red);
    margin: 1.5rem 0 1rem;
}

.program-list {
    list-style: none;
    padding-left: 0;
}

.program-list li {
    padding: 0.5rem 0;
    color: var(--medium-text);
}

.program-list li::before {
    content: "🔸 ";
    color: var(--saffron);
}

.program-list1 {
    list-style: none;
    padding-left: 0;
	
}

.program-list1 li {
    padding: 0.5rem 0;
    color: var(--white);
}

.program-list1 li::before {
    content: "🔸 ";	
    color: var(--white);
}

.attendance-note {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.monthly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.monthly-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.day-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tuesday-badge {
    background: linear-gradient(90deg, var(--red-light), var(--deep-red));
}

.saturday-badge {
    background: linear-gradient(90deg, #4B0082, #000080);
}

.purnima-badge {
    background: linear-gradient(90deg, var(--gold), var(--saffron));
}

.ekadashi-badge {
    background: linear-gradient(90deg, #20B2AA, #008B8B);
}

.monthly-card h3 {
    color: var(--deep-red);
    margin-bottom: 1rem;
}

.monthly-card p {
    color: var(--medium-text);
}

.mandapam-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.mandapam-content {
    display: grid;
    gap: 3rem;
}

.mandapam-features h3, .booking-details h3 {
    color: var(--deep-red);
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--deep-red);
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: var(--medium-text);
    margin: 0;
}

.pricing-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.pricing-card h4 {
    color: var(--deep-red);
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.price-label {
    color: var(--dark-text);
}

.price-value {
    color: var(--saffron);
    font-size: 1.3rem;
    font-weight: 700;
}

.price-note {
    margin-top: 1rem;
    color: var(--medium-text);
    font-size: 0.9rem;
}

.services-included, .additional-services {
    margin: 2rem 0;
}

.services-included h4, .additional-services h4 {
    color: var(--deep-red);
    margin-bottom: 1rem;
}

.included-list, .additional-list {
    list-style: none;
    padding-left: 0;
}

.included-list li, .additional-list li {
    padding: 0.5rem 0;
    color: var(--medium-text);
}

.included-list li::before {
    content: "✓ ";
    color: var(--saffron);
    font-weight: bold;
}

.additional-list li::before {
    content: "+ ";
    color: var(--saffron);
    font-weight: bold;
}

.booking-process {
    margin: 3rem 0;
}

.booking-process h3 {
    color: var(--deep-red);
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--saffron);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--medium-text);
}

.booking-terms {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.booking-terms h3 {
    color: var(--deep-red);
    margin-bottom: 1.5rem;
}

.terms-list {
    list-style: none;
    padding-left: 0;
}

.terms-list li {
    padding: 0.5rem 0;
    color: var(--medium-text);
}

.terms-list li::before {
    content: "• ";
    color: var(--saffron);
    font-weight: bold;
    margin-right: 0.5rem;
}

.booking-contact-section {
    margin-top: 3rem;
}

.booking-cta {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.booking-cta h3 {
    color: var(--deep-red);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-cta p {
    color: var(--medium-text);
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info-section .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card-large {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.contact-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-card-large h3 {
    color: var(--deep-red);
    margin-bottom: 1rem;
}

.contact-detail-text {
    color: var(--medium-text);
    line-height: 1.8;
}

.map-container {
    margin: 3rem 0;
}

.map-placeholder {
    height: 500px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--saffron);
}

.map-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.map-text {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.map-subtext {
    color: var(--medium-text);
    margin-bottom: 1.5rem;
}

.map-btn {
    background: var(--saffron);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.map-btn:hover {
    background: var(--deep-red);
}

.directions-info {
    margin-top: 3rem;
}

.directions-info h3 {
    color: var(--deep-red);
    text-align: center;
    margin-bottom: 2rem;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.direction-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.direction-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.direction-card h4 {
    color: var(--deep-red);
    margin-bottom: 1rem;
}

.direction-card p {
    color: var(--medium-text);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.required {
    color: var(--deep-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--saffron);
}

.submit-btn {
    background: var(--saffron);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--deep-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.department-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.department-card h3 {
    color: var(--deep-red);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
}

.department-card p {
    color: var(--medium-text);
    margin-bottom: 0.5rem;
}

.social-content {
    text-align: center;
}

.social-description {
    color: var(--medium-text);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.social-icons-large {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon-large {
    text-align: center;
    transition: var(--transition);
}

.social-icon-large span {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.social-icon-large.facebook span {
    background: #1877F2;
}

.social-icon-large.twitter span {
    background: #1DA1F2;
}

.social-icon-large.instagram span {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.social-icon-large.youtube span {
    background: #FF0000;
}

.social-icon-large p {
    color: var(--dark-text);
    font-weight: 600;
}

.social-icon-large:hover {
    transform: translateY(-5px);
}

.donation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.donation-content h2 {
    color: var(--deep-red);
    margin-bottom: 1rem;
}

.donation-content p {
    color: var(--medium-text);
    margin-bottom: 2rem;
}

.donation-info {
    text-align: left;
    margin-top: 2rem;
}

.donation-info h3 {
    color: var(--deep-red);
    margin-bottom: 1.5rem;
}

.bank-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.bank-details p {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.donation-note {
    color: var(--medium-text);
    font-style: italic;
}

@media (max-width: 1024px) {
    .about-content,
    .timings-wrapper,
    .booking-content,
    .history-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--saffron) 0%, var(--deep-red) 100%);
        width: 100%;
       /* text-align: center;*/
		/*text-align: justify;*/
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
		align-items: flex-start !important;
		padding-left: 25px;
    }

    .nav-menu.active {
        left: 0;
		
    }

    .nav-menu li {
        margin: 0.5rem 0;
		
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
		
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        color: var(--white);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-slider {
        height: 450px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons, .contact-buttons {
        flex-direction: column;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text .tagline {
        font-size: 0.75rem;
    }

    .om-symbol {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 3rem 0;
    }

    .container {
        padding: 0 15px;
    }

    .hero-slider {
        height: 350px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .scroll-top, .music-btn {
        width: 45px;
        height: 45px;
    }
}

@keyframes animate-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: animate-fade-in 1s ease-out;
}

.animate-fade-in-delay {
    animation: animate-fade-in 1s ease-out 0.3s both;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image .image-placeholder {
    min-width: 600px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.lightbox-image .placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.lightbox-image .placeholder-text {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--white);
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.lightbox-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    padding: 0.25rem 0.75rem;
    line-height: 1;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.gallery-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.video-container {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder-message {
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.video-placeholder-message h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.video-placeholder-message p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.video-modal-caption {
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.video-modal-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.video-modal-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.video-modal-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.video-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .lightbox-image .image-placeholder {
        min-width: 90vw;
        min-height: 300px;
    }

    .lightbox-image .placeholder-icon {
        font-size: 3rem;
    }

    .lightbox-image .placeholder-text {
        font-size: 1.2rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        padding: 0.25rem 0.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.5rem 0.75rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-caption h3 {
        font-size: 1.2rem;
    }

    .lightbox-caption p {
        font-size: 0.9rem;
    }

    .video-container {
        max-width: 95vw;
        border-radius: 10px;
    }

    .video-modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        padding: 0.25rem 0.5rem;
    }

    .video-modal-caption h3 {
        font-size: 1.2rem;
    }

    .video-modal-caption p {
        font-size: 0.9rem;
    }

    .video-placeholder-message h4 {
        font-size: 1.2rem;
    }

    .video-placeholder-message p {
        font-size: 0.9rem;
    }
}
