/* Image Slider Styles */
.image-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    margin-bottom: 10px;
}

.image-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.image-slider .slide.active {
    opacity: 1;
}

.image-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 10s infinite;
}

.image-slider .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 77, 153, 0.75) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 30px 50px;
    border-radius: 15px;
    border: 2px solid rgba(255, 204, 0, 0.3);
    text-align: center;
    font-size: 2em;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(255, 204, 0, 0.1);
    animation: fadeInText 2s ease-in-out, pulseGlow 3s ease-in-out infinite;
}

/* Partner Logos Section */
.center-image,
.centre-image2,
.right-image {
    max-width: 100%;
    height: auto;
    padding: 20px;
    transition: transform 0.3s ease;
}

.center-image:hover,
.centre-image2:hover,
.right-image:hover {
    transform: scale(1.05);
}

/* Content Section */
.content {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    animation: fadeIn 2s;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 10px;
    
}

.content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #003366;
    font-family: 'Playfair Display', Georgia, serif;
}

.content p {
    font-size: 1.2em;
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-word;
    color: #333;
    font-family: 'Inter', sans-serif;
}

/* Organizers Section */
.organizers-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
    color: #fff;
    text-align: center;
    animation: fadeIn 2s;
    margin-top: 20px;
}

.organizers-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    margin-top: 0px;
    color: #ffcc00;
    font-family: 'Playfair Display', Georgia, serif;
}

.organizers-section .organizer-main {
    font-size: 2em;
    font-weight: bold;
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
}

.organizers-section .organizer-partner {
    font-size: 1.3em;
    font-style: italic;
    margin: 15px 0;
    margin-bottom: 0px;
    color: #ffcc00;
}

.organizers-section .organizer-institution {
    font-size: 2em;
    font-weight: bold;
    margin: 20px 0;
    color: white;
    font-family: 'Playfair Display', Georgia, serif;
}

.organizers-section .organizer-sub {
    font-size: 1.3em;
    margin: 10px 0;
    color: #e6e6e6;
}

/* Keyframe Animations */
@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                    0 0 20px rgba(255, 204, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                    0 0 30px rgba(255, 204, 0, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-slider {
        height: 60vh;
    }
    
    .image-slider .text-overlay {
        font-size: 1.5em;
        padding: 15px 30px;
    }
    
    .content h2 {
        font-size: 2em;
    }
    
    .content p {
        font-size: 1em;
    }
    
    .organizers-section h2 {
        font-size: 2em;
    }
    
    .organizers-section .organizer-main,
    .organizers-section .organizer-institution {
        font-size: 1.5em;
    }
    
    .organizers-section .organizer-partner {
        font-size: 1.1em;
    }
    
    .organizers-section .organizer-sub {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .image-slider {
        height: 50vh;
    }
    
    .image-slider .text-overlay {
        font-size: 1.2em;
        padding: 10px 20px;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    .content h2 {
        font-size: 1.8em;
    }
    
    .organizers-section {
        padding: 40px 15px;
    }
}
