/* 1. CSS Imports */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&display=swap');

/* 2. CSS Variables */
:root {
    /* Colors */
    --primary: #00A040;
    --secondary: #2962FF;
    --accent: #00E5FF;
    --success: #00C853;
    --background: #FFFFFF;
    --surface: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;

     /* Accent Colors */
     --accent-gold: #FFB800;      /* Gold for highlights */
     --accent-teal: #00B8D4;      /* Teal for variety */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00A040 50%, #2962FF 100%);
    --gradient-accent: linear-gradient(135deg, #00C853 0%, #00E5FF 100%);
    --gradient-dark: linear-gradient(135deg, #004D40 0%, #00695C 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent-teal) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);

    /* Layout */
    --border-radius: 16px;
    --mobile: 320px;
    --tablet: 768px;
    --desktop: 1024px;


 /* Shadows */
 --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
 --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
 --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
 
 /* Typography */
 --font-primary: 'Space Grotesk', sans-serif;
 --font-secondary: 'Manrope', sans-serif;
 
 /* Border Radius */
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --radius-xl: 24px;
 --radius-full: 9999px;
 
 /* Transitions */
 --transition-fast: 0.2s ease;
 --transition-normal: 0.3s ease;
 --transition-slow: 0.5s ease;
 
 /* Spacing */
 --spacing-xs: 0.25rem;
 --spacing-sm: 0.5rem;
 --spacing-md: 1rem;
 --spacing-lg: 1.5rem;
 --spacing-xl: 2rem;
 --spacing-2xl: 2.5rem;
 --spacing-3xl: 3rem;
}

/* 3. Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Manrope', sans-serif;
}

/* Common Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle {
    color: var(--primary);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

/* Animation Performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}




/* Enhanced Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-xl);
    width: 95%;
    max-width: 650px;
    max-height: 90vh;
    position: relative;
    overflow-y: auto;
    padding: 3rem;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.popup-close {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    background: var(--neutral-200);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-600);
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.popup-close:hover {
    background: var(--neutral-300);
    color: var(--neutral-900);
    transform: translateZ(0) scale(1.1);
}

.popup-content h2 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.popup-subtitle {
    color: var(--neutral-600);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(145deg, white, var(--primary-light));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.stat-item:hover {
    transform: translateZ(0) translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--neutral-700);
    line-height: 1.4;
    font-weight: 500;
}

.popup-buttons {
    display: grid;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-200);
}

.popup-btn {
    width: 100%;
    padding: 1.125rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    letter-spacing: 0.3px;
}

.popup-btn.register {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 160, 64, 0.3);
}

.popup-btn.register:hover {
    transform: translateZ(0) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 160, 64, 0.4);
}

.popup-btn.exhibit {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(41, 98, 255, 0.3);
}

.popup-btn.exhibit:hover {
    transform: translateZ(0) translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 98, 255, 0.4);
}

.popup-btn.sponsor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.popup-btn.sponsor:hover {
    transform: translateZ(0) translateY(-2px);
    background: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.popup-btn.sponsor i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .popup-content {
        padding: 2.5rem 1.5rem;
        border-radius: var(--radius-lg);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .popup-content h2 {
        font-size: 2rem;
    }

    .popup-subtitle {
        font-size: 1.125rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }
}
/* Event Details Styling */
.popup-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    color: white;
    transform: translateZ(0);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.feature i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.feature span {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .popup-features {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }

    .feature {
        padding: 0.625rem;
    }

    .feature i {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .feature span {
        font-size: 1rem;
    }
}
/* Key Points Styling */
.key-points {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: white;
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.point:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.point:hover::before {
    opacity: 1;
}

.point i {
    font-size: 1.5rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    transition: all 0.3s ease;
}

/* Custom colors for each point */
.point:nth-child(1) i {
    background: rgba(0, 160, 64, 0.1);
    color: var(--primary);
}

.point:nth-child(2) i {
    background: rgba(41, 98, 255, 0.1);
    color: var(--secondary);
}

.point:nth-child(3) i {
    background: rgba(255, 184, 0, 0.1);
    color: var(--accent-gold);
}

.point-text {
    flex: 1;
}

.point-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
    font-weight: 600;
    font-family: var(--font-primary);
}

.point-text p {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.5;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .point {
        padding: 1rem;
    }

    .point i {
        font-size: 1.25rem;
        padding: 0.625rem;
    }

    .point-text h4 {
        font-size: 1rem;
    }

    .point-text p {
        font-size: 0.875rem;
    }
}

/* ===== Navbar Styles ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 70px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 45px; /* Reduced height to fit navbar */
    width: auto;
    object-fit: contain; /* Maintains aspect ratio */
    margin-right: 1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text h1 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.brand-text p {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    color: var(--primary);
    margin: 0;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.75rem 0;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #fff;
}

.nav-menu a.active::after,
.nav-menu a:hover::after,
.nav-register-btn:hover::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary); 
    transform-origin: left;
    animation: underline 0.3s ease forwards;
}

@keyframes underline {
    from { transform: scaleX(0) }
    to { transform: scaleX(1) }
}
.nav-register-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}
.nav-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}
.nav-register-btn::after {
    display: none !important;
}

