.utsav-section {
    background: linear-gradient(135deg, #FFF4E5 0%, #FFE6D5 50%, #FFD9C0 100%);
    padding: 100px 0;
    border-top: 3px solid rgba(216, 67, 21, 0.2);
}

.utsav-section .utsav-heading-sub {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #C5A880;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    margin-bottom: 20px;
    text-align: center;
}

.utsav-section .utsav-heading-main {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: #1C1C1E;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.utsav-section .utsav-card {
    background: #FFFFFF;
    border: 1.5px solid rgba(216, 67, 21, 0.18);
    border-radius: 60px 16px 60px 16px;
    padding: 24px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(140, 29, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.utsav-section .utsav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(216, 67, 21, 0.18);
    border-color: #D84315;
}

.utsav-section .utsav-card-image {
    position: relative;
    border-radius: 45px 12px 45px 12px;
    overflow: hidden;
    margin-bottom: 24px;
    height: 250px;
}

.utsav-section .utsav-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.utsav-section .utsav-card:hover .utsav-card-image img {
    transform: scale(1.06);
}

.utsav-section .utsav-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 245, 235, 0.94);
    border: 1px solid #C5A880;
    color: #C5A880;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    text-transform: uppercase;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.utsav-section .utsav-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #1C1C1E;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.utsav-section .utsav-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
}

.utsav-section .utsav-meta-box {
    background: #FFF9F3;
    border-radius: 6px;
    padding: 20px;
    border-left: 3px solid #C5A880;
    margin-bottom: 25px;
}

.utsav-section .meta-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.utsav-section .meta-item:last-child {
    margin-bottom: 0;
}

.utsav-section .meta-icon {
    color: #C5A880;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 2px;
}

.utsav-section .meta-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #4A4A4A;
}

.utsav-section .meta-text strong {
    color: #1C1C1E;
    display: block;
    margin-bottom: 2px;
}

.utsav-section .utsav-footer-note {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: #C5A880;
    margin-top: 15px;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding-top: 15px;
}

@media (max-width: 991.98px) {
    .utsav-section {
        padding: 60px 0;
    }
    
    .utsav-section .utsav-heading-main {
        font-size: 2.2rem;
    }
    
    .utsav-section .utsav-card {
        padding: 35px 25px;
        margin-bottom: 30px;
    }
    
    .utsav-section .utsav-title {
        font-size: 1.65rem;
        padding-right: 0;
        margin-top: 35px; /* prevent tag overlap on narrow screens */
    }
}

/* ==========================================================================
   Divine Golden Diya Flame Sparks & Festive Bell Ringing Effect (#utsav)
   ========================================================================== */
.utsav-section {
    position: relative;
    overflow: hidden;
}

/* Floating Diya Flame Sparks Canvas Overlay */
.utsav-sparks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.utsav-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #FFD700 0%, #FF9800 60%, rgba(255, 152, 0, 0) 100%);
    border-radius: 50%;
    box-shadow: 0 0 12px #FFD700, 0 0 20px #FF9800;
    pointer-events: none;
    animation: floatDiyaSpark 6s linear infinite;
    opacity: 0;
}

@keyframes floatDiyaSpark {
    0% {
        transform: translateY(100%) scale(0.4) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.85;
    }
    80% {
        opacity: 0.65;
    }
    100% {
        transform: translateY(-100px) scale(1.4) rotate(360deg);
        opacity: 0;
    }
}

/* Festive Card Golden Aura Pulse & Brass Bell Badge */
.utsav-section .utsav-card {
    position: relative;
    z-index: 2;
}

.utsav-section .utsav-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(216, 67, 21, 0.22), 0 0 35px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.7);
}

.utsav-card-bell-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FFD700 0%, #D84315 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(216, 67, 21, 0.35);
    z-index: 4;
    transition: all 0.4s ease;
}

.utsav-section .utsav-card:hover .utsav-card-bell-badge {
    animation: ringFestivalBell 0.7s ease infinite alternate;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
}

@keyframes ringFestivalBell {
    0% { transform: rotate(0deg) scale(1.15); }
    25% { transform: rotate(18deg) scale(1.2); }
    75% { transform: rotate(-18deg) scale(1.2); }
    100% { transform: rotate(0deg) scale(1.15); }
}
