/* CSS Variables for Mango-Inspired Theme */
:root {
    --mango-yellow: #FFC324;
    --sunset-orange: #FF6F1D;
    --deep-green: #3A7D44;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6b7280;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--mango-yellow), var(--sunset-orange));
    --gradient-accent: linear-gradient(135deg, var(--sunset-orange), var(--deep-green));
    --gradient-hero: linear-gradient(135deg, #FFD700, #FFA500, #FF6347, #FF4500);
    --gradient-section: linear-gradient(135deg, #f8f9fa, #e3f2fd, #fff3e0);
    --gradient-card: linear-gradient(145deg, #ffffff, #f5f5f5);
    --gradient-button: linear-gradient(135deg, #FF6F1D, #FF8E53, #FFA726);
    --gradient-text: linear-gradient(135deg, #FF6F1D, #3A7D44, #FFC324);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 0;
}








.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 80px;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
}



.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-name {
    display: flex;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
}

.international {
    color: #1565C0;
    text-shadow: 0 1px 3px rgba(21, 101, 192, 0.3);
}

.mango {
    color: #FF9800;
    text-shadow: 0 1px 3px rgba(255, 152, 0, 0.3);
}

.carnival {
    color: #2E7D32;
    text-shadow: 0 1px 3px rgba(46, 125, 50, 0.3);
}


.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-end;
}










.nav-link {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.01em;
}




.cta-button {
    background: #FF6F1D;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.01em;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1f2937;
    margin: 3px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, rgba(255,195,36,0.1), rgba(255,111,29,0.1)), 
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), 
                url('stage-performance.png');
    background-size: 400% 400%, cover, contain;
    background-position: 0% 50%, center, center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    animation: heroBackground 15s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,195,36,0.2) 0%, transparent 30%, rgba(255,111,29,0.15) 70%, transparent 100%);
    animation: shimmerOverlay 12s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,195,36,0.1) 0%, transparent 50%);
    animation: floatingOrb 20s linear infinite;
    z-index: 1;
}

@keyframes heroBackground {
    0%, 100% { background-position: 0% 50%, center, center; }
    25% { background-position: 100% 25%, center, center; }
    50% { background-position: 100% 100%, center, center; }
    75% { background-position: 0% 75%, center, center; }
}

@keyframes floatingOrb {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shimmerOverlay {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes float {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3) translateY(50px); }
    50% { opacity: 1; transform: scale(1.05) translateY(-10px); }
    70% { transform: scale(0.95) translateY(0px); }
    100% { opacity: 1; transform: scale(1) translateY(0px); }
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: heroFloat 6s ease-in-out infinite;
}

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


.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.hero-subtitle {
    font-size: 2.2rem !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 1), 3px 3px 10px rgba(0, 0, 0, 1), 1px 1px 5px rgba(0, 0, 0, 1) !important;
    font-weight: 900 !important;
    background: transparent !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    display: inline-block !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 1000 !important;
    position: relative !important;
    text-align: center !important;
    letter-spacing: 1px !important;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-style: italic;
}

/* Countdown Timer */
.countdown-container {
    margin: 3rem 0;
    perspective: 1000px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: countdownFloat 8s ease-in-out infinite;
}

@keyframes countdownFloat {
    0%, 100% { transform: translateY(0px); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(0px); }
    75% { transform: translateY(-5px); }
}

.time-unit {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.time-unit label {
    font-size: 0.8rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--deep-green), #388E3C);
    color: var(--white);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 25px rgba(58, 125, 68, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 125, 68, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-green);
    border: 2px solid var(--deep-green);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(58, 125, 68, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--deep-green), #388E3C);
    color: var(--white);
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(58, 125, 68, 0.4);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(58, 125, 68, 0.4);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    transform: translateY(-2px);
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsGlow 6s ease-in-out infinite;
}

@keyframes buttonsGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

/* About Section Image */
.about-festival-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-festival-image:hover {
    transform: scale(1.02);
}

/* Cultural Performances Section */
.cultural-performances {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 248, 240, 0.8), rgba(255, 255, 255, 0.9));
}

.performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.stage-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.stage-image:hover {
    transform: scale(1.02);
}

