/* =====================================================
   SERVICES & CTA SECTIONS - TEMPLE DESIGN
   Matching Complete Homepage Temple Aesthetics
   ===================================================== */

/* Using consistent temple color variables */
:root {
    --temple-saffron: #1C538E;
    --temple-orange: #E85D00;
    --temple-gold: #E85D00;
    --temple-maroon: #8B0000;
    --temple-cream: #FFF8F0;
    --temple-white: #FFFFFF;
    --temple-dark: #2C1810;
    --temple-text: #3E2723;
    --temple-shadow: rgba(139, 0, 0, 0.15);
    --gradient-flame: linear-gradient(135deg, #1C538E 0%, #1C538E 50%, #1C538E 100%);
    --gradient-divine: linear-gradient(135deg, #E85D00 0%, #E85D00 100%);
}

/* SERVICES SECTION */
.services-showcase {
    position: relative;
    padding: 50px 0;
    background: var(--temple-cream);
    overflow: hidden;
}

/* Background Pattern */
.services-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.015;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        var(--temple-saffron) 40px,
        var(--temple-saffron) 41px
    );
    pointer-events: none;
    z-index: 0;
}

/* Floating Flowers */
.floating-flower {
    position: absolute;
    font-size: 90px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.floating-flower-1 {
    top: 12%;
    left: 6%;
}

.floating-flower-2 {
    bottom: 18%;
    right: 8%;
}

/* HEADER */
.section-header-services {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.decorative-kalash {
    display: inline-block;
    color: var(--temple-maroon);
    margin-bottom: 20px;
}

.services-main-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 25px 0;
}

.services-label {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--temple-saffron);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-title-services {
    font-family: 'Lora', serif;
    font-size: 46px;
    font-weight: 700;
    color: #2C1810;
    line-height: 1.2;
}

/* Decorative Line */
.decorative-line-set {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.decorative-line-set .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--temple-saffron), transparent);
}

.decorative-line-set .om-center {
    font-size: 24px;
    font-weight: 700;
    color: #8B0000 !important;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* CARD WRAPPER */
.service-card-wrapper {
    perspective: 1000px;
}

/* CARD */
.service-card-modern {
    background: white;
    border-radius: 18px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 350px;
}

/* Remove top bar & shine */
.service-card-modern::before,
.card-shine-effect {
    display: none !important;
}

/* Hover border only */
.service-card-modern:hover {
    transform: translateY(-6px);
    border: 1px solid var(--temple-saffron);
    box-shadow: none;
}

/* ICON */
.service-icon-container {
    position: relative;
    margin-bottom: 30px;
}

.service-icon-circle {
    width: 80px;
    height: 80px;
    background:#1C538E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /*border: 2px solid var(--temple-saffron);*/
}

/* NO ROTATION */
.service-card-modern:hover .service-icon-circle {
    transform: scale(1.08);
    background: var(--gradient-flame);
    /*border-color: var(--temple-saffron);*/
}

/* ICON IMAGE */
.service-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contai3;
    transition: transform 0.3s ease3
}

/* NO ROTATION */
.service-card-modern:hover .service-icon-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Decorative Ring — Disabled */
.icon-ring {
    display: none;
}

/* CONTENT */
.service-card-content {
    flex: 1;
    margin-bottom: 20px;
}

.service-card-title {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--temple-dark);
    margin-bottom: 14px;
}

.service-card-modern:hover .service-card-title {
    color: var(--temple-saffron);
}

.service-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* BUTTON — ALWAYS VISIBLE */
.service-card-hover {
    margin-top: auto;
    opacity: 1;
    transform: none;
}

/* BUTTON STYLE */
.btn-service-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: #E85D00;
    color: white;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

/* BUTTON HOVER */
.btn-service-action:hover {
    border: 1px solid var(--temple-saffron);
    background: white;
    color: var(--temple-saffron);
}

/* Disable arrow motion */
.btn-arrow {
    transition: none;
}



    /* =====================================================
   LIVE DARSHAN SHOWCASE SECTION - TEMPLE DESIGN
   Matching Festival Section Aesthetics
   ===================================================== */

/* =====================================================
   MAIN SECTION CONTAINER
   ===================================================== */
.live-darshan-showcase {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 50%, #FFF8F0 100%);
    overflow: hidden;
}

/* Background Pattern */
.bg-pattern-darshan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--temple-saffron) 35px, var(--temple-saffron) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--temple-gold) 35px, var(--temple-gold) 36px);
    pointer-events: none;
    z-index: 0;
}

