/* NR Conference & Kerala Higher Education Expo 2026 - Eventza-style */
:root {
  --bg-dark: #211A30;
  --bg-dark-2: #2E2542;
  --bg-dark-3: #3F335A;
  --purple-gradient: linear-gradient(135deg, #8A42F3 0%, #A77BF7 50%, #D1BBF7 100%);
  --purple-accent: #8A42F3;
  --purple-light: #D1BBF7;
  --purple-muted: rgba(138, 66, 243, 0.15);
  --accent-pink: #E91E8C;
  --accent-pink-glow: rgba(233, 30, 140, 0.4);
  --green-bg: #1a4535;
  --green-bg-2: #0f3328;
  --green-muted: rgba(255, 255, 255, 0.08);
  --green-border: rgba(255, 255, 255, 0.2);
  --green-light: #e8f4ef;
  --green-light-2: #d4ebe0;
  --green-card-bg: rgba(255, 255, 255, 0.7);
  --green-card-border: rgba(26, 69, 53, 0.2);
  --green-text: #1a3329;
  --green-text-muted: #2d4a3e;
  --text-light: #F0F0F0;
  --text-muted: #CCCCCC;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--bg-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

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

/* Header - Light theme */
.nav-header {
  background: #ffffff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  gap: 8px;
  min-height: 96px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

/* Two-line heading: larger, bolder, stretches toward menu */
.nav-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.nav-heading-line1,
.nav-heading-line2 {
  display: block;
}

.nav-heading-line2 {
  margin-top: 2px;
}

/* Logo: larger, prominent */
.nav-logo-img {
  height: 92px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav-menu {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-start;
  padding-left: 20px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  position: relative;
  flex-shrink: 0;
}

.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 18px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-list > li > a:hover {
  color: var(--accent-pink);
  background: rgba(233, 30, 140, 0.08);
}

.nav-chevron {
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 200px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  margin-top: -2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li {
  margin: 0;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown a:hover {
  background: rgba(233, 30, 140, 0.08);
  color: var(--accent-pink);
}

.nav-register {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-pink) 0%, #c2187a 100%);
  border-radius: 999px;
  box-shadow: 0 4px 14px var(--accent-pink-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-pink-glow);
}

/* Hamburger - hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #1e293b;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-header.nav-open .nav-mobile {
  max-height: 85vh;
  overflow-y: auto;
}

.nav-mobile-list {
  list-style: none;
  margin: 0;
  padding: 16px 20px;
}

.nav-mobile-list > li {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-mobile-list > li:last-of-type {
  border-bottom: none;
}

.nav-mobile-list > li > a {
  display: block;
  padding: 14px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-mobile-list > li > a:hover {
  color: var(--accent-pink);
}

.nav-mobile-dropdown {
  margin: 0;
}

.nav-mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.nav-mobile-trigger:hover {
  color: var(--accent-pink);
}

.nav-mobile-trigger::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.nav-mobile-dropdown.is-open .nav-mobile-trigger::after {
  transform: rotate(-135deg);
}

.nav-mobile-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-mobile-dropdown.is-open .nav-mobile-sub {
  max-height: 320px;
}

.nav-mobile-sub a {
  display: block;
  padding: 12px 0 12px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
}

.nav-mobile-sub a:hover {
  color: var(--accent-pink);
}

.nav-mobile-register {
  display: block;
  margin: 16px 20px 20px;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-pink) 0%, #c2187a 100%);
  border-radius: 999px;
  box-shadow: 0 4px 14px var(--accent-pink-glow);
}

.nav-mobile-register:hover {
  opacity: 0.95;
}

/* Desktop: hide mobile menu, show nav */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .nav-register {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }
}

@media (max-width: 640px) {
  .nav-heading {
    font-size: 1rem;
  }

  .nav-logo-img {
    height: 54px;
  }

  .nav-inner {
    min-height: 84px;
    padding: 0 16px;
  }
}

.btn-gradient {
  display: inline-block;
  background: var(--purple-gradient);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(138, 66, 243, 0.4);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 66, 243, 0.5);
}

.btn-outline {
  display: inline-block;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid var(--purple-accent);
  background: transparent;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--purple-muted);
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.35);
  transform: scale(1.05);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, #0f0a1e 0%, #1a1335 35%, #2a1b4e 65%, #1e1535 100%);
  opacity: 0.92;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-pink);
  top: -100px;
  left: -100px;
  opacity: 0.15;
}

.hero-glow-2 {
  width: 320px;
  height: 320px;
  background: var(--purple-accent);
  bottom: 10%;
  right: 5%;
  opacity: 0.2;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: 10%;
}

@media (max-width: 768px) {
  .hero-glow,
  .hero-shape {
    display: none;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 968px) {
  .hero {
    min-height: auto;
    padding: 100px 0 80px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
  }
}

.hero-content {
  max-width: 820px;
}

/* Title: same size, extreme left; green for "& Kerala Higher Education Expo" */
.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-green {
  color: #5ba86e;
}

.hero-slogan {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 4px solid var(--purple-accent);
  max-width: 540px;
}

/* Details: much more prominent */
.hero-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-detail-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple-light);
  font-weight: 700;
}

