/* Base Styles and Variables */
:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary-color: #0f172a;
  --text-color: #64748b;
  --text-dark: #0f172a;
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --transition: all 0.2s ease;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --secondary-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  font-weight: 300;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-color);
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

/* Navigation */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 60px;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}
/* .nav-links a:last-child {
  background-color: #2d37 !important;
} */

.get-ticket {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.get-ticket:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.get-ticket a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary-gradient);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons */
.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid transparent;
  background-image: linear-gradient(var(--white), var(--white)),
    var(--primary-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section - Clean Awwwards Style */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 140px 0 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/freepik__the-style-is-candid-image-photography-with-natural__15028.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
  z-index: 1;
}

.hero-background {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  margin-bottom: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.025em;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.title-line {
  display: block;
}

.title-line.highlight {
  color: #60a5fa;
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* Hero CTA Button for Mobile */
.hero-cta-mobile {
  display: none;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
}

.hero-countdown {
  margin-bottom: 4rem;
}

.hero-countdown .countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-countdown .time-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  min-width: 90px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  flex: 0 1 auto;
}

.hero-countdown .time-unit:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.hero-countdown .time-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.hero-countdown .time-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-countdown .time-separator {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}

.countdown-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0;
}

/* Responsive Countdown Timer */
@media (max-width: 768px) {
  .hero-cta-mobile {
    display: block;
  }
  
  .hero-countdown {
    margin-bottom: 3rem;
  }
  
  .hero-countdown .countdown-timer {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-countdown .time-unit {
    min-width: 60px;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
  }
  
  .hero-countdown .time-number {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  
  .hero-countdown .time-label {
    font-size: 0.65rem;
    letter-spacing: 0.03em;
  }
  
  .hero-countdown .time-separator {
    font-size: 1rem;
    padding: 0 0.25rem;
  }
  
  .countdown-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-mobile {
    margin-bottom: 1.5rem;
  }
  
  .hero-cta-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-countdown {
    margin-bottom: 2rem;
  }
  
  .hero-countdown .countdown-timer {
    gap: 0.375rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-countdown .time-unit {
    min-width: 50px;
    padding: 0.625rem 0.375rem;
    border-radius: 8px;
    flex: 1 1 auto;
    max-width: 70px;
  }
  
  .hero-countdown .time-number {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }
  
  .hero-countdown .time-label {
    font-size: 0.6rem;
    letter-spacing: 0.02em;
  }
  
  .hero-countdown .time-separator {
    font-size: 0.875rem;
    padding: 0 0.125rem;
    align-self: center;
  }
  
  .countdown-text {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
}

@media (max-width: 360px) {
  .hero-countdown .countdown-timer {
    gap: 0.25rem;
  }
  
  .hero-countdown .time-unit {
    min-width: 45px;
    padding: 0.5rem 0.25rem;
    max-width: 60px;
  }
  
  .hero-countdown .time-number {
    font-size: 1rem;
  }
  
  .hero-countdown .time-label {
    font-size: 0.55rem;
  }
  
  .hero-countdown .time-separator {
    font-size: 0.75rem;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-text {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 0.2s backwards;
  font-weight: 300;
}

.hero::before,
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-content,
.about-grid {
  position: relative;
  z-index: 2;
}

.event-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.detail i {
  color: var(--primary-color);
}

/* Statistics Section */
.statistics-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.statistics-section .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.statistics-section .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #60a5fa, #2563eb);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

.statistics-section .stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.statistics-section .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.statistics-section .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Statistics Responsive Design */
@media (max-width: 1024px) {
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .statistics-section .stat-item {
    padding: 2rem 1.5rem;
  }
  
  .statistics-section .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .statistics-section .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .statistics-section .stat-number {
    font-size: 2rem;
  }
  
  .statistics-section .stat-label {
    font-size: 0.875rem;
  }
}


/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.statistics-section .section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.2;
}

.statistics-section .section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Why DELTESA Section */
.why-deltesa {
  padding: 80px 0;
  background: #ffffff;
}

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

.why-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0f172a;
}

.why-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Vision Section */
.vision-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f7 100%);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(37,99,235,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.vision-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.vision-text {
  margin-bottom: 4rem;
}

.vision-text h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  color: #0f172a;
  position: relative;
}

.vision-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  border-radius: 2px;
}

.vision-text p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
}

/* White text for vision section when inside event-features */
.event-features .vision-text h2 {
  color: #ffffff;
}

.event-features .vision-text h2::after {
  background: linear-gradient(90deg, #60a5fa, #2563eb);
}

.event-features .vision-text p {
  color: rgba(255, 255, 255, 0.9);
}

/* Initiatives Timeline */
.initiatives-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-container {
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2563eb, #60a5fa, #2563eb);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  flex-shrink: 0;
}

.marker-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  position: relative;
  border: 4px solid #ffffff;
}

.marker-icon::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  opacity: 0.2;
  animation: pulse 2s ease-in-out infinite;
}

