/* .event-section {
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.event-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.event-poster {
    flex: 1;
    max-width: 280px;
}

.event-poster img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 10px;
}

.event-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-animation {
    width: 250px;
    height: 250px;
}

#lottie-event {
    width: 100%;
    height: 100%;
}

.event-details {
    margin-top: 20px;
    max-width: 700px;
}

.event-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #8c1515;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.event-button:hover {
    background-color: #a03737;
} */


.event-section {
    padding: 40px 80px;
    background: linear-gradient(135deg, #fdf2f2, #ffffff);
    text-align: center;
    border-top: 5px solid #c43910;
    border-bottom: 5px solid #c43910;
}

.news-title {
    font-size: 2.5rem;
    color: #8c1515;
    margin-bottom: 40px;
    border: none; /* removes any border if applied */
    box-shadow: none; /* removes shadow if any */
    pointer-events: none; /* disables hover effects */
}

.glow-title {
    text-shadow: 0 0 10px #c43910, 0 0 20px #fdf2f2;
    /* animation: pulseGlow 2.5s ease-in-out infinite; */
}


.event-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

.event-poster {
    flex: 1;
    max-width: 280px;
    animation: float 3s ease-in-out infinite;
}

.event-poster img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.event-right {
    flex: 2;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff0f0;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(200, 55, 55, 0.2);
}

.event-animation {
    width: 700px;
    margin-bottom: 20px;
    position: relative;
}

.glow-box {
    box-shadow: 0 0 25px #c43910;
    border-radius: 50%;
    animation: pulseGlow 3s infinite alternate;
    background: #fdf2f2;
}

.fallback-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.event-details {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 1000px;
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.event-details p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 20px;
    /* margin-top: 20px; */
}

.event-button {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 12px 24px;
    background-color: #8c1515;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 12px #8c151566;
    transition: all 0.3s ease;
    align-self: center;
}

.event-button:hover {
    background-color: #8c151566;
    box-shadow: 0 0 15px #fdf2f2;
}

.glow-button {
    animation: pulseGlow 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%   { box-shadow: 0 0 10px #8c1515; }
    50%  { box-shadow: 0 0 20px #a81515; }
    100% { box-shadow: 0 0 10px #8c1515; }
}


@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .event-section {
      padding: 20px 16px; /* Reduced padding for mobile */
    }
  }
  
    .gallery-wrapper {
        text-align: center;
        padding: 20px;
    }

    .gallery-heading {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 30px;
        color: #8c1515;
    }

    .gallery-row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 20px;
        overflow-x: auto;
    }

    .image-container {
        position: relative;
        width: 200px;
        flex-shrink: 0;
        cursor: pointer;
    }

    .image-container img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }

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

    .image-popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        z-index: 1000;
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        opacity: 0;
        pointer-events: none;
    }

    .image-popup.active {
        display: block;
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    .image-popup img {
        width: 80vw;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 10px;
    }
    .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 2rem;
        color: #333;
        cursor: pointer;
        z-index: 1001;
        background: white;
        border-radius: 50%;
        padding: 0 10px;
        line-height: 1;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        transition: background 0.2s;
    }

    .close-btn:hover {
        background: #eee;
    }