/* Floating Om Symbols */
.floating-om {
    position: absolute;
    font-size: 120px;
    color: var(--temple-saffron);
    opacity: 0.04;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-weight: 700;
    pointer-events: none;
    z-index: 0;
}

.floating-om-1 {
    top: 15%;
    left: 8%;
    animation: float-gentle 20s ease-in-out infinite;
}

.floating-om-2 {
    bottom: 20%;
    right: 10%;
    animation: float-gentle 25s ease-in-out infinite reverse;
}

/* =====================================================
   SECTION HEADER
   ===================================================== */
.section-header-darshan {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Trishul Symbol */
.decorative-trishul {
    display: inline-block;
    color: var(--temple-maroon);
    margin-bottom: 20px;
    animation: gentle-pulse 3s ease-in-out infinite;
}

/* Main Heading */
.darshan-main-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 25px 0;
}

.live-indicator-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    color: #FF0000;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #FF0000;
    border-radius: 50%;
    animation: pulse-live 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
}

@keyframes pulse-live {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.heading-title-darshan {
    font-family: 'Lora', 'Merriweather', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--temple-dark);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.temple-subtitle {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--temple-saffron);
    letter-spacing: 2px;
}



/* =====================================================
   MAIN CONTENT GRID
   ===================================================== */
.darshan-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* =====================================================
   VIDEO SECTION
   ===================================================== */
.video-section-modern {
    position: relative;
}

.video-card-enhanced {
    background: var(--temple-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 15px 50px var(--temple-shadow),
        0 0 0 1px rgba(212, 165, 116, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.video-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /*height: 6px;*/
    background: var(--gradient-flame);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.video-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 70px rgba(255, 107, 53, 0.25),
        0 0 0 2px var(--temple-gold);
}

.video-card-enhanced:hover::before {
    opacity: 1;
}

/* Floating Live Badge */
.floating-live-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.5);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.live-pulse {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse-white 2s ease-in-out infinite;
}

@keyframes pulse-white {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.viewer-count .count {
    font-weight: 800;
}

/* Video Frame */
.video-frame-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--gradient-divine);
    overflow: hidden;
}

.video-frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

/* Video Info Box */
.video-info-box {
    padding: 35px;
}

.video-header-row {
    margin-bottom: 20px;
}

.temple-name-display {
    font-family: 'Lora', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--temple-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.temple-icon {
    font-size: 32px;
}

.temple-description-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0 0 30px 0;
    position: relative;
    padding: 0 30px;
}

.quote-icon {
    font-size: 12px;
    color: var(--temple-gold);
    opacity: 0.6;
}

.quote-icon:first-child {
    position: absolute;
    left: 0;
    top: 0;
}

.quote-icon:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Info Grid */
.darshan-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-tile {
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.8), rgba(255, 248, 240, 0.4));
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.info-tile:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(212, 165, 116, 0.1));
    border-color: var(--temple-gold);
    transform: translateY(-3px);
}

.tile-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-flame);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.tile-content {
    flex: 1;
}

.tile-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--temple-maroon);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.tile-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--temple-text);
    line-height: 1.4;
}

/* Action Buttons */
.darshan-action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-darshan-primary,
.btn-darshan-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-darshan-primary {
    background: #E85D00;
    color: white;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
    flex: 1;
}

.btn-darshan-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-darshan-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-darshan-primary:hover::before {
    left: 100%;
}

.btn-darshan-secondary {
    background: rgba(212, 165, 116, 0.1);
    color: var(--temple-maroon);
    border: 2px solid var(--temple-gold);
}

.btn-darshan-secondary:hover {
    background: var(--temple-gold);
    color: white;
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 18px;
}

.btn-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-darshan-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Card Bottom Glow */
.card-bottom-glow {
    height: 5px;
    background: var(--gradient-flame);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-card-enhanced:hover .card-bottom-glow {
    opacity: 1;
}

/* =====================================================
   FEATURES SIDEBAR
   ===================================================== */
.features-sidebar-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card-enhanced {
    background: var(--temple-white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 
        0 10px 35px var(--temple-shadow),
        0 0 0 1px rgba(212, 165, 116, 0.15);
    transition: all 0.4s ease;
}

.feature-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 45px rgba(255, 107, 53, 0.2),
        0 0 0 2px var(--temple-gold);
}

/* Feature Header */
.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 165, 116, 0.2);
}