/* ===== Mobile Menu Styles ===== */
.nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 1000;
    padding: 0.5rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Active state for mobile menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #444;
    padding: 1rem 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
}

.nav-menu.active li {
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.nav-menu.active a {
    font-size: 1rem;
    width: 100%;
    display: block;
}

/* Hamburger animation */
.nav-toggle.active .hamburger .line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger .line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }

    .brand-text h1 {
        font-size: 1.4rem;
    }

    .nav-menu.active {
        gap: 0;
    }
}
@media (max-width: 768px) {
    .navbar {
        height: 60px; /* Smaller height on mobile */
    }

    .nav-logo {
        height: 35px; /* Smaller logo on mobile */
    }
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-container {
    width: 100%;
    height: 100%;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay,
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* Hero Title Styling - Improved Version */
/* Hero Title - Clean Sequential Animation */
.hero-logo {
    max-width: 300px;
    width: 80%;
    height: auto;
    position: absolute;
    right: 3%;
    top: 25%;
    transform: translateY(-50%);
    animation: fadeIn 1s ease-out;
    z-index: 2;
  }
  
  /* Tablet */
  @media (max-width: 768px) {
    .hero-logo {
      max-width: 100px;
      width: 40%;
      right: 2%;
      top: 30%;
    }
  }
  
  /* Phones */
  @media (max-width: 480px) {
    .hero-logo {
      max-width: 80px;
      width: 30%;
      right: 1%;
      top: 40%;
    }
  }
  
  /* Very Small Phones */
  @media (max-width: 360px) {
    .hero-logo {
      max-width: 60px;
      width: 25%;
      top: 50%;
    }
  }
  
  
  /* 2. Base styles for each line */
  .title-line {
    display: block;
    font-family: var(--font-primary);
    font-size: 4rem;        /* a bit smaller */
    font-weight: 800;
    color: white;
    opacity: 0;
    transform: translateY(20px);
  }
  
  /* 3. Keyframe for fade + rise */
  @keyframes fadeSlideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* 4. Staggered animation delays */
  .title-line:nth-child(1) {
    animation: fadeSlideIn 0.6s cubic-bezier(.4,0,.2,1) forwards 0.2s;
  }
  .title-line:nth-child(2) {
    animation: fadeSlideIn 0.6s cubic-bezier(.4,0,.2,1) forwards 0.6s;
  }
  .title-line:nth-child(3) {
    animation: fadeSlideIn 0.6s cubic-bezier(.4,0,.2,1) forwards 1.0s;
  }
  
  /* 5. Optional highlight styling */
  .title-line.highlight {
    color: var(--primary);
  }
  

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        top: 20%;
        left: 5%;
    }

    .title-line {
        font-size: 2.5rem;
        padding-left: 1.5rem;
    }

    .hero-title {
        gap: 1.5rem;
    }
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-slide i,
.next-slide i {
    color: #fff;
    font-size: 1.2rem;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.slide-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero {
        height: 50vh; /* Reduced height for landscape view */
    }

    .slide {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide img,
    .hero-video-container video {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Maintains aspect ratio while covering container */
    }

    .slide-overlay,
    .video-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }

    .slider-nav {
        bottom: 1rem;
    }
}


/* Landscape Mode Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 70vh; /* Taller in landscape mode */
    }

    .hero-content {
        padding: 0 2rem;
    }

    .title-line {
        font-size: 1.8rem;
    }
}