.marker-number {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 12px solid transparent;
}

/* For odd items (icons on left), arrows point left towards icon */
.timeline-item:nth-child(odd) .timeline-content::before {
  left: -24px;
  border-right-color: rgba(255, 255, 255, 0.8);
  border-left-color: transparent;
}

/* For even items (icons on right), arrows point right towards icon */
.timeline-item:nth-child(even) .timeline-content::before {
  right: -24px;
  border-left-color: rgba(255, 255, 255, 0.8);
  border-right-color: transparent;
}

.timeline-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* White text for timeline content when inside event-features */
.event-features .timeline-content {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.event-features .timeline-content h4 {
  color: #ffffff;
}

.event-features .timeline-content p {
  color: rgba(255, 255, 255, 0.85);
}

.event-features .marker-number {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.3);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

/* Responsive Timeline - Horizontal Scroll on Mobile */
@media (max-width: 768px) {
  .initiatives-timeline {
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
  }
  
  .timeline-container {
    position: relative;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 0 1rem 1rem;
  }
  
  .timeline-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  /* Hide the vertical timeline line on mobile */
  .timeline-container::before {
    display: none;
  }
  
  /* Horizontal timeline items */
  .timeline-item {
    flex-direction: column !important;
    align-items: center !important;
    margin: 0 !important;
    width: 85%;
    min-width: 85%;
    max-width: 85%;
    flex-shrink: 0;
    scroll-snap-align: center;
    position: relative;
  }
  
  /* Center the marker at the top */
  .timeline-marker {
    position: relative;
    left: auto;
    width: auto;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Remove arrow pointer on mobile */
  .timeline-content::before {
    display: none !important;
  }
  
  /* Full width content cards */
  .timeline-content {
    margin: 0 !important;
    padding: 1.75rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
    border-radius: 16px;
  }
  
  .timeline-content h4 {
    font-size: 1.25rem;
  }
  
  .timeline-content p {
    font-size: 0.95rem;
  }
  
  /* Adjust marker icon size for mobile */
  .marker-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .marker-number {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
  }
  
  /* Timeline Navigation Dots */
  /* Timeline Navigation Dots - Hidden on Desktop */
  .timeline-carousel-nav {
    display: none !important;
  }
  
  .timeline-carousel-nav .carousel-btn {
    display: none !important;
  }
}

/* Ensure timeline navigation is hidden on desktop (min-width: 769px) */
@media (min-width: 769px) {
  .timeline-carousel-nav {
    display: none !important;
  }
  
  .timeline-carousel-nav .carousel-btn,
  .timeline-carousel-nav .timeline-prev,
  .timeline-carousel-nav .timeline-next {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* Show timeline navigation on mobile - same style as speakers */
  .timeline-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .timeline-carousel-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }
  
  .timeline-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
  }
  
  .timeline-carousel-dot.active {
    background: #ffffff;
    border-color: #ffffff;
    width: 12px;
    height: 12px;
  }
  
  .timeline-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
  }
  
  /* Timeline navigation buttons use same style as speakers */
  .timeline-carousel-nav .carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  
  .timeline-carousel-nav .carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  }
  
  .timeline-carousel-nav .carousel-btn:active {
    transform: scale(0.95);
  }
  
  .timeline-carousel-nav .carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }
}

