/* =========================
   GLOBAL
========================= */

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

i{
  color: #43d6cf;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f7f7f5;
  color: #062c34;
  overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
  padding: 20px 0;
  background: #f7f7f5;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.logo {
  font-size: 48px;
  font-weight: 700;
  color: #43d6cf;
  letter-spacing: -2px;
  text-decoration: none;
}

.nav-link {
  color: #0b2a32;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #43d6cf;
}

/* =========================
   BUTTONS
========================= */

.primary-btn {
  background: #43d6cf;
  color: #04252d;
  border-radius: 60px;
  padding: 16px 34px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.primary-btn:hover {
  background: #2cc4bc;
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
  color: #062c34;
  border: 1px solid #d8d8d8;
  border-radius: 60px;
  padding: 16px 34px;
  font-weight: 600;
  transition: 0.3s ease;
}

.secondary-btn:hover {
  background: white;
  transform: translateY(-2px);
}

.arrow {
  margin-left: 10px;
}

.nav-btn {
  white-space: nowrap;
}

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

.hero-section {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;

  /* Dotted Grid */
  background-image:
    radial-gradient(circle, rgba(0,0,0,0.18) 1px, transparent 1px);

  background-size: 30px 30px;
}

.hero-overlay {
  position: absolute;
  width: 800px;
  height: 800px;

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.2) 70%,
    transparent 100%
  );

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* =========================
   BADGE
========================= */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 24px;
  border-radius: 999px;

  background: rgba(67, 214, 207, 0.08);
  border: 1px solid rgba(67, 214, 207, 0.2);

  font-size: 18px;
  font-weight: 500;

  margin-bottom: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #43d6cf;
  border-radius: 50%;
}

/* =========================
   HERO TITLE
========================= */

.hero-title {
  font-family: "Fraunces", serif;
  font-size: 120px;
  line-height: 0.9;
  font-weight: 600;

  letter-spacing: -4px;

  margin-bottom: 35px;
}

/* =========================
   SUBTITLE
========================= */

