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

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #fff;
  min-height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(170, 170, 170, 0.5) transparent;
}
.logo-img {
  height: 50px; /* Adjust as needed */
  width: auto;
  margin-top: 27;
}

 .launching-section {
      padding: 60px 20px;
      text-align: center;
      background-color: #fff;
    }

    .launching-section h2 {
      font-size: 2.8rem;
      color: #E61377;
      margin-bottom: 40px;
    }
    .container {
  max-width: 1400px; /* or any value you prefer */
  margin: 0 auto;
  padding: 20px;
}


  .launch-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px; /* Increase as needed */
  margin: 0 auto;     /* Center the container */
  padding: 20px;      /* Optional padding */
}

.launch-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  width: 480px; /* Increased width */
  padding: 30px; /* Increased padding */
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* First item slightly higher */
.launch-item:nth-child(1) {
  top: -20px;
}

/* Second item slightly lower */
.launch-item:nth-child(2) {
  top: 20px;
}

.launch-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}


    .launch-item:hover {
      transform: translateY(-5px);
    }

    .launch-item img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .launch-date {
      font-size: 0.rem;
      color: #000000;
      margin-bottom: 10px;
      
    }

    .launch-description {
      font-size: 1rem;
      color: #000000;
    }

    @media (max-width: 768px) {
      .launch-items {
        flex-direction: column;
        align-items: center;
      }
    }

    /* Add this inside your CSS */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

.launch-item:nth-child(1) {
  animation: slideInFromLeft 1s ease-out forwards;
  top: -20px; /* keep your offset */
}

.launch-item:nth-child(2) {
  animation: slideInFromRight 1s ease-out forwards;
  top: 20px; /* keep your offset */
}

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: rgba(170, 170, 170, 0.5);
  border-radius: 3px;
}

/* SCROLL BAR STYLES */
.scroll-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 24px;
  background: #1E1E1E;
  overflow: hidden;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 30s linear infinite;
}

.scroll-bar:hover .scroll-text {
  animation-play-state: paused;
}

.scroll-text span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #FFFFFF;
  padding: 0 10px;
}

.scroll-text strong {
  color: #E61377;
}

.scroll-text .star {
  color: #FFFFFF;
  font-size: 10px;
  padding: 0 5px;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* LOADER STYLES */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  z-index: 11000;
  transition: opacity 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

.loader-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 26px;
  text-align: center;
}

.loader-text span {
  opacity: 0;
  transform: translateY(15px);
  animation: wordFade 2.5s ease-in-out forwards;
  display: inline-block;
  margin: 0 6px;
}

.loader-text span:nth-child(1) { color: #331143; animation-delay: 0.3s; }
.loader-text span:nth-child(2) { color: #E61377; animation-delay: 0.8s; }
.loader-text span:nth-child(3) { color: #1E1E1E; animation-delay: 1.3s; }

@keyframes wordFade {
  0% { opacity: 0; transform: translateY(15px); }
  30% { opacity: 1; transform: translateY(0); }
  70% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-15px); }
}

/* CONTENT */
.content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding-top: 102px;
  padding-bottom: 4rem;
}

.content.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 72px;
  position: fixed;
  top: 24px;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: top 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

header.hidden {
  opacity: 0;
}

header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #331143;
  line-height: 72px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #E61377;
}
.launch-date {
  font-size: 1rem;       /* Optional: adjust size if needed */
  color: #E61377;        /* Your desired pink shade */
  margin-bottom: 10px;
  font-weight: bold;     /* Optional: makes it stand out */
}
.highlight {
  color: #E61377;
  font-weight: bold;
}



.cta-btn {
  background-color: #E61377;
  color: #ffffff; /* white text */
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background-color: #c51163; /* slightly darker pink on hover */
  transform: scale(1.05);    /* subtle zoom on hover */
}


nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  color: #331143;
  padding: 6px 12px;
  position: relative;
  display: inline-block;
  height: 28px;
  line-height: 28px;
  overflow: hidden;
}

