/* ============================================
   World of Travel, Trade & Taste EXPO 2025
   Modern CSS - Optimized for Namecheap
   ============================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    width: 100%;
    min-height: 100%;
    background: #232323;
    color: #666666;
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Smooth scrolling for all elements */
* {
    scroll-behavior: smooth;
}

/* Fade-in animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

/* Global rounded corners for all images */
img {
    border-radius: 12px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 20px;
    color: #f5b800;
}

h3 {
    font-size: 20px;
}

p, div.paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

a {
    color: #2a92e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2180cc;
}

/* ===== HEADER & NAVIGATION ===== */
.birdseye-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(35, 35, 35, 0.95);
    padding: 15px 30px;
    transition: all 0.3s ease;
    backface-visibility: hidden;
}

.birdseye-header.affix {
    background: rgba(35, 35, 35, 0.98);
    padding: 10px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap;
}

/* Ensure hamburger menu is visible when desktop nav is hidden */
@media (max-width: 1400px) {
    .header-container {
        gap: 20px;
    }
    
    .logo {
        flex-shrink: 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.logo a {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    white-space: nowrap;
}

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

/* ===== NAVIGATION MENU ===== */
.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
    margin: 0 3px;
}

.nav-menu > li > a {
    display: block;
    padding: 10px 15px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 3px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== DROPDOWN MENU ===== */
.nav-menu li.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #232323;
    list-style: none;
    padding: 10px 0;
    margin-top: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dropdown-menu[style*="display: block"] {
    opacity: 1;
}

/* Add invisible bridge to prevent dropdown from disappearing */
.nav-menu li.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
    z-index: 1000;
    pointer-events: none;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #0a0a0a;
    color: #f5b800;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10000;
    order: 2; /* Place after logo */
}

/* Show hamburger menu when screen is not wide enough to fit all menu items */
@media (max-width: 1400px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mobile-nav {
        display: none;
    }
    
    .mobile-nav.active {
        display: block;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(35, 35, 35, 0.98);
    z-index: 9999;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav .nav-menu {
    flex-direction: column;
    gap: 0;
}

.mobile-nav .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .nav-menu > li > a {
    padding: 15px 0;
    border: none;
    border-radius: 0;
}

.mobile-nav .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0;
}

.mobile-nav .dropdown-menu a {
    padding-left: 30px;
}

/* ===== BANNER/HERO SECTION ===== */
.banner-wrap {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-attachment: fixed;
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.banner-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Remove black band/border under banner */
.banner-wrap {
    border-bottom: none !important;
    box-shadow: none !important;
    overflow: hidden;
}

.banner-wrap::after {
    display: none !important;
}

/* Ensure no borders between banner and main content */
.main-wrap {
    border-top: none !important;
    box-shadow: none !important;
    position: relative;
}

.container {
    border-top: none !important;
}

/* Remove any potential black borders from banner images */
.banner-wrap {
    border-bottom: none !important;
    box-shadow: none !important;
    overflow: hidden;
    position: relative;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 120px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border: 2px solid;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #f5b800;
    color: #ffffff;
    border-color: #f5b800;
}

.btn-primary:hover {
    background: transparent;
    color: #f5b800;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #232323;
}

/* ===== MAIN CONTENT ===== */
.main-wrap {
    width: 100%;
    background: #ffffff;
    padding: 0 40px 0 40px;
    margin-top: 0;
    margin-bottom: 0;
    border-top: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-section:first-of-type {
    margin-top: 0;
    padding-top: 10px;
}

/* Remove margin from last content section before footer */
.content-section:last-of-type {
    margin-bottom: 0 !important;
}

.content-section h2 {
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer-wrap {
    margin-top: 0 !important;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 25px 0;
    font-size: 0.75rem;
    line-height: 1.3;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-wrap p,
.footer-wrap li,
.footer-wrap a,
.footer-wrap h3,
.footer-wrap h4 {
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 6px;
    font-weight: bold;
}

.footer-wrap h3,
.footer-wrap h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-wrap ul {
    margin-bottom: 15px;
}

.footer-wrap li {
    margin-bottom: 6px;
}

.footer-column h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3b3b3b;
    color: #ffffff;
    font-size: 14px;
}

.footer-column p,
.footer-column div.paragraph {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.footer-column a {
    color: #ffffff;
    transition: color 0.3s ease;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #3b3b3b;
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-wrap p {
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 6px;
    font-weight: bold;
}

.footer-wrap a {
    font-weight: bold;
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Medium screens - show hamburger menu (already handled above at 1400px) */

/* Small screens - mobile styles */
@media screen and (max-width: 768px) {

    .banner-content h1 {
        font-size: 20px;
    }

    .banner-content p {
        font-size: 14px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 20px;
    }

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

@media screen and (max-width: 480px) {
    .birdseye-header {
        padding: 10px 15px;
    }

    .logo a {
        font-size: 18px;
    }

    .banner-content {
        padding: 100px 15px 60px;
    }

    .banner-content h1 {
        font-size: 20px;
    }

    .main-wrap {
        padding: 0 20px 40px 20px;
    }
    
    .container {
        padding: 0 20px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    color: #2a2a2a;
    font-weight: 600;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #f5b800;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== VIDEO BANNER ===== */
.video-banner {
    position: relative;
    width: 100%;
    min-height: 60vh;
    max-height: 70vh;
    overflow: hidden;
    margin-bottom: 0;
    background: none !important;
    background-image: none !important;
}

.banner-video {
    position: absolute;
    top: -10%;
    left: 50%;
    min-width: 100%;
    width: auto;
    height: 120%;
    transform: translateX(-50%);
    z-index: 0;
    object-fit: cover;
    object-position: center 15%;
    will-change: opacity; /* GPU acceleration hint */
    backface-visibility: hidden; /* Prevent flickering */
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d; /* GPU acceleration */
}

/* Add overlay gradient to hide bottom black borders from video */
.video-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98), transparent);
    z-index: 2;
    pointer-events: none;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.video-banner .banner-content {
    position: relative;
    z-index: 2;
}

/* Hero Logo Section - Minimal spacing below image, white background */
.hero-logo-section {
    margin: 0 !important;
    padding: 20px 0 5px 0 !important;
    background: #ffffff !important;
}

.hero-logo-section img {
    max-width: 600px;
    width: auto;
    height: auto;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
}

/* ===== REGISTRATION CARDS ===== */
.registration-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 900px;
    padding: 0 20px;
}

.reg-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    will-change: transform, box-shadow;
}

.reg-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.reg-card-image a {
    display: block;
    width: 100%;
    height: 180px;
}

.reg-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.reg-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin: 0;
    display: block;
    background: #f5f5f5;
    position: relative;
}

.reg-card-image img {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 180px !important;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reg-card:hover .reg-card-image img {
    transform: scale(1.1);
}
    object-position: center;
    border-radius: 12px;
    display: block;
}

.reg-card-content {
    padding: 20px;
    padding-top: 25px;
    margin-top: 0;
}

.reg-card-content h3 {
    margin: 0;
    margin-top: 10px;
    font-size: 20px;
    color: #2a2a2a;
    line-height: 1.4;
}

.reg-card-content a {
    color: #2a2a2a;
    text-decoration: none;
}

.reg-card-content a:hover {
    color: #f5b800;
}

/* ===== FEATURE CARDS ===== */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
    max-width: 900px;
    padding: 0 20px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
}

.feature-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.feature-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin: 0;
    display: block;
    background: #f5f5f5;
    position: relative;
}

.feature-card-image a {
    display: block;
    width: 100%;
    height: 180px;
}

.feature-card-image img {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 180px !important;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card-image img {
    transform: scale(1.1);
}

.feature-card-content {
    padding: 20px;
}

.feature-card-content h3 {
    margin: 0;
    font-size: 20px;
    color: #ffbf00;
}

.feature-card-content a {
    text-decoration: none;
}

/* ===== ACTIVITIES GRID ===== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.activity-item {
    text-align: center;
}

.activity-item img {
    width: 100%;
    max-width: 465px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* ===== MEDIA PARTNERS GRID ===== */
.media-partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.media-partner-column {
    padding: 20px;
}

.media-partner-column ul {
    list-style: none;
    padding-left: 0;
}

.media-partner-column ul li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===== PARTNERS CAROUSEL ===== */
.partners-carousel {
    margin: 40px 0;
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    overflow: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: max-content;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 200px;
    height: 150px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    will-change: transform;
}

.carousel-slide:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
    border-radius: 8px;
}

.carousel-slide:hover img {
    filter: grayscale(0%);
}

/* Carousel buttons and dots removed - auto-play only */

/* ===== RESPONSIVE UPDATES ===== */
@media screen and (max-width: 968px) {
    .registration-cards,
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .media-partners-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .registration-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 0 15px;
    }
    
    .feature-card-image {
        height: 150px;
    }
    
    .feature-card-image a {
        display: block;
        width: 100%;
        height: 150px;
    }
    
    .feature-card-image img {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 150px !important;
    }
    
    .feature-card-content {
        padding: 20px;
    }
    
    .feature-card-content h3 {
        font-size: 20px;
    }
    
    .feature-card {
        max-width: 100%;
    }
    
    .reg-card-image {
        width: 100%;
        height: 150px;
    }
    
    .reg-card-image {
        height: 150px;
    }
    
    .reg-card-image a {
        display: block;
        width: 100%;
        height: 150px;
    }
    
    .reg-card-image img {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 150px !important;
    }
    
    .registration-cards {
        max-width: 400px;
        padding: 0 15px;
    }
    
    .reg-card {
        max-width: 100%;
    }
    
    .feature-card-image {
        height: 150px;
    }
    
    .feature-card-image a {
        display: block;
        width: 100%;
        height: 150px;
    }
    
    .feature-card-image img {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 150px !important;
    }
    
    .feature-card-content {
        padding: 20px;
    }
    
    .feature-card-content h3 {
        font-size: 20px;
    }
    
    .feature-cards {
        max-width: 400px;
        padding: 0 15px;
    }
    
    .feature-card {
        max-width: 100%;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-slide {
        width: 150px;
        height: 120px;
        margin: 0 10px;
    }
    
    /* Carousel buttons removed */
}

/* ===== EXPO PAGE SPECIFIC STYLES ===== */

/* Expo Intro Content */
.expo-intro-content {
    margin-top: 30px;
}

.expo-intro-content h3 {
    font-size: 20px;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.expo-intro-content h3:first-child {
    margin-top: 0;
}

.expo-intro-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.highlight-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #04049e;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}


.highlight-card h4 {
    font-size: 20px;
    color: #04049e;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.highlight-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.speaker-callout {
    background: linear-gradient(135deg, #04049e 0%, #012367 100%);
    color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(4, 4, 158, 0.2);
}

.speaker-callout p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Tourism Benefits Grid */
.tourism-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #04049e 0%, #012367 100%);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}


.benefit-card h3 {
    font-size: 20px;
    color: #04049e;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.tourism-summary {
    background: #f8f9fa;
    padding: 35px 40px;
    border-radius: 12px;
    margin-top: 50px;
    border-left: 5px solid #04049e;
    text-align: center;
}

.tourism-summary p {
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Event Details Section */
.event-details-section {
    margin: 40px 0 30px;
    padding: 0 20px;
}

.event-details-card {
    background: linear-gradient(135deg, #001a4d 0%, #000d33 100%);
    color: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 26, 77, 0.4);
    max-width: 600px;
    margin: 0 auto;
}

.event-details-card h3 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.event-info-item {
    display: block;
}


.event-info-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
    color: #ffbf00;
    text-align: center;
}

.event-info-item p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.event-info-item a {
    color: #ffffff;
    text-decoration: underline;
}

.event-info-item a:hover {
    color: #ffbf00;
}

/* Responsive adjustments for EXPO page */
@media (max-width: 768px) {
    .expo-intro-content h3 {
        font-size: 20px;
    }
    
    .expo-intro-content p {
        font-size: 0.95rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-card {
        padding: 25px 20px;
    }
    
    .tourism-benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .tourism-summary {
        padding: 25px 20px;
    }
    
    .event-details-card {
        padding: 25px 20px;
        max-width: 90%;
    }
    
    .event-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .speaker-callout {
        padding: 25px 20px;
    }
}

/* ===== ABOUT US PAGE STYLES ===== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: left;
}

.about-content p:first-child {
    margin-top: 0;
}

/* Travel Gallery */
.travel-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Media Links Grid */
.media-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.media-link-btn {
    display: inline-block;
    padding: 15px 25px;
    background: linear-gradient(135deg, #04049e 0%, #001a4d 100%);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(4, 4, 158, 0.3);
    cursor: pointer;
    pointer-events: auto;
}

.media-link-btn:hover {
    background: linear-gradient(135deg, #001a4d 0%, #04049e 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(4, 4, 158, 0.4);
    color: #ffffff;
}

.media-links-list {
    margin-top: 20px;
}

.media-links-list p {
    margin-bottom: 10px;
    break-inside: avoid;
}

@media (max-width: 768px) {
    .media-links-list {
        column-count: 1 !important;
    }
}

@media (max-width: 768px) {
    .media-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .media-link-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item {
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
    user-select: none;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .travel-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
}

/* ===== IMAGE LOADING OPTIMIZATION ===== */
/* Base image styles */
img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.4s ease-in-out;
    will-change: opacity;
}

/* Lazy loaded images - fade in when loaded */
img[loading="lazy"]:not(.loaded) {
    opacity: 0.3;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Critical images (above fold) - load immediately, no fade */
img[loading="eager"],
img[fetchpriority="high"] {
    opacity: 1;
}

/* Error state */
img.error {
    opacity: 1;
    filter: grayscale(20%);
}

/* Smooth loading placeholder for lazy images */
img[loading="lazy"]:not(.loaded)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f5f5f5 25%, #e8e8e8 50%, #f5f5f5 75%);
    background-size: 200% 100%;
    animation: imageLoading 1.5s infinite;
    z-index: -1;
}

@keyframes imageLoading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

img[loading="lazy"].loaded::before {
    display: none;
}