@media (max-width: 480px) {
  .timeline-carousel-nav {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .timeline-carousel-nav .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .timeline-carousel-dot {
    width: 8px;
    height: 8px;
  }
  
  .timeline-carousel-dot.active {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .initiatives-timeline {
    padding: 1.5rem 0;
  }
  
  .timeline-container {
    padding: 0 0.75rem 1rem;
    gap: 1rem;
  }
  
  .timeline-item {
    width: 90%;
    min-width: 90%;
    max-width: 90%;
    margin-bottom: 0 !important;
  }
  
  .timeline-content {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }
  
  .marker-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .timeline-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .timeline-content p {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .marker-number {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }
}

/* Special styling for event-features timeline on mobile */
@media (max-width: 768px) {
  .event-features .timeline-content {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  
  .event-features .timeline-content:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  }
}

.outcome-item {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.outcome-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa, #2563eb);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.outcome-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #cbd5e1;
}

.outcome-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.outcome-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
}

.outcome-item p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

/* Event Features Section */
.event-features {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.event-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,10 25,20 15,25 5,20 5,10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
  opacity: 0.3;
}

.event-features .section-header {
  position: relative;
  z-index: 2;
}

.event-features .section-header h2 {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  position: relative;
}

.event-features .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa, #2563eb);
  border-radius: 2px;
}

.event-features .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  font-weight: 500;
}