.feature-icon-large {
    width: 55px;
    height: 55px;
    background: var(--gradient-flame);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    flex-shrink: 0;
}

.feature-icon-large svg {
    color: white;
}

.feature-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--temple-dark);
    margin: 0;
}

/* Feature Links List */
.feature-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 248, 240, 0.5);
    border-radius: 12px;
    text-decoration: none;
    color: var(--temple-text);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-link:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(212, 165, 116, 0.1));
    border-color: var(--temple-gold);
    transform: translateX(5px);
    color: var(--temple-maroon);
}

.link-icon {
    font-size: 20px;
}

.link-text {
    flex: 1;
}

.link-arrow {
    color: var(--temple-gold);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.feature-link:hover .link-arrow {
    transform: translateX(3px);
}

/* Highlights List */
.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    padding: 16px;
    background: rgba(255, 248, 240, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--temple-saffron);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(212, 165, 116, 0.1));
    border-left-color: var(--temple-maroon);
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 28px;
    line-height: 1;
}

.highlight-content {
    flex: 1;
}

.highlight-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--temple-dark);
    margin-bottom: 4px;
}

.highlight-desc {
    font-size: 13px;
    color: #666;
}

/* Contact Info */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--temple-text);
    padding: 12px;
    background: rgba(255, 248, 240, 0.5);
    border-radius: 10px;
}

.contact-item i {
    color: var(--temple-saffron);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.btn-contact-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gradient-flame);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-contact-full:hover {
    background: var(--gradient-divine);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .darshan-content-grid {
        grid-template-columns: 1fr 350px;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .live-darshan-showcase {
        padding: 80px 0;
    }
    
    .heading-title-darshan {
        font-size: 42px;
    }
    
    .darshan-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-sidebar-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        display: grid;
    }
}

@media (max-width: 768px) {
    .live-darshan-showcase {
        padding: 60px 0;
    }
    
    .heading-title-darshan {
        font-size: 36px;
    }
    
    .temple-subtitle {
        font-size: 16px;
    }
    
    .decorative-line-set .om-center {
        font-size: 16px;
    }
    
    .video-info-box {
        padding: 25px;
    }
    
    .temple-name-display {
        font-size: 24px;
    }
    
    .darshan-info-grid {
        grid-template-columns: 1fr;
    }
    
    .darshan-action-buttons {
        flex-direction: column;
    }
    
    .btn-darshan-primary,
    .btn-darshan-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .features-sidebar-modern {
        grid-template-columns: 1fr;
    }
    
    .floating-om {
        display: none;
    }
}

@media (max-width: 576px) {
    .heading-title-darshan {
        font-size: 30px;
    }
    
    .floating-live-badge {
        top: 15px;
        left: 15px;
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .viewer-count {
        padding-left: 10px;
    }
    
    .video-info-box {
        padding: 20px;
    }
    
    .temple-name-display {
        font-size: 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .temple-description-text {
        padding: 0 20px;
        font-size: 15px;
    }
}

/* =====================================================
   LOADING ANIMATION
   ===================================================== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-card-enhanced,
.feature-card-enhanced {
    animation: fade-in-up 0.6s ease-out both;
}

.feature-card-enhanced:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card-enhanced:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card-enhanced:nth-child(3) {
    animation-delay: 0.3s;
}


/* =====================================================
   ABOUT & PUJA SERVICES SECTIONS - TEMPLE DESIGN
   Matching Festival & Darshan Section Aesthetics
   ===================================================== */

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-showcase {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 50%, #FFF8F0 100%);
    overflow: hidden;
}

/* Background Pattern */
.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, var(--temple-saffron) 40px, var(--temple-saffron) 41px);
    pointer-events: none;
    z-index: 0;
}

/* Content Wrapper */
.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* =====================================================
   ABOUT TEXT SECTION
   ===================================================== */
.about-text-section {
    position: relative;
}

/* Decorative Top Element */
.about-decorative-top {
    display: inline-block;
    color: var(--temple-maroon);
    margin-bottom: 25px;
    animation: gentle-rotate 20s linear infinite;
}

@keyframes gentle-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Label Badge */
.about-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(212, 165, 116, 0.1));
    border: 2px solid var(--temple-gold);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--temple-maroon);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.badge-icon {
    font-size: 18px;
}

/* Main Heading */
.about-main-heading {
    font-family: 'Lora', 'Merriweather', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--temple-dark);
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Decorative Line */
.about-decorative-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.line-segment {
    width: 80px;
    height: 3px;
    background: var(--gradient-flame);
    border-radius: 2px;
}