.hero-detail-value {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-pink) 0%, #c2187a 100%) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 24px var(--accent-pink-glow);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-pink-glow);
}

.hero-cta svg {
  flex-shrink: 0;
}

/* Hero countdown timer – separators, more height/spacing */
.hero-timer-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-timer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 35%, transparent 50%), linear-gradient(180deg, #e030a0 0%, #d02090 25%, #c01885 60%, #a81070 100%);
  border-radius: 14px 14px 28px 12px;
  padding: 5px 5px 5px 5px;
  min-width: 140px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-align: center;
}

.hero-timer-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 28px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.hero-timer-units {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.hero-timer-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-timer-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-timer-block:first-child {
  padding-top: 0;
}

.hero-timer-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-timer-unit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 968px) {
  .hero-content {
    max-width: none;
  }
  .hero-slogan {
    padding-left: 12px;
    margin-left: 0;
  }
  .hero-details {
    align-items: center;
    text-align: center;
  }
  .hero-cta-wrap {
    justify-content: center;
  }
  .hero-timer-wrap {
    display: none;
  }
}

/* Shared: used by about-feature-card */
.hero-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--purple-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

/* Section common */
section {
  padding: 80px 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-dark-2) 0%, var(--bg-dark) 100%);
}

.section-light {
  background: var(--white);
  color: #1a1a1a;
}

.section-light h2,
.section-light .section-title {
  color: #1a1a1a;
}

.section-light .section-sub,
.section-light p {
  color: #555;
}