/* Countdown Section */

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('path/to/pattern.svg') repeat;
    opacity: 0.05;
}

.countdown-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.countdown-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.countdown-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 3rem;
}

.countdown-item {
    background: white;
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    min-width: clamp(120px, 15vw, 180px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-item:hover::before {
    opacity: 1;
}

.countdown-item span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.countdown-item span.flip {
    transform: rotateX(90deg);
}

.countdown-item label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.conference-started {
    text-align: center;
    padding: 3rem;
}

.pulse-animation {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    animation: pulse 2s infinite;
}

.pulse-animation i {
    font-size: 2rem;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 200, 83, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
    }
}

@keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 100%;
    }
}

@media (max-width: 768px) {
    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        flex: 1 1 calc(50% - 1rem);
        min-width: 140px;
    }
}

.countdown-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.countdown-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    min-width: 140px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.countdown-item span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var (--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.countdown-item label {
    font-size: 1rem;
    color: var (--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-info {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var (--surface);
    padding: 1rem 2rem;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
}

.countdown-info i {
    color: var(--primary);
}

.countdown-info span {
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        min-width: 120px;
        padding: 1.5rem;
    }

    .countdown-item span {
        font-size: 2.5rem;
    }

    .countdown-container h2 {
        font-size: 2rem;
    }
}


/* Speakers Section Styling */
.speakers-section {
    position: relative;
    padding: 8rem 0;
    background: #f8f9fa;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.subtitle {
    color: var(--primary);
    font-size: 1.125rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.section-header h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 4rem;
    position: relative;
}

.section-head h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4) !important;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1.5rem;
}

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00A040 60%, #2962FF 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Featured Speaker Card */
.speaker-card.featured {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto 2rem;
    transform: scale(1.05);
}

.speaker-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.speaker-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.speaker-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.speaker-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.speaker-card:hover .speaker-image-wrapper img {
    transform: scale(1.1);
}

.speaker-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transition: bottom 0.3s ease;
}