.line-dot {
    width: 8px;
    height: 8px;
    background: var(--temple-maroon);
    border-radius: 50%;
}

/* Description Text */
.about-description-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    max-width: 550px;
}

/* Info Highlights */
.about-info-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 248, 240, 0.8);
    border: 1px solid var(--temple-gold);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--temple-text);
    transition: all 0.3s ease;
}

.highlight-badge:hover {
    background: var(--gradient-flame);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.highlight-badge i {
    font-size: 16px;
}

/* Primary Button */
.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--gradient-divine);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-about-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-about-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-about-primary:hover::before {
    left: 100%;
}

.btn-icon-left,
.btn-icon-right {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-about-primary:hover .btn-icon-right {
    transform: translateX(5px);
}

/* =====================================================
   ABOUT IMAGE SECTION
   ===================================================== */
.about-image-section {
    position: relative;
}

.image-wrapper-enhanced {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px var(--temple-shadow),
        0 0 0 1px rgba(212, 165, 116, 0.2);
    transition: all 0.5s ease;
}

/*.image-wrapper-enhanced:hover {*/
/*    transform: translateY(-10px);*/
/*    box-shadow: */
/*        0 30px 80px rgba(255, 107, 53, 0.3),*/
/*        0 0 0 3px var(--temple-gold);*/
/*}*/

/* Decorative Frame Corners */
.image-frame-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 4px solid var(--temple-gold);
    transition: all 0.3s ease;
}

.frame-top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 15px;
}

.frame-top-right {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 15px;
}

.frame-bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 15px;
}

.frame-bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 15px;
}

.image-wrapper-enhanced:hover .frame-corner {
    border-color: white;
}

/* Main Temple Image */
.about-temple-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.image-wrapper-enhanced:hover .about-temple-image {
    /*transform: scale(1.05);*/
}

/* Image Overlay Badge */
.image-overlay-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon-large {
    font-size: 36px;
}

.badge-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--temple-dark);
}

/* Gradient Overlay */
.image-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.4), transparent);
    pointer-events: none;
    z-index: 1;
}

/* =====================================================
   FESTIVALS SHOWCASE SECTION - TEMPLE DESIGN
   Distinctive, Production-Grade Temple Website UI
   ===================================================== */

:root {
    /* Temple Color Palette - Updated */
    --temple-primary-orange: #E85D00;
    --temple-primary-blue: #1C538E;
    --temple-cream: #FFF9F5;
    --temple-white: #FFFFFF;
    --temple-dark: #1C2838;
    --temple-text: #4A5568;
    --temple-light-gray: #F5F7FA;
    --temple-shadow: rgba(28, 83, 142, 0.12);
    
    /* Gradient Definitions */
    --gradient-flame: linear-gradient(135deg, #E85D00 0%, #F27B35 50%, #FFAA4C 100%);
    --gradient-divine: linear-gradient(135deg, #1C538E 0%, #2D6BA8 100%);
    --gradient-light: linear-gradient(180deg, rgba(255, 249, 245, 0) 0%, rgba(255, 249, 245, 1) 100%);
}

/* =====================================================
   MAIN SECTION CONTAINER
   ===================================================== */
.festivals-showcase {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 50%, #FFF9F5 100%);
    overflow: hidden;
    min-height: auto;
}

@media (min-width: 768px) {
    .festivals-showcase {
        padding: 100px 0;
    }
}

/* Background Decorative Pattern */
.bg-pattern-temple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--temple-saffron) 35px, var(--temple-saffron) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--temple-gold) 35px, var(--temple-gold) 36px);
    pointer-events: none;
    z-index: 0;
}