/* Experience Showcase */
.experience-showcase {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-container {
  position: relative;
}

.experience-track {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

.experience-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s ease;
  opacity: 0.6;
  transform: translateX(-30px);
  position: relative;
  overflow: hidden;
}

.experience-item.active {
  opacity: 1;
  transform: translateX(0);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.experience-item:nth-child(even) {
  flex-direction: row-reverse;
  transform: translateX(30px);
}

.experience-item:nth-child(even).active {
  transform: translateX(0);
}

.experience-visual {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.experience-item.active .visual-icon {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.5);
}

.visual-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #60a5fa;
  border-radius: 50%;
  opacity: 0;
  animation: float 3s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.experience-item.active .particle {
  opacity: 0.8;
}

.experience-content {
  flex: 1;
  color: white;
}

.experience-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  display: inline-block;
  margin-bottom: 1rem;
}

.experience-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.experience-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.experience-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.detail-item {
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.experience-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #60a5fa;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.nav-dot:hover {
  background: #60a5fa;
  transform: scale(1.2);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Responsive Experience Showcase */
@media (max-width: 768px) {
  .experience-item {
    flex-direction: column !important;
    text-align: center;
    gap: 2rem;
  }
  
  .experience-visual {
    width: 150px;
    height: 150px;
  }
  
  .visual-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .experience-content h3 {
    font-size: 1.5rem;
  }
  
  .experience-content p {
    font-size: 1rem;
  }
  
  .experience-details {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .experience-item {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .experience-visual {
    width: 120px;
    height: 120px;
  }
  
  .visual-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .experience-content h3 {
    font-size: 1.25rem;
  }
  
  .experience-details {
    gap: 0.5rem;
  }
  
  .detail-item {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

/* Who Should Attend Section */
.who-should-attend {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f7 100%);
  position: relative;
  overflow: hidden;
}

.who-should-attend::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.who-should-attend .section-header h2 {
  color: #0f172a !important;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.who-should-attend .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  border-radius: 2px;
  animation: shimmer 2s ease-in-out infinite;
}

.who-should-attend .section-subtitle {
  color: #64748b !important;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Audience Showcase */
.audience-showcase {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.audience-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.audience-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  color: #64748b;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.audience-tab.active {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.audience-tab:hover:not(.active) {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}

.audience-tab i {
  font-size: 1rem;
}

.audience-content {
  position: relative;
  min-height: 400px;
}

.audience-panel {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.audience-panel.active {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.panel-visual {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.audience-panel.active .visual-icon {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.5);
}

.visual-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #60a5fa;
  border-radius: 50%;
  opacity: 0;
  animation: float 3s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.audience-panel.active .particle {
  opacity: 0.8;
}

.panel-content {
  flex: 1;
}

.panel-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a !important;
  margin-bottom: 1rem;
}

.panel-description {
  color: #64748b !important;
  line-height: 1.6;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.panel-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.benefit-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.benefit-item span {
  font-weight: 600;
  color: #0f172a !important;
  font-size: 0.875rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Audience */
@media (max-width: 768px) {
  .audience-navigation {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .audience-tab {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
  
  .audience-panel.active {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .panel-visual {
    width: 150px;
    height: 150px;
  }
  
  .visual-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .panel-content h3 {
    font-size: 1.5rem;
  }
  
  .benefit-item {
    padding: 0.75rem;
  }
  
  .benefit-item:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 480px) {
  .audience-tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .audience-tab span {
    display: inline;
    font-size: 0.7rem;
  }
  
  .panel-visual {
    width: 120px;
    height: 120px;
  }
  
  .visual-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .panel-content h3 {
    font-size: 1.25rem;
  }
  
  .panel-description {
    font-size: 1rem;
  }
  
  .benefit-item {
    padding: 0.5rem;
  }
  
  .benefit-item i {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }
  
  .benefit-item span {
    font-size: 0.8rem;
  }
}

/* News & Updates Section */
.news-updates {
  padding: 80px 0;
  background: #ffffff;
}

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

.news-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.news-image {
  height: 180px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.02);
}

.news-content {
  padding: 1.5rem;
}

.news-category {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.news-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #0f172a;
  line-height: 1.3;
}

.news-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.news-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.news-link:hover {
  gap: 0.75rem;
}

/* Newsletter Signup */
.newsletter-signup {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.newsletter-content p {
  color: var(--text-color);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.newsletter-form .form-group {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0 auto;
  gap: 1rem;
  align-items: stretch;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
  background: #fff;
}

.newsletter-form input.name-input {
  margin-bottom: 0;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 180, 219, 0.1);
}

.newsletter-form button {
  padding: 1rem 2rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 180, 219, 0.3);
}

@media (min-width: 768px) {
  .newsletter-form .form-group {
    flex-direction: row;
    max-width: 700px;
    align-items: center;
    gap: 0.75rem;
  }
  
  .newsletter-form input {
    flex: 1;
    min-width: 0;
  }
  
  .newsletter-form input.name-input {
    flex: 0 0 220px;
    min-width: 180px;
  }
  
  .newsletter-form input.email-input,
  .newsletter-form input#mce-EMAIL {
    flex: 1 1 auto;
    min-width: 200px;
  }
  
  .newsletter-form button {
    flex: 0 0 auto;
    padding: 1rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .newsletter-form .form-group {
    max-width: 800px;
    gap: 1rem;
  }
  
  .newsletter-form input.name-input {
    flex: 0 0 250px;
  }
}

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

.about-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.about-card:hover::before {
  opacity: 0.05;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.about-card i {
  font-size: 3rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.about-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.about-card p {
  color: var(--text-color);
  position: relative;
  z-index: 1;
  font-weight: 300;
}

/* Speakers Section */
.speakers {
  padding: 120px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.speakers-carousel-wrapper {
  position: relative;
  margin-top: 4rem;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* Hide speakers beyond initial 6 on desktop by default */
@media (min-width: 769px) {
  .speakers-grid .speaker-card:nth-child(n+7) {
    display: none;
  }
  
  /* Show when explicitly marked as visible */
  .speakers-grid .speaker-card.speaker-visible {
    display: block !important;
  }
}

/* Ensure mobile shows all cards */
@media (max-width: 768px) {
  .speakers-grid .speaker-card {
    display: block !important;
  }
  
  .speakers-grid .speaker-card.speaker-visible {
    display: block !important;
  }
}

/* Load More Button (Desktop Only) */
.speakers-load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.speakers-load-more {
  min-width: 200px;
}

.speakers-load-more.hidden {
  display: none;
}

/* Carousel Navigation */
.speakers-carousel-nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.carousel-dots {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 5px;
}

.speaker-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.speaker-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: grayscale(100%);
}

.speaker-card:hover .speaker-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.speaker-info {
  padding: 2rem;
  position: relative;
}

.speaker-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.speaker-role {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.speaker-social {
  display: flex;
  gap: 1rem;
}

.speaker-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: var(--transition);
}

.speaker-social a:hover {
  background: var(--primary-gradient);
  color: var(--white);
  transform: translateY(-3px);
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {
  .speakers-load-more-wrapper {
    display: none;
  }
  
  .speakers-carousel-wrapper {
    overflow: hidden;
    margin-top: 3rem;
  }
  
  .speakers-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-bottom: 1rem;
  }
  
  .speakers-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .speaker-card {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    margin: 0;
  }
  
  .speakers-carousel-nav {
    display: flex;
  }
  
  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
  }
  
  .carousel-dot.active {
    width: 24px;
  }
}

@media (max-width: 480px) {
  .speaker-card {
    flex: 0 0 90%;
    max-width: 90%;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .speakers-carousel-nav {
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

/* Schedule Section */
.schedule {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f7 100%);
  position: relative;
  overflow: hidden;
}

.schedule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.schedule .section-header h2 {
  color: #0f172a;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.schedule .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  border-radius: 2px;
  animation: shimmer 2s ease-in-out infinite;
}

.schedule .section-subtitle {
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Schedule Showcase - More Specific Selectors */
.schedule-showcase {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.schedule .tab-btn {
  padding: 1rem 2rem;
  border: none;
  background: transparent;
  color: #64748b;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.schedule .tab-btn.active {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.schedule .tab-btn:hover:not(.active) {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}

.schedule-content {
  position: relative;
}

.schedule .tab-panel {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.schedule .tab-panel.active {
  display: block;
}

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.schedule-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.schedule-item:hover::before {
  transform: scaleX(1);
}

.schedule-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}

.schedule-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 1rem;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  border-radius: 16px;
  color: white;
  text-align: center;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.schedule .time-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.schedule .time-period {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.9;
}

.schedule-details {
  flex: 1;
}

.schedule-category {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.schedule-category.keynote {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.schedule-category.panel {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.schedule-category.networking {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.schedule-category.workshop {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.schedule-category.breakout {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.schedule-category.awards {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.schedule-category.gala {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.schedule-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.schedule-details p {
  color: #64748b;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.schedule-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.schedule-meta span {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 0.375rem 0.75rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.schedule-visual {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule .visual-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.schedule-item:hover .visual-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Schedule */
@media (max-width: 768px) {
  .schedule-tabs {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .schedule .tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .schedule-item {
    flex-direction: column;
  text-align: center;
    gap: 1.5rem;
  }
  
  .schedule-time {
    min-width: auto;
    width: 100px;
  }
  
  .schedule-visual {
    width: 60px;
    height: 60px;
  }
  
  .schedule .visual-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .schedule-details h3 {
    font-size: 1.25rem;
  }
  
  .schedule-meta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .schedule-item {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .schedule-time {
    width: 80px;
    padding: 0.75rem;
  }
  
  .schedule .time-number {
    font-size: 1.25rem;
  }
  
  .schedule .time-period {
    font-size: 0.75rem;
  }
  
  .schedule-details h3 {
    font-size: 1.125rem;
  }
  
  .schedule-details p {
    font-size: 0.875rem;
  }
  
  .schedule-meta {
    gap: 0.5rem;
  }
  
  .schedule-meta span {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Parallax Section */
.parallax-section {
  padding: 100px 0;
  background: #0f172a;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.2;
}

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

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.parallax-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Networking Section */
.networking-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f7 100%);
  position: relative;
  overflow: hidden;
}

.networking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.networking-section .section-header h2 {
  color: #0f172a;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.networking-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  border-radius: 2px;
  animation: shimmer 2s ease-in-out infinite;
}

.networking-section .section-subtitle {
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Networking Showcase */
.networking-showcase {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.networking-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.networking-visual {
  position: relative;
}

.networking-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.networking-image-container:hover {
  transform: translateY(-5px);
}

.networking-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.networking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(96, 165, 250, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.networking-image-container:hover .networking-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.overlay-content span {
  font-size: 1.5rem;
  font-weight: 700;
}

.networking-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.networking-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.highlight-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.highlight-text p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.networking-cta {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.networking-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.btn-networking {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-networking:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.networking-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.networking-stats .stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.networking-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}

.networking-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.networking-stats .stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Networking */
@media (max-width: 768px) {
  .networking-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .networking-hero-img {
    height: 300px;
  }
  
  .networking-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .networking-stats .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .networking-stats .stat-number {
  font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .networking-stats {
    grid-template-columns: 1fr;
  }
  
  .highlight-item {
    padding: 1rem;
  }
  
  .highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .highlight-text h4 {
    font-size: 1rem;
  }
  
  .networking-cta {
    padding: 1.5rem;
  }
}

/* Sponsorship Section */
.sponsorship-spotlight {
  padding: 100px 0;
  background: #0f172a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.sponsorship-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.sponsorship-spotlight .section-header h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.sponsorship-spotlight .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  border-radius: 2px;
  animation: shimmer 2s ease-in-out infinite;
}

.sponsorship-spotlight .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Sponsorship Showcase */
.sponsorship-showcase {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

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

.package-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #64748b, #94a3b8);
  transition: all 0.4s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.package-card.featured {
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.package-card.featured::before {
  background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
}

.package-badge-featured {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #0f172a;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.package-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.silver-package .package-icon {
  background: linear-gradient(135deg, #64748b, #94a3b8);
}

.gold-package .package-icon {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #0f172a;
}

.platinum-package .package-icon {
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
  color: #0f172a;
}

.sponsorship-spotlight .package-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.sponsorship-spotlight .package-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sponsorship-spotlight .silver-package .package-badge {
  background: rgba(100, 116, 139, 0.2);
  color: #94a3b8;
}

.sponsorship-spotlight .gold-package .package-badge {
  background: rgba(255, 215, 0, 0.2);
  color: #ffed4e;
}

.sponsorship-spotlight .platinum-package .package-badge {
  background: rgba(229, 231, 235, 0.2);
  color: #f3f4f6;
}

.sponsorship-spotlight .package-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sponsorship-spotlight .package-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sponsorship-spotlight .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.sponsorship-spotlight .benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.sponsorship-spotlight .benefit-item i {
  color: #ffffff;
  font-size: 0.875rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.sponsorship-spotlight .benefit-item span {
  color: #ababab !important;
  font-size: 0.875rem;
  line-height: 1.5;
}

.sponsorship-spotlight .package-cta {
  margin-top: auto;
}

.sponsorship-spotlight .btn-package {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sponsorship-spotlight .silver-btn {
  background: linear-gradient(135deg, #64748b, #94a3b8);
  color: #ffffff;
}

.sponsorship-spotlight .silver-btn:hover {
  background: linear-gradient(135deg, #475569, #64748b);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3);
}

.sponsorship-spotlight .gold-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #0f172a;
}

.sponsorship-spotlight .gold-btn:hover {
  background: linear-gradient(135deg, #f59e0b, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.sponsorship-spotlight .platinum-btn {
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
  color: #0f172a;
}

.sponsorship-spotlight .platinum-btn:hover {
  background: linear-gradient(135deg, #d1d5db, #e5e7eb);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 231, 235, 0.3);
}

/* Responsive Sponsorship */
@media (max-width: 768px) {
  .sponsorship-packages {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .package-card {
    margin: 0;
    padding: 1.5rem;
  }
  
  .package-card.featured {
    transform: none;
  }
  
  .package-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .package-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .package-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .package-title h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .sponsorship-packages {
    padding: 0 0.5rem;
    gap: 1rem;
  }
  
  .package-card {
    padding: 1rem;
    margin: 0;
  }
  
  .package-badge-featured {
    position: static;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .sponsorship-spotlight .benefit-item {
    padding: 0.5rem;
  }
  
  .sponsorship-spotlight .benefit-item span {
    font-size: 0.8rem;
  }
  
  .sponsorship-spotlight .btn-package {
    padding: 0.875rem 1rem;
    font-size: 0.8rem;
  }
}

/* ===== Enquiry Section ===== */
.enquiry {
  padding: 4rem 1.5rem;
  background: #eae3dc48;
  text-align: center;
}

.enquiry-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.enquiry-content {
  max-width: 700px;
  margin: 0 auto;
}

.enquiry-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

/* Buttons wrapper */
.enquiry-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* General Button Styles */
.enquiry-buttons a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
}

/* Email Button */
.mail-button {
  background: #0072b2;
  color: #fff;
}
.mail-button:hover {
  background: #005a8a;
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  color: var(--secondary-color);
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-lg);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 1000px;
}

/* Ticket Section */
.tickets {
  padding: 120px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ticket-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
}

.ticket-card.featured {
  border: none;
  background: linear-gradient(var(--white), var(--white)) padding-box,
    var(--primary-gradient) border-box;
  border: 2px solid transparent;
  transform: scale(1.05);
}

.ticket-card.featured::before {
  content: "FEATURED";
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.ticket-card h3 {
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.ticket-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.ticket-card ul li {
  margin-bottom: 1rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ticket-card ul li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #ffffff;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

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

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-gradient);
}

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

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: #60a5fa;
}

.footer-section a,
.footer-section p {
  color: rgba(255, 255, 255, 0.85);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
}

.modal-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-lg);
}

.close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.close-modal:hover {
  background: var(--primary-color);
  color: var(--white);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Search Functionality */
.search-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
  margin-right: 1rem;
}

.search-toggle:hover {
  background: var(--light-bg);
  color: var(--primary-color);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: var(--transition);
}

.search-overlay.active {
  display: flex;
  opacity: 1;
}

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

.search-box {
  position: relative;
  margin-bottom: 2rem;
}

.search-box input {
  width: 100%;
  padding: 1.5rem 3rem 1.5rem 1.5rem;
  font-size: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
}

.search-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.search-results {
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Enhanced Loading Animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease-out;
  opacity: 1;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Enhanced Animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Micro-interactions */
.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.speaker-card:active {
  transform: translateY(-5px) scale(0.98);
}

/* Enhanced Hover Effects */
.about-card:hover i {
  animation: pulse 2s infinite;
}

.speaker-card:hover .speaker-image {
  filter: brightness(1.1) contrast(1.1);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  z-index: 3000;
  transform: translateX(400px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.notification.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Enhanced Focus States for Accessibility */
button:focus,
input:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: var(--transition);
}

.skip-link:focus {
  top: 6px;
}

/* Form Validation Styles */
.form-group input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.error-message::before {
  content: "⚠";
  font-size: 0.75rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h1,
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .hero .subtitle,
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .hero-content {
    padding: 0 0.75rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  .search-container {
    padding: 1rem;
  }
  
  .search-box input {
    font-size: 1rem;
    padding: 1rem 2.5rem 1rem 1rem;
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
  
  .notification {
    right: 1rem;
    left: 1rem;
    transform: translateY(-100px);
  }
  
  .notification.show {
    transform: translateY(0);
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0066cc;
    --secondary-color: #000000;
    --text-color: #000000;
    --light-bg: #ffffff;
  }
  
  .btn-primary {
    border: 2px solid #000000;
  }
  
  .speaker-card,
  .about-card {
    border: 2px solid #000000;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .loading-spinner {
    animation: none;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .search-overlay,
  .back-to-top,
  .loading-overlay {
    display: none !important;
  }
  
  .hero {
    background: none !important;
    color: #000 !important;
    min-height: auto !important;
  }
  
  .btn-primary {
    background: #000 !important;
    color: #fff !important;
  }
  
  a {
    text-decoration: underline !important;
  }
  
  .speaker-card,
  .about-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo img {
    height: 100px;
  }
  
  .hero {
    margin: 2rem 0;
    padding: 120px 0 80px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle,
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }

  .event-details {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    width: calc(100% - 30px);
    left: 30px !important;
  }

  .timeline-dot {
    left: -40px !important;
  }

  .ticket-card.featured {
    transform: none;
  }

  h2 {
    font-size: 2rem;
  }

  .networking {
    flex-direction: column;
    text-align: center;
  }

  .networking-text {
    text-align: center;
  }

  .enquiry {
    padding: 3rem 1rem;
  }

  .enquiry-title {
    font-size: 1.7rem;
  }

  .enquiry-buttons a {
    flex: 1 1 100%;
  }
}


/* ========== MOBILE NAVIGATION STYLES ========== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.menu-toggle:hover {
  background: rgba(37, 99, 235, 0.1);
}

.menu-toggle:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.menu-toggle.active .hamburger-line {
  background: var(--primary-color);
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    justify-content: flex-start;
    gap: 0;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links .nav-link-item {
    display: block;
    padding: 1rem 1.5rem;
    margin: 0.5rem 0;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
    position: relative;
    overflow: hidden;
  }

  .nav-links.active .nav-link-item {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active .nav-link-item:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active .nav-link-item:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.active .nav-link-item:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.active .nav-link-item:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.active .nav-link-item:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links .nav-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .nav-links .nav-link-item:hover::before {
    left: 100%;
  }

  .nav-links .nav-link-item:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    transform: translateX(5px);
  }

  .nav-links .nav-link-item:active {
    transform: translateX(3px) scale(0.98);
  }

  .nav-links .search-toggle {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    border: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
  }

  .nav-links.active .search-toggle {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.35s;
  }

  .nav-links .search-toggle:hover {
    background: rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
  }

  .nav-links .get-ticket {
    margin-top: 1rem;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
  }

  .nav-links.active .get-ticket {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
  }

  .nav-links .get-ticket a {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  }

  .nav-links .get-ticket a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .nav-links {
    width: 100%;
    max-width: 100%;
    padding: 4rem 1.5rem 2rem;
  }

  .nav-links .nav-link-item {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hamburger-line {
    width: 22px;
    height: 2px;
  }
}