.hero-subtitle {
  max-width: 850px;
  margin: 0 auto;

  font-size: 36px;
  line-height: 1.4;
  color: #41565d;

  margin-bottom: 50px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-btn {
  font-size: 24px;
  padding: 22px 40px;
}

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

@media (max-width: 1200px) {

  .hero-title {
    font-size: 90px;
  }

  .hero-subtitle {
    font-size: 28px;
  }
}

@media (max-width: 768px) {

  .nav-btn {
    display: none;
  }

  .hero-section {
    padding: 100px 0;
  }

  .hero-title {
    font-size: 64px;
    letter-spacing: -2px;
  }

  .hero-subtitle {
    font-size: 20px;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 320px;
    font-size: 18px;
  }

  .hero-badge {
    font-size: 14px;
  }

  .logo {
    font-size: 38px;
  }
}/* =========================
   MARQUEE
========================= */

.stats-marquee {
  background: #01232b;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 20s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;

  color: #43d6cf;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

.diamond {
  font-size: 18px;
  opacity: 0.8;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
  padding: 120px 0;
  background: #f7f7f5;
}

.about-title {
  font-family: "Fraunces", serif;
  font-size: 78px;
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: -2px;
}

.about-text {
  max-width: 1150px;

  font-size: 32px;
  line-height: 1.6;

  color: #465b63;

  margin-bottom: 70px;
}

/* =========================
   FEATURE CARDS
========================= */

.feature-card {
  background: #dcebea;

  border-radius: 32px;

  padding: 40px;

  min-height: 260px;

  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  width: 80px;
  height: 80px;

  background: #f7f7f5;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 36px;

  margin-bottom: 30px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-card h3 {
  font-family: "Fraunces", serif;

  font-size: 34px;
  line-height: 1.2;

  max-width: 200px;
}

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

@media (max-width: 992px) {

  .about-title {
    font-size: 54px;
  }

  .about-text {
    font-size: 24px;
  }

  .feature-card h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {

  .stats-marquee {
    padding: 10px 0;
  }

  .marquee-content {
    font-size: 16px;
    gap: 24px;
  }

  .about-section {
    padding: 80px 0;
  }

  .about-title {
    font-size: 42px;
  }

  .about-text {
    font-size: 18px;
    line-height: 1.8;
  }

  .feature-card {
    min-height: auto;
    padding: 30px;
  }

  .feature-card h3 {
    font-size: 28px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
/* =========================
   PRIZE SECTION
========================= */

.prize-section {
  background: #efefee;
  padding: 120px 0;
}

/* =========================
   TITLES
========================= */

.prize-small-title {
  font-family: "Fraunces", serif;
  font-size: 52px;
  margin-bottom: 10px;
}

.prize-main-title {
  font-family: "Fraunces", serif;

  font-size: 88px;
  line-height: 1;

  color: #43d6cf;

  margin-bottom: 20px;
}

.scholarship-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #032833;
  color: white;

  padding: 12px 22px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;

  margin-bottom: 60px;
}

/* =========================
   MAIN CARD
========================= */

.main-prize-card {
  position: relative;

  background: #f8f8f7;

  border-radius: 40px;

  padding: 70px 40px 40px;

  max-width: 900px;
  margin: 0 auto;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.top-accent-line {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 6px;

  background: #43d6cf;

  border-radius: 40px 40px 0 0;
}

/* =========================
   PLACEMENT CARDS
========================= */

.placement-card {
  background: #ececec;

  border-radius: 24px;

  min-height: 220px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;

  transition: 0.3s ease;
}

.placement-card:hover {
  transform: translateY(-6px);
}

.secondary-place {
  background: #ececec;
}

.first-place {
  background: #dcebea;

  border: 2px solid #43d6cf;

  min-height: 280px;
}

.winner-badge {
  position: absolute;

  top: -25px;

  width: 50px;
  height: 50px;

  background: #f7f7f5;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;

  border: 2px solid #43d6cf;
}

.medal {
  font-size: 26px;
  margin-bottom: 15px;
}

.placement-card h4 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}

.placement-card p {
  font-size: 38px;

  color: #43d6cf;

  font-family: "Fraunces", serif;
  font-weight: 700;
}

/* =========================
   MINI AWARDS
========================= */

.mini-award-card {
  background: #e7f0ef;

  border-radius: 18px;

  padding: 24px;
}

.mini-award-card h5 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.mini-award-card p {
  font-size: 30px;

  color: #43d6cf;

  font-family: "Fraunces", serif;
  margin: 0;
}

/* =========================
   INFO CARDS
========================= */

.info-prize-card {
  background: #f7f7f5;

  border: 1px solid #dce3e2;

  border-radius: 28px;

  padding: 36px;

  height: 100%;
}

.info-label {
  display: inline-block;

  font-size: 12px;
  letter-spacing: 2px;

  font-weight: 700;

  color: #6b7b82;

  margin-bottom: 18px;
}

.info-prize-card h3 {
  font-family: "Fraunces", serif;

  font-size: 42px;
  line-height: 1.2;

  margin-bottom: 20px;
}

.info-prize-card p {
  font-size: 18px;
  line-height: 1.8;

  color: #53666d;
}

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

@media (max-width: 992px) {

  .prize-main-title {
    font-size: 64px;
  }

  .prize-small-title {
    font-size: 38px;
  }

  .placement-card p {
    font-size: 28px;
  }

  .info-prize-card h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {

  .prize-section {
    padding: 80px 0;
  }

  .prize-small-title {
    font-size: 28px;
  }

  .prize-main-title {
    font-size: 46px;
  }

  .main-prize-card {
    padding: 50px 20px 20px;
    border-radius: 28px;
  }

  .placement-card,
  .first-place {
    min-height: 180px;
  }

  .placement-card h4 {
    font-size: 22px;
  }

  .placement-card p {
    font-size: 24px;
  }

  .mini-award-card p {
    font-size: 24px;
  }

  .info-prize-card {
    padding: 28px;
  }

  .info-prize-card h3 {
    font-size: 28px;
  }

  .info-prize-card p {
    font-size: 16px;
  }
}

/* =========================
   TIMELINE SECTION
========================= */

.timeline-section {
  padding: 120px 0;
  background: #f7f7f5;
}

.timeline-main-title {
  font-family: "Fraunces", serif;
  font-size: 82px;
  margin-bottom: 90px;
}

/* =========================
   WRAPPER
========================= */

.timeline-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 26px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #7de2dc;
}

/* =========================
   ITEM
========================= */

.timeline-item {
  position: relative;
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

/* =========================
   NUMBER
========================= */

.timeline-number {
  width: 54px;
  height: 54px;

  min-width: 54px;

  border-radius: 50%;

  background: #032833;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  font-weight: 700;

  position: relative;
  z-index: 2;

  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

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

.timeline-card {
  background: #efefee;

  border-radius: 36px;

  padding: 50px;

  flex: 1;
}

.stage-label {
  display: inline-block;

  color: #43d6cf;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 14px;
}

.timeline-card h3 {
  font-family: "Fraunces", serif;

  font-size: 58px;
  margin-bottom: 40px;
}

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

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.timeline-grid h5 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #68777d;
  margin-bottom: 10px;
}

.timeline-grid p {
  font-size: 22px;
  line-height: 1.7;
  color: #243f47;
}

/* =========================
   TAKEAWAY
========================= */

.takeaway-box {
  margin-top: 40px;

  background: #dcebea;

  border: 1px solid #9fe6df;

  border-radius: 24px;

  padding: 28px;
}

.takeaway-box h6 {
  color: #43d6cf;

  font-size: 14px;
  letter-spacing: 2px;

  margin-bottom: 18px;
}

.takeaway-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.takeaway-box li {
  font-size: 20px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}

.takeaway-box li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #43d6cf;
  font-weight: bold;
}

/* =========================
   REWARD PACK
========================= */

.reward-pack {
  margin-top: 50px;

  border-radius: 26px;
  overflow: hidden;

  border: 1px solid #a8e9e3;
}

.reward-header {
  background: linear-gradient(90deg, #43d6cf, #12bfb4);

  padding: 20px 24px;

  color: #032833;

  font-weight: 700;
  letter-spacing: 1px;
}

.reward-grid {
  background: #f7f7f5;

  padding: 24px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reward-item {
  background: #e7f0ef;

  border-radius: 18px;

  padding: 24px;

  font-size: 18px;
  font-weight: 600;
}

/* =========================
   SCROLL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 992px) {

  .timeline-main-title {
    font-size: 58px;
  }

  .timeline-card h3 {
    font-size: 42px;
  }

  .timeline-grid p {
    font-size: 18px;
  }

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

@media (max-width: 768px) {

  .timeline-section {
    padding: 80px 0;
  }

  .timeline-main-title {
    font-size: 42px;
    margin-bottom: 60px;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
    gap: 20px;
  }

  .timeline-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .timeline-card {
    padding: 30px;
    border-radius: 24px;
  }

  .timeline-card h3 {
    font-size: 34px;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .timeline-grid p {
    font-size: 16px;
  }

  .takeaway-box li {
    font-size: 16px;
  }

  .reward-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   VIDEO SECTION
========================= */

.video-section {
  background: #012b33;
  padding: 120px 0;
}

/* =========================
   TITLES
========================= */

.video-main-title {
  font-family: "Fraunces", serif;

  font-size: 74px;
  color: white;

  margin-bottom: 16px;
}

.video-subtitle {
  color: #43d6cf;

  font-size: 24px;
  margin-bottom: 20px;
}

/* =========================
   VIDEO CARD
========================= */

.video-card {
  border-radius: 22px;
  overflow: hidden;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.06);

  transition: 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================
   CTA BUTTON
========================= */

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 36px;

  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.15);

  color: white;
  text-decoration: none;

  font-weight: 600;

  transition: 0.3s ease;
}

.video-btn:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

/* =========================
   STATS
========================= */

.video-stats {
  margin-top: 100px;

  padding-top: 60px;

  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-box h3 {
  font-family: "Fraunces", serif;

  font-size: 64px;
  color: #43d6cf;

  margin-bottom: 10px;
}

.stat-box p {
  color: rgba(255,255,255,0.75);

  font-size: 14px;
  letter-spacing: 1px;
}

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

@media (max-width: 992px) {

  .video-main-title {
    font-size: 54px;
  }

  .video-subtitle {
    font-size: 20px;
  }

  .stat-box h3 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {

  .video-section {
    padding: 80px 0;
  }

  .video-main-title {
    font-size: 42px;
  }

  .video-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .video-btn {
    width: 100%;
    justify-content: center;
  }

  .video-stats {
    margin-top: 70px;
  }

  .stat-box {
    margin-bottom: 40px;
  }

  .stat-box h3 {
    font-size: 40px;
  }

  .stat-box p {
    font-size: 12px;
  }
}
/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
  background: #f7f7f5;
  padding: 120px 0;
}

/* =========================
   TITLES
========================= */

.gallery-tag {
  display: inline-block;

  color: #43d6cf;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 20px;
}

.gallery-title {
  font-family: "Fraunces", serif;

  font-size: 76px;
  line-height: 1.1;

  margin-bottom: 20px;
}

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

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

/* =========================
   ITEM
========================= */

.gallery-item {
  overflow: hidden;
  border-radius: 24px;

  position: relative;

  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

/* Hover Zoom */

.gallery-item:hover img {
  transform: scale(1.08);
}

/* =========================
   STAGGERED HEIGHTS
========================= */

.gallery-item:nth-child(1) {
  height: 360px;
}

.gallery-item:nth-child(2) {
  height: 360px;
}

.gallery-item:nth-child(3) {
  height: 360px;
}

.gallery-item:nth-child(4) {
  height: 300px;
}

.gallery-item:nth-child(5) {
  height: 300px;
}

.gallery-item:nth-child(6) {
  height: 300px;
}

.gallery-item:nth-child(7) {
  height: 360px;
}

.gallery-item:nth-child(8) {
  height: 360px;
}

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

@media (max-width: 992px) {

  .gallery-title {
    font-size: 54px;
  }

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

@media (max-width: 768px) {

  .gallery-section {
    padding: 80px 0;
  }

  .gallery-title {
    font-size: 42px;
  }

  .gallery-tag {
    font-size: 13px;
  }

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

  .gallery-item {
    height: 300px !important;
  }
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
  background: #000;
  padding: 140px 0;
  overflow: hidden;
}

/* =========================
   CONTENT
========================= */

.testimonial-content {
  max-width: 720px;
}

/* =========================
   QUOTE ICON
========================= */

.quote-icon {
  font-family: "Fraunces", serif;

  font-size: 120px;
  line-height: 0.5;

  color: #043742;

  margin-bottom: 40px;
}

/* =========================
   TESTIMONIAL TEXT
========================= */

.testimonial-text {
  font-family: "Fraunces", serif;

  font-size: 35px;
  line-height: 1.2;

  color: white;

  margin-bottom: 50px;
}

/* =========================
   AUTHOR
========================= */

.testimonial-author h4 {
  color: white;

  font-size: 36px;
  font-weight: 700;

  margin-bottom: 10px;
}

.testimonial-author p {
  color: #43d6cf;

  font-size: 28px;
  margin: 0;
}

/* =========================
   IMAGE
========================= */

.testimonial-image {
  border-radius: 28px;
  overflow: hidden;

  position: relative;
}

.testimonial-image img {
  width: 100%;
  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.testimonial-image:hover img {
  transform: scale(1.03);
}

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

@media (max-width: 1200px) {

  .testimonial-text {
    font-size: 58px;
  }
}

@media (max-width: 992px) {

  .testimonial-section {
    padding: 100px 0;
  }

  .testimonial-text {
    font-size: 48px;
  }

  .testimonial-author h4 {
    font-size: 30px;
  }

  .testimonial-author p {
    font-size: 22px;
  }
}

@media (max-width: 768px) {

  .testimonial-section {
    padding: 80px 0;
  }

  .quote-icon {
    font-size: 80px;
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 34px;
    line-height: 1.3;
  }

  .testimonial-author h4 {
    font-size: 24px;
  }

  .testimonial-author p {
    font-size: 18px;
  }

  .testimonial-image {
    margin-top: 20px;
  }
}
/* =========================
   ELIGIBILITY SECTION
========================= */

.eligibility-section {
  background: #f7f7f5;
  padding: 120px 0;
}

/* =========================
   LEFT CONTENT
========================= */

.eligibility-content {
  max-width: 520px;
}

.eligibility-title {
  font-family: "Fraunces", serif;

  font-size: 86px;
  line-height: 1.05;

  margin-bottom: 32px;
}

.eligibility-text {
  font-size: 30px;
  line-height: 1.7;

  color: #50636a;

  margin-bottom: 40px;
}

/* =========================
   PILL
========================= */

.eligibility-pill {
  display: inline-flex;
  align-items: center;

  background: #43d6cf;

  color: #032833;

  padding: 18px 28px;

  border-radius: 999px;

  font-size: 24px;
  font-weight: 600;

  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

/* =========================
   RIGHT CARDS
========================= */

.eligibility-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eligibility-card {
  background: #dcebea;

  border: 1px solid #bfe9e5;

  border-radius: 28px;

  padding: 32px;

  display: flex;
  align-items: center;
  gap: 24px;

  transition: 0.3s ease;
}

.eligibility-card:hover {
  transform: translateY(-5px);
}

.eligibility-icon {
  width: 72px;
  height: 72px;

  min-width: 72px;

  border-radius: 50%;

  background: #f7f7f5;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.eligibility-card h4 {
  font-size: 34px;
  line-height: 1.4;

  margin: 0;
}

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

@media (max-width: 1200px) {

  .eligibility-title {
    font-size: 68px;
  }

  .eligibility-card h4 {
    font-size: 28px;
  }

  .eligibility-text {
    font-size: 24px;
  }
}

@media (max-width: 992px) {

  .eligibility-content {
    max-width: 100%;
  }

  .eligibility-title {
    font-size: 56px;
  }

  .eligibility-text {
    font-size: 22px;
  }

  .eligibility-pill {
    font-size: 18px;
  }

  .eligibility-card h4 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {

  .eligibility-section {
    padding: 80px 0;
  }

  .eligibility-title {
    font-size: 42px;
  }

  .eligibility-text {
    font-size: 18px;
    line-height: 1.8;
  }

  .eligibility-pill {
    font-size: 15px;
    line-height: 1.5;

    padding: 16px 20px;
  }

  .eligibility-card {
    padding: 24px;
    gap: 18px;
  }

  .eligibility-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;

    font-size: 24px;
  }

  .eligibility-card h4 {
    font-size: 18px;
  }
}
/* =========================
   DATES SECTION
========================= */

.dates-section {
  background: #f7f7f5;
  padding: 120px 0;
  overflow: hidden;
}

/* =========================
   TITLES
========================= */

.dates-tag {
  display: inline-block;

  color: #43d6cf;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 20px;
}

.dates-title {
  font-family: "Fraunces", serif;

  font-size: 82px;
  line-height: 1.1;

  margin-bottom: 90px;
}

/* =========================
   WRAPPER
========================= */

.dates-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   CONNECTING LINE
========================= */

.dates-line {
  position: absolute;

  top: 50%;
  left: 15%;
  right: 15%;

  height: 4px;

  background: #d6ebe8;

  transform: translateY(-50%);

  z-index: 1;
}

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

.date-card {
  position: relative;
  z-index: 2;

  background: #f8f8f7;

  border: 1px solid #d7e5e3;

  border-radius: 30px;

  min-height: 300px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 40px;

  transition: 0.4s ease;

  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.date-card:hover {
  transform: translateY(-8px);
}

/* =========================
   ICON
========================= */

.date-icon {
  width: 82px;
  height: 82px;

  border-radius: 50%;

  background: #dcebea;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;

  margin-bottom: 28px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* =========================
   TEXT
========================= */

.date-card h3 {
  font-family: "Fraunces", serif;

  font-size: 42px;
  line-height: 1.2;

  margin-bottom: 18px;
}

.date-card p {
  font-size: 32px;

  color: #43d6cf;

  font-family: "Fraunces", serif;
  font-weight: 600;

  margin: 0;
}

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

@media (max-width: 1200px) {

  .dates-title {
    font-size: 64px;
  }

  .date-card h3 {
    font-size: 34px;
  }

  .date-card p {
    font-size: 26px;
  }
}

@media (max-width: 992px) {

  .dates-line {
    display: none;
  }

  .date-card {
    min-height: 260px;
  }
}

@media (max-width: 768px) {

  .dates-section {
    padding: 80px 0;
  }

  .dates-title {
    font-size: 42px;
    margin-bottom: 60px;
  }

  .dates-tag {
    font-size: 13px;
    line-height: 1.6;
  }

  .date-card {
    min-height: auto;
    padding: 36px 24px;
  }

  .date-icon {
    width: 68px;
    height: 68px;

    font-size: 28px;
  }

  .date-card h3 {
    font-size: 28px;
  }

  .date-card p {
    font-size: 22px;
  }
}
/* =========================
   IVB CTA SECTION
========================= */

.ivb-cta-section {
  background: #f7f7f5;
  padding: 120px 0 140px;
}

/* =========================
   CONTENT
========================= */

.ivb-cta-content {
  max-width: 1200px;
  margin: 0 auto;

  text-align: center;
}

/* =========================
   TITLE
========================= */

.ivb-cta-title {
  font-family: "Fraunces", serif;

  font-size: 84px;
  line-height: 1.1;

  margin-bottom: 36px;
}

/* =========================
   TEXT
========================= */

.ivb-cta-text {
  max-width: 1150px;
  margin: 0 auto 60px;

  font-size: 34px;
  line-height: 1.7;

  color: #4d6067;
}

/* =========================
   BUTTON
========================= */

.ivb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 22px 42px;

  border: 2px solid #43d6cf;

  border-radius: 999px;

  color: #032833;
  text-decoration: none;

  font-size: 28px;
  font-weight: 600;

  transition: 0.3s ease;
}

.ivb-cta-btn:hover {
  background: #43d6cf;
  color: #032833;

  transform: translateY(-4px);
}

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

@media (max-width: 1200px) {

  .ivb-cta-title {
    font-size: 68px;
  }

  .ivb-cta-text {
    font-size: 28px;
  }
}

@media (max-width: 992px) {

  .ivb-cta-title {
    font-size: 54px;
  }

  .ivb-cta-text {
    font-size: 22px;
    line-height: 1.8;
  }

  .ivb-cta-btn {
    font-size: 22px;
  }
}

@media (max-width: 768px) {

  .ivb-cta-section {
    padding: 80px 0 100px;
  }

  .ivb-cta-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .ivb-cta-text {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .ivb-cta-btn {
    width: 100%;
    justify-content: center;

    font-size: 18px;

    padding: 18px 24px;
  }
}
/* =========================
   SCHOOL CTA SECTION
========================= */

.school-cta-section {
  background: #f7f7f5;
  padding: 0 0 140px;
}

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

.school-cta-card {
  background: #dcebea;

  border-radius: 60px;

  padding: 80px;

  overflow: hidden;
}

/* =========================
   TAG
========================= */

.school-cta-tag {
  display: inline-block;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 3px;

  color: #4f5f65;

  margin-bottom: 28px;
}

/* =========================
   TITLE
========================= */

.school-cta-title {
  font-family: "Fraunces", serif;

  font-size: 82px;
  line-height: 1.05;

  margin-bottom: 30px;
}

/* =========================
   TEXT
========================= */

.school-cta-text {
  font-size: 32px;
  line-height: 1.7;

  color: #324a52;

  margin-bottom: 40px;

  max-width: 900px;
}

/* =========================
   CONTACT
========================= */

.school-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 20px;

  font-size: 28px;
}

.school-contact a {
  color: #032833;
  text-decoration: none;

  transition: 0.3s ease;
}

.school-contact a:hover {
  color: #43d6cf;
}

.divider-dot {
  color: #43d6cf;
  font-size: 22px;
}

/* =========================
   BUTTON
========================= */

.school-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 100%;
}

.school-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;

  background: #032833;
  color: white;

  text-decoration: none;

  padding: 26px 48px;

  border-radius: 999px;

  font-size: 34px;
  font-weight: 600;

  transition: 0.3s ease;
}

.school-cta-btn:hover {
  background: #021c22;

  transform: translateY(-4px);

  color: white;
}

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

@media (max-width: 1200px) {

  .school-cta-title {
    font-size: 64px;
  }

  .school-cta-text {
    font-size: 24px;
  }

  .school-contact {
    font-size: 22px;
  }

  .school-cta-btn {
    font-size: 28px;
  }
}

@media (max-width: 992px) {

  .school-cta-card {
    padding: 60px;
  }

  .school-btn-wrapper {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {

  .school-cta-section {
    padding-bottom: 80px;
  }

  .school-cta-card {
    border-radius: 32px;
    padding: 36px 28px;
  }

  .school-cta-tag {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .school-cta-title {
    font-size: 42px;
  }

  .school-cta-text {
    font-size: 18px;
    line-height: 1.8;
  }

  .school-contact {
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;

    font-size: 16px;
  }

  .divider-dot {
    display: none;
  }

  .school-cta-btn {
    width: 100%;
    justify-content: center;

    font-size: 20px;

    padding: 20px 24px;
  }
}
/* =========================
   REGISTER SECTION
========================= */

.register-section {
  background: #f7f7f5;
  padding: 120px 0 160px;
}

/* =========================
   TITLES
========================= */

.register-tag {
  display: inline-block;

  color: #43d6cf;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 20px;
}

.register-title {
  font-family: "Fraunces", serif;

  font-size: 84px;
  line-height: 1.1;

  margin-bottom: 24px;
}

.register-subtitle {
  font-size: 28px;
  line-height: 1.7;

  color: #50636a;

  margin-bottom: 70px;
}

/* =========================
   FORM CARD
========================= */

.register-card {
  max-width: 1100px;
  margin: 0 auto;

  background: #f8f8f7;

  border: 1px solid #dce7e5;

  border-radius: 36px;

  overflow: hidden;

  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* =========================
   TYPEFORM
========================= */

.typeform-wrapper {
  width: 100%;
  height: 760px;
}

.typeform-wrapper iframe {
  width: 100%;
  height: 100%;

  border: none;

  background: white;
}
.custom-form input,
.custom-form textarea {

  width: 100%;

  padding: 20px 24px;

  border-radius: 18px;

  border: 1px solid #d8e5e3;

  background: white;

  font-size: 18px;

  outline: none;

  transition: 0.3s ease;
}

.custom-form input:focus,
.custom-form textarea:focus {

  border-color: #43d6cf;

  box-shadow: 0 0 0 4px rgba(67,214,207,0.15);
}

.submit-btn {

  background: #032833;
  color: white;

  border: none;

  padding: 20px 36px;

  border-radius: 999px;

  font-size: 18px;
  font-weight: 600;

  transition: 0.3s ease;
}

.submit-btn:hover {

  background: #021c22;

  transform: translateY(-3px);
}

#successMessage {

  margin-top: 30px;

  color: #0f9d58;

  font-size: 18px;
  font-weight: 600;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

  .register-title {
    font-size: 68px;
  }

  .register-subtitle {
    font-size: 24px;
  }
}

@media (max-width: 992px) {

  .typeform-wrapper {
    height: 700px;
  }
}

@media (max-width: 768px) {

  .register-section {
    padding: 80px 0 100px;
  }

  .register-tag {
    font-size: 13px;
  }

  .register-title {
    font-size: 44px;
  }

  .register-subtitle {
    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 50px;
  }

  .register-card {
    border-radius: 24px;
  }

  .typeform-wrapper {
    height: 620px;
  }
}

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

.footer-section {
  background: #012b33;
  overflow: hidden;
}

/* =========================
   TOP CTA
========================= */

.footer-cta {
  text-align: center;

  padding: 140px 0 120px;
}

.footer-title {
  font-family: "Fraunces", serif;

  font-size: 96px;
  line-height: 1.15;

  color: white;

  margin-bottom: 50px;
}

/* =========================
   REGISTER BUTTON
========================= */

.footer-register-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  background: white;
  color: #032833;

  text-decoration: none;

  padding: 22px 40px;

  border-radius: 999px;

  font-size: 28px;
  font-weight: 600;

  transition: 0.3s ease;
}

.footer-register-btn:hover {
  transform: translateY(-4px);

  color: #032833;
}

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

.footer-main {
  border-top: 1px solid rgba(255,255,255,0.08);

  padding: 70px 0 40px;
}

/* =========================
   BRAND
========================= */

.footer-logo {
  font-size: 72px;
  font-weight: 700;

  color: #43d6cf;

  letter-spacing: -4px;

  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255,255,255,0.75);

  font-size: 22px;
  line-height: 1.7;

  max-width: 380px;
}

/* =========================
   LINKS
========================= */

.footer-links {
  list-style: none;

  display: flex;
  justify-content: center;
  gap: 40px;

  padding: 0;
  margin: 0;
}

.footer-links a {
  color: white;
  text-decoration: none;

  font-size: 20px;
  font-weight: 600;

  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #43d6cf;
}

/* =========================
   SOCIALS
========================= */

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-socials a {
  width: 60px;
  height: 60px;

  border-radius: 50%;

  background: rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  color: white;

  font-size: 22px;

  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #43d6cf;
  color: #032833 ;
}
.footer-socials i:hover {
  color: #032833 !important;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  margin-top: 60px;

  padding-top: 30px;

  border-top: 1px solid rgba(255,255,255,0.06);

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  gap: 20px;
}

.footer-bottom p {
  margin: 0;

  color: rgba(255,255,255,0.5);

  font-size: 15px;
}

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

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);

  text-decoration: none;

  font-size: 15px;

  transition: 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

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

@media (max-width: 1200px) {

  .footer-title {
    font-size: 72px;
  }
}

@media (max-width: 992px) {

  .footer-title {
    font-size: 58px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

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

@media (max-width: 768px) {

  .footer-cta {
    padding: 90px 0 80px;
  }

  .footer-title {
    font-size: 42px;
    line-height: 1.3;
  }

  .footer-register-btn {
    width: 100%;
    justify-content: center;

    font-size: 20px;
  }

  .footer-main {
    padding-top: 50px;
  }

  .footer-logo {
    font-size: 54px;
  }

  .footer-brand p {
    font-size: 16px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 18px;
  }

  .footer-links a {
    font-size: 16px;
  }

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

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}



/* =========================
   REVEAL ANIMATION
========================= */

.reveal {

  opacity: 0;

  transform: translateY(60px);

  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.active {

  opacity: 1;

  transform: translateY(0);
}