/* Floating Lotus Elements */
.floating-lotus {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='30' fill='%23FF6B35'/%3E%3Cpath d='M50 20 Q60 35 50 50 Q40 35 50 20 Z' fill='%23FF6B35'/%3E%3Cpath d='M80 50 Q65 60 50 50 Q65 40 80 50 Z' fill='%23FF6B35'/%3E%3Cpath d='M50 80 Q40 65 50 50 Q60 65 50 80 Z' fill='%23FF6B35'/%3E%3Cpath d='M20 50 Q35 40 50 50 Q35 60 20 50 Z' fill='%23FF6B35'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.floating-lotus-1 {
    top: 10%;
    left: 5%;
    animation: float-gentle 15s ease-in-out infinite;
}

.floating-lotus-2 {
    bottom: 15%;
    right: 8%;
    animation: float-gentle 20s ease-in-out infinite reverse;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(0, -40px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(-5deg);
    }
}

/* =====================================================
   SECTION HEADER STYLING
   ===================================================== */
.section-header-temple {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

/* Decorative Swastik Symbol */
.decorative-swastik {
    display: inline-block;
    color: var(--temple-primary-orange);
    margin-bottom: 25px;
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

/* Festival Main Heading */
.festival-main-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 25px 0;
}

.sanskrit-label {
    font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--temple-primary-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
}

.heading-title {
    font-family: 'Lora', 'Merriweather', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--temple-primary-blue);
    line-height: 1.2;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .heading-title {
        font-size: 44px;
    }
}

@media (min-width: 1024px) {
    .heading-title {
        font-size: 48px;
    }
}

/* Decorative Line with Om Symbol */
.decorative-line-set {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.decorative-line-set .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--temple-primary-orange), transparent);
}

.decorative-line-set .om-center {
    font-size: 24px;
    font-weight: 700;
    color: var(--temple-primary-blue);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* =====================================================
   FESTIVALS GRID LAYOUT
   ===================================================== */
.festivals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .festivals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }
}

@media (min-width: 1024px) {
    .festivals-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }
}

/* =====================================================
   FESTIVAL CARD DESIGN
   ===================================================== */
.festival-card-modern {
    background: var(--temple-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(28, 83, 142, 0.1),
        0 0 0 1px rgba(232, 93, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.festival-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-flame);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.festival-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(232, 93, 0, 0.2),
        0 0 0 2px var(--temple-primary-orange);
}

.festival-card-modern:hover::before {
    opacity: 1;
}

/* =====================================================
   FESTIVAL IMAGE CONTAINER
   ===================================================== */
.festival-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--gradient-divine);
}

.festival-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.festival-card-modern:hover .festival-img {
    transform: scale(1.15);
}

/* Festival Placeholder for Missing Images */
.festival-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-divine);
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    color: var(--temple-white);
}

