@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Russo+One&display=swap');

/* ========================================
   CSS RESET AND VARIABLES
   ======================================== */

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

:root {
  --color-primary: #0d1b2a;
  --color-primary-light: #1b2d4a;
  --color-accent: #f5a623;
  --color-accent-dark: #d9900f;
  --color-accent-light: #fce4a3;
  --color-purple-bg: #A020F0;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-background: #ffffff;
  --color-background-alt: #f8f9fa;
  --color-background-dark: #0d1b2a;
  --color-border: #e0e0e0;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --font-primary: 'Segoe UI', 'Arial', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-h1: 42px;
  --font-size-h2: 32px;
  --font-size-h3: 24px;
  --line-height-base: 1.6;
  --line-height-heading: 1.2;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-xxxl: 64px;
  --spacing-huge: 96px;
  --border-radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.2s;
  --transition-base: 0.3s;
  --max-width: 1200px;
}

/* ========================================
   BASE STYLES
   ======================================== */

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #333333;
}

h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

a {
  color: #0d1b2a;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: #f5a623; }

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li { margin-bottom: 8px; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ========================================
   NAVIGATION
   ======================================== */

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #0d1b2a;
  padding: 0 20px;
  transition: background-color 0.3s ease;
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo a img {
  display: block;
  height: 40px;
  width: auto;
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

nav li { margin: 0; }

nav a {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  min-height: 44px;
  line-height: 28px;
}

nav a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

nav a.active {
  color: #f5a623;
  background-color: rgba(245, 166, 35, 0.1);
}

.nav-cta a {
  background-color: #f5a623;
  color: #0d1b2a;
  font-weight: 600;
  padding: 8px 20px;
}

.nav-cta a:hover {
  background-color: #d9900f;
  color: #0d1b2a;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
  min-height: 44px;
  min-width: 44px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background-color: var(--color-purple-bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(311deg, rgb(22 21 21 / 3%) 0%, rgb(69 43 87 / 50%) 100%) */
  background: radial-gradient(circle, rgba(0, 0, 0, 0.85) 0%, rgb(4 4 4 / 41%) 102%)
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  height: 90px;
  width: auto;
  margin-bottom: 16px;
}

.hero-content .label {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.hero-content h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 68px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero-content .subtitle {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-content h1.rainbow-text {
  background: linear-gradient(90deg, #00B7C2, #7ED321, #F8E71C, #F5A623, #D0021B, #9013FE, #4A90E2, #00B7C2, #7ED321);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Russo One', sans-serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.hero-content .description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Stats row */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.stat-item .stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #f5a623;
   
  display: block;
  line-height: 1.1;
}

.stat-item .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-height: 52px;
  line-height: 24px;
}

.btn-primary {
  background-color: #f5a623;
  color: #0d1b2a;
}

.btn-primary:hover {
  background-color: #d9900f;
  color: #0d1b2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: #f5a623;
  color: #f5a623;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: #f5a623;
  color: #0d1b2a;
}

.btn-accent:hover {
  background-color: #d9900f;
  color: #0d1b2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: #0d1b2a;
  border: 2px solid #0d1b2a;
}

.btn-outline:hover {
  background-color: #0d1b2a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  border-color: #f5a623;
  color: #f5a623;
  transform: translateY(-2px);
}

.hero-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 24px;
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */

.section {
  padding: 80px 20px;
}

.section-dark {
  background-color: #0d1b2a;
  color: #ffffff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

.section-alt {
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-number {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #f5a623;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-dark .section-header h2 {
  color: #ffffff;
}

.section-header p {
  font-size: 18px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   TWO-COLUMN LAYOUT (About / Mission)
   ======================================== */

.two-col {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.two-col-content {
  flex: 1;
}

.two-col-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.two-col-image {
  flex: 1;
}

.two-col-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.numbered-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.numbered-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.numbered-list .num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: #f5a623;
  color: #0d1b2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.numbered-list .num-text {
  padding-top: 4px;
  color: #666666;
  line-height: 1.6;
}

/* ========================================
   CARD GRID
   ======================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(245, 166, 35, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card p {
  color: #666666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.card-tag {
  display: inline-block;
  background-color: rgba(245, 166, 35, 0.1);
  color: #d9900f;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* Dark variant for cards on dark background */
.section-dark .card {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .card h3 {
  color: #ffffff;
}

.section-dark .card p {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   GALLERY CAROUSEL (gallery.html)
   ======================================== */

.carousel-container {
  max-width: 900px;
  margin: 0 auto;
}

.swiper {
  width: 100%;
  padding-bottom: 50px;
}

.swiper-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
}

.slide-caption {
  padding: 20px 16px 0;
  text-align: center;
}

.slide-caption h3 {
  margin-bottom: 4px;
}

.slide-caption p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 0;
}

.swiper-button-prev,
.swiper-button-next {
  color: #f5a623;
}

.swiper-pagination{

position: relative !important;
}
.swiper-pagination-bullet-active {
  background-color: #f5a623;
}

.carousel-fallback {
  display: none;
}

.carousel-fallback .static-slides {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.carousel-fallback .static-slide {
  flex: 1 1 280px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.carousel-fallback .static-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.carousel-fallback .static-slide h3 {
  padding: 12px 16px 16px;
  font-size: 16px;
}

/* ========================================
   PAST EDITIONS MARQUEE
   ======================================== */

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  content-visibility: auto;
  contain: layout style;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: fit-content;
  will-change: transform;
  animation: marqueeScroll 60s linear infinite;
  backface-visibility: hidden;
}

.marquee-group {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.marquee-item-first{
  margin-left:24px
}


.marquee-item {
  flex-shrink: 0;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
  contain: layout paint;
  background-color: var(--color-card-bg, #1a1a2e);
}

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

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ========================================
   TESTIMONIAL SLIDER
   ======================================== */

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonial-swiper {
  padding-bottom: 60px;
}

.testimonial-slide {
  height: auto;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-dark .testimonial-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .testimonial-text {
  color: rgba(255, 255, 255, 0.9);
}

.section-dark .testimonial-info strong {
  color: #ffffff;
}

.section-dark .testimonial-info span {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 60px;
  color: #f5a623;
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.4;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  background-color: rgba(245, 166, 35, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

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

.testimonial-info strong {
  display: block;
  font-size: 16px;
  color: #333333;
}

.testimonial-info span {
  display: block;
  font-size: 13px;
  color: #666666;
}

.testimonial-edition {
  font-size: 12px;
  color: #f5a623;
  font-weight: 600;
  margin-top: 2px;
}

/* Testimonial nav overrides */
.testimonial-prev,
.testimonial-next {
  color: #f5a623;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background-color: #f5a623;
}

/* ========================================
   SCHEDULE / TIMELINE
   ======================================== */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.schedule-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.schedule-item:hover {
  border-color: #f5a623;
  transform: translateY(-2px);
}

.schedule-date {
  display: inline-block;
  background-color: #f5a623;
  color: #0d1b2a;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.schedule-item h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
}

.schedule-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 0;
}

/* ========================================
   SPEAKER CARDS
   ======================================== */

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.speaker-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.speaker-card-inner {
  padding: 24px;
}

.speaker-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  background-color: #f0f0f0;
}

.speaker-card h3 {
  font-size: 18px;
  margin-bottom: 2px;
}

.speaker-title {
  font-size: 14px;
  color: #666666;
  margin-bottom: 2px;
}

.speaker-org {
  font-size: 13px;
  color: #f5a623;
  font-weight: 600;
  margin-bottom: 12px;
}

.speaker-bio {
  font-size: 14px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 12px;
}

.speaker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.speaker-tag {
  display: inline-block;
  background-color: rgba(245, 166, 35, 0.1);
  color: #d9900f;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ========================================
   IMAGE GALLERY (Past Editions)
   ======================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  background-color: #0d1b2a;
  padding: 64px 20px;
  text-align: center;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .hero-ctas {
  justify-content: center;
}

/* ========================================
   CONTACT / GET INVOLVED
   ======================================== */

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.contact-section > p {
  text-align: center;
  color: #666666;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.contact-form-wrapper {
  flex: 1;
}

.contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact-form-wrapper label,
.register-form-wrapper label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea,
.register-form-wrapper input,
.register-form-wrapper textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background-color: #ffffff;
  color: #0d1b2a;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.register-form-wrapper input:focus,
.register-form-wrapper textarea:focus {
  outline: none;
  border-color: #f5a623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.contact-form-wrapper textarea,
.register-form-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-wrapper .submit-btn,
.register-form-wrapper .submit-btn {
  width: 100%;
  padding: 14px 32px;
  background-color: #f5a623;
  color: #0d1b2a;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 52px;
}

.contact-form-wrapper .submit-btn:hover,
.register-form-wrapper .submit-btn:hover {
  background-color: #d9900f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.register-form-wrapper .submit-btn:disabled {
  background-color: #d9900f;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.register-form-wrapper {
  max-width: 100%;
}

.register-form-wrapper .form-group {
  margin-bottom: 16px;
}

.reg-section {
  margin-bottom: 48px;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 12px;
}

.reg-section-title {
  font-size: 22px;
  margin-bottom: 8px;
  color: #0d1b2a;
}

.reg-section-desc {
  color: #666666;
  font-size: 14px;
  margin-bottom: 24px;
}

.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.reg-block {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 24px;
}

.remove-member-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background-color: #ffffff;
  color: #999999;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-member-btn:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
}

.reg-block-title {
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  padding-right: 32px;
  border-bottom: 2px solid #f5a623;
  color: #0d1b2a;
}

.add-member-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 22px;
  background-color: #ffffff;
  border: 2px dashed #f5a623;
  border-radius: 8px;
  color: #b57610;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.add-member-btn:hover {
  background-color: #f5a623;
  color: #0d1b2a;
  border-style: solid;
}

.dp-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.dp-upload-wrapper {
  flex: 1;
}

.upload-zone {
  border: 2px dashed #c4c4c4;
  border-radius: 12px;
  background-color: #f8f9fa;
  padding: 56px 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.upload-zone:hover,
.upload-zone:focus {
  border-color: #f5a623;
  background-color: #fff8ec;
}

.upload-zone-dragover {
  border-color: #f5a623;
  background-color: #fff8ec;
  transform: scale(1.02);
}

.upload-zone .upload-icon {
  width: 72px;
  height: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}

.upload-zone p {
  margin-bottom: 6px;
  font-size: 17px;
  color: #0d1b2a;
}

.upload-zone span {
  font-size: 14px;
  color: #666666;
}

.dp-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.dp-actions .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.dp-note {
  margin-top: 16px;
  font-size: 13px;
  color: #666666;
}

.dp-preview-wrapper {
  flex: 1;
}

.dp-preview-frame {
  border-radius: 12px;
  background-color: #0d1b2a;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.dp-preview-frame canvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .dp-layout {
    flex-direction: column;
  }

  .dp-actions {
    flex-direction: column;
  }

  .dp-actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .reg-grid,
  .reg-grid-2 {
    grid-template-columns: 1fr;
  }

  .reg-section {
    padding: 24px 16px;
  }
}

.contact-info-wrapper {
  flex: 1;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.contact-info-wrapper h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-info-item {
  margin-bottom: 20px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 14px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: #333333;
}

.contact-info-item a:hover {
  color: #f5a623;
}

/* Social icons in contact info */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #0d1b2a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background-color: #f5a623;
  color: #0d1b2a;
  transform: translateY(-2px);
}

/* ========================================
   INVOLVEMENT CARDS (Get Involved section)
   ======================================== */

.involvement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.involvement-card {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

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

.involvement-card .card-icon {
  margin: 0 auto 16px;
}

.involvement-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.involvement-card p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 16px;
}

.involvement-card .btn {
  font-size: 14px;
  padding: 10px 24px;
  min-height: 44px;
}

/* ========================================
   3D TILT / PERSPECTIVE
   ======================================== */

.tilt-3d {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.tilt-3d-inner {
  transition: transform 0.15s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-3d-inner img {
  backface-visibility: hidden;
}

.tilt-3d-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 0.3s ease;
  opacity: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.15), transparent 70%);
}

.tilt-3d:hover .tilt-3d-glow {
  opacity: 1;
}

/* 3D spin card */
.spin-3d {
  perspective: 1000px;
}

.spin-3d-inner {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

.spin-3d:hover .spin-3d-inner {
  transform: rotateY(180deg);
}

/* ========================================
   LAYER ANIMATIONS (depth, float, z-space)
   ======================================== */

.layers {
  position: relative;
  transform-style: preserve-3d;
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.layer-1 { z-index: 1; transform: translateZ(20px); }
.layer-2 { z-index: 2; transform: translateZ(40px); }
.layer-3 { z-index: 3; transform: translateZ(60px); }
.layer-back { z-index: -1; transform: translateZ(-20px); }

.float {
  animation: float 4s ease-in-out infinite;
}

.float-delay-1 { animation-delay: -1s; }
.float-delay-2 { animation-delay: -2s; }
.float-delay-3 { animation-delay: -3s; }

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

.float-rotate {
  animation: floatRotate 6s ease-in-out infinite;
}

@keyframes floatRotate {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(-5px) rotate(-1deg); }
}

.depth-1 { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.depth-2 { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.depth-3 { box-shadow: 0 8px 32px rgba(0,0,0,0.16); }
.depth-4 { box-shadow: 0 16px 48px rgba(0,0,0,0.2); }

.scale-pulse {
  animation: scalePulse 3s ease-in-out infinite;
}

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

/* ========================================
   ENTRANCE / EXIT ANIMATIONS
   ======================================== */

.enter-fade {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.enter-fade.exit {
  opacity: 0;
}

.enter-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.enter-up.exit {
  opacity: 0;
  transform: translateY(-30px);
}

.enter-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.enter-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.enter-scale.exit {
  opacity: 0;
  transform: scale(0.9);
}

.enter-rotate {
  opacity: 0;
  transform: perspective(800px) rotateX(15deg) translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.enter-rotate.visible {
  opacity: 1;
  transform: perspective(800px) rotateX(0) translateY(0);
}

.enter-rotate.exit {
  opacity: 0;
  transform: perspective(800px) rotateX(-10deg) translateY(-20px);
}

.enter-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.enter-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.enter-left.exit {
  opacity: 0;
  transform: translateX(40px);
}

.enter-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.enter-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.enter-right.exit {
  opacity: 0;
  transform: translateX(-40px);
}

/* Stagger delays for entrance animations */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.4s; }
.stagger > *:nth-child(7) { transition-delay: 0.48s; }
.stagger > *:nth-child(8) { transition-delay: 0.56s; }
.stagger > *:nth-child(9) { transition-delay: 0.64s; }
.stagger > *:nth-child(10) { transition-delay: 0.72s; }

/* ========================================
   MAGNETIC BUTTONS & RIPPLE
   ======================================== */

.magnetic {
  position: relative;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5a623, #d9900f);
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ========================================
   MOUSE FOLLOWER
   ======================================== */

.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 2px solid #f5a623;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-follower.visible {
  opacity: 1;
}

.cursor-follower.hover {
  width: 56px;
  height: 56px;
  background-color: rgba(245, 166, 35, 0.12);
  border-color: #f5a623;
  mix-blend-mode: normal;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor-follower { display: none; }
}

/* ========================================
   ENHANCED SECTION REVEAL
   ======================================== */

.section-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.section-reveal.exit {
  opacity: 0;
  transform: translateY(-40px) scale(0.98);
}

/* Image zoom reveal */
.img-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-reveal.visible {
  clip-path: inset(0);
}

/* ========================================
   NUMBER COUNTER ANIMATION
   ======================================== */

.counter {
  display: inline-block;
}

/* ========================================
   FOOTER
   ======================================== */

#footer {
  background-color: #0a1525;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand .tagline {
  color: #f5a623;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #f5a623;
}

.footer-contact-item {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: #f5a623;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background-color: #f5a623;
  color: #0d1b2a;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: #f5a623;
}

/* ========================================
   FORM VALIDATION STYLES (reused from main.js)
   ======================================== */

.error-message {
  color: #dc3545;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}

input.error,
textarea.error {
  border-color: #dc3545 !important;
}

.success-message {
  background-color: #28a745;
  color: #ffffff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: calc(100vw - 48px);
}

.toast {
  min-width: 280px;
  max-width: 360px;
  background-color: #333333;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  animation: toast-in 0.3s ease forwards;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-error {
  background-color: #dc3545;
}

.toast-hide {
  opacity: 0;
  transform: translateY(8px);
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .toast-container {
    right: 16px;
    left: 16px;
    bottom: 16px;
  }

  .toast {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}

/* ========================================
   PAGE HEADER (for subpages)
   ======================================== */

.page-header {
  padding: 140px 20px 60px;
  text-align: center;
  background-color: #0d1b2a;
}

.page-header h1 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

*:focus {
  outline: 2px solid #f5a623;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: #f5a623;
  color: #0d1b2a;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  font-weight: 600;
}

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

@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;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up,
  .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.reveal,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-fade {
  opacity: 0;
  will-change: opacity, transform;
}

.reveal-fade {
  transition: opacity 0.6s ease;
}

.reveal-up {
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left {
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right {
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal {
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays for grid children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.7s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.8s; }
.stagger-children > *:nth-child(10) { transition-delay: 0.9s; }

/* Typewriter cursor */
.typewriter-cursor {
  animation: blinkCursor 0.7s steps(1) infinite;
  font-weight: 300;
  color: var(--color-accent, #f5a623);
  -webkit-text-fill-color: var(--color-accent, #f5a623);
  background-clip: unset;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Swipe-in entrance for hero bottom texts */
.swipe-in {
  opacity: 0;
  transform: translateY(24px);
  animation: swipeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-stats.swipe-in { animation-delay: 0.6s; }
.hero-ctas.swipe-in { animation-delay: 0.8s; }
.hero-date.swipe-in { animation-delay: 1.0s; }

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

/* Card hover lift */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card:hover .card-icon {
  transform: scale(1.1);
  background-color: rgba(245, 166, 35, 0.2);
}

.card .card-icon {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Image zoom on hover */
.grid-item,
.gallery-grid img,
.speaker-card,
.involvement-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.grid-item:hover img {
  transform: scale(1.05);
}

.grid-item img {
  transition: transform 0.4s ease;
}

.grid-item {
  overflow: hidden;
}

/* Button pulse on hover */
.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

/* Nav link underline animation */
nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #f5a623;
  transition: width 0.3s ease, left 0.3s ease;
}

nav a {
  position: relative;
}

nav a:hover::after,
nav a.active::after {
  width: 60%;
  left: 20%;
}

/* Counter animation for stats */
.stat-number {
  display: inline-block;
}

/* Schedule item hover */
.schedule-item {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.schedule-item:hover {
  transform: translateY(-4px);
  border-color: #f5a623;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.15);
}

/* Involvement card icon hover */
.involvement-card:hover .card-icon {
  transform: scale(1.15) rotate(-5deg);
  background-color: rgba(245, 166, 35, 0.2);
}

/* Two-col image reveal */
.two-col-image img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.two-col-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-layout {
    flex-direction: column;
  }

  .two-col {
    flex-direction: column;
    gap: 32px;
  }

  .two-col-image {
    order: -1;
  }

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

@media (max-width: 768px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }

  .hero-content h1.rainbow-text {
    font-size: 52px;
  }
  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content .subtitle {
    font-size: 22px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-item .stat-number {
    font-size: 28px;
  }

  .section {
    padding: 60px 20px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .mobile-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #0d1b2a;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 4px;
  }

  nav a {
    text-align: center;
  }

  .nav-cta a {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .speaker-grid {
    grid-template-columns: 1fr;
  }

  .speaker-card {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .gallery-grid img {
    height: 160px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

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

  .contact-layout {
    flex-direction: column;
  }

  .involvement-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 120px 20px 40px;
  }

  .page-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .hero-content h1.rainbow-text {
    font-size: 40px;
  }
  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content .description {
    font-size: 16px;
  }

  .hero-stats {
    /* flex-direction: column; */
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 200px;
  }

    .testimonials-carousel{
padding:0
    }
  

  .btn {
    padding: 12px 24px;
    font-size: 15px;
    min-height: 48px;
  }
}