.section-label {
  font-size: 0.9rem;
  color: var(--purple-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 12px;
  color: var(--white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
}

/* Shared section heading + textured underline (Schedule, Speakers, Countdown) */
.section-heading-block {
  margin-bottom: 20px;
}

.section-heading-block--center {
  display: inline-block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-block--center .section-heading-underline {
  justify-content: center;
}

.section-heading {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-dark .section-heading,
.countdown-section .section-heading {
  color: var(--white);
}

.section-heading--light {
  color: #1a1a1a;
}

.section-heading-underline {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 12px;
  margin-top: 12px;
}

.section-heading-underline .about-ul-bar,
.section-heading-underline .about-ul-dot {
  height: 5px;
}

/* News ticker – between hero and about, contrast colours */
.news-ticker {
  background: linear-gradient(90deg, #0d2137 0%, #1a3a52 50%, #0d2137 100%);
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.news-ticker-inner {
  width: 100%;
  overflow: hidden;
}

.news-ticker-track {
  display: flex;
  width: max-content;
  animation: news-ticker-scroll 50s linear infinite;
}

.news-ticker-track:hover {
  animation-play-state: paused;
}

.news-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 0 48px;
  white-space: nowrap;
}

.news-ticker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: 2px solid #e63946;
  border-radius: 6px;
  color: #e63946;
  background: rgba(230, 57, 70, 0.12);
}

.news-ticker-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #f0f4f8;
}

.news-ticker-link {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-ticker-link:hover {
  color: #fcd34d;
}

@keyframes news-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@media (max-width: 640px) {
  .news-ticker { padding: 12px 0; }
  .news-ticker-item { padding: 0 24px; gap: 10px; }
  .news-ticker-icon { width: 30px; height: 30px; min-width: 30px; }
  .news-ticker-text { font-size: 0.875rem; }
}

/* About – light green theme, dark text */
.section-about {
  position: relative;
  background: linear-gradient(180deg, var(--green-light) 0%, var(--green-light-2) 100%);
  overflow: hidden;
}

/* Decorative moving background elements */
.about-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Prominent corner & edge blobs */
.about-bg-blob {
  position: absolute;
  border-radius: 50%;
  animation: about-bg-blob-float 14s ease-in-out infinite;
}

.about-bg-blob--tl { left: -2%;   top: -2%;   width: 80px;  height: 80px;  background: rgba(91, 168, 110, 0.4);  animation-duration: 16s; animation-delay: 0s; }
.about-bg-blob--tr { right: -2%;  top: -2%;   width: 70px;  height: 70px;  background: rgba(233, 30, 140, 0.25); animation-duration: 18s; animation-delay: -3s; }
.about-bg-blob--bl { left: -2%;   bottom: -2%; width: 65px;  height: 65px;  background: rgba(26, 69, 53, 0.35);  animation-duration: 15s; animation-delay: -2s; }
.about-bg-blob--br { right: -2%;  bottom: -2%; width: 75px;  height: 75px;  background: rgba(233, 30, 140, 0.22); animation-duration: 17s; animation-delay: -5s; }
.about-bg-blob--edge-t { left: 50%;  top: -3%;   width: 50px;  height: 50px;  background: rgba(255, 192, 0, 0.3);  transform: translateX(-50%); animation-duration: 19s; animation-delay: -4s; }
.about-bg-blob--edge-b { left: 50%;  bottom: -3%; width: 48px;  height: 48px;  background: rgba(91, 168, 110, 0.35); transform: translateX(-50%); animation-duration: 16s; animation-delay: -1s; }
.about-bg-blob--edge-l { left: -3%;   top: 50%;  width: 55px;  height: 55px;  background: rgba(26, 69, 53, 0.3);   transform: translateY(-50%); animation-duration: 18s; animation-delay: -6s; }
.about-bg-blob--edge-r { right: -3%;  top: 50%;  width: 52px;  height: 52px;  background: rgba(233, 30, 140, 0.2);  transform: translateY(-50%); animation-duration: 15s; animation-delay: -7s; }

@keyframes about-bg-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(20px, -18px) scale(1.1); opacity: 0.9; }
  66% { transform: translate(-15px, 12px) scale(0.95); opacity: 0.85; }
}

.about-bg-blob--edge-t,
.about-bg-blob--edge-b { transform: translateX(-50%); }
.about-bg-blob--edge-l,
.about-bg-blob--edge-r { transform: translateY(-50%); }

.about-bg-blob--edge-t { animation-name: about-bg-blob-float-t; }
.about-bg-blob--edge-b { animation-name: about-bg-blob-float-b; }
.about-bg-blob--edge-l { animation-name: about-bg-blob-float-l; }
.about-bg-blob--edge-r { animation-name: about-bg-blob-float-r; }

@keyframes about-bg-blob-float-t {
  0%, 100% { transform: translateX(-50%) translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translateX(-50%) translate(15px, 12px) scale(1.08); opacity: 0.9; }
  66% { transform: translateX(-50%) translate(-10px, 8px) scale(0.97); opacity: 0.85; }
}

@keyframes about-bg-blob-float-b {
  0%, 100% { transform: translateX(-50%) translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translateX(-50%) translate(-12px, -10px) scale(1.06); opacity: 0.9; }
  66% { transform: translateX(-50%) translate(8px, -6px) scale(0.96); opacity: 0.88; }
}

@keyframes about-bg-blob-float-l {
  0%, 100% { transform: translateY(-50%) translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translateY(-50%) translate(18px, -10px) scale(1.08); opacity: 0.9; }
  66% { transform: translateY(-50%) translate(10px, 14px) scale(0.95); opacity: 0.86; }
}

@keyframes about-bg-blob-float-r {
  0%, 100% { transform: translateY(-50%) translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translateY(-50%) translate(-16px, 12px) scale(1.05); opacity: 0.88; }
  66% { transform: translateY(-50%) translate(-8px, -8px) scale(0.98); opacity: 0.9; }
}

/* Dots – larger, more visible, clustered on edges/corners */
.about-bg-dot {
  position: absolute;
  border-radius: 50%;
  animation: about-bg-float 18s ease-in-out infinite;
}

.about-bg-dot--1  { left: 2%;   top: 5%;   width: 14px; height: 14px; background: rgba(26, 69, 53, 0.5);   animation-duration: 16s; animation-delay: 0s; }
.about-bg-dot--2  { left: 6%;   top: 12%;  width: 10px; height: 10px; background: rgba(91, 168, 110, 0.55); animation-duration: 20s; animation-delay: -2s; }
.about-bg-dot--3  { left: 3%;   top: 22%;  width: 12px; height: 12px; background: rgba(233, 30, 140, 0.35); animation-duration: 18s; animation-delay: -4s; }
.about-bg-dot--4  { left: 1%;   top: 35%;  width: 16px; height: 16px; background: rgba(26, 69, 53, 0.45);  animation-duration: 22s; animation-delay: -1s; }
.about-bg-dot--5  { left: 5%;   top: 48%;  width: 10px; height: 10px; background: rgba(255, 192, 0, 0.4);  animation-duration: 19s; animation-delay: -5s; }
.about-bg-dot--6  { left: 2%;   top: 62%;  width: 14px; height: 14px; background: rgba(91, 168, 110, 0.5);  animation-duration: 17s; animation-delay: -3s; }
.about-bg-dot--7  { left: 4%;   top: 78%;  width: 12px; height: 12px; background: rgba(26, 69, 53, 0.48);  animation-duration: 21s; animation-delay: -6s; }
.about-bg-dot--8  { left: 1%;   top: 92%;  width: 18px; height: 18px; background: rgba(233, 30, 140, 0.3);  animation-duration: 15s; animation-delay: -7s; }
.about-bg-dot--9  { right: 2%;  top: 4%;   width: 16px; height: 16px; background: rgba(91, 168, 110, 0.48); animation-duration: 18s; animation-delay: -2s; }
.about-bg-dot--10 { right: 5%;  top: 14%;  width: 12px; height: 12px; background: rgba(233, 30, 140, 0.38); animation-duration: 20s; animation-delay: -4s; }
.about-bg-dot--11 { right: 1%;  top: 28%;  width: 14px; height: 14px; background: rgba(26, 69, 53, 0.42);  animation-duration: 16s; animation-delay: -8s; }
.about-bg-dot--12 { right: 4%;  top: 42%;  width: 10px; height: 10px; background: rgba(255, 255, 255, 0.5);  animation-duration: 22s; animation-delay: -1s; }
.about-bg-dot--13 { right: 2%;  top: 58%;  width: 16px; height: 16px; background: rgba(91, 168, 110, 0.5);  animation-duration: 19s; animation-delay: -5s; }
.about-bg-dot--14 { right: 6%;  top: 72%;  width: 12px; height: 12px; background: rgba(233, 30, 140, 0.32); animation-duration: 17s; animation-delay: -9s; }
.about-bg-dot--15 { right: 1%;  top: 88%;  width: 20px; height: 20px; background: rgba(26, 69, 53, 0.46);  animation-duration: 21s; animation-delay: -3s; }
.about-bg-dot--16 { left: 12%;  top: 2%;   width: 12px; height: 12px; background: rgba(255, 192, 0, 0.45); animation-duration: 18s; animation-delay: -6s; }
.about-bg-dot--17 { left: 88%;  top: 1%;   width: 14px; height: 14px; background: rgba(233, 30, 140, 0.35); animation-duration: 14s; animation-delay: -10s; }
.about-bg-dot--18 { left: 96%;  top: 18%;  width: 10px; height: 10px; background: rgba(91, 168, 110, 0.52); animation-duration: 20s; animation-delay: -7s; }
.about-bg-dot--19 { left: 14%;  bottom: 3%;  width: 16px; height: 16px; background: rgba(26, 69, 53, 0.44);  animation-duration: 16s; animation-delay: -4s; }
.about-bg-dot--20 { left: 94%;  bottom: 2%;  width: 14px; height: 14px; background: rgba(91, 168, 110, 0.48); animation-duration: 19s; animation-delay: -8s; }
.about-bg-dot--21 { left: 22%;  top: 3%;   width: 10px; height: 10px; background: rgba(255, 255, 255, 0.55); animation-duration: 21s; animation-delay: -11s; }
.about-bg-dot--22 { left: 78%;  top: 6%;   width: 12px; height: 12px; background: rgba(26, 69, 53, 0.4);   animation-duration: 17s; animation-delay: -12s; }
.about-bg-dot--23 { left: 18%;  bottom: 8%;  width: 14px; height: 14px; background: rgba(233, 30, 140, 0.33); animation-duration: 15s; animation-delay: -2s; }
.about-bg-dot--24 { left: 84%;  bottom: 6%;  width: 11px; height: 11px; background: rgba(255, 192, 0, 0.42); animation-duration: 23s; animation-delay: -9s; }
.about-bg-dot--25 { left: 8%;   top: 85%;  width: 13px; height: 13px; background: rgba(91, 168, 110, 0.5);  animation-duration: 18s; animation-delay: -13s; }
.about-bg-dot--26 { left: 92%;  top: 78%;  width: 15px; height: 15px; background: rgba(26, 69, 53, 0.48);  animation-duration: 20s; animation-delay: -5s; }
.about-bg-dot--27 { left: 28%;  top: 1%;   width: 10px; height: 10px; background: rgba(233, 30, 140, 0.3);  animation-duration: 16s; animation-delay: -14s; }
.about-bg-dot--28 { left: 72%;  bottom: 4%;  width: 12px; height: 12px; background: rgba(255, 255, 255, 0.48); animation-duration: 22s; animation-delay: -6s; }
.about-bg-dot--29 { left: 38%;  bottom: 1%;  width: 14px; height: 14px; background: rgba(91, 168, 110, 0.45); animation-duration: 19s; animation-delay: -10s; }
.about-bg-dot--30 { left: 62%;  top: 2%;   width: 11px; height: 11px; background: rgba(26, 69, 53, 0.42);  animation-duration: 17s; animation-delay: -15s; }

@keyframes about-bg-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  25% { transform: translate(18px, -22px) scale(1.12); opacity: 0.9; }
  50% { transform: translate(-14px, 16px) scale(0.92); opacity: 0.92; }
  75% { transform: translate(10px, 14px) scale(1.08); opacity: 0.88; }
}

.section-about .container {
  position: relative;
  z-index: 1;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: stretch;
}

@media (max-width: 968px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-organisers .about-organiser {
    flex: none;
  }
  .about-organisers {
    order: 2;
  }
  .about-right {
    order: 1;
    text-align: center;
  }
  .about-btns {
    justify-content: center;
  }
}

.about-organisers {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 0;
}

.about-organisers .about-organiser {
  flex: 1;
}

.about-heading-block {
  margin-bottom: 0;
}

.about-right .about-heading-block {
  margin-bottom: 24px;
}

.about-organisers-heading,
.about-label {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--green-text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.about-label {
  color: var(--green-text);
}

.about-heading-underline {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 12px;
  margin-top: 12px;
}

.about-ul-bar {
  width: 72px;
  min-width: 72px;
  height: 5px;
  background: #FFC000;
  border-radius: 2px;
}

.about-ul-dot {
  width: 12px;
  height: 5px;
  border-radius: 2px;
  flex-shrink: 0;
}

.about-ul-dot--blue {
  background: #000080;
}

.about-ul-dot--pink {
  background: #FF00FF;
}

.about-ul-dot--orange {
  background: #FF4500;
}

.about-organiser {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 24px;
  background: var(--green-card-bg);
  border: 2px solid var(--green-card-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(26, 69, 53, 0.08);
}

.about-organiser img {
  height: clamp(120px, 18vw, 200px);
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.about-organiser-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-text);
  text-align: center;
  line-height: 1.35;
}

.about-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin-bottom: 24px;
  color: var(--green-text);
  line-height: 1.25;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about-card {
  padding: 20px 24px;
  background: var(--green-card-bg);
  border: 1px solid var(--green-card-border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(26, 69, 53, 0.08);
}

.about-card p {
  font-size: 1rem;
  color: var(--green-text);
  line-height: 1.6;
  margin: 0;
}

.about-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section-about .btn-outline-light {
  border-color: var(--green-text-muted);
  color: var(--green-text);
}

.section-about .btn-outline-light:hover {
  background: rgba(26, 69, 53, 0.1);
  border-color: var(--green-text);
}

/* Key Highlights */
.section-highlights {
  position: relative;
  overflow: hidden;
}

.section-highlights .container {
  position: relative;
  z-index: 1;
}

.highlights-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.highlights-bg-dot {
  position: absolute;
  border-radius: 50%;
  animation: highlights-bg-float 20s ease-in-out infinite;
}

.highlights-bg-dot--1  { left: 3%;   top: 10%;  width: 10px; height: 10px; background: rgba(138, 66, 243, 0.2);   animation-duration: 18s; animation-delay: 0s; }
.highlights-bg-dot--2  { left: 12%;  top: 25%;  width: 8px;  height: 8px;  background: rgba(167, 123, 247, 0.18);  animation-duration: 22s; animation-delay: -3s; }
.highlights-bg-dot--3  { left: 8%;  top: 60%;  width: 12px; height: 12px; background: rgba(233, 30, 140, 0.15); animation-duration: 19s; animation-delay: -5s; }
.highlights-bg-dot--4  { right: 5%;  top: 15%;  width: 10px; height: 10px; background: rgba(138, 66, 243, 0.22);  animation-duration: 21s; animation-delay: -2s; }
.highlights-bg-dot--5  { right: 10%; top: 45%;  width: 8px;  height: 8px;  background: rgba(167, 123, 247, 0.2);   animation-duration: 17s; animation-delay: -6s; }
.highlights-bg-dot--6  { right: 4%;  top: 75%;  width: 11px; height: 11px; background: rgba(233, 30, 140, 0.16); animation-duration: 23s; animation-delay: -4s; }
.highlights-bg-dot--7  { left: 25%;  top: 5%;   width: 9px;  height: 9px;  background: rgba(138, 66, 243, 0.18);  animation-duration: 20s; animation-delay: -7s; }
.highlights-bg-dot--8  { left: 70%;  top: 8%;   width: 10px; height: 10px; background: rgba(167, 123, 247, 0.2);   animation-duration: 16s; animation-delay: -1s; }
.highlights-bg-dot--9  { left: 20%;  bottom: 12%; width: 8px;  height: 8px;  background: rgba(233, 30, 140, 0.14); animation-duration: 24s; animation-delay: -8s; }
.highlights-bg-dot--10 { left: 55%;  bottom: 8%;  width: 11px; height: 11px; background: rgba(138, 66, 243, 0.2);   animation-duration: 18s; animation-delay: -9s; }
.highlights-bg-dot--11 { left: 85%;  bottom: 18%; width: 9px;  height: 9px;  background: rgba(167, 123, 247, 0.18);  animation-duration: 22s; animation-delay: -10s; }
.highlights-bg-dot--12 { left: 42%;  top: 50%;  width: 7px;  height: 7px;  background: rgba(233, 30, 140, 0.12); animation-duration: 19s; animation-delay: -11s; }

@keyframes highlights-bg-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(14px, -12px) scale(1.08); opacity: 0.88; }
  66% { transform: translate(-10px, 10px) scale(0.95); opacity: 0.9; }
}

.highlights-heading-block {
  margin-bottom: 32px;
}

.highlights-heading {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.highlights-heading-underline {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 12px;
  margin-top: 12px;
}

.highlights-heading-underline .about-ul-bar,
.highlights-heading-underline .about-ul-dot {
  height: 5px;
}

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

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

@media (max-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

.highlight-card {
  background: var(--bg-dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.highlight-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.highlight-card-body {
  padding: 20px 22px;
}

.highlight-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.3;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.highlight-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-card ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 1.1em;
  position: relative;
  margin-bottom: 4px;
}

.highlight-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-weight: 700;
}

/* Call for Abstracts (light section) */
.cfa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 968px) {
  .cfa-inner {
    grid-template-columns: 1fr;
  }
  .cfa-image-wrap { order: 1; }
  .cfa-content { order: 0; }
}

.cfa-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cfa-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.cfa-heading-block {
  margin-bottom: 20px;
}

.cfa-heading {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cfa-heading-underline {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 12px;
  margin-top: 12px;
}

.cfa-heading-underline .about-ul-bar,
.cfa-heading-underline .about-ul-dot {
  height: 5px;
}

.cfa-intro {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 24px;
}

.cfa-deadline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(138, 66, 243, 0.08) 0%, rgba(233, 30, 140, 0.06) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(138, 66, 243, 0.2);
  margin-bottom: 28px;
}

.cfa-deadline-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
}

.cfa-deadline-date {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple-accent);
}