.gradient-bg-1 {
    background: linear-gradient(135deg, #FF6B35 0%, #FF9142 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #8B0000 0%, #D4A574 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #FFB347 0%, #FF6B35 100%);
}

/* Date Badge with Traditional Style */
.date-badge-traditional {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}

.badge-inner {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 
        0 8px 24px rgba(28, 83, 142, 0.2),
        0 0 0 2px var(--temple-primary-orange);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    animation: badge-entrance 0.6s ease-out 0.2s both;
}

@keyframes badge-entrance {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.date-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: var(--temple-primary-blue);
    font-family: 'Playfair Display', Georgia, serif;
}

.date-month {
    font-size: 12px;
    font-weight: 700;
    color: var(--temple-primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.date-range-indicator {
    font-size: 12px;
    color: var(--temple-text);
    margin-top: 4px;
    font-weight: 600;
}

.date-range-indicator::before {
    content: '→ ';
}

/* Event Type Label */
.event-type-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(232, 93, 0, 0.95);
    color: var(--temple-white);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(232, 93, 0, 0.3);
    z-index: 5;
    animation: slide-in-left 0.5s ease-out;
}

@keyframes slide-in-left {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =====================================================
   FESTIVAL CONTENT BOX
   ===================================================== */
.festival-content-box {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

/* Full Date Display */
.festival-date-full {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.festival-date-full i {
    color: var(--temple-saffron);
    font-size: 15px;
}

.date-separator {
    margin: 0 8px;
    color: var(--temple-gold);
    font-weight: 700;
}

/* Festival Title */
.festival-title-text {
    font-family: 'Lora', 'Merriweather', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--temple-primary-blue);
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.festival-card-modern:hover .festival-title-text {
    color: var(--temple-primary-orange);
}

/* Description */
.festival-description-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    flex: 1;
}

/* Timing Information */
.festival-timing-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(232, 93, 0, 0.15);
    font-size: 13px;
    color: var(--temple-text);
    font-weight: 600;
}

.festival-timing-info i {
    color: var(--temple-primary-orange);
    font-size: 14px;
}

.time-text {
    color: #555;
}

/* Recurring Badge */
.recurring-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px;
    background: linear-gradient(135deg, rgba(232, 93, 0, 0.08), rgba(28, 83, 142, 0.08));
    border: 1px solid var(--temple-primary-orange);
    border-radius: 18px;
    font-size: 11px;
    font-weight: 600;
    color: var(--temple-primary-orange);
    width: fit-content;
}

.recurring-badge i {
    font-size: 11px;
}

/* Card Bottom Decoration */
.card-bottom-decoration {
    height: 4px;
    background: var(--gradient-flame);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.festival-card-modern:hover .card-bottom-decoration {
    opacity: 1;
}

/* =====================================================
   CALENDAR CTA SECTION
   ===================================================== */
.calendar-cta-section {
    text-align: center;
    position: relative;
    z-index: 2;
}

.calendar-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: var(--gradient-divine);
    color: var(--temple-white);
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 
        0 10px 30px rgba(28, 83, 142, 0.3),
        0 0 0 1px rgba(232, 93, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.calendar-view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.calendar-view-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 18px 50px rgba(255, 107, 53, 0.5),
        0 0 0 3px var(--temple-gold);
    color: var(--temple-white);
}

.calendar-view-btn:hover::before {
    left: 100%;
}

.btn-icon-left,
.btn-icon-right {
    display: flex;
    align-items: center;
    font-size: 20px;
    transition: transform 0.4s ease;
}

.btn-icon-left svg {
    width: 24px;
    height: 24px;
}

.calendar-view-btn:hover .btn-icon-right {
    transform: translateX(6px);
}

.calendar-view-btn:hover .btn-icon-left {
    transform: rotate(360deg);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .festivals-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .festivals-showcase {
        padding: 80px 0;
    }
    
    .heading-title {
        font-size: 42px;
    }
    
    .festivals-grid {
        gap: 30px;
    }
    
    .festival-image-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .festivals-showcase {
        padding: 60px 0;
    }
    
    .section-header-temple {
        margin-bottom: 50px;
    }
    
    .heading-title {
        font-size: 36px;
    }
    
    .sanskrit-label {
        font-size: 14px;
        letter-spacing: 3px;
    }
    
    .decorative-line-set {
        gap: 15px;
    }
    
    .decorative-line-set .om-center {
        font-size: 28px;
    }
    
    .festivals-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .festival-image-container {
        height: 230px;
    }
    
    .festival-title-text {
        font-size: 24px;
    }
    
    .calendar-view-btn {
        padding: 18px 35px;
        font-size: 16px;
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    
    .floating-lotus {
        display: none;
    }
}

@media (max-width: 576px) {
    .heading-title {
        font-size: 30px;
    }
    
    .festival-content-box {
        padding: 24px;
    }
    
    .date-badge-traditional {
        top: 15px;
        right: 15px;
    }
    
    .badge-inner {
        padding: 14px 18px;
        min-width: 70px;
    }
    
    .date-number {
        font-size: 32px;
    }
    
    .event-type-label {
        top: 15px;
        left: 15px;
        font-size: 11px;
        padding: 7px 15px;
    }
    
    .festival-title-text {
        font-size: 22px;
    }
    
    .festival-description-text {
        font-size: 14px;
    }
    
    .calendar-view-btn {
        padding: 16px 30px;
        font-size: 15px;
        gap: 12px;
    }
}

/* =====================================================
   LOADING ANIMATIONS
   ===================================================== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.festival-card-modern {
    animation: fade-in-up 0.6s ease-out both;
}

.festival-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.festival-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.festival-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .festivals-showcase {
        background: white;
        padding: 20px 0;
    }
    
    .bg-pattern-temple,
    .floating-lotus,
    .calendar-cta-section {
        display: none;
    }
    
    .festival-card-modern {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 20px;
    }
}


/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-showcase {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 50%, #FFF8F0 100%);
    overflow: hidden;
}

/* CTA Wrapper */
.cta-wrapper-enhanced {
    position: relative;
    background: #E85D00;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 80px 60px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

/* Decorative Top Mandala */
.cta-decorative-top {
    text-align: center;
    margin-bottom: 35px;
}

.cta-mandala {
    color: rgba(255, 255, 255, 0.8);
    animation: mandala-rotate 30s linear infinite;
}

@keyframes mandala-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* =====================================================
   CTA CONTENT
   ===================================================== */
.cta-content-enhanced {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Badge Label */
.cta-badge-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 18px;
}

/* Main Title */
.cta-main-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Decorative Line */
.cta-decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.cta-decorative-line .line-segment {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.cta-decorative-line .line-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Subtitle */
.cta-subtitle-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Highlights */
.cta-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cta-highlight-item i {
    font-size: 18px;
}

/* =====================================================
   CTA BUTTONS
   ===================================================== */
.cta-buttons-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: white;
    color: var(--temple-maroon);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-flame);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-cta-primary:hover {
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}

.btn-cta-primary:hover::before {
    left: 0;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--temple-maroon);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.3);
}

.btn-icon-right {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-icon-right,
.btn-cta-secondary:hover .btn-icon-right {
    transform: translateX(5px);
}

/* =====================================================
   CTA DECORATIVE ELEMENTS
   ===================================================== */
.cta-decorative-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
    opacity: 0.3;
}

.decorative-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q300,100 600,50 T1200,50 L1200,120 L0,120 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: cover;
    animation: wave-flow 15s linear infinite;
}

@keyframes wave-flow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-600px);
    }
}