.nav-links a span {
  display: inline-block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links a .hover-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 6px 12px;
  transform: translateY(100%);
  color: #E61377;
  opacity: 0;
  line-height: 28px;
}

.nav-links a:hover span {
  transform: translateY(-100%);
  opacity: 0;
}

.nav-links a:hover .hover-text {
  transform: translateY(0);
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #331143;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  opacity: 0;
  transform: scale(0);
  transform-origin: top right;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 12000;
  pointer-events: none;
}

.mobile-nav.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #331143;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-nav-close:hover {
  color: #E61377;
}

.mobile-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #331143;
  text-decoration: none;
  margin: 15px 0;
  padding: 15px 0;
  text-align: center;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #E61377;
}

.cta-btn, .cta-btn2 {
  background: transparent;
  border: 2px solid #ccc;
  border-radius: 50px;
  color: #E61377;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border 0.3s ease;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  z-index: 1;
  white-space: nowrap;
  min-width: 180px;
  text-align: center;
}

.cta-btn::before, .cta-btn2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #E61377, #FF5BA1);
  transition: height 0.3s ease;
  z-index: -1;
}

.cta-btn:hover::before, .cta-btn2:hover::before {
  height: 100%;
}

.cta-btn:hover, .cta-btn2:hover {
  color: #FFFFFF !important;
  border: 2px solid transparent;
}

.cta-btn2 {
  margin-bottom: 1.5rem;
}