.cfa-submission {
  margin-bottom: 28px;
}

.cfa-submission-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.cfa-submission-desc {
  font-size: 0.98rem;
  color: #444;
  line-height: 1.55;
  margin-bottom: 14px;
}

.cfa-officers {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cfa-officers li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
}

.cfa-officers li::before {
  content: '✓';
  color: var(--purple-accent);
  font-weight: bold;
  font-size: 1.05rem;
}

.cfa-content .btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Event Schedule – textured dark green */
.section-schedule {
  background: linear-gradient(135deg, #0f3328 0%, #1a4535 40%, #14382c 100%);
  position: relative;
  overflow: hidden;
}

.schedule-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.schedule-bg-dot {
  position: absolute;
  border-radius: 50%;
  animation: schedule-bg-float 21s ease-in-out infinite;
}

.schedule-bg-dot--1  { left: 4%;   top: 10%;  width: 10px; height: 10px; background: rgba(91, 168, 110, 0.3);   animation-duration: 19s; animation-delay: 0s; }
.schedule-bg-dot--2  { left: 16%;  top: 30%;  width: 8px;  height: 8px;  background: rgba(26, 69, 53, 0.35);  animation-duration: 23s; animation-delay: -3s; }
.schedule-bg-dot--3  { left: 6%;   top: 55%;  width: 12px; height: 12px; background: rgba(91, 168, 110, 0.25);  animation-duration: 18s; animation-delay: -5s; }
.schedule-bg-dot--4  { right: 5%;  top: 16%;  width: 9px;  height: 9px;  background: rgba(26, 69, 53, 0.3);   animation-duration: 22s; animation-delay: -2s; }
.schedule-bg-dot--5  { right: 14%; top: 48%;  width: 11px; height: 11px; background: rgba(91, 168, 110, 0.28);  animation-duration: 20s; animation-delay: -6s; }
.schedule-bg-dot--6  { right: 3%;  top: 74%;  width: 8px;  height: 8px;  background: rgba(26, 69, 53, 0.32);  animation-duration: 24s; animation-delay: -4s; }
.schedule-bg-dot--7  { left: 30%;  top: 5%;   width: 10px; height: 10px; background: rgba(91, 168, 110, 0.26);  animation-duration: 17s; animation-delay: -7s; }
.schedule-bg-dot--8  { left: 72%;  top: 6%;   width: 9px;  height: 9px;  background: rgba(26, 69, 53, 0.28);  animation-duration: 25s; animation-delay: -1s; }
.schedule-bg-dot--9  { left: 20%;  bottom: 12%; width: 8px;  height: 8px;  background: rgba(91, 168, 110, 0.3);   animation-duration: 21s; animation-delay: -8s; }
.schedule-bg-dot--10 { left: 52%;  bottom: 8%;  width: 11px; height: 11px; background: rgba(26, 69, 53, 0.3);   animation-duration: 19s; animation-delay: -9s; }
.schedule-bg-dot--11 { left: 85%;  bottom: 18%; width: 9px;  height: 9px;  background: rgba(91, 168, 110, 0.28);  animation-duration: 23s; animation-delay: -10s; }
.schedule-bg-dot--12 { left: 45%;  top: 48%;  width: 7px;  height: 7px;  background: rgba(91, 168, 110, 0.2);   animation-duration: 20s; animation-delay: -11s; }

@keyframes schedule-bg-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(14px, -12px) scale(1.06); opacity: 0.88; }
  66% { transform: translate(-10px, 10px) scale(0.96); opacity: 0.9; }
}