/* Background Glow */
.cta-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Floating Diyas */
.floating-diya,
.floating-om-cta {
    position: absolute;
    font-size: 100px;
    opacity: 0.08;
    pointer-events: none;
    color: white;
}

.floating-diya-1 {
    top: 10%;
    left: 5%;
    animation: float-gentle 18s ease-in-out infinite;
}

.floating-diya-2 {
    bottom: 10%;
    right: 5%;
    animation: float-gentle 22s ease-in-out infinite reverse;
}

.floating-om-cta {
    top: 50%;
    right: 10%;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 150px;
    opacity: 0.05;
    animation: float-gentle 25s ease-in-out infinite;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-showcase,
    .cta-showcase {
        padding: 80px 0;
    }

    .heading-title-services,
    .cta-main-title {
        font-size: 42px;
    }

    .cta-wrapper-enhanced {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .services-showcase,
    .cta-showcase {
        padding: 60px 0;
    }

    .heading-title-services,
    .cta-main-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card-modern {
        min-height: 320px;
    }

    .cta-wrapper-enhanced {
        padding: 50px 30px;
    }

    .cta-subtitle-text {
        font-size: 18px;
    }

    .cta-highlights {
        gap: 15px;
    }

    .cta-buttons-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .floating-flower,
    .floating-diya,
    .floating-om-cta {
        display: none;
    }
}

@media (max-width: 576px) {
    .heading-title-services,
    .cta-main-title {
        font-size: 30px;
    }

    .service-card-modern {
        padding: 35px 25px;
        min-height: 300px;
    }

    .service-icon-circle {
        width: 100px;
        height: 100px;
    }

    .service-icon-img {
        width: 50px;
        height: 50px;
    }

    .cta-wrapper-enhanced {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-subtitle-text {
        font-size: 16px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* =====================================================
   LOADING ANIMATIONS
   ===================================================== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-wrapper {
    animation: fade-in-up 0.6s ease-out both;
}

.service-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}

.cta-wrapper-enhanced {
    animation: fade-in-up 0.8s ease-out both;
}


/* =====================================================
   PUJA SERVICES SECTION
   ===================================================== */
.puja-services-showcase {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 50%, #FFF8F0 100%);
    overflow: hidden;
}

/* Background Pattern */
.puja-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--temple-saffron) 35px, var(--temple-saffron) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--temple-gold) 35px, var(--temple-gold) 36px);
    pointer-events: none;
    z-index: 0;
}

/* Floating Bells */
.floating-bell {
    position: absolute;
    font-size: 80px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.floating-bell-1 {
    top: 10%;
    left: 5%;
    animation: float-gentle 18s ease-in-out infinite;
}

.floating-bell-2 {
    bottom: 15%;
    right: 8%;
    animation: float-gentle 22s ease-in-out infinite reverse;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -15px) rotate(3deg);
    }
    50% {
        transform: translate(0, -30px) rotate(0deg);
    }
    75% {
        transform: translate(-15px, -15px) rotate(-3deg);
    }
}

/* =====================================================
   PUJA SECTION HEADER
   ===================================================== */
.section-header-puja {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

/* Diya Symbol */
.decorative-diya {
    display: inline-block;
    color: var(--temple-saffron);
    margin-bottom: 20px;
    animation: diya-flicker 3s ease-in-out infinite;
}

@keyframes diya-flicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

/* Puja Heading */
.puja-main-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 25px 0;
}

.puja-label {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--temple-saffron);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.heading-title-puja {
    font-family: 'Lora', 'Merriweather', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--temple-dark);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.puja-subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

/* Decorative Line */
.decorative-line-set {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.decorative-line-set .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--temple-gold), transparent);
}