.performance-details h3 {
    color: var(--deep-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.performance-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--deep-green);
}

.feature-with-image {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem;
}

.feature-image {
    flex: 0 0 150px;
}

.performance-feature-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.performance-feature-image:hover {
    transform: scale(1.05);
}

.feature-content {
    flex: 1;
}

.feature h4 {
    color: var(--deep-green);
    margin-bottom: 0.5rem;
}

/* Highlight Card with Image */
.highlight-with-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-image {
    flex: 1;
}

.highlight-stage-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-text {
    flex: 1;
}

@media (max-width: 768px) {
    .performance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlight-with-image {
        flex-direction: column;
    }
    
    .highlight-stage-image {
        height: 120px;
    }
    
    .feature-with-image {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-image {
        flex: none;
    }
    
    .performance-feature-image {
        height: 120px;
        width: 100%;
    }
}

/* Quick Facts */
.quick-facts {
    background: linear-gradient(135deg, #ffffff, #fff8f0, #f0f8ff);
    padding: 4rem 0;
    border-bottom: none;
    box-shadow: inset 0 10px 30px rgba(255, 195, 36, 0.05);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.fact-item h3 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.fact-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff, #fffbf5, #f8fff8);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,195,36,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--deep-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.image-placeholder {
    background: var(--gradient-accent);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Countries Section */
.countries {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f8ff, #fff0e6, #f0fff0, #fffaf0);
    position: relative;
}

.countries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(58,125,68,0.1) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(255,111,29,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
    margin: 0 auto;
    max-width: 1200px;
}

.country-card {
    background: linear-gradient(145deg, #ffffff, #fefefe);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 195, 36, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid transparent;
    background-image: linear-gradient(145deg, #ffffff, #fefefe), linear-gradient(135deg, var(--mango-yellow), var(--sunset-orange));
    background-origin: border-box;
    background-clip: content-box, border-box;
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,195,36,0.1), transparent);
    transition: left 0.6s;
}

.country-card:hover::before {
    left: 100%;
}

.country-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 195, 36, 0.25);
}

.country-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.country-flag {
    font-size: 2.5rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mango-visual {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(15deg);
    transition: all 0.3s ease;
}

.country-card:hover .mango-visual {
    opacity: 0.3;
    transform: rotate(25deg) scale(1.1);
}

.mango-variety {
    background: linear-gradient(135deg, rgba(255, 195, 36, 0.2), rgba(255, 111, 29, 0.1));
    padding: 0.8rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--deep-green);
    margin-top: 1rem;
    border: 1px solid rgba(255, 195, 36, 0.3);
    text-align: center;
}

.country-card h4 {
    color: var(--deep-green);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.country-card p {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.country-card strong {
    color: var(--deep-green);
    font-weight: 600;
}

.india-showcase {
    grid-column: 1 / -1;
    padding: 3rem;
    background: linear-gradient(145deg, #fff8e1, #ffffff);
    border: 3px solid var(--mango-yellow);
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 195, 36, 0.15);
}

.philippines-showcase {
    grid-column: 1 / -1;
    padding: 3rem;
    background: linear-gradient(145deg, #fff3e0, #ffffff);
    border: 2px solid var(--sunset-orange);
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 111, 29, 0.15);
}

.thailand-showcase {
    grid-column: 1 / -1;
    padding: 3rem;
    background: linear-gradient(145deg, #f8fff0, #ffffff);
    border: 2px solid var(--deep-green);
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(58, 125, 68, 0.15);
}

.pakistan-showcase {
    grid-column: 1 / -1;
    padding: 3rem;
    background: linear-gradient(145deg, #f0fdf4, #ffffff);
    border: 2px solid #16a34a;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
}

.mexico-showcase {
    grid-column: 1 / -1;
    padding: 3rem;
    background: linear-gradient(145deg, #fef7f0, #ffffff);
    border: 2px solid #dc2626;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.brazil-showcase {
    grid-column: 1 / -1;
    padding: 3rem;
    background: linear-gradient(145deg, #f0fff4, #ffffff);
    border: 2px solid #16a34a;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
}

.vietnam-showcase {
    grid-column: 1 / -1;
    padding: 3rem;
    background: linear-gradient(145deg, #fef2f2, #ffffff);
    border: 2px solid #dc2626;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.egypt-showcase {
    grid-column: 1 / -1;
    padding: 3rem;
    background: linear-gradient(145deg, #fffbeb, #ffffff);
    border: 2px solid #f59e0b;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.country-image {
    margin: 1.5rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 195, 36, 0.3);
}

.country-featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.country-featured-image:hover {
    transform: scale(1.05);
}

.country-description {
    margin: 1.5rem 0;
    line-height: 1.6;
}

.country-description p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

.country-description strong {
    color: var(--deep-green);
}

/* Highlights Section */
.highlights {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff, #fff5f0, #f5fff5);
    position: relative;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,195,36,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: linear-gradient(145deg, #FFD700, #FFA500, #FF6347);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 111, 29, 0.3);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 111, 29, 0.4);
}

.highlight-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
}

.highlight-card p {
    line-height: 1.7;
    opacity: 1;
    color: var(--white);
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Program Section */
.program {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.program-days {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.day-schedule {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.day-schedule h3 {
    color: var(--deep-green);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.schedule-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .time {
    font-weight: 600;
    color: var(--sunset-orange);
    min-width: 80px;
}

.schedule-item .event {
    color: var(--text-dark);
}

/* Visitor Info Section */
.visitor-info {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff, #f8fff8, #fff8f0);
    position: relative;
}

.visitor-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(58,125,68,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(145deg, #2E7D32, #388E3C, #4CAF50);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(58, 125, 68, 0.3);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: right 0.5s;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(58, 125, 68, 0.4);
}

.info-card:hover::before {
    right: 100%;
}

.info-card h4 {
    color: var(--mango-yellow);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.info-card p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-card strong {
    color: var(--mango-yellow);
}

/* Stall Holders */
.stall-holders {
    padding: 5rem 0;
    background: var(--gradient-section);
}

.stall-content {
    max-width: 800px;
    margin: 0 auto;
}

.stall-info h3 {
    color: var(--sunset-orange);
    margin-bottom: 1rem;
}

.stall-info h4 {
    color: var(--deep-green);
    margin: 2rem 0 1rem 0;
}

.stall-info ul {
    list-style: none;
    padding: 0;
}

.stall-info li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.stall-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--deep-green);
    font-weight: bold;
}

/* Why Sponsor */
.why-sponsor {
    padding: 5rem 0;
    background: white;
}

.sponsor-content {
    max-width: 900px;
    margin: 0 auto;
}

.sponsor-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.sponsor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: var(--gradient-card);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h4 {
    color: var(--sunset-orange);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f8ff, #fff0e6, #f8f9fa);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(255,111,29,0.1) 0%, transparent 50%), radial-gradient(circle at 30% 80%, rgba(255,195,36,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-item h4 {
    color: var(--deep-green);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sunset-orange);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--mango-yellow);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--mango-yellow);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        min-height: 70px;
    }

    .nav-center {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .logo-image {
        height: 40px;
        max-width: 200px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .time-unit {
        min-width: 80px;
        padding: 1rem;
    }

    .time-unit span {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-days {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fact-item h3 {
        font-size: 2rem;
    }

    .countries-grid,
    .highlights-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .india-showcase,
    .philippines-showcase,
    .thailand-showcase,
    .pakistan-showcase,
    .mexico-showcase,
    .brazil-showcase,
    .vietnam-showcase,
    .egypt-showcase {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Enhanced Mobile-First Experience 
   ============================================ */

/* Mobile Phone Optimizations */
@media (max-width: 480px) {
    /* Mobile Navigation Enhancement */
    .navbar {
        background: linear-gradient(135deg, rgba(255,195,36,0.98), rgba(255,111,29,0.98));
        backdrop-filter: blur(15px);
        border-bottom: 3px solid rgba(255, 195, 36, 0.5);
        padding: 1rem 0;
    }
    
    .nav-menu {
        background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,249,250,0.98));
        backdrop-filter: blur(20px);
        border-radius: 0 0 25px 25px;
        padding: 3rem 0;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        border: 3px solid rgba(255, 195, 36, 0.4);
        border-top: none;
    }
    
    .nav-link {
        padding: 1.3rem 2rem;
        margin: 0.8rem 1rem;
        border-radius: 25px;
        background: linear-gradient(135deg, rgba(255,195,36,0.15), rgba(255,111,29,0.08));
        border: 2px solid transparent;
        transition: all 0.4s ease;
        font-weight: 700;
        font-size: 1.15rem;
        display: block;
        text-align: center;
    }
    
    .nav-link:hover, .nav-link:active {
        background: linear-gradient(135deg, var(--mango-yellow), var(--sunset-orange));
        color: var(--white) !important;
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 20px rgba(255, 111, 29, 0.5);
        border-color: rgba(255, 255, 255, 0.6);
    }
    
    .dropdown-menu {
        background: linear-gradient(135deg, rgba(255,248,240,0.98), rgba(255,255,255,0.98));
        border-radius: 20px;
        margin: 1rem;
        padding: 1.5rem 0;
        border: 2px solid rgba(255, 195, 36, 0.4);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .dropdown-item {
        padding: 1rem 2rem;
        margin: 0.5rem 1rem;
        border-radius: 15px;
        background: rgba(255, 195, 36, 0.08);
        transition: all 0.3s ease;
        font-weight: 600;
    }
    
    .dropdown-item:hover {
        background: linear-gradient(135deg, var(--mango-yellow), var(--sunset-orange));
        color: var(--white);
        transform: translateX(8px);
        box-shadow: 0 5px 15px rgba(255, 111, 29, 0.3);
    }
    
    .nav-toggle {
        padding: 15px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.4);
    }
    
    .nav-toggle .bar {
        width: 32px;
        height: 4px;
        border-radius: 2px;
        margin: 6px 0;
    }

    /* Mobile Hero Enhancement */
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
        padding: 3rem 0;
    }
    
    .hero-container {
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
        padding: 1rem 1.5rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.4;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
        line-height: 1.5;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Mobile Countdown Enhancement */
    .countdown-container {
        margin: 3rem 0;
    }
    
    .countdown {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 350px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .time-unit {
        padding: 1.8rem 1rem;
        background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,248,240,0.98));
        backdrop-filter: blur(15px);
        border-radius: 25px;
        border: 3px solid rgba(255, 195, 36, 0.5);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        transition: all 0.4s ease;
        text-align: center;
    }
    
    .time-unit:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 20px 50px rgba(255, 111, 29, 0.4);
        border-color: var(--sunset-orange);
    }

    .time-unit span {
        font-size: 2.2rem;
        font-weight: 900;
        background: linear-gradient(135deg, var(--sunset-orange), var(--mango-yellow));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        line-height: 1;
    }
    
    .time-unit label {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--deep-green);
        margin-top: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: block;
    }

    /* Mobile Button Enhancement */
    .cta-buttons {
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
        align-items: center;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        padding: 1.6rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 800;
        border-radius: 30px;
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        position: relative;
        overflow: hidden;
    }
    
    .btn:active {
        transform: scale(0.95);
    }
    
    .btn-primary:hover, .btn-secondary:hover, .btn-accent:hover {
        box-shadow: 0 15px 40px rgba(58, 125, 68, 0.5);
        transform: translateY(-3px);
    }

    /* Mobile Contact Enhancement */
    .contact-form {
        background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,249,250,0.98));
        padding: 3rem 2rem;
        border-radius: 30px;
        backdrop-filter: blur(20px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
        border: 3px solid rgba(255, 195, 36, 0.4);
    }
    
    .form-group {
        margin-bottom: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1.5rem 1.8rem;
        font-size: 1.1rem;
        border-radius: 20px;
        border: 3px solid rgba(255, 195, 36, 0.5);
        background: rgba(255, 255, 255, 0.98);
        transition: all 0.4s ease;
        min-height: 60px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        font-family: 'Open Sans', sans-serif;
        box-sizing: border-box;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--sunset-orange);
        box-shadow: 0 12px 30px rgba(255, 111, 29, 0.3);
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 1);
        outline: none;
    }
    
    .form-group textarea {
        min-height: 140px;
        resize: vertical;
        font-family: 'Open Sans', sans-serif;
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #999;
        font-weight: 500;
    }
}