.section-schedule .container {
  position: relative;
  z-index: 1;
}

.schedule-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 968px) {
  .schedule-inner {
    grid-template-columns: 1fr;
  }
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.schedule-item {
  display: flex;
  gap: 20px;
  background: var(--bg-dark-2);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.section-schedule .schedule-item {
  background: rgba(26, 69, 53, 0.45);
  border-color: rgba(255, 255, 255, 0.12);
}

.schedule-item:hover {
  border-color: var(--purple-accent);
}

.section-schedule .schedule-item:hover {
  border-color: rgba(91, 168, 110, 0.8);
}

.schedule-item img {
  width: 100px;
  height: 100px;
  min-width: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.schedule-item-date {
  font-size: 0.85rem;
  color: var(--purple-light);
  font-weight: 600;
  margin-bottom: 4px;
}

.schedule-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--white);
}

.schedule-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.schedule-item a {
  color: var(--purple-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.schedule-item a:hover {
  color: var(--white);
}

/* Schedule Page - Table Format */
.schedule-page {
  background: linear-gradient(135deg, #0f3328 0%, #1a4535 40%, #14382c 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  min-height: 100vh;
}

.schedule-page-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.schedule-page .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.schedule-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 30px;
}

.schedule-page-title h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.schedule-page-title p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.schedule-page-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-schedule-action {
  padding: 12px 28px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.btn-schedule-action:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.schedule-table-wrapper {
  background: rgba(26, 69, 53, 0.3);
  border-radius: var(--radius-lg);
  padding: 30px;
  overflow-x: auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--white);
}

.schedule-table thead {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.schedule-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.schedule-table th:nth-child(1) {
  width: 15%;
  min-width: 140px;
}

.schedule-table th:nth-child(2) {
  width: 25%;
  min-width: 200px;
}

.schedule-table th:nth-child(3) {
  width: 60%;
}

.schedule-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.schedule-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.schedule-table td {
  padding: 20px;
  vertical-align: top;
  line-height: 1.6;
  font-size: 0.95rem;
}

.schedule-table td:first-child {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.schedule-table td:nth-child(2) {
  font-weight: 600;
  color: var(--white);
}

.schedule-table td:nth-child(3) {
  color: rgba(255, 255, 255, 0.85);
}

.schedule-day-header {
  background: rgba(91, 168, 110, 0.15) !important;
  border-top: 2px solid rgba(91, 168, 110, 0.4);
  border-bottom: 2px solid rgba(91, 168, 110, 0.4);
}

.schedule-day-header td {
  padding: 25px 20px !important;
  border: none !important;
  vertical-align: middle;
}

.schedule-day-header h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
}

.btn-schedule-day-action {
  padding: 10px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  display: inline-block;
  white-space: nowrap;
}

.btn-schedule-day-action:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.schedule-label {
  color: #FFC107;
  font-weight: 700;
  display: inline-block;
  margin-right: 8px;
}

.schedule-table td:nth-child(3) ul {
  margin: 8px 0;
  padding-left: 20px;
}

.schedule-table td:nth-child(3) li {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 968px) {
  .schedule-page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-page-actions {
    width: 100%;
  }

  .btn-schedule-action {
    flex: 1;
    text-align: center;
    min-width: 150px;
  }

  .schedule-table-wrapper {
    padding: 20px 15px;
  }

  .schedule-table {
    font-size: 0.9rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 15px 12px;
  }

  .schedule-table th:nth-child(1),
  .schedule-table td:nth-child(1) {
    width: 20%;
    min-width: 100px;
  }

  .schedule-table th:nth-child(2),
  .schedule-table td:nth-child(2) {
    width: 30%;
    min-width: 150px;
  }

  .schedule-table th:nth-child(3),
  .schedule-table td:nth-child(3) {
    width: 50%;
  }
}

@media (max-width: 640px) {
  .schedule-page {
    padding: 100px 0 60px;
  }

  .schedule-table-wrapper {
    padding: 15px 10px;
  }

  .schedule-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .schedule-table thead {
    display: none;
  }

  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table td {
    display: block;
    width: 100%;
  }

  .schedule-table tr {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 15px;
    background: rgba(26, 69, 53, 0.2);
  }

  .schedule-table td {
    padding: 10px 0;
    border: none;
    text-align: left;
  }

  .schedule-table td:before {
    content: attr(data-label) ": ";
    font-weight: 700;
    color: #FFC107;
    display: inline-block;
    margin-right: 8px;
  }

  .schedule-table td:first-child:before {
    content: "Time Slot: ";
  }

  .schedule-table td:nth-child(2):before {
    content: "Session: ";
  }

  .schedule-table td:nth-child(3):before {
    content: "Details: ";
  }

  .schedule-day-header td {
    padding: 20px 15px !important;
    display: block;
    text-align: left !important;
  }

  .schedule-day-header td:last-child {
    margin-top: 15px;
    text-align: left !important;
  }

  .btn-schedule-day-action {
    width: 100%;
    text-align: center;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid #eee;
  transition: var(--transition);
  text-align: center;
}

.pricing-card:hover {
  border-color: var(--purple-accent);
  box-shadow: 0 12px 40px rgba(138, 66, 243, 0.15);
}

.pricing-card.featured {
  border-color: var(--purple-accent);
  box-shadow: 0 12px 40px rgba(138, 66, 243, 0.2);
  transform: scale(1.03);
}

.pricing-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--purple-muted);
  color: var(--purple-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.pricing-card h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
}

.pricing-features {
  list-style: none;
  margin: 24px 0 32px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--purple-accent);
  font-weight: bold;
}

.pricing-card .btn-gradient {
  width: 100%;
  text-align: center;
}

/* Full Schedule Banner */
.schedule-banner {
  background: linear-gradient(rgba(33, 26, 48, 0.85), rgba(33, 26, 48, 0.85)),
    url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1600') center/cover;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.schedule-banner h2 {
  margin-bottom: 12px;
}

.schedule-banner .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.schedule-banner-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.schedule-banner-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
}

.schedule-banner-feature .circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--purple-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Speakers */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

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

@media (max-width: 600px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
}

.speaker-card {
  text-align: center;
}

.speaker-card img {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #eee;
}

.speaker-card h4 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.speaker-card p {
  font-size: 0.9rem;
  color: #666;
}

.speakers-links {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.speakers-links a {
  color: var(--purple-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.speakers-links a:hover {
  color: var(--bg-dark-3);
}

/* Countdown – dark pink with textures */
.countdown-section {
  background: linear-gradient(135deg, #4a1a38 0%, #5c2244 40%, #4d1d3a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.countdown-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.countdown-bg-dot {
  position: absolute;
  border-radius: 50%;
  animation: countdown-bg-float 22s ease-in-out infinite;
}

.countdown-bg-dot--1  { left: 5%;   top: 12%;  width: 10px; height: 10px; background: rgba(233, 30, 140, 0.25);  animation-duration: 20s; animation-delay: 0s; }
.countdown-bg-dot--2  { left: 18%;  top: 28%;  width: 8px;  height: 8px;  background: rgba(255, 182, 193, 0.2);   animation-duration: 24s; animation-delay: -3s; }
.countdown-bg-dot--3  { left: 8%;   top: 58%;  width: 12px; height: 12px; background: rgba(233, 30, 140, 0.2);   animation-duration: 18s; animation-delay: -5s; }
.countdown-bg-dot--4  { right: 6%;  top: 18%;  width: 9px;  height: 9px;  background: rgba(255, 192, 203, 0.22);  animation-duration: 21s; animation-delay: -2s; }
.countdown-bg-dot--5  { right: 12%; top: 48%;  width: 11px; height: 11px; background: rgba(233, 30, 140, 0.22);  animation-duration: 19s; animation-delay: -6s; }
.countdown-bg-dot--6  { right: 4%;  top: 72%;  width: 8px;  height: 8px;  background: rgba(255, 182, 193, 0.18);  animation-duration: 23s; animation-delay: -4s; }
.countdown-bg-dot--7  { left: 28%;  top: 6%;   width: 10px; height: 10px; background: rgba(233, 30, 140, 0.18);  animation-duration: 17s; animation-delay: -7s; }
.countdown-bg-dot--8  { left: 68%;  top: 8%;   width: 9px;  height: 9px;  background: rgba(255, 192, 203, 0.2);   animation-duration: 25s; animation-delay: -1s; }
.countdown-bg-dot--9  { left: 22%;  bottom: 14%; width: 8px;  height: 8px;  background: rgba(255, 182, 193, 0.2);   animation-duration: 22s; animation-delay: -8s; }
.countdown-bg-dot--10 { left: 55%;  bottom: 10%; width: 11px; height: 11px; background: rgba(233, 30, 140, 0.2);   animation-duration: 20s; animation-delay: -9s; }
.countdown-bg-dot--11 { left: 82%;  bottom: 20%; width: 9px;  height: 9px;  background: rgba(255, 192, 203, 0.22);  animation-duration: 19s; animation-delay: -10s; }
.countdown-bg-dot--12 { left: 42%;  top: 52%;  width: 7px;  height: 7px;  background: rgba(233, 30, 140, 0.15);  animation-duration: 21s; animation-delay: -11s; }

@keyframes countdown-bg-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(12px, -14px) scale(1.06); opacity: 0.88; }
  66% { transform: translate(-10px, 10px) scale(0.96); opacity: 0.9; }
}

.countdown-section .container {
  position: relative;
  z-index: 1;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 48px 0 40px;
}

.countdown-block {
  background: rgba(90, 35, 65, 0.6);
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  min-width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.countdown-block .num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1.2;
}

.countdown-block .label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Testimonials */
.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 968px) {
  .testimonials-inner {
    grid-template-columns: 1fr;
  }
}

.testimonials-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.testimonials-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.testimonials-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--purple-gradient);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
}

.testimonials-badge span {
  display: block;
  font-size: 1.75rem;
}

.testimonials-stars {
  color: #f59e0b;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.testimonials-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonials-author {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.05rem;
}

/* FAQ – light section */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 968px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }
}