.decorative-line-set .om-center {
    font-size: 32px;
    font-weight: 700;
    color: var(--temple-maroon);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* =====================================================
   PUJA CARDS GRID
   ===================================================== */
.puja-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Puja Card Wrapper */
.puja-card-wrapper {
    perspective: 1000px;
}

/* Puja Card Modern */
.puja-card-modern {
    background: white;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px var(--temple-shadow),
        0 0 0 1px rgba(212, 165, 116, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.puja-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.puja-card-modern:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: 
        0 25px 70px rgba(255, 107, 53, 0.3),
        0 0 0 2px var(--temple-gold);
}

.puja-card-modern:hover::before {
    opacity: 1;
}

/* Popular Ribbon */
.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-flame);
    color: white;
    padding: 8px 45px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    z-index: 3;
}

.ribbon-icon {
    margin-right: 5px;
}

/* Card Header with Icon */
.puja-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.puja-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--card-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.4s ease;
}

.puja-card-modern:hover .puja-icon-circle {
    transform: scale(1.15) rotate(360deg);
}

/* Card Body */
.puja-card-body {
    text-align: center;
    margin-bottom: 25px;
    flex: 1;
}

.puja-card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--temple-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.puja-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Price Section */
.puja-price-section {
    text-align: center;
    margin-bottom: 25px;
}

.price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    padding: 0px 30px 10px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(212, 165, 116, 0.1));
    border: 2px solid var(--temple-gold);
    border-radius: 20px;
}

.currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--temple-maroon);
}

.amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--temple-dark);
}

/* Card Footer */
.puja-card-footer {
    margin-top: auto;
}

.btn-puja-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: var(--temple-orange);
    color: white;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-puja-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    color: white;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-puja-book:hover .btn-arrow {
    transform: translateX(5px);
}

/* Card Glow Effect */
.card-glow-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--card-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.puja-card-modern:hover .card-glow-effect {
    opacity: 1;
}

/* =====================================================
   VIEW ALL BUTTON
   ===================================================== */
.puja-cta-section {
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-view-all-pujas {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 45px;
    background: var(--gradient-divine);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 
        0 12px 35px rgba(139, 0, 0, 0.4),
        0 0 0 2px rgba(212, 165, 116, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-view-all-pujas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-view-all-pujas:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 18px 50px rgba(255, 107, 53, 0.5),
        0 0 0 3px var(--temple-gold);
    color: white;
}

.btn-view-all-pujas:hover::before {
    left: 100%;
}

.btn-view-all-pujas .btn-icon-right {
    transition: transform 0.4s ease;
}

.btn-view-all-pujas:hover .btn-icon-right {
    transform: translateX(6px);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .about-content-wrapper {
        gap: 60px;
    }
    
    .puja-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 992px) {
    .about-showcase,
    .puja-services-showcase {
        padding: 80px 0;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-main-heading,
    .heading-title-puja {
        font-size: 42px;
    }
    
    .puja-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-showcase,
    .puja-services-showcase {
        padding: 60px 0;
    }
    
    .about-main-heading,
    .heading-title-puja {
        font-size: 36px;
    }
    
    .about-description-text {
        font-size: 16px;
    }
    
    .puja-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .btn-about-primary,
    .btn-view-all-pujas {
        padding: 16px 35px;
        font-size: 15px;
    }
    
    .floating-bell {
        display: none;
    }
}

@media (max-width: 576px) {
    .about-main-heading,
    .heading-title-puja {
        font-size: 30px;
    }
    
    .about-info-highlights {
        flex-direction: column;
    }
    
    .highlight-badge {
        width: 100%;
        justify-content: center;
    }
    
    .btn-about-primary {
        width: 100%;
        justify-content: center;
    }
    
    .image-overlay-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .badge-icon-large {
        font-size: 28px;
    }
    
    .badge-title {
        font-size: 16px;
    }
    
    .puja-card-modern {
        min-height: 350px;
    }
    
    .btn-view-all-pujas {
        width: 100%;
        max-width: 400px;
    }
}

/* =====================================================
   LOADING ANIMATIONS
   ===================================================== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-text-section,
.about-image-section {
    animation: fade-in-up 0.8s ease-out both;
}

.about-image-section {
    animation-delay: 0.2s;
}

.puja-card-wrapper {
    animation: fade-in-up 0.6s ease-out both;
}

.puja-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.puja-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.puja-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.puja-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}

.puja-card-bottom {
    
   padding:0px 28px 35px 28px; 
    
}
.puja-image-container img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    
}