/* Specific overrides for sections */
.upcoming-event-section .cta-btn {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

.features-header .cta-btn {
  padding: 14px 20px;
  min-width: 180px;
  margin-top: 36px;
}

.tagline {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #E61377; /* default color for all */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.tagline .dot {
  font-weight: bold;
}

.black-text {
  color: #000; /* overrides pink for Research */
}





/* HERO SECTION */
.hero-section {
  text-align: center;
  padding: 1rem 0;
  margin: 2rem;
}

.hero-heading {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-heading .jakarta { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: #331143; }
.hero-heading .raleway { font-family: 'Raleway', sans-serif; font-weight: 600; }
.hero-heading .highlight { color: #E61377; }

.hero-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #331143;
  margin-bottom: 2rem;
  max-width: 701px;
  margin-left: auto;
  margin-right: auto;
}

.lottie-animation lottie-player {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* PARTNERS LOGO SCROLL BAR */
.partners-scroll {
  padding: 0 0 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.partners-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #331143;
  margin-bottom: 1.5rem;
}

.logo-scroll-container {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 30%, black 70%, transparent);
}

.logo-scroll {
  display: inline-block;
  white-space: nowrap;
  animation: logoScroll 30s linear infinite;
}

.logo-scroll:hover {
  animation-play-state: paused;
}

.partner-logo {
  display: inline-block;
  margin: 0 4rem;
  width: 100px;
  height: 40px;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* UPCOMING EVENTS */
.upcoming-event-section {
  background: #0d0d0d;
  color: #fff;
  padding: 80px 24px;
  margin-bottom: 4rem;
}

.event-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.event-visual img {
  width: 300px;
  height: auto;
  object-fit: contain;
}

.event-details {
  max-width: 600px;
  flex: 1;
}

.event-date {
  font-size: 1rem;
  color: #ffffffcc;
  margin-bottom: 8px;
}

.event-location {
  font-size: 1rem;
  color: #ffffffa3;
  margin-bottom: 24px;
}

.event-title {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.event-title2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.event-description {
  font-size: 1.1rem;
  margin-bottom: 16px;
  width: 720px;
}

.event-subtext {
  font-size: 1rem;
  color: #ffffff99;
  margin-bottom: 24px;
}

.event-cta {
  display: flex;
  gap: 16px;
}

/* FEATURES */
.features-steps {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
}

.features-header {
  max-width: 800px;
  margin: 0 auto 72px;
}

.features-badge {
  display: inline-block;
  background: linear-gradient(90deg, #E61377, #FF5BA1);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.features-header h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #331143;
  line-height: 1.3;
  margin-bottom: 20px;
}

.features-header p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 90%;
  margin: 0 auto;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin: 0 48px;
}

.step-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  padding: 32px;
  max-width: 380px;
  text-align: left;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.step-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 24px;
}

.step-card h4 {
  font-size: 13px;
  color: #007a66;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.step-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.35rem;
  color: #121212;
  margin-bottom: 14px;
}

.step-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* TIMELINE SECTION */
.timeline-section {
  padding: 80px 48px;
  background: #fff;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.timeline-header {
  max-width: 700px;
  margin: 0 auto 16px;
  padding-bottom: 0;
}

.timeline-badge {
  display: inline-block;
  background-color: #E6E2F5;
  color: #5B2B82;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.timeline-header h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #331143;
  margin-bottom: 0.75rem;
}

.timeline-header p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

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

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  margin: 0 48px;
  min-height: 400px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #E61377;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s ease-in-out;
}

.timeline.visible .timeline-line {
  transform: scaleX(1);
}

.timeline-milestone {
  position: relative;
  flex: 0 0 auto;
  width: 0;
}

.milestone-dot {
  width: 6px;
  height: 6px;
  background: #E61377;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  transition: transform 0.8s ease-in-out;
}

.timeline.visible .milestone-dot {
  transform: translate(-50%, -50%) scale(1);
}

.milestone-content {
  position: absolute;
  width: 240px;
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  border: 0.5px solid #eee;
  text-align: center;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}

/* Individual delays for milestones */
.timeline-milestone[data-delay="0"] .milestone-content { transition-delay: 0.3s; }
.timeline-milestone[data-delay="1"] .milestone-content { transition-delay: 0.6s; }
.timeline-milestone[data-delay="2"] .milestone-content { transition-delay: 0.9s; }
.timeline-milestone[data-delay="3"] .milestone-content { transition-delay: 1.2s; }
.timeline-milestone[data-delay="4"] .milestone-content { transition-delay: 1.5s; }
.timeline-milestone[data-delay="5"] .milestone-content { transition-delay: 1.8s; }
.timeline-milestone[data-delay="6"] .milestone-content { transition-delay: 2.1s; }

.timeline.visible .milestone-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0) !important;
}

/* Alternating top/bottom (desktop) */
@media (min-width: 769px) {
  .timeline-milestone:nth-child(odd) .milestone-content {
    top: -120px;
    transform: translateX(-50%) translateY(12px);
  }

  .timeline-milestone:nth-child(even) .milestone-content {
    bottom: -120px;
    transform: translateX(-50%) translateY(-12px);
  }
}

.milestone-content h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #331143;
  margin-bottom: 6px;
}

.milestone-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.milestone-content p::before {
  content: attr(data-date);
  font-weight: 600;
  color: #E61377;
  margin-right: 4px;
}

/* QUOTE SECTION */
.quote-container {
  background: linear-gradient(135deg, #331143, #5B2A86);
  color: #fff;
  padding: 2rem;
  border-radius: 2rem;
  margin: 12px 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.content.loaded .quote-container {
  opacity: 1;
  transform: translateY(0);
}

.quote-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.moving-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  animation: float 25s ease-in-out infinite;
}

.circle-1 {
  width: 60px;
  height: 60px;
  background: #E61377;
  bottom: 10%;
  left: 10%;
  opacity: 0.3;
  animation-name: float-diagonal-up;
  animation-delay: 0s;
}

.circle-2 {
  width: 40px;
  height: 40px;
  background: #FF5BA1;
  top: 20%;
  right: 15%;
  opacity: 0.35;
  animation-name: float-diagonal-down;
  animation-delay: 6s;
}

.circle-3 {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  bottom: 30%;
  left: 40%;
  opacity: 0.4;
  animation-name: float-orbit;
  animation-delay: 12s;
}

.circle-4 {
  width: 30px;
  height: 30px;
  background: #FFD1E3;
  top: 25%;
  left: 25%;
  opacity: 0.25;
  animation-name: float-orbit-reverse;
  animation-delay: 18s;
}

@keyframes float-diagonal-up {
  0% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(120px, -120px); opacity: 0.4; }
  100% { transform: translate(240px, -240px); opacity: 0.3; }
}