.faq-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(138, 66, 243, 0.12);
  border: 2px solid var(--purple-accent);
  margin-bottom: 24px;
}

.faq-badge span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-accent);
  line-height: 1.2;
}

.faq-badge small {
  font-size: 0.75rem;
  color: #555;
  text-align: center;
}

.faq-list {
  list-style: none;
}

.faq-item {
  background: #f8f8f8;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.faq-question:hover {
  background: rgba(138, 66, 243, 0.06);
}

.faq-question .icon {
  font-size: 1.25rem;
  color: var(--purple-accent);
  transition: transform var(--transition);
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 20px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #eee;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--purple-accent);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card .category {
  font-size: 0.8rem;
  color: var(--purple-accent);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-size: 1.05rem;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card a.read-more {
  color: var(--purple-accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-card a.read-more:hover {
  color: var(--bg-dark-3);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 968px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 360px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.footer-social a:hover {
  background: var(--purple-accent);
  color: var(--white);
}

.footer-social a i {
  font-size: 1.1rem;
}

.footer-links h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--purple-light);
}

.footer-contact h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-newsletter {
  padding: 48px 0;
  text-align: center;
}

.footer-newsletter h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-newsletter p {
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.15);
  background: var(--bg-dark-2);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--purple-accent);
}

.newsletter-form .btn-gradient {
  padding: 14px 28px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom a:hover {
  color: var(--purple-light);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
