/* --- Highlights Styling --- */
.highlights-section {
    padding: 60px 5%;
    background: #fff;
}

.highlights-container {
    display: flex;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    height: 500px; /* Fixed height for desktop */
}

/* 75% Side: Gallery */
.event-gallery {
    flex: 0 0 75%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(10, 61, 98, 0.9));
    color: white;
    z-index: 3;
}

.gallery-overlay .tag {
    background: var(--accent-gold, #f1c40f);
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.gallery-overlay h3 {
    margin-top: 12px;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Dots Styling */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 40px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.dot.active {
    background: var(--accent-gold, #f1c40f);
    width: 30px;
    border-radius: 10px;
}

/* 25% Side: Action Panel */
.action-panel {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    flex: 1;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-blue, #0a3d62);
    transition: all 0.3s ease;
    text-align: center;
    padding: 10px;
}

.action-btn i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-blue, #0a3d62);
}

.action-btn span {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0 10px;
}

.action-btn:hover {
    background: var(--primary-blue, #0a3d62);
    color: #fff;
    transform: translateX(-5px);
    box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
}

.action-btn:hover i {
    color: #fff;
}

/* GR Button Special Style */
.gr-btn {
    background: #fffdf0;
    border-color: #f1c40f;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .highlights-container {
        flex-direction: column;
        height: auto;
    }
    .event-gallery {
        flex: 0 0 100%;
        height: 350px;
    }
    .action-panel {
        flex: 0 0 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        height: auto;
    }
    .action-btn {
        padding: 20px 10px;
    }
}

@media (max-width: 650px) {
    .action-panel {
        grid-template-columns: 1fr;
    }
    .gallery-overlay h3 {
        font-size: 1.4rem;
    }
}
/* सुरुवातीला सर्व स्लाईड्स लपवलेल्या असतील */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

/* महत्वाची ओळ: पहिली स्लाईड CSS मुळेच लगेच दिसेल, JS ची वाट पाहणार नाही */
.slide:first-child {
    opacity: 1;
    z-index: 2;
}

/* जेव्हा JS 'active' क्लास लावेल तेव्हा हे काम करेल */
.slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 40px;
            font-weight: 700;
        }
        