.speaker-card:hover .speaker-overlay {
    bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.speaker-card:hover .social-links {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.speaker-info {
    padding: 1.5rem;
    text-align: center;
}

.speaker-name {
    color: white !important;
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
}

.speaker-role {
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.speaker-company {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Animation Classes */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 0.8s ease forwards;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .speakers-section {
        padding: 4rem 0;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .speaker-card.featured {
        transform: scale(1);
    }

    .speaker-info {
        padding: 1.25rem;
    }

    .speaker-name {
        font-size: 1.25rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

.countdown-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.countdown-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

/* Speakers Section Optimization */
.speakers-section {
    position: relative;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    margin: 0;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.speaker-card {
    height: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
}

.speaker-card.featured {
    grid-column: auto;
    max-width: none;
    margin: 0;
}

.speaker-image-wrapper {
    aspect-ratio: 3/4;
}

.speaker-info {
    padding: 1rem;
}

.speaker-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.section-header {
    margin-bottom: 2.5rem;
}

/* Parallax Transition */
.parallax-transition {
    position: relative;
    height: 100px;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent, #79787842);
    transform: translateY(1px);
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    .countdown-section {
        padding: 4rem 0;
        background-position: center;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }

    .countdown-item {
        padding: 1rem;
    }

    .speakers-section {
        padding: 3rem 0 1.5rem;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .speaker-info {
        padding: 0.75rem;
    }

    .speaker-name {
        font-size: 1.1rem;
    }

    .parallax-transition {
        height: 60px;
    }
}

/* Remove unnecessary spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.countdown-section {
    position: relative;
    padding: 6rem 0;
    background-color: #000 !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
                    url('parallax-bg.jpg'); /* Pick ONE image path */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
  }

.countdown-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Enhance countdown items for better contrast against background */
.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.countdown-header h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        transition: left 0.3s ease-in-out;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1000;
    }

    .hamburger .line {
        width: 25px;
        height: 2px;
        background: #fff;
        margin: 4px 0;
        transition: 0.3s;
        transform-origin: center;
    }

    .nav-toggle.active .line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active .line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.countdown-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.countdown-header h2 {
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.countdown-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.event-details {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.event-details i {
    color: var(--primary);
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.event-details span {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Countdown items enhancement */
.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-item span {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-item label {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .countdown-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .event-details {
        padding: 1.25rem;
        flex-direction: column;
        gap: 1rem;
        border-radius: 16px;
    }

    .event-details span {
        font-size: 1rem;
    }
}

.countdown-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    width: 100%;
}



/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .event-details {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 16px;
        width: 90%;
        max-width: 400px;
    }

    .event-detail-item {
        width: 100%;
        justify-content: center;
    }

    .event-details span {
        font-size: 1rem;
    }
}

.nav-register-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.nav-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

/* Popup styling enhancement */
.popup-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    transform: scale(0.7);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}



.impact-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('countdown-bg.jpg');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.impact-grid {
    display: grid;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.impact-card:hover {
    transform: translateY(-10px);
    border-color: #00A040;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.impact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.impact-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-primary);
    line-height: 1.3;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .impact-card[style*="grid-column: 1 / -1"] {
        padding: 1.5rem;
    }

    .impact-card[style*="grid-column: 1 / -1"] > div {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .stat-number {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .stat-label {
        font-size: clamp(0.875rem, 2.5vw, 1.25rem);
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .stat-number {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .stat-label {
        font-size: clamp(0.75rem, 2vw, 1rem);
    }
}

.circular-stat {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.circular-progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    background: conic-gradient(#00A040 var(--progress), rgba(255, 255, 255, 0.1) var(--progress));
    box-shadow: 0 0 30px rgba(0, 160, 64, 0.2);
}

.circular-progress::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.impact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .impact-section {
        padding: 4rem 0;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impact-card {
        padding: 2rem;
    }

    .circular-stat {
        width: 120px;
        height: 120px;
    }

    .circular-progress {
        font-size: 2rem;
    }

    .impact-card p {
        font-size: 1rem;
    }
}

#expectations {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#expectations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/dark-geometric.png');
    opacity: 0.05;
}

#expectations h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 4rem;
    position: relative;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.expectation-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.expectation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #00A040;
}

.expectation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00A040 60%, #2962FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 160, 64, 0.3);
    /* Adjusted shadow color */
}

.expectation-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectation-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    #expectations {
        padding: 4rem 0;
    }

    .expectation-card {
        padding: 2rem;
    }

    .expectation-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .expectation-card h3 {
        font-size: 1.25rem;
    }

    .expectation-card p {
        font-size: 1rem;
    }
}

/* Floating Chat Widget Styles */
.floating-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    font-family: 'Space Grotesk', sans-serif;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 160, 64, 0.3);
    transition: all 0.3s ease;
}

.chat-button i {
    color: white;
    font-size: 24px;
}

.chat-button:hover {
    transform: scale(1.1);
}

.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #ff4646;
    border-radius: 50%;
    border: 2px solid white;
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.floating-chat-widget.active .chat-popup {
    transform: scale(1);
}

.chat-header {
    padding: 1.5rem;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.header-text h3 {
    margin: 0;
    font-size: 1.1rem;
}

.header-text span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}

.chat-body {
    padding: 1.5rem;
}

.welcome-message {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    background: #f8f9fa;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.whatsapp i:first-child {
    color: #25D366;
}

.email i:first-child {
    color: #EA4335;
}

.phone i:first-child {
    color: var(--primary);
}

@media screen and (max-width: 768px) {
    .chat-popup {
        width: calc(100vw - 2rem);
        right: -1rem;
    }
}

#partners {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/dark-geometric.png');
    opacity: 0.05;
}

.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00A040 60%, #2962FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 160, 64, 0.3);
}
/* Add this to your styles.css */
.benefit-icon i {
    color: white !important;
}

.benefit-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.partner-cta {
    text-align: center;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 160, 64, 0.1) 0%, rgba(41, 98, 255, 0.1) 100%);
    border-radius: 20px;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.partner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-geometric.png');
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.partner-cta h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
}

.partner-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

/* Keep existing shine effect */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.cta-button:hover::before {
    animation: shine 0.75s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 160, 64, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
    .partner-cta {
        margin: 3rem auto;
        padding: 3rem 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}


/* Logo Slider Styles */
.logo-slider {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: white;
    padding: 20px 0;
    margin: 0 auto;
}

.logo-slider .logos {
    position: absolute;
    display: flex;
    width: fit-content;
    animation: slide 40s linear infinite;
}

.logos img {
    height: 60px;
    margin: 0 40px;
    flex-shrink: 0;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: all 0.3s ease;
}

.logos img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Add hover pause effect */
.logo-slider:hover .logos {
    animation-play-state: paused;
}

@media screen and (max-width: 768px) {
    .logo-slider {
        height: 80px;
    }

    .logos img {
        height: 40px;
        margin: 0 20px;
    }
}

/* Keep your existing logo-slider styles */
/* ...existing logo-slider styles... */

@media screen and (max-width: 768px) {
    #partners {
        padding: 4rem 0;
    }

    .benefit-card {
        padding: 2rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .partner-cta {
        padding: 2rem;
        margin: 2rem 0;
    }

    .partner-cta h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {

    .prev-slide,
    .next-slide {
        display: none;
        /* Hide direction buttons on mobile */
    }

    .slider-nav {
        bottom: 1rem;
    }

    .media-container {
        touch-action: pan-y pinch-zoom;
        /* Enable vertical scrolling but allow horizontal swipes */
    }
}

/* --- Footer Section --- */
footer {
    background: linear-gradient(120deg, #181c24 0%, #232a39 100%);
    color: #fff;
    font-family: 'Manrope', 'Space Grotesk', sans-serif;
    padding: 0;
    margin: 0;
    border-top: 4px solid var(--primary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.footer-logo {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}
.footer-logo img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(41,98,255,0.10));
}

.footer-info,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}
.footer-social h3 {
    margin-bottom: 0.7rem;
}
.footer-social .social-row {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0.3rem;
}
@media screen and (max-width: 900px) {
    .footer-social .social-row {
        justify-content: center;
    }
}
@media screen and (max-width: 600px) {
    .footer-social .social-row {
        justify-content: center;
        gap: 0.4rem;
    }
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(41,98,255,0.07);
    position: relative;
    overflow: hidden;
}
.footer-social a.facebook:hover { background: #1877f2; border-color: #1877f2; }
.footer-social a.twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.footer-social a.instagram:hover { background: #e4405f; border-color: #e4405f; }
.footer-social a.linkedin:hover { background: #0077b5; border-color: #0077b5; }
.footer-social a.youtube:hover { background: #ff0000; border-color: #ff0000; }
.footer-social a i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}
.footer-social a:hover i {
    transform: scale(1.18) rotate(-8deg);
}

.footer-bottom {
    background: #181c24;
    padding: 1.2rem 0 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.98rem;
    letter-spacing: 0.2px;
    margin: 0;
}

/* --- Responsive Footer --- */
/* Mobile Footer Styles */
@media screen and (max-width: 768px) {
    footer {
        padding: 2rem 1rem;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0;
    }

    .footer-logo {
        margin-bottom: 2rem;
    }

    .footer-logo img {
        max-width: 120px;
        margin: 0 auto;
    }

    .footer-info,
    .footer-contact,
    .footer-social {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-social .social-row {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        padding: 1.5rem 0 0;
        margin-top: 2rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Touch-friendly sizes */
    .footer-info h3,
    .footer-contact h3,
    .footer-social h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-info p,
    .footer-contact p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
}

/* Additional Mobile Enhancements */
@media screen and (max-width: 480px) {
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-info,
    .footer-contact,
    .footer-social {
        padding: 1rem 0;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}


.about-hero {
    padding: 6rem 0;
    background: var(--background);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-header {
    margin-bottom: 2rem;
}

.highlight-text {
    color: var(--primary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.about-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 1.5rem 0;
}

.underline.center {
    margin: 1.5rem auto;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.key-points {
    display: grid;
    gap: 1rem;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
}

.point i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--background-alt);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

#video-testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.background-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float-slow 20s infinite alternate ease-in-out;
}

.top-right {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(66, 133, 244, 0.05), rgba(219, 68, 55, 0.05));
    top: -150px;
    right: 10%;
}

.bottom-left {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(15, 157, 88, 0.05), rgba(244, 180, 0, 0.05));
    filter: blur(60px);
    bottom: -100px;
    left: 15%;
    animation-duration: 15s;
    animation-direction: alternate-reverse;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #00A040 50%, #2962FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 0.9rem;
}

.video-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fill, minmax(248.02px, 1fr));*/
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    padding: 0 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px; /* Control maximum card width */
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    background: #f0f0f0;
    overflow: hidden;
}

.testimonial-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 20px solid #00A040;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.video-info {
    padding: 1.0rem;
}

.video-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.video-info p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.78rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

@keyframes float-slow {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -10px) rotate(3deg); }
    100% { transform: translate(-10px, 10px) rotate(-3deg); }
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
}

/* Fusion Section Styles */
.fusion-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(rgba(255,255,255,0.98), url('images/tech-bg.jpg'));
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.fusion-container {
    max-width: var(--desktop);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.fusion-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-xl) 0;
}

.fusion-subtitle {
    color: var(--primary);
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.125em;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.fusion-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    color: var(--text-primary);
    margin: var(--spacing-md) 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fusion-divider {
    width: 5rem;
    height: 0.25rem;
    background: var(--gradient-primary);
    margin: var(--spacing-lg) auto;
    border-radius: var(--radius-full);
}

.fusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: var(--spacing-2xl);
    margin: 0 auto;
}

.fusion-card {
    background: var(--surface);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 0.0625rem solid var(--neutral-200);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.fusion-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.card-content p {
    font-family: var(--font-secondary);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.stat-highlight {
    padding: var(--spacing-md);
    background: rgba(var(--primary-rgb), 0.05);
    border-left: 0.25rem solid var(--primary);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-xl);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-family: var(--font-secondary);
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .fusion-grid {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .card-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
}

.register-header a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.register-header a:hover {
    transform: scale(1.05);
}

.register-logo {
    cursor: pointer;
}
.back-home-link {
    text-align: center;
    margin-top: 20px;
}

.back-home-link a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.back-home-link a:hover {
    text-decoration: underline;
}

.agrithon-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e4e9f2 100%);
}

.agrithon-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.agrithon-text {
    flex: 1;
}

.special-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.agrithon-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.agrithon-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.key-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.key-highlights li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.key-highlights i {
    color: var(--primary);
}

.agrithon-cta {
    display: flex;
    gap: 1rem;
}

.learn-more-btn, .apply-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.learn-more-btn {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.apply-btn {
    background: var(--gradient-primary);
    color: white;
}

.learn-more-btn:hover, .apply-btn:hover {
    transform: translateY(-2px);
}

.agrithon-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.agrithon-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .agrithon-content {
        flex-direction: column;
    }
    
    .agrithon-text h2 {
        font-size: 2rem;
    }
    
    .agrithon-cta {
        flex-direction: column;
    }
}
