/* ======================================
   HOME PAGE - MODERN DESIGN SYSTEM
   ====================================== */

/* CSS Variables for Consistency */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    --border-radius-xl: 25px;
}

/* ======================================
   HERO SLIDER SECTION
   ====================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide Animations */
.hero-slide.slide-in-right {
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.slide-in-left {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.slide-out-left {
    animation: slideOutLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.slide-out-right {
    animation: slideOutRight 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Overlay for text readability */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Slide Content */
.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-slide-inner {
    max-width: 900px;
    width: 100%;
    padding: 2rem;
    /* Add flexbox to control content distribution */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    /* Ensure content doesn't overflow */
    min-height: 0; /* Important for flexbox children */
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent badge from shrinking */
}

.hero-badge i {
    font-size: 1.2rem;
}

/* Slide Titles */
.hero-slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    flex-shrink: 0; /* Prevent title from shrinking */
}

.hero-slide-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    flex-shrink: 0; /* Prevent subtitle from shrinking */
}

.highlight-text {
    font-weight: 500;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Icon Feature */
.hero-icon-feature {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    animation: scaleIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hero Logo */
.hero-logo {
    margin: 0 auto 1.5rem;
    animation: fadeInDown 0.8s ease-out;
    flex-shrink: 0; /* Prevent logo from shrinking */
    max-height: 200px; /* Limit logo height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    max-width: 600px;
    width: 100%;
    height: auto;
    max-height: 180px; /* Prevent logo from being too tall */
    object-fit: contain; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
}

/* Hero CTAs */
.hero-slide-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0; /* Prevent actions from shrinking */
}

.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta-primary {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #667eea;
}

.hero-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.3);
    color: #764ba2;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-cta-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-cta i {
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-cta:hover i {
    transform: translateX(5px);
}

/* Shine Effect */
.hero-cta-shine {
    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.5s;
}

.hero-cta:hover .hero-cta-shine {
    left: 100%;
}

/* Features Grid */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-shrink: 1; /* Allow grid to shrink if needed */
    min-height: 0; /* Important for grid inside flexbox */
}

.hero-feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px; /* Ensure minimum height */
}

.hero-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-feature-item i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    flex-shrink: 0;
}

.hero-feature-item span {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
    flex-shrink: 1; /* Allow grid to shrink if needed */
    min-height: 0; /* Important for grid inside flexbox */
}

.hero-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px; /* Ensure minimum height */
}

.hero-stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
}

.hero-stat-item:hover .hero-stat-icon {
    transform: rotate(360deg) scale(1.1);
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Omani Rial SVG Icon */
.omani-rial-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Event Details */
.hero-event-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 1; /* Allow to shrink if needed */
    min-height: 0;
}

.hero-event-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px; /* Ensure minimum height */
}

.hero-event-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
}

.hero-event-item i {
    font-size: 2.5rem;
    min-width: 50px;
    flex-shrink: 0;
}

.hero-event-item div {
    text-align: right;
    flex: 1;
    min-width: 0; /* Allow text to wrap */
}

.hero-event-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.hero-event-item span {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
    word-wrap: break-word;
}

/* Navigation Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-slider-prev {
    left: 2rem;
}

.hero-slider-next {
    right: 2rem;
}

/* Dot Indicators */
.hero-slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-slider-dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

/* Progress Bar */
.hero-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.hero-slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width linear;
}