@keyframes float-diagonal-down {
  0% { transform: translate(0, 0); opacity: 0.35; }
  50% { transform: translate(-120px, 120px); opacity: 0.45; }
  100% { transform: translate(-240px, 240px); opacity: 0.35; }
}

@keyframes float-orbit {
  0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(50px, -50px) scale(1.2); opacity: 0.5; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
}

@keyframes float-orbit-reverse {
  0% { transform: translate(0, 0) scale(1); opacity: 0.25; }
  50% { transform: translate(-50px, 50px) scale(0.8); opacity: 0.35; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
}

.quote-content {
  text-align: center;
  max-width: 1000px;
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.quote-icon {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  color: #E61377;
  margin-bottom: 0;
  font-weight: 900;
}

.quote-text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.quote-author {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  background: rgba(230, 19, 119, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

/* METRICS SECTION */
.nelieca-metrics-section {
  background-color: #f2f5f3;
  padding: 120px 48px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1e1e1e;
  margin-bottom: 1.8rem;
}

.metrics-head {
  max-width: 1440px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.metrics-head p {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1e1e1e;
  margin: 0;
}

.metrics-head em {
  color: #000;
}

.metrics-head strong {
  font-weight: 700;
}

.metrics-head .muted {
  color: #9ca3af;
  font-size: 0.95rem;
}

.metrics-blocks {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 200px;
  text-align: left;
}

.metric h4 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.metric-line {
  height: 1px;
  background-color: #d1d5db;
  margin-bottom: 1rem;
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.metric-sub {
  font-size: 0.9rem;
  color: #6b7280;
}

/* FAQ SECTION */
.nelieca-faq {
  padding: 4rem 48px;
  background-color: #f9fafb;
  color: #331143;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.faq-heading h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  max-width: 500px;
  color: #331143;
  line-height: 1.3;
}

.faq-subtext {
  max-width: 400px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.faq-items {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.2rem 0;
  cursor: pointer;
}

.faq-question {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #331143;
}

.faq-question:hover {
  color: #E61377;
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: bold;
  color: #E61377;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-top: 0.8rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

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

/* EVENTS SECTION */
.events-section {
  padding: 80px 48px;
  background-color: #F5F1F8;
  color: #331143;
}

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

.badge {
  display: inline-block;
  background-color: #E61377;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.main-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #331143;
  margin-bottom: 14px;
}

.sub-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.event-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.event-slide {
  flex: 0 0 100%;
}

.event-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background-color: #F5F1F8;
  margin-bottom: 32px;
}

.event-left {
  flex: 0 0 180px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: #555;
  margin-top: 6px;
}

.event-left div:first-child {
  font-weight: 600;
  margin-bottom: 6px;
  color: #E61377;
}

.event-left div:last-child {
  font-size: 1.1rem;
  color: #888;
}

.event-center {
  flex: 1;
  max-width: 620px;
}

.event-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #331143;
  margin-bottom: 12px;
  line-height: 1.3;
}

.event-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.event-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  transition: height 0.3s ease-in-out;
}

.nav-controls {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #331143;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-btn:hover {
  transform: scale(1.05);
  border-color: #E61377;
  color: #E61377;
}

/* FOOTER */
.footer {
  background-color: #1A1A1A;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 80px 24px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 48px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  max-width: 400px;
  text-align: left;
}

.brand-name {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  color: #E61377;
  margin-bottom: 12px;
}

.brand-tagline {
  color: #ccc;
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 0 20px;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  justify-content: flex-start;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #E61377;
}

.footer-right {
  flex: 2;
  display: flex;
  flex-direction: row;
  gap: 64px;
  text-align: left;
}

.link-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.link-column li {
  margin: 6px 0;
}

.link-column a {
  color: #aaa;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-column a:hover {
  color: #E61377;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 60px;
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* RESPONSIVE ADJUSTMENTS */
@media (min-width: 769px) {
  .footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-left {
    max-width: 400px;
  }

  .footer-right {
    flex-direction: row;
    gap: 64px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .btn-container {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .timeline-section {
    padding: 64px 24px 16px;
  }

  .timeline-container {
    padding: 16px 0 8px;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0 4px;
    min-height: auto;
  }

  .timeline-line {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.5s ease-in-out;
  }

  .timeline.visible .timeline-line {
    transform: scaleY(1);
  }

  .timeline-milestone {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .milestone-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.8s ease-in-out;
  }

  .timeline.visible .milestone-dot {
    transform: translate(-50%, -50%) scale(1);
  }

  .milestone-content {
    position: relative;
    width: min(160px, 80vw);
    max-width: 140px;
    min-height: 80px;
    margin: 8px 0;
    padding: 16px 6px;
    border-radius: 6px;
    left: auto;
    transform: none;
  }

  .timeline-milestone:nth-child(odd) .milestone-content {
    right: -80px;
    transform: translateX(12px);
  }

  .timeline-milestone:nth-child(even) .milestone-content {
    left: -80px;
    transform: translateX(-12px);
  }

  .timeline.visible .milestone-content {
    transform: translateX(0) !important;
  }

  .milestone-content h3 {
    font-size: 16px;
  }

  .milestone-content p {
    font-size: 12px;
  }

  .event-wrapper {
    flex-direction: column;
    gap: 32px;
    padding: 0;
    align-items: center;
  }

  .event-visual img {
    width: 100%;
    max-width: 280px;
  }

  .event-details {
    max-width: 100%;
    text-align: center;
  }

  .event-title {
    font-size: 1.8rem;
  }

  .event-description {
    font-size: 1rem;
  }

  .event-subtext {
    font-size: 0.95rem;
  }

  .event-date,
  .event-location {
    font-size: 0.95rem;
  }

  .event-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btn {
    padding: 12px 16px;
    min-width: 160px;
    font-size: 14px;
  }

  .nelieca-metrics-section {
    padding: 16px 24px 48px;
  }

  .steps-container {
    margin: 0 24px;
    padding: 0;
    gap: 24px;
    justify-content: center;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 16px;
    box-sizing: border-box;
  }

  .nelieca-faq {
    padding: 2rem 24px;
  }

  .faq-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .faq-heading h2 {
    font-size: 1.8rem;
    max-width: 100%;
  }

  .faq-subtext {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }

  .events-section {
    padding: 64px 24px;
  }

  .event-content {
    flex-direction: column;
    gap: 16px;
  }

  .nav-controls {
    top: -10px;
    right: 8px;
  }

  .event-image {
    height: 260px;
  }

  .quote-container {
    padding: 1rem;
    margin: 8px 24px;
    min-height: 500px;
  }

  .quote-content {
    padding: 0.5rem;
  }

  .quote-text {
    font-size: 1.4rem;
  }

  .quote-icon {
    font-size: 2.5rem;
  }

  .quote-author {
    font-size: 0.75rem;
  }

  .circle-1 {
    width: 40px;
    height: 40px;
  }

  .circle-2 {
    width: 25px;
    height: 25px;
  }

  .circle-3 {
    width: 35px;
    height: 35px;
  }

  .circle-4 {
    width: 20px;
    height: 20px;
  }

  @keyframes float-diagonal-up {
    0% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(80px, -80px); opacity: 0.4; }
    100% { transform: translate(160px, -160px); opacity: 0.3; }
  }

  @keyframes float-diagonal-down {
    0% { transform: translate(0, 0); opacity: 0.35; }
    50% { transform: translate(-80px, 80px); opacity: 0.45; }
    100% { transform: translate(-160px, 160px); opacity: 0.35; }
  }

  .footer {
    padding: 64px 24px;
  }

  .footer-wrapper {
    flex-direction: column;
    margin: 0 24px;
    gap: 32px;
  }

  .footer-left {
    max-width: 100%;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .brand-name {
    font-size: 1.75rem;
  }

  .brand-tagline {
    font-size: 0.9rem;
    margin: 0 auto 16px;
  }

  .social-icons {
    justify-content: center;
    gap: 16px;
  }

  .link-column a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .hero-heading {
    font-size: 36px;
  }
  .hero-description {
    font-size: 14px;
  }
  .cta-btn, .cta-btn2 {
    min-width: 160px;
    font-size: 14px;
    padding: 12px 16px;
  }
  .features-header h2 {
    font-size: 2rem;
  }
  .timeline-section {
    padding: 48px 16px 16px;
  }
  .timeline-header h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0 16px;
  }
  .logo {
    font-size: 24px;
  }
  .content {
    padding-top: 84px;
    padding-bottom: 2rem;
  }
  .hero-heading {
    font-size: 28px;
  }
  .hero-description {
    font-size: 12px;
  }
  .scroll-text span {
    font-size: 10px;
    padding: 0 8px;
  }
  .scroll-text .star {
    font-size: 10px;
    padding: 0 4px;
  }
  .steps-container {
    margin: 0 16px;
  }
  .step-card {
    padding: 12px;
  }
  .nelieca-faq {
    padding: 1.5rem 16px;
  }
  .faq-heading h2 {
    font-size: 1.6rem;
  }
  .faq-subtext {
    font-size: 0.9rem;
  }
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
  .events-section {
    padding: 48px 16px;
  }
  .main-heading {
    font-size: 1.8rem;
  }
  .sub-heading {
    font-size: 0.95rem;
  }
  .event-title {
    font-size: 1.2rem;
  }
  .event-desc {
    font-size: 0.9rem;
  }
  .event-image {
    height: 230px;
  }
  .event-left {
    flex: 0 0 auto;
  }
  .quote-container {
    padding: 1rem;
    margin: 8px 16px;
    min-height: 450px;
  }
  .quote-text {
    font-size: 1.2rem;
  }
  .quote-icon {
    font-size: 2rem;
  }
  .quote-author {
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
  }
  .footer {
    padding: 48px 16px;
  }
  .footer-wrapper {
    margin: 0 16px;
    gap: 24px;
  }
  .brand-name {
    font-size: 1.5rem;
  }
  .brand-tagline {
    font-size: 0.9rem;
  }
  .social-icons {
    gap: 16px;
  }
  .footer-right {
    gap: 24px;
  }
  .link-column a {
    font-size: 0.9rem;
  }
  .footer-bottom {
    font-size: 0.8rem;
  }
  .timeline-milestone {
    max-width: 140px;
  }
  .milestone-content {
    width: min(160px, 80vw);
  }
  .upcoming-event-section {
    padding: 48px 16px;
  }
  .event-title {
    font-size: 1.6rem;
  }
  .event-description {
    font-size: 0.95rem;
  }
  .event-subtext {
    font-size: 0.9rem;
  }
  .event-date,
  .event-location {
    font-size: 0.9rem;
  }
  .nelieca-metrics-section {
    padding: 16px 16px 48px;
  }
}



.features-steps {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.features-header h2 {
  font-size: 2rem;
}

.features-header p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: auto;
}

.highlight {
  color: #e91e63;
}

.btn-container {
  margin-top: 20px;
}

.cta-btn {
  background-color: #e91e63;
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

/* Horizontal Timeline */
.horizontal-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 60px;
  padding: 0 30px;
}

.horizontal-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e91e63;
  z-index: 0;
}

.timeline-item {
  position: relative;
  flex: 1;
  text-align: center;
}

.content-box {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
  color: #2c003e;
  z-index: 1;
  position: relative;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #e91e63;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