/* Tablet Optimizations */
@media (max-width: 992px) {
    .hero-logo img {
        max-width: 450px;
        max-height: 150px;
    }
    
    .hero-slide-inner {
        padding: 1.5rem;
        gap: 1.2rem;
    }
    
    .hero-slide-title {
        font-size: 2.5rem;
    }
    
    .hero-slide-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .hero-stats-grid {
        gap: 1.5rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }

    .hero-video {
        /* On mobile, show poster image instead of playing video */
        /* Video element remains visible but paused to display poster */
        pointer-events: none; /* Prevent interaction on mobile */
    }
    
    /* Add gradient overlay for mobile if poster image is not available */
    .hero-slide:first-child::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%
;
        height: 100%;
        background: linear-gradient(135deg, 
            rgba(102, 126, 234, 0.85) 0%, 
            rgba(118, 75, 162, 0.8) 50%,
            rgba(236, 72, 153, 0.75) 100%);
        z-index: 0;
        opacity: 0; /* Hidden by default */
    }
    
    /* Show gradient overlay on mobile when video is not playing */
    @supports not (backdrop-filter: blur(10px)) {
        .hero-slide:first-child::before {
            opacity: 0.3;
        }
    }
    
    .hero-slide-inner {
        padding: 1rem;
        gap: 1rem;
        max-height: 90vh; /* Prevent overflow on small screens */
    }

    .hero-slide-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .hero-slide-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-badge i {
        font-size: 0.9rem;
    }

    .hero-icon-feature {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-logo {
        margin-bottom: 1rem;
        max-height: 120px;
    }
    
    .hero-logo img {
        max-width: 250px;
        max-height: 100px;
    }

    .hero-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-slider-prev {
        left: 0.75rem;
    }

    .hero-slider-next {
        right: 0.75rem;
    }

    .hero-slider-dots {
        bottom: 1.5rem;
    }

    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .hero-feature-item {
        padding: 0.6rem 0.5rem;
        min-height: 80px;
    }

    .hero-feature-item i {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-feature-item span {
        font-size: 0.75rem;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .hero-stat-item {
        padding: 1.2rem;
        min-height: 120px;
    }
    
    .hero-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-stat-value {
        font-size: 1rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }

    .omani-rial-icon {
        width: 35px;
        height: 35px;
    }

    .hero-event-details {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .hero-event-item {
        padding: 0.75rem;
        gap: 1rem;
        min-height: 70px;
    }

    .hero-event-item i {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .hero-event-item strong {
        font-size: 1rem;
    }
    
    .hero-event-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-slide-inner {
        padding: 0.75rem;
        gap: 0.75rem;
        max-height: 95vh;
    }
    
    .hero-slide-title {
        font-size: 1.4rem;
    }

    .hero-slide-subtitle {
        font-size: 0.85rem;
    }

    .hero-slide-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        margin-top: 1rem;
    }
    
    .hero-feature-item {
        padding: 0.5rem 0.4rem;
        min-height: 70px;
    }
    
    .hero-feature-item i {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-feature-item span {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-top: 1rem;
    }
    
    .hero-stat-item {
        padding: 1rem 0.75rem;
        min-height: 100px;
    }
    
    .hero-stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-stat-value {
        font-size: 0.95rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
    
    .omani-rial-icon {
        width: 30px;
        height: 30px;
    }
    
    .hero-icon-feature {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .hero-logo {
        max-height: 100px;
    }
    
    .hero-logo img {
        max-width: 200px;
        max-height: 80px;
    }
}



/* ======================================
   CHALLENGES SECTION
   ====================================== */

.challenges-section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-top: var(--spacing-md);
}

/* Challenge Tabs */
.challenge-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.challenge-tab {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    color: #475569;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.challenge-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
    z-index: 0;
}

/* Creative Gradients for Each Tab */
.nav-item:nth-child(1) .challenge-tab::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Purple Dream */
}

.nav-item:nth-child(2) .challenge-tab::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); /* Pink Passion */
}

.nav-item:nth-child(3) .challenge-tab::before {
    background: linear-gradient(135deg, #434343 0%, #000000 100%); /* Elegant Black */
}

.nav-item:nth-child(4) .challenge-tab::before {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); /* Deep Emerald */
}

.nav-item:nth-child(5) .challenge-tab::before {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%); /* Intense Red-Orange */
}

.nav-item:nth-child(6) .challenge-tab::before {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); /* Deep Ocean */
}

.nav-item:nth-child(7) .challenge-tab::before {
    background: linear-gradient(135deg, #4568dc 0%, #b06ab3 100%); /* Purple Haze */
}

.nav-item:nth-child(8) .challenge-tab::before {
    background: linear-gradient(135deg, #DA22FF 0%, #9733EE 100%); /* Neon Purple */
}

.challenge-tab:hover::before {
    left: 0;
}

.challenge-tab:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Active State with Individual Colors */
.nav-item:nth-child(1) .challenge-tab.active,
.nav-item:nth-child(1) .challenge-tab.nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.nav-item:nth-child(2) .challenge-tab.active,
.nav-item:nth-child(2) .challenge-tab.nav-link.active {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

.nav-item:nth-child(3) .challenge-tab.active,
.nav-item:nth-child(3) .challenge-tab.nav-link.active {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.nav-item:nth-child(4) .challenge-tab.active,
.nav-item:nth-child(4) .challenge-tab.nav-link.active {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
}

.nav-item:nth-child(5) .challenge-tab.active,
.nav-item:nth-child(5) .challenge-tab.nav-link.active {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    box-shadow: 0 8px 25px rgba(255, 65, 108, 0.4);
}

.nav-item:nth-child(6) .challenge-tab.active,
.nav-item:nth-child(6) .challenge-tab.nav-link.active {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 8px 25px rgba(48, 207, 208, 0.4);
}

.nav-item:nth-child(7) .challenge-tab.active,
.nav-item:nth-child(7) .challenge-tab.nav-link.active {
    background: linear-gradient(135deg, #4568dc 0%, #b06ab3 100%);
    box-shadow: 0 8px 25px rgba(69, 104, 220, 0.4);
}

.nav-item:nth-child(8) .challenge-tab.active,
.nav-item:nth-child(8) .challenge-tab.nav-link.active {
    background: linear-gradient(135deg, #DA22FF 0%, #9733EE 100%);
    box-shadow: 0 8px 25px rgba(218, 34, 255, 0.4);
}

.challenge-tab.active {
    color: white;
    border-color: transparent;
}

.challenge-tab span {
    position: relative;
    z-index: 1;
}

/* Challenge Content Cards */
.challenge-content-card {
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--card-shadow);
    padding: var(--spacing-xl);
    transition: var(--transition-smooth);
    animation: fadeIn 0.6s ease-out;
}

.challenge-content-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.challenge-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid #f1f5f9;
}

.challenge-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.challenge-header .trophy-icon {
    font-size: 2rem;
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

/* Challenge Detail Cards */
.challenge-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.detail-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    border-left: 4px solid;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: currentColor;
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: var(--transition-smooth);
}

.detail-card:hover::before {
    transform: translate(20%, -20%) scale(1.5);
}

.detail-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.detail-card.overview { border-left-color: #3b82f6; color: #3b82f6; }
.detail-card.problem { border-left-color: #ef4444; color: #ef4444; }
.detail-card.importance { border-left-color: #10b981; color: #10b981; }
.detail-card.digital-gap { border-left-color: #06b6d4; color: #06b6d4; }
.detail-card.opportunities { border-left-color: #f59e0b; color: #f59e0b; }
.detail-card.tech-solutions { border-left-color: #8b5cf6; color: #8b5cf6; }
.detail-card.deliverables { border-left-color: #ec4899; color: #ec4899; }
.detail-card.mentors { border-left-color: #10b981; color: #10b981; }

.detail-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.detail-card-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius-sm);
    background: currentColor;
    color: white;
    opacity: 0.9;
}

.detail-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: inherit;
}

.detail-card p {
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

/* Challenge CTA */
.challenge-cta {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 2px solid #f1f5f9;
}

.challenge-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: var(--transition-smooth);
}

.challenge-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.challenge-cta-btn i {
    transition: var(--transition-bounce);
}

.challenge-cta-btn:hover i {
    transform: rotate(15deg) scale(1.2);
}

/* ======================================
   FEATURES SECTION
   ====================================== */

.features-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: var(--spacing-xl) 0;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
    border-color: #e2e8f0;
}

.feature-icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

.feature-card:nth-child(1) .feature-icon-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-card:nth-child(2) .feature-icon-container {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-card:nth-child(3) .feature-icon-container {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-icon-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: var(--border-radius-lg);
    background: inherit;
    opacity: 0;
    filter: blur(10px);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-container::after {
    opacity: 0.6;
}

.feature-card:hover .feature-icon-container {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    font-size: 3rem;
    color: white;
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(-5deg);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ======================================
   ANIMATIONS
   ====================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .challenge-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .challenge-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .detail-card-icon {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
    
    .detail-card h5 {
        font-size: 0.95rem;
    }
    
    .detail-card p {
        font-size: 0.85rem;
    }
    
    .feature-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0 60px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-cta {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .challenge-content-card {
        padding: 1rem;
    }
    
    .challenge-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .challenge-header h3 {
        font-size: 1.2rem;
    }
    
    .challenge-header .trophy-icon {
        font-size: 1.5rem;
    }
    
    .challenge-cta-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .feature-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon {
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
}

/* ======================================
   QUICK FACTS SECTION
   ====================================== */

.quick-facts-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.fact-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    height: 100%;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.fact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition-smooth);
}

.fact-card:hover .fact-icon {
    transform: scale(1.1) rotate(10deg);
}

.fact-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: var(--spacing-sm);
}

.fact-text {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* ======================================
   JOURNEY TIMELINE SECTION
   ====================================== */

.journey-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    right: 35px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
}

.timeline-content {
    background: #f8fafc;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    flex: 1;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: var(--spacing-sm);
}

.timeline-text {
    color: #64748b;
    margin: 0;
    line-height: 1.7;
}

/* ======================================
   BENEFITS SECTION
   ====================================== */

.benefits-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.benefit-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    border-top: 4px solid #6366f1;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: var(--transition-bounce);
}

.benefit-card:hover .benefit-icon {
    transform: rotate(10deg) scale(1.1);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: var(--spacing-sm);
}

.benefit-text {
    color: #64748b;
    margin: 0;
    line-height: 1.7;
}

/* ======================================
   UTILITY CLASSES
   ====================================== */

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-decoration {
    text-decoration: none !important;
}

/* ===================================
   Sponsors and Partners Section
   =================================== */

.entities-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.entities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.entities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.entity-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.entity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.entity-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.entity-item:hover::before {
    opacity: 1;
}

.entity-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
}

.entity-image-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.entity-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(0%);
    opacity: 0.85;
    transition: all 0.4s ease;
    will-change: transform, opacity;
}

.entity-item:hover .entity-image {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.entity-name {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    color: #2c3e50;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.entity-item:hover .entity-name {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 992px) {
    .entities-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .entity-item {
        padding: 1.5rem;
    }
    
    .entity-image-wrapper {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .entities-section {
        padding: 2rem 0;
    }
    
    .entities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .entity-item {
        padding: 0.75rem;
    }
    
    .entity-image-wrapper {
        height: 70px;
    }
    
    .entity-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .entities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .entity-item {
        padding: 1.5rem;
    }
    
    .entity-image-wrapper {
        height: 100px;
    }
}

/* Animation for scroll reveal */
.entities-grid.revealed .entity-item {
    animation: fadeInUp 0.6s ease forwards;
}

.entities-grid.revealed .entity-item:nth-child(1) { animation-delay: 0.1s; }
.entities-grid.revealed .entity-item:nth-child(2) { animation-delay: 0.2s; }
.entities-grid.revealed .entity-item:nth-child(3) { animation-delay: 0.3s; }
.entities-grid.revealed .entity-item:nth-child(4) { animation-delay: 0.4s; }
.entities-grid.revealed .entity-item:nth-child(5) { animation-delay: 0.5s; }
.entities-grid.revealed .entity-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Footer Section
   =================================== */

.main-footer {
    margin-top: 5rem;
    color: #ffffff;
}

/* Footer Top Section */
.footer-top {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

/* Footer Widget Title */
.footer-widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #667eea;
    padding-right: 5px;
}

.footer-links a::before {
    content: '◀';
    font-size: 0.6rem;
    margin-left: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
    align-items: flex-start;
}

.footer-contact i {
    color: #667eea;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

/* Organized By Section */
.footer-organized {
    background: rgba(15, 23, 42, 0.5);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.organized-content {
    text-align: center;
}

.organized-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.organizer-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.organizer-logo-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 250px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.organizer-logo-placeholder:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
}

.organizer-logo-placeholder i {
    font-size: 3rem;
    color: #667eea;
    opacity: 0.6;
}

.organizer-logo-placeholder span {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
}

.organized-note {
    color: #94a3b8;
    font-size: 0.9rem;
    font-style: italic;
}

.organized-note i {
    margin-left: 0.5rem;
    color: #667eea;
}

/* Footer Bottom */
.footer-bottom {
    background: #0f172a;
    padding: 1.5rem 0;
}

.copyright-text {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-bottom-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

.footer-bottom-links .separator {
    color: #475569;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-widget {
        margin-bottom: 2rem;
    }

    .organizers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .organizer-logo-placeholder {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .footer-logo h3 {
        font-size: 1.3rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }

    .footer-widget-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 0.85rem;
    }
    
    .footer-contact i {
        font-size: 0.95rem;
    }

    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .row > div {
        margin-bottom: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }
    
    .copyright-text,
    .footer-bottom-links a {
        font-size: 0.8rem;
    }

    .organizers-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .organized-title {
        font-size: 1.1rem;
    }

    .organizer-logo-placeholder {
        max-width: 100%;
        height: 120px;
        padding: 1.5rem;
    }
    
    .organizer-logo-placeholder i {
        font-size: 2.25rem;
    }
    
    .organizer-logo-placeholder span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 1.5rem 0 1rem;
    }

    .footer-widget {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo h3 {
        font-size: 1.2rem;
    }

    .footer-widget-title {
        font-size: 0.95rem;
    }
    
    .footer-widget-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-links {
        text-align: center;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 0.8rem;
    }

    .footer-contact {
        text-align: right;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .organized-title {
        font-size: 1rem;
    }
    
    .organizer-logo-placeholder {
        height: 100px;
        padding: 1.25rem;
    }
    
    .organizer-logo-placeholder i {
        font-size: 2rem;
    }
    
    .organizer-logo-placeholder span {
        font-size: 0.75rem;
    }
}

/* ===================================
   Common Section Styles
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 1.5rem;
}

/* ===================================
   About Section
   =================================== */

.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon i {
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-card p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
}

.about-stat {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-size: 1.1rem;
}

/* ===================================
   Schedule/Timeline Section
   =================================== */

.schedule-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.schedule-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
    min-height: 800px;
}

/* Central vertical line */
.schedule-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 50%;
    margin-left: -3px;
    width: 6px;
    background: #e2e8f0;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
    z-index: 1;
}

.schedule-item {
    position: relative;
    margin-bottom: 5rem;
    display: block;
    clear: both;
    min-height: 150px;
}

/* Even items (2, 4) - Right side */
.schedule-item:nth-child(even) .timeline-content {
    float: left;
    width: calc(50% - 60px);
    margin-right: auto;
}

/* Odd items (1, 3) - Left side */
.schedule-item:nth-child(odd) .timeline-content {
    float: right;
    width: calc(50% - 60px);
    margin-left: auto;
}

/* Marker Styling */
.schedule-item .timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    margin-left: -35px;
    width: 70px;
    height: 70px;
    background: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 0 0 8px #ffffff, 0 8px 25px rgba(102, 126, 234, 0.4);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.schedule-item:hover .timeline-marker {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 0 10px #ffffff, 0 12px 35px rgba(102, 126, 234, 0.5);
}

.schedule-item .timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Arrow pointing to center line - For odd items (right side) */
.schedule-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 45px;
    right: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent white;
}

/* Arrow pointing to center line - For even items (left side) */
.schedule-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 45px;
    left: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
}

.schedule-item .timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.schedule-item .timeline-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.schedule-item .timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.schedule-item .timeline-events {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-item .timeline-events li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #6c757d;
}

.schedule-item .timeline-events li:last-child {
    border-bottom: none;
}

.schedule-item .event-time {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
}


/* ===================================
   Awards Section
   =================================== */

.awards-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.awards-section .section-title,
.awards-section .section-subtitle {
    color: white;
}

.award-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.award-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.award-gold::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.award-silver::before {
    background: linear-gradient(90deg, #C0C0C0, #808080);
}

.award-bronze::before {
    background: linear-gradient(90deg, #CD7F32, #8B4513);
}

.award-rank {
    margin-bottom: 1.5rem;
}

.award-rank i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.award-gold .award-rank i {
    color: #FFD700;
}

.award-silver .award-rank i {
    color: #C0C0C0;
}

.award-bronze .award-rank i {
    color: #CD7F32;
}

.award-rank span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 0.5rem;
}

.award-prize {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 0.5rem;
}

.currency-icon {
    height: 2.43rem;
    width: auto;
    display: inline-block;
    vertical-align: baseline;
    margin: 0 0.3rem;
    margin-bottom: -0.2rem;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(21%) sepia(7%) saturate(1114%) hue-rotate(169deg) brightness(95%) contrast(88%);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

.award-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.award-benefits li {
    padding: 0.75rem 0;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.award-benefits i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Special Awards */
.special-award {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.special-award:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.special-award i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.special-award h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.special-award p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: white;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    margin-right: auto;
    margin-left: 1rem;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    color: #6c757d;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-contact {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-contact p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        right: 20px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        justify-content: flex-start;
        padding-right: 0;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
    }

    .timeline-marker {
        right: 20px;
        transform: none;
    }

    .award-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-section,
    .schedule-section,
    .awards-section,
    .faq-section {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .about-card,
    .about-stat {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .about-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-icon i {
        font-size: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
    }
    
    .about-card p {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }

    .event-time {
        min-width: auto;
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.85rem;
    }
    
    .award-rank i {
        font-size: 2.25rem;
    }
    
    .award-rank span {
        font-size: 1rem;
    }

    .award-prize .amount {
        font-size: 2rem;
    }
    
    .award-prize .currency {
        font-size: 1rem;
    }

    .currency-icon {
        height: 1.62rem;
    }
    
    .award-benefits li {
        font-size: 0.85rem;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .accordion-body {
        font-size: 0.85rem;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.2rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .about-card,
    .timeline-content {
        padding: 1rem;
    }
    
    .about-icon {
        width: 45px;
        height: 45px;
    }
    
    .about-icon i {
        font-size: 1.3rem;
    }
    
    .about-card h3 {
        font-size: 1rem;
    }
    
    .about-card p {
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }

    .timeline-marker {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-left: -32.5px;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }

    .award-card {
        padding: 1.5rem 1rem;
    }
    
    .award-rank i {
        font-size: 2rem;
    }
    
    .award-rank span {
        font-size: 0.95rem;
    }
    
    .award-prize .amount {
        font-size: 1.75rem;
    }
    
    .award-prize {
        padding: 1rem;
    }

    .special-award {
        padding: 1.25rem;
    }
    
    .special-award i {
        font-size: 2.25rem;
    }
    
    .special-award h4 {
        font-size: 1.1rem;
    }
    
    .special-award p {
        font-size: 0.85rem;
    }
}

/* ======================================
   TIMELINE DETAILS ENHANCEMENT
   ====================================== */

.timeline-details {
    margin: 1rem 0 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #64748b;
    background: rgba(99, 102, 241, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #6366f1;
}

.timeline-meta i {
    color: #6366f1;
    font-size: 1rem;
    min-width: 18px;
}

.timeline-meta span {
    font-weight: 500;
}

/* Mobile Optimizations for Timeline Details */
@media (max-width: 768px) {
    .timeline-title {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }
    
    .timeline-details {
        margin: 0.75rem 0 0.5rem 0;
        gap: 0.4rem;
    }
    
    .timeline-meta {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .timeline-meta i {
        font-size: 0.9rem;
        min-width: 16px;
    }
}

@media (max-width: 576px) {
    .timeline-title {
        font-size: 0.85rem !important;
        line-height: 1.3;
    }
    
    .timeline-details {
        gap: 0.35rem;
    }
    
    .timeline-meta {
        font-size: 0.75rem;
        padding: 0.35rem 0.5rem;
    }
    
    .timeline-meta i {
        font-size: 0.85rem;
        min-width: 14px;
    }
}

/* ======================================
   VISION SECTION - NEW DESIGN
   ====================================== */

/* Main Vision Card */
.vision-main-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vision-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.4);
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vision-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.vision-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.vision-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}

/* Vision Explanation Card */
.vision-explanation-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.vision-explanation-card:hover {
    border-color: #6366f1;
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.15);
    transform: translateY(-3px);
}

.explanation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.explanation-header i {
    font-size: 1.5rem;
    color: #6366f1;
}

.explanation-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.explanation-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.vision-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vision-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 12px;
    border-right: 4px solid #6366f1;
    transition: all 0.3s ease;
}

.vision-point:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    transform: translateX(-5px);
}

.vision-point i {
    color: #6366f1;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.vision-point span {
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
}

/* Objectives and Results Cards */
.objectives-card,
.results-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.objectives-card:hover,
.results-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.objectives-header,
.results-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #f1f5f9;
}

.objectives-icon,
.results-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.objectives-header h3,
.results-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.objectives-list,
.results-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.objective-item,
.result-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
}

.objective-item:hover,
.result-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-right-color: #6366f1;
    transform: translateX(-5px);
}

.objective-number,
.result-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.objective-item p,
.result-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .vision-main-card {
        padding: 2rem;
    }
    
    .vision-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .vision-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .vision-header h3 {
        font-size: 1.4rem;
    }
    
    .vision-description {
        font-size: 1rem;
    }
    
    .vision-explanation-card,
    .objectives-card,
    .results-card {
        padding: 1.5rem;
    }
    
    .explanation-header h4,
    .objectives-header h3,
    .results-header h3 {
        font-size: 1.2rem;
    }
    
    .explanation-intro {
        font-size: 0.95rem;
    }
    
    .vision-point {
        padding: 0.75rem;
    }
    
    .vision-point span,
    .objective-item p,
    .result-item p {
        font-size: 0.9rem;
    }
    
    .objectives-icon,
    .results-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .vision-main-card {
        padding: 1.5rem;
    }
    
    .vision-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .vision-header h3 {
        font-size: 1.2rem;
    }
    
    .vision-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .vision-explanation-card,
    .objectives-card,
    .results-card {
        padding: 1.25rem;
    }
    
    .explanation-header {
        gap: 0.75rem;
    }
    
    .explanation-header i {
        font-size: 1.2rem;
    }
    
    .explanation-header h4,
    .objectives-header h3,
    .results-header h3 {
        font-size: 1.1rem;
    }
    
    .explanation-intro {
        font-size: 0.85rem;
    }
    
    .vision-point {
        padding: 0.6rem;
        gap: 0.75rem;
    }
    
    .vision-point i {
        font-size: 1rem;
    }
    
    .vision-point span,
    .objective-item p,
    .result-item p {
        font-size: 0.85rem;
    }
    
    .objectives-icon,
    .results-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .objective-number,
    .result-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .objective-item,
    .result-item {
        padding: 1rem;
        gap: 0.75rem;
    }
}
