/* =========================================================================
   PAGE STYLES
   Centralized layout and section-specific styling
   ========================================================================= */

/* --- HERO SECTION --- */

.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-text-inverse);
  text-align: center;
  /* Match exact header padding of 160px for alignment -> 8.33vw */
  padding-inline: clamp(20px, 8.33vw, 160px);
  /* Top padding 178px -> 9.27vw */
  padding-top: clamp(80px, 9.27vw, 178px);
  /* Create a new stacking context for accurate depth sorting */
  isolation: isolate;
}

@media (max-width: 500px) {
  .hero {
    padding-inline: 20px !important;
  }
}

/* Background Composition */
.hero__background {
  /* Flatten the background wrapper so its children can interleave with content */
  display: contents;
}

/* Sky image (Top/Back) */
.hero__bg-sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: -4; /* Deepest layer */
}

/* Gate image (Bottom/Front) */
.hero__bg-gate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 81%;
  z-index: -2; /* Above the massive text */
  pointer-events: none; /* Let clicks pass through */
}

/* Linear Gradient Overlay: Top */
.hero__gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160%;
  background: linear-gradient(180deg, #050a18 0.54%, rgba(5, 10, 24, 0) 34.77%);
  z-index: -1;
  pointer-events: none;
}

/* Linear Gradient Overlay: Bottom */
.hero__gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52.7%;
  background: linear-gradient(1.06deg, #050a18 29.13%, rgba(5, 10, 24, 0.62) 55.5%, rgba(5, 10, 24, 0) 91.56%);
  z-index: -1;
  pointer-events: none;
}

/* Hero Content Wrapper */
.hero__content {
  position: relative;
  /* Removed strict z-index to allow children to step backwards */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Typography Specifics */
.hero__title {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  /* Figma: 70px */
  font-size: clamp(35px, 3.64vw, 70px);
  line-height: 1; /* Figma 70px line-height */
  text-transform: uppercase;
  margin-bottom: clamp(8px, 0.83vw, 16px);
  letter-spacing: 0;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  /* Figma: 36px */
  font-size: clamp(18px, 1.87vw, 36px);
  line-height: 1; /* Figma 36px line-height */
  margin-bottom: clamp(20px, 2.21vw, 42px);
}

/* Huge "INDIA 2026" Text Wrapper */
.hero__massive-text {
  position: relative;
  width: 100%;
  margin-bottom: clamp(40px, 4.21vw, 81px);
}

/* Layer Base Styling */
.massive-text__layer {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 1.25vw, 24px);
  width: 100%;
  padding-block: clamp(16px, 1.25vw, 24px);

  font-family: var(--font-heading);
  font-size: clamp(58px, 9.37vw, 180px);
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.massive-text__layer--solid {
  position: relative;
  z-index: -3; /* Negative z-index puts it strictly behind the gate (-2) */
  background: linear-gradient(to bottom, #ffffff 50%, #ba9232 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 4px 24px rgba(255, 255, 255, 0.4);
}

.massive-text__layer--stroke {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5; /* This pulls the stroke up entirely IN FRONT of the gate image */
  pointer-events: none;

  color: transparent;
  -webkit-text-stroke: 2px var(--color-text-inverse);
}

.hero-text-medium {
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  /* Figma: 28px */
  font-size: clamp(16px, 1.45vw, 28px);
  line-height: 1; /* Figma 100% */
  margin-bottom: clamp(8px, 0.83vw, 16px);
  max-width: 55%;
}

@media (max-width: 992px) {
  .hero-text-medium {
    max-width: 100%;
  }
  .hero__bg-gate {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: center 200px;
    z-index: -2;
    pointer-events: none;
  }
}

.hero-text-light {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  /* Figma: 16px */
  font-size: clamp(12px, 0.83vw, 16px);
  line-height: clamp(16px, 1.14vw, 22px); /* Figma: 22px */
  margin-bottom: clamp(20px, 2.08vw, 40px);
}

/* Bottom Event Details Pill (Glass Effect) */
.hero__details {
  display: flex;
  align-items: center;
  /* 16px gap between items/separator */
  gap: clamp(10px, 0.83vw, 16px);

  /* Glass colors -> #4A4A4A36 = rgba(74, 74, 74, 0.21) */
  background: rgba(74, 74, 74, 0.21);

  /* Glass refraction: 31px */
  backdrop-filter: blur(31px);
  -webkit-backdrop-filter: blur(31px);

  /* Glass light reflection + depth */
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.45),
    0 8px 32px rgba(0, 0, 0, 0.2);

  /* Figma padding: 19px 24px */
  padding: clamp(12px, 0.98vw, 19px) clamp(16px, 1.25vw, 24px);
  border-radius: clamp(100px, 11.45vw, 220px);

  margin-top: auto;
  /* Bottom space 98px */
  margin-bottom: clamp(48px, 5.1vw, 98px);
}

.hero__cta-mobile {
  display: none !important;
}

@media (max-width: 1081px) {
  .stat-card {
    min-width: calc(50% - clamp(24px, 2vw, 40px));
  }
  .hero__details {
    margin-bottom: clamp(24px, 2.5vw, 40px);
  }
  .hero__cta-mobile {
    display: flex !important;
    width: 100%;
    max-width: 480px; /* Cap width for better aesthetic on larger tablets */
    margin-bottom: clamp(40px, 4.16vw, 80px);
  }
}

.hero__detail-item {
  display: flex;
  align-items: center;
  /* 16px gap between icon and text */
  gap: clamp(8px, 0.83vw, 16px);

  font-family: var(--font-body);
  /* Figma: 20px */
  font-size: clamp(12px, 1.04vw, 20px);
  font-weight: var(--weight-semibold);
  line-height: 1; /* 100% */
}

.hero__detail-item img {
  /* Figma: 30x30px */
  width: clamp(20px, 1.56vw, 30px);
  height: clamp(20px, 1.56vw, 30px);
}

.hero__details-separator {
  width: 1px;
  height: clamp(16px, 1.25vw, 24px);
  background-color: rgba(255, 255, 255, 0.3);
}

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

.stats {
  background-color: #050a18;
  width: 100%;
  color: var(--color-text-inverse);
  /* 160px padding on left/right for 1920px screen -> 8.33vw */
  padding-inline: clamp(20px, 8.33vw, 160px);
}

.stats__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /* Top and Bottom Gap/Padding within the borders */
  padding-block: clamp(24px, 2.34vw, 45px);
  gap: clamp(24px, 2vw, 40px);

  border-top: 1px solid;
  /* border-bottom: 1px solid; */
  border-image-source: linear-gradient(
    90deg,
    rgba(238, 238, 238, 0.1) 0%,
    rgba(127, 143, 178, 0.5) 46.63%,
    rgba(238, 238, 238, 0.1) 100%
  );
  border-image-slice: 1;
}
.statsSliderContainer{
  justify-content: center;
}
.stat-card {
  display: flex;
  align-items: center;
  /* Gap between icon and text */
  gap: clamp(16px, 1.25vw, 24px);
  /* Ensure equal spacing if row breaks */
  flex: 1;
  /* min-width: 250px; */
}

.stat-card__icon {
  /* Figma: 100x100px */
  width: clamp(50px, 5.2vw, 100px);
  height: clamp(50px, 5.2vw, 100px);
  object-fit: contain;
  flex-shrink: 0;
}

.stat-card__content {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.41vw, 8px);
}

.stat-card__value {
  font-family: var(--font-body);
  font-weight: 600;
  /* Figma: 61px */
  font-size: clamp(32px, 3.17vw, 61px);
  line-height: 1;
}

.stat-card__label {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  /* Figma: 20px */
  font-size: clamp(14px, 1.04vw, 20px);
  line-height: 1.2; /* Slightly higher than tight 100% since it may multiline, but kept tight */
}

/* =========================================================================
   COUNTDOWN SECTION
   ========================================================================= */

.countdown {
  position: relative;
  background-color: #050a18; /* Fallback */
  /* Top padding 269px -> 14vw, Bottom padding 299px -> 15.5vw */
  padding-top: clamp(100px, 14vw, 150px);
  padding-bottom: clamp(100px, 15.5vw, 200px);
  /* 160px padding on left/right for 1920px screen -> 8.33vw */
  padding-inline: clamp(20px, 8.33vw, 160px);
  /* Insert background image bottom-aligned */
  background-image: url("../assets/images/hero/buildingtexture.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain; /* Or 100% auto depending on the asset aspect ratio */
  display: flex;
  justify-content: center;
}

.countdown__container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Space between boxes: 45px -> 2.34vw */
  gap: clamp(20px, 2.34vw, 45px);
  flex-wrap: wrap;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1vw, 20px); /* Gap between box and label */
}

.countdown__box {
  padding: clamp(30px, 3.48vw, 67px) clamp(16px, 1.45vw, 28px);
  /* Dimensions explicitly set to 203x218 per user request */
  width: clamp(100px, 10.57vw, 203px);
  height: clamp(100px, 11.35vw, 218px);
  /* The exact border radius per your specs */
  border-radius: 16px;

  /* Dual vertical gradient layers matching design */
  background: linear-gradient(180deg, #0c0c12 0%, #15151c 100%);

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden; /* Crucial for hiding sliding numbers outside the box */
}

/* Base Text */
.countdown__value {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  /* Figma: 111px */
  font-size: clamp(50px, 5.78vw, 111px);
  line-height: clamp(100px, 11.35vw, 218px); /* Match exact box height to center */
  text-align: center;

  /* Metallic Gradient Text */
  background: linear-gradient(180deg, #ffffff 25.36%, #6b6b6b 52.45%, #ffffff 71.96%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback */

  /* Drop Shadows */
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.35)) drop-shadow(0px 4px 4px rgba(255, 255, 255, 0.25));

  /* Required for absolute sliding alignment */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------
   Animating Slides
   ---------------------------------- */

/* The new number coming up from the bottom */
.slide-up-new {
  animation: slideNewUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* The old number leaving through the top */
.slide-up-old {
  animation: slideOldUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideNewUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOldUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* =========================================================================
   ABOUT & CONTEXT SECTION
   ========================================================================= */

.about {
  padding: min(10vw, 150px) 0;
  background-color: #050a18; /* Dark base matching design */
  background-image: url("../assets/images/hero/ellipseTexture.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  gap: 40px;

  /* Fallback side paddings if the container fluid class isn't wrapping it */
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
}

/* --- Left Column: Text Content --- */
.about__content {
  flex: 0 0 100%;
}

.about__content .section-title {
  color: #fff;
  margin-bottom: 20px;
}

.about__subtitle {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: clamp(20px, 2.03vw, 39px);
  line-height: 1.2; /* 120% */
  margin-bottom: 20px;
  color: #fff; /* Enforced white */
}

.about__text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 22px;
  color: #fff; /* Enforced white */
}

/* --- Right Column: Accordion --- */
.about__accordion--desktop {
  display: none; /* Hide desktop version by default on small screens */
  flex: 1;
}

.about__accordion--mobile {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Individual Accordion Item */
.accordion-item {
  position: relative;
  flex: 1 1 0; /* Base state: equally squeezed */
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #1a1a24;
}

/* Image Backgrounds within items */
.accordion-item__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Dimmed by default */
  transition: opacity 0.6s ease;
  z-index: 1;
}

.accordion-item.is-active .accordion-item__bg {
  opacity: 1; /* Brightens when active */
}

/* Gradient Overlay for text readability (provided by user) */
.accordion-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background:
    linear-gradient(179.88deg, rgba(0, 0, 0, 0) 52.66%, rgba(0, 0, 0, 0.8) 62.2%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

/* Inactive solid black overlay (0.8 opacity) requested by user */
.accordion-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1; /* Sits above the image but below the gradient overlay and text */
  transition: opacity 0.6s ease;
}

.accordion-item.is-active::after {
  opacity: 0; /* Fade out the heavy black when active so the image is visible */
}

/* Mobile Specific Accordion Items */
.about__accordion--mobile .accordion-item {
  flex: 0 0 auto;
  height: 80px; /* Short for inactive */
  transition:
    height 0.6s ease,
    flex 0.6s ease;
}

.about__accordion--mobile .accordion-item.is-active {
  height: auto;
  min-height: 480px;
}

/* Base styles for Title on Mobile Inactive */
.about__accordion--mobile .accordion-item__title {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  writing-mode: horizontal-tb;
  bottom: auto;
  z-index: 3;
  margin: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  width: 80%;
  color: #ffffff;
  font-size: 16px;
}

/* Active State Title for Mobile */
.about__accordion--mobile .accordion-item.is-active .accordion-item__title {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  padding: 30px 30px 10px 30px;
  width: 100%;
}

/* Detail Box (Quote + Content) */
.about__accordion--mobile .accordion-item__detail {
  padding: 10px 10px 20px 10px;
  display: flex;
  /* flex-direction: column; */
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease 0.2s;
}

.about__accordion--mobile .accordion-item.is-active .accordion-item__detail {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.about__accordion--mobile .accordion-item__content {
  position: absolute;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Bottom align content for mobile */
}

/* Restore/Isolate original Desktop Title styles */
.about__accordion--desktop .accordion-item__title {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  white-space: normal;
  max-height: calc(100% - 80px);
  z-index: 3;
  color: #fff;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1.2;
}

@keyframes fadeVerticalIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* 
  The unified content wrapper (Title + Detail).
  When inactive, it matches the full card dimensions so the absolute Title aligns perfectly.
*/
.accordion-item__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none; /* Let clicks pass through to accordion item */
  transition: all 0.4s ease;
}

/* Detail Box (Quote + Content) */
.accordion-item__detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateY(20px); /* Starts slightly lowered for fade up */
}

/* =========================================================================
   DESKTOP RESPONSIVE (992px+)
   Consolidated About Section Desktop Layouts
   ========================================================================= */
@media (min-width: 992px) {
  .about {
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
  }

  .about__content {
    flex: 0 0 calc(30% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about__accordion--desktop {
    display: flex;
    flex-direction: row;
    height: 600px;
    gap: 16px;
  }

  .about__accordion--mobile {
    display: none;
  }

  .accordion-item.is-active {
    flex: 5 1 0;
  }

  /* When Active: The wrapper snaps to the bottom bounding box and becomes a flex column */
  .accordion-item.is-active .accordion-item__content {
    top: auto;
    bottom: 0px;
    height: auto;
    padding: 0 20px 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    pointer-events: auto;
  }

  /* When Active: The Title joins the natural flex document flow */
  .accordion-item.is-active .accordion-item__title {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    writing-mode: horizontal-tb;
    white-space: normal;
    max-width: 80%;
    animation: fadeHorizontalIn 0.4s ease forwards 0.2s;
    color: var(--color-text-inverse);
  }

  /* When Active: Detail box fades up and in */
  .accordion-item.is-active .accordion-item__detail {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.1s;
  }
}

/* Detail Box (Quote + Content) */
.accordion-item__detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.accordion-item__quote-icon {
  flex-shrink: 0;
  width: 32px;
  height: auto;
  /* opacity: 0.5; */
}

.accordion-item__detail-text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 12px;
  line-height: 1.5;
  color: #e2e8f0;
}

.accordion-item__detail-text p {
  margin-bottom: 8px;
}

.accordion-item__detail-text p:last-child {
  margin-bottom: 0;
}

.accordion-item__author {
  margin-top: 12px;
  font-size: 13px;
  color: #fff;
}

/* =========================================================================
   VENUE SECTION
   ========================================================================= */

.venue {
  position: relative;
  width: 100%;

  /* Background setup */
  background-image: url("../assets/images/hero/yashobhumi.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Padding layout: 193px top/bottom scaling down, 160px right scaling down */
  padding-top: clamp(80px, 10vw, 193px);
  padding-bottom: clamp(80px, 10vw, 193px);
  padding-right: clamp(20px, 8.3vw, 160px);
  padding-left: clamp(20px, 5vw, 80px); /* Generic left padding if no card is there */

  display: flex;
  justify-content: flex-end; /* Pushes the card to the right side */
  align-items: center;
}

.venue__layout {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end; /* Align card right within the max width bounds */
}

.venue__card {
  background: #ffffffde; /* DE = 87% opacity pure white */
  border-radius: 24px;
  padding: clamp(24px, 3vw, 32px);

  /* Sizing constraints requested by user */
  width: 100%;
  max-width: 513px;
  min-width: 300px;

  /* Content flow */
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between textual elements */

  /* Optional light shadow to detach it from the background if DE opacity blends too much */
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.1);
}

/* Typography Overrides for Venue strict #171717 dark grey */
.venue__title {
  color: #171717;
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: clamp(32px, 3.5vw, 49px);
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
}

.venue__subtitle {
  color: #171717;
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
}

.venue__text {
  color: #171717;
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 22px;
  letter-spacing: 0;
  margin: 0;
}
.venusBox {
  margin: 0px 0;
  display: flex;
  flex-direction: column;
}
.venusBox p {
  font-family: "Inter";
  font-weight: 700;
  line-height: 100%;
  font-size: 39px;
  margin: 0 !important;
}
.venusBox span {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  margin: 0 !important;
}
/* 
  Specialized CTA Modifier 
*/
.btn-gold {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  color: #171717;
  box-shadow: 0px 4px 14px 0px #0000000f;
  margin-top: 12px;
  align-self: flex-start;
  font-weight: var(--weight-semibold);
  padding: 16px 32px;
  border-radius: 220px;
  border: 2px solid #ba9232;
  transition: color 0.4s ease;
  font-size: clamp(10px, 0.83vw, 16px);
}
.downloadBtn{
  text-transform:uppercase;
  margin-top: 30px;
  gap: 10px;
}
.downloadBtn i{
  font-size: 20px;
}
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ba9232;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-gold:hover::before,
.btn-gold:focus::before {
  transform: translateX(101%);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #ba9232;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}

/* =========================================================================
   IMPACT & VALUE SECTION
   ========================================================================= */

.impact {
  /* Layering the building texture over the solid dark blue fill */
  background-color: #212b5e;
  background-image: url("../assets/images/hero/buildingtexture.webp");
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: contain; /* Shrink to fit the height gracefully */

  padding: min(10vw, 160px) clamp(20px, 5vw, 160px);
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (min-width: 992px) {
  .impact__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Roughly 45/55 split favoring the accordion slightly */
    gap: 80px;
    align-items: flex-start;
  }
  .accordion-item__detail-text {
    font-size: 16px;
  }
}

/* --- Left Column: Timeline List --- */
.impact__content .section-title {
  color: #fff;
  margin-bottom: 40px;
}

.impact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px; /* Space between the two major points */
}

.impact__item {
  position: relative;
  /* Indent content to make room for the custom absolute marker */
  padding-left: 45px;
}

/* 
  The Custom Teal Marker Line 
  Using a pseudo-element on the list item to draw the connected vertical line.
  Only the first item gets the line extending downwards.
*/
.impact__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px; /* Start below the first marker */
  bottom: -32px; /* Extend through the gap to the next item */
  left: 12px; /* Centered visually under the dot */
  width: 1px;
  background-image: linear-gradient(to bottom, #008080 50%, transparent 50%); /* Dotted effect */
  background-size: 1px 12px;
  background-repeat: repeat-y;
  opacity: 0.5;
}

/* The Custom Teal UI Dot */
.impact__item::before {
  content: "";
  position: absolute;
  top: 3px; /* Align slightly down to match optical center of title text */
  left: 0;

  /* User spec: 10px dot + 7px transparent padding + 4px border = 28px total size */
  width: 10px;
  height: 10px;
  background-color: #008080;
  border-radius: 50%;

  /* Create the 7px gap natively using a massive transparent border, then an outline */
  outline: 4px solid #008080;
  border: 7px solid transparent; /* Acts as the 7px spacing */
  background-clip: padding-box; /* Ensures the inner dot doesn't bleed into the transparent border */
  box-sizing: content-box; /* Forces the sizing to be built outward */
}

.impact__item-title {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1;
  color: #fff;
  margin-bottom: 20px; /* User requested exactly 20px space below sub-heading */
}

.impact__item-text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin-bottom: 20px; /* Space before tags (if present) */
}

/* Glass Tags */
.impact__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; /* User spec */
  margin-bottom: 30px;
}

.impact__tags .tag {
  background: #ffffff1a; /* 10% opacity white */
  border-radius: 32px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 13px;
  line-height: 1;
  color: #fff;
}

/* --- Right Column: Vertical Accordion --- */
.impact__accordion {
  display: flex;
  flex-direction: column;
  gap: 8px; /* Fixed space between items */
  min-height: 580px; /* Prevents container from resizing and shaking the screen down when items toggle */
}

.v-accordion-item {
  background: #00000029; /* Inactive background */
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;

  /* Apply base frost (blur) for glass effect on all items */
  backdrop-filter: blur(16px); /* Approximation of Refraction/Frost */
  -webkit-backdrop-filter: blur(16px);

  /* Initial state border to ensure consistent sizing */
  border: 1px solid transparent;
}

/* Active State Styles */
.v-accordion-item.is-active {
  background: #00000066;
  /* 
    Outer shadow: 4px 10px 24px 0px #16376240 
    Inner shadow: Simulating the -45deg Light reflection (top-left) with a soft white inset 
  */
  box-shadow:
    4px 10px 24px 0px #16376240,
    inset 2px 2px 4px 0px rgba(255, 255, 255, 0.15); /* Approximation of the Light 80% parameter */

  border-color: rgba(255, 255, 255, 0.05); /* Slight edge highlight for glass feel */
}

.v-accordion-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(20px, 1.25vw, 24px);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.v-accordion-item__title {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1; /* 100% per user spec, though multi-line might need 1.2 */
  color: #fff;
}

.v-accordion-item__icon {
  flex-shrink: 0;
  color: #dfbd69;
  font-size: 24px; /* Sizing up for the +/- icon natively */
  line-height: 1;
  opacity: 0.3; /* Inactive opacity */
  font-weight: 300; /* Thin lines for modern feel */
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;

  /* Circle border */
  border: 1px solid #dfbd69;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make Active Icon Solid */
.v-accordion-item.is-active .v-accordion-item__icon {
  opacity: 1;
}

/* 
  Hidden Content Area 
  Using CSS Grid animation technique for smooth height transitions 
*/
.v-accordion-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.v-accordion-item.is-active .v-accordion-item__content {
  grid-template-rows: 1fr;
}

.v-accordion-item__content > p {
  overflow: hidden; /* Require for grid trick */
  padding: 0 24px 24px 24px; /* Only apply padding to inner element to avoid jumping */
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: clamp(13px, 0.8333vw, 16px);
  line-height: 22px;
  color: #fff;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.v-accordion-item.is-active .v-accordion-item__content > p {
  opacity: 1;
  transform: translateY(0);
  /* Slight delay so height opens before text fades in fully */
  transition-delay: 0.1s;
}

.countdown__label {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: clamp(14px, 1.04vw, 20px);
  line-height: 1;
  color: var(--color-text-inverse);
  text-align: center;
}

/* =========================================================================
   WHO SHOULD ATTEND SECTION
   ========================================================================= */

.attend {
  position: relative; /* Anchor for background eclipses */
  background-color: #050a18;
  padding: min(8vw, 120px) clamp(20px, 8.3vw, 160px);
  overflow: hidden; /* Prevent eclipses from breaking horizontal scroll */
}

@media (max-width: 1500px) {
  .attend {
    padding: min(10vw, 160px) clamp(20px, 5vw, 160px);
  }
}

/* Floating Background Textures */
.attend__eclipse {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8; /* Subtle blend */
}

.attend__eclipse--top-right {
  top: -10%;
  right: 0%;
  width: auto;
}

.attend__eclipse--bottom-left {
  bottom: -5%;
  left: 0%;
  width: auto;
}

.attend__eclipse--bottom-right {
  bottom: 10%;
  right: 0%;
  width: auto;
}

/* Override container max-width — section uses direct 160px padding instead */
.attend .container {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 0;
}

.attend .section-title {
  color: #fff;
  margin-bottom: clamp(40px, 5vw, 64px);
  text-align: left;
}

/* Masonry Collage Grid - Desktop Only (> 1250px) */
@media (min-width: 1251px) {
  .attend__grid {
    display: grid !important;
    gap: 30px !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: 470px 120px 320px !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }

  .attend__card.swiper-slide {
    width: auto !important;
    height: auto !important;
    flex-shrink: 1 !important;
  }

  /* Government Panel (Tall left) */
  .attend__card--1 {
    grid-column: 1 / 2;
    grid-row: 1 / span 2;
  }

  /* School Leaders (Short Top Center) */
  .attend__card--2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  /* Practitioners (Tall Right) */
  .attend__card--3 {
    grid-column: 3 / 4;
    grid-row: 1 / span 2;
  }

  /* Internatinal Ed (Short Bottom Left Center) */
  .attend__card--4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  /* CSR (Tall Bottom Center) */
  .attend__card--5 {
    grid-column: 2 / 3;
    grid-row: 2 / span 2;
  }

  /* EdTech (Short Bottom Right) */
  .attend__card--6 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
  }

  .attend__slider.swiper {
    overflow: visible !important;
  }
}

/* 
   slider under 1250px 
*/
@media (max-width: 1250px) {
  .attend__slider {
    width: 100%;
    overflow: visible; /* Let slides spill out if needed, container will clip */
    padding-bottom: 20px;
  }

  .attend__grid.swiper-wrapper {
    display: flex;
    gap: 0;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .attend__card.swiper-slide {
    height: 340px; /* Uniform card height in slider */
    width: auto;
    flex-shrink: 0;
  }

  .attend__card-content {
    padding: 24px;
  }
}

/* Individual Cards */
.attend__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex !important; /* Flex context to align content at bottom */
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: stretch !important; /* Allow content to span full width */

  /* Provide a base height for mobile if grid row spanning isn't active */
  /* min-height: 350px;  */
}

/* Image Layer */
.attend__card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease; /* Hover juice */
}

/* Gradient Overlay Layer (User Specs) */
.attend__card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background:
    linear-gradient(0deg, rgba(14, 26, 66, 0.3), rgba(14, 26, 66, 0.3)),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 50.11%, rgba(0, 0, 0, 0.9) 100%);
}

.attend__card:hover .attend__card-bg {
  transform: scale(1.05); /* Slight prestige hover effect */
}

/* Content Container */
.attend__card-content {
  position: relative;
  z-index: 3;
  padding: 24px;
  width: 100%; /* Ensure it spans the card width to allow text wrapping constraints */
}

.attend__card-title {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: clamp(22px, 2.5vw, 31px);
  line-height: 1;
  color: #e3e3e3; /* User spec */
  margin-bottom: 16px;
}

.attend__card-text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 22px;
  color: #e3e3e3;
  margin: 0;
}

/* =========================================================================
   SPECIALIST TRACKS (sub-section within .attend)
   ========================================================================= */

.specialist-tracks {
  padding-top: clamp(20px, 8.3vw, 160px);
}

.specialist-tracks__header {
  margin-bottom: 40px; /* Exactly 40px between title and grid */
}

.specialist-tracks__header .section-title {
  color: #fff;
}

/* 3-column, 2-row grid with internal borders acting as cell dividers */
.specialist-tracks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 640px) {
  .specialist-tracks__grid {
    grid-template-columns: 1fr;
  }
}

/* Every card: bottom border acts as horizontal row divider */
.track-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: clamp(20px, 4.17vw, 80px); /* Responsive: 20px min, scales to 80px */
  padding-bottom: clamp(20px, 3.65vw, 70px); /* Responsive: 20px min, scales to 70px */
  padding-right: clamp(20px, 2.08vw, 40px); /* Responsive: 20px min, scales to 40px */
  padding-top: clamp(20px, 1.67vw, 32px); /* Responsive: 20px min, scales to 32px */
}

/* Vertical Dividers */
@media (min-width: 993px) {
  .track-card:nth-child(3n + 1),
  .track-card:nth-child(3n + 2) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .track-card:nth-child(n + 4) {
    border-bottom: none;
  }
}

@media (min-width: 641px) and (max-width: 992px) {
  .track-card:nth-child(2n + 1) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .track-card:nth-child(n + 5) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .track-card {
    border-right: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .track-card__icon {
    margin-bottom: 0 !important;
    flex-shrink: 0;
  }

  .track-card:last-child {
    border-bottom: none;
  }
}

/* Base adjustment for the first column padding on desktop */
@media (min-width: 1251px) {
  .track-card:nth-child(3n + 1) {
    padding-left: 0;
  }
}

/* Icon */
.track-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: block;
}

/* Card Title: 39px Regular */
.track-card__title {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: clamp(22px, 2.5vw, 39px);
  line-height: 1;
  color: #e3e3e3;
  margin-bottom: 16px;
}

/* Card Description: 16px Regular for main line, 13px for sub-text span */
.track-card__text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 16px;
  line-height: 22px;
  color: #e3e3e3;
  margin: 0;
}

.track-card__text span {
  font-size: 13px;
  line-height: 1;
  color: #7d7d7d;
}

/* =========================================================================
   PROGRAM OVERVIEW SECTION
   ========================================================================= */

.program {
  position: relative;

  /* Full background image */
  background-image: url("../assets/images/hero/people-taking-part-high-protocol-event 1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Dark overlay to ensure text readability */
  background-color: #050a18;

  /* Padding: 137px top/bottom, 297px left/right */
  padding: clamp(60px, 7.1vw, 137px) clamp(20px, 15.5vw, 297px);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Overlay: tint the background dimmer */
.program::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Stack all children above the overlay */
.program > * {
  position: relative;
  z-index: 1;
}

/* Section Title */
.program__title {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

/* Day cards row */
.program__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5625vw, 30px);
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .program__cards {
    flex-direction: row;
  }
}

/* Individual glassmorphism card */
.program__card.glass-card {
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #00000066;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    4px 10px 24px 0px #16376240,
    inset 2px 2px 4px 0px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
}

/* Left: Day number badge (15%) */
.program__day-badge {
  flex: 0 0 15%;
  min-width: 70px;
  background: #ba92324d;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 4px;
  margin-right: 20px;
}

.program__day-number {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: clamp(32px, 3.5vw, 49px);
  line-height: 1;
  color: #fff;
}

.program__day-label {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1;
  color: #fff;
}

/* Right: Card text content (85%) */
.program__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program__card-title {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1;
  color: #fff;
  margin-bottom: 16px;
}

.program__card-text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: clamp(13px, 0.8333vw, 16px);
  line-height: 22px;
  color: #fff;
  margin: 0;
}

/* Gradient Separator Line */
.program__separator {
  width: 100%;
  height: 1px;
  margin: clamp(15px, 2.0833vw, 40px) 0;

  /* border-image gradient trick */
  background: linear-gradient(
    90deg,
    rgba(238, 238, 238, 0.1) 0%,
    rgba(127, 143, 178, 0.5) 46.63%,
    rgba(238, 238, 238, 0.1) 100%
  );
}

/* Specialist Sessions Row */
.program__sessions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.program__sessions-label {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

/* Glass badges (reusing similar pattern to impact tags) */
.program__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.program__badges .badge {
  background: #ffffff1a;
  border-radius: 32px;
  padding: clamp(12px, 0.8333vw, 16px) clamp(16px, 1.25vw, 24px);
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

/* CTAs Row */
.program__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* 
  .btn-golden — Light yellow-gold CTA (#DFBD69)
  Distinct from .btn-gold (#BA9232 darker bronze) used in the Venue section.
*/
.btn-golden {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #171717;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 16px 32px;
  border-radius: 220px;
  border: 2px solid #dfbd69;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.4s ease;
}

.btn-golden::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dfbd69;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-golden:hover::before,
.btn-golden:focus-visible::before {
  transform: translateX(101%);
}

.btn-golden:hover,
.btn-golden:focus-visible {
  color: #dfbd69;
}

/* =========================================================================
   SPEAKERS SECTION
   ========================================================================= */

.speakers {
  position: relative;
  overflow: hidden;

  /* Dark blue base — same as Impact section */
  background-color: #212b5e;
  background-image: url("../assets/images/hero/buildingtexture.webp");
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: contain;

  padding: clamp(60px, 6.25vw, 120px) clamp(20px, 8.3vw, 160px) clamp(60px, 8.3vw, 160px);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}

/* Eclipse background texture — right aligned */
.speakers::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(55vw, 700px);
  height: 100%;
  background-image: url("../assets/images/hero/speakerEclipse.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  z-index: 0;
  pointer-events: none;
}

/* Stack content above the eclipse pseudo-element */
.speakers > * {
  position: relative;
  z-index: 1;
}

/* Desktop: 2 column layout (left content, right cards) */
@media (min-width: 993px) {
  .speakers {
    flex-direction: row;
    align-items: center;
    gap: clamp(30px, 7.8646vw, 30px);
  }

  .speakers__cards {
    flex: 1;
  }
}

/* Mobile / Tablet Column Layout Reordering */
@media (max-width: 992px) {
  .speakers {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .speakers__content {
    display: block;
    width: 100%;
  }
  .speakersCards {
    width: 100% !important;
    margin-button: 30px;
  }
  .speakers__heading {
    margin-bottom: 20px;
  }

  .speakers__subheading {
    margin-bottom: 40px;
  }

  .speakers__cards {
    width: 100%;
    padding-top: 60px; /* Maintain portrait overflow space */
    /* margin-bottom: 48px; */
  }

  /* Hide desktop CTA on mobile */
  .speakers__cta-wrapper--desktop {
    display: none !important;
  }

  /* Show mobile CTA at the bottom */
  .speakers__cta-wrapper--mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 16px;
    margin-top: 30px;
  }

  .speakers__cta {
    width: 100%;
    max-width: 480px;
    margin-bottom: 0 !important;
  }

  .speakers__link {
    width: 100%;
    text-align: center;
  }
}

/* Default state for mobile-specific elements */
.speakers__cta-wrapper--mobile {
  display: none;
}

.speakers__cta-wrapper--desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Left Column */
.speakers__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.speakers__heading {
  color: #fff;
  margin-bottom: 20px;
}

.speakers__subheading {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1;
  color: #fff;
  margin-bottom: 48px;
}

.speakers__cta {
  margin-bottom: 24px;
}

.speakers__link {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  height: 26px; /* Increased height to accommodate underline without clipping */
  padding-bottom: 4px;
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 16px;
  line-height: 22px;
  color: #dfbd69;
  text-decoration: none;
}

/* Persistent Underline that doesn't roll with the text */
.speakers__link::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: currentColor;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.speakers__link:hover::before {
  opacity: 1;
}

.speakers__link-text {
  display: block;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.6, 0.01, 0.05, 0.95);
}

.speakers__link-text::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  white-space: nowrap;
}

.speakers__link:hover .speakers__link-text,
.speakers__link:focus-visible .speakers__link-text {
  transform: translateY(-100%);
}

/* Right Column: Cards */
.speakers__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  border: 1px solid #ccbbbb;

  /* Push cards down to allow portrait overflow at top */
  padding-top: 67px;
  align-items: flex-end;
}

/* Individual Speaker Card */
.speaker-card {
  position: relative;
  background: #0f1e33;
  border-radius: 20px;
  max-width: 500px;
  /* Portrait floats 67px above the card */
  padding-top: 0; /* Portrait handles its own spacing */

  min-width: 240px;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Portrait float container — background-image approach so it doesn't conflict with card body padding */
.speaker-card__portrait-wrap {
  position: relative;
  width: 100%;
  /* height: clamp(250px, 17.7083vw, 340px); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;

  /* Pull the portrait section up by 67px above the card */
  /* margin-top: -67px; */
}

/* Hide the img tag — image is rendered as background on the wrap div */
.speaker-card__portrait {
  /* display: none; */
}

/* Card body below the portrait */
.speaker-card__body {
  position: absolute;
  bottom: 0;
  padding: 0 clamp(20px, 2.6042vw, 30px) clamp(20px, 3.1771vw, 30px) clamp(20px, 2.6042vw, 30px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.93) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
}

/* Teal badge */
.speaker-card__badge {
  display: inline-block;
  background: #00808033;
  border-radius: 32px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin-bottom: 18px;
}

/* Speaker Name */
.speaker-card__name {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: clamp(20px, 2.5vw, 31px);
  line-height: 1;
  color: #fff;
  margin-bottom: 18px;
}

/* Speaker Designation */
.speaker-card__role {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin: 0;
}

/* =========================================================================
   REGISTRATION SECTION
   ========================================================================= */

.registration {
  position: relative;
  min-height: 600px;

  /* Background image fills the whole section */
  background-image: url("../assets/images/hero/registrationTicket.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Padding: 151px top/bottom, 160px right, 0 left (card is right-aligned) */
  padding: clamp(60px, 7.9vw, 151px) clamp(20px, 8.3vw, 160px);

  /* Right-align the card */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Content Card */
.registration__card {
  background: #ffffffde;
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 513px;
  min-width: 300px;
  color: #171717;
}

/* Card Heading */
.registration__card-heading {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: clamp(24px, 3.5vw, 49px);
  line-height: 1;
  color: #171717;
  margin-bottom: 32px;
}

/* Icon Rows List */
.registration__info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Single Icon Row */
.reg-info-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 1.25vw, 24px);
}

/* Icon */
.reg-info-row__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

/* Text content */
.reg-info-row__content {
  flex: 1;
}

.reg-info-row__title {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 20px;
  line-height: 1;
  color: #171717;
  margin-bottom: 8px;
}

.reg-info-row__text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 16px;
  line-height: 22px;
  color: #171717;
  margin: 0;
}

/* CTA spacing inside registration card */
.registration__cta {
  margin-top: 32px;
  display: inline-flex;
}

/* =========================================================================
   SPONSORSHIP & MEDIA RESOURCES SECTION
   ========================================================================= */

.sponsorship-media {
  position: relative;
  overflow: hidden;
  background-color: #0b1437;

  /* Top padding: 156px */
  padding-top: clamp(80px, 8.125vw, 156px);
  padding-bottom: 0;

  /* Left/Right padding: 83px */
  padding-inline: clamp(20px, 8.3vw, 160px);
}

/* Background Ellipse textures — section only */
.sponsorship-media__ellipse {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.sponsorship-media__ellipse--top-right {
  top: 0;
  right: 0;
  width: min(55vw, 700px);
  height: auto;
}

.sponsorship-media__ellipse--bottom-left {
  bottom: 0;
  left: 0;
  width: min(55vw, 700px);
  height: auto;
}

/* Two-column layout */
.sponsorship-media__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: clamp(30px, 4.5313vw, 87px);
}

@media (min-width: 992px) {
  .sponsorship-media__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

/* LEFT COLUMN */
.sponsorship-media__left {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .sponsorship-media__left {
    width: 50%;
  }
}

/* Heading — same style as section-title but white */
.sponsorship-media__heading {
  color: #fff;
  margin-bottom: clamp(24px, 2.5vw, 40px);
}

/* List */
.sponsorship-media__list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(24px, 2.5vw, 40px) 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sponsorship-media__item {
  position: relative;
  /* Indent content to match impact section sizing */
  padding-left: 45px;
}

/* Cyan concentric bullet with dotted vertical line (matching impact section style) */
.sponsorship-media__item::before {
  content: "";
  position: absolute;
  top: 3px; /* Align slightly down to match optical center of title text */
  left: 0;

  /* Concentric style: 10px dot + 7px transparent padding + 4px ring = 32px total size */
  width: 10px;
  height: 10px;
  background-color: #008080;
  border-radius: 50%;

  /* Outer Ring and Gap */
  outline: 4px solid #008080;
  border: 7px solid transparent;
  background-clip: padding-box;
  box-sizing: content-box;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.sponsorship-media__item::after {
  content: "";
  position: absolute;
  top: 35px; /* Start below the first marker */
  bottom: -44px; /* Extend through the gap to the next item */
  left: 12px; /* Centered visually under the dot - matching impact section */
  width: 1px;
  background-image: linear-gradient(to bottom, #008080 50%, transparent 50%); /* Dotted effect */
  background-size: 1px 12px;
  background-repeat: repeat-y;
  opacity: 0.7; /* Slightly higher opacity for better visibility matching image 1 */
}

.sponsorship-media__item:last-child::after {
  display: none;
}

.sponsorship-media__item-title {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
}

.sponsorship-media__item-text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Vertical separator between columns */
.sponsorship-media__separator {
  display: none;
}

@media (min-width: 992px) {
  .sponsorship-media__separator {
    display: block;
    width: 1px;
    align-self: stretch;
    flex-shrink: 0;
    border: none;
    background: transparent;

    /* The gradient separator per spec */
    background-image: linear-gradient(
      180deg,
      rgba(238, 238, 238, 0.1) 0%,
      rgba(127, 143, 178, 0.5) 46.63%,
      rgba(238, 238, 238, 0.1) 100%
    );
    margin-inline: 40px;
  }
}
.butsBox {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
}
/* RIGHT COLUMN */
.sponsorship-media__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =========================================================================
   MEDIA TABS (Brand Heritage / Latest News / FAQ)
   ========================================================================= */

.media-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.media-tabs__tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 220px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 14px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.25s ease;
}

.media-tabs__tab:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.media-tabs__tab.is-active {
  background: #dfbd6933;
  border-color: #dfbd69;
  color: #dfbd69;
  font-weight: var(--weight-semibold);
}

/* Tab Panels */
.media-tabs__panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.media-tabs__panel[hidden] {
  display: none;
}

.media-tabs__cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* =========================================================================
   MEDIA CARDS (same pattern as program overview cards)
   ========================================================================= */

.media-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media (min-width: 768px) {
  .media-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.media-card {
  flex: 1;
  min-width: 220px;

  display: flex;
  align-items: stretch;
  gap: 20px;

  /* Glass card — Unified with program cards */
  background: #00000066;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    4px 10px 24px 0px #16376240,
    inset 2px 2px 4px 0px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.media-card:hover {
  background: #00000080;
  transform: translateY(-4px);
}

/* Date Badge (matching program day badge colours) */
.media-card__date-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: #ba92324d;
  border-radius: 8px;
  width: 56px;
  /* height: 64px; */
  text-align: center;
}

.media-card__day {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: 24px;
  line-height: 1;
  color: #fff;
}

.media-card__month {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 13px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

/* Card Text */
.media-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.media-card__title {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.media-card__text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

/* =========================================================================
   FAQ ACCORDION (inside media-tabs panel — reuses v-accordion styles)
   ========================================================================= */

.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* v-accordion-item styles are already defined globally */
}

/* Side-by-side columns ONLY under 640px for Quick Links and Get in Touch */
@media (max-width: 640px) {
  .attend__eclipse--bottom-left {
    display: none;
  }
}

@media (max-width: 1300px) {
  .attend .container {
    padding: 0 !important;
  }
  .program,
  .speakers,
  .sponsorship-media,
  .registration {
    padding: min(10vw, 160px) clamp(20px, 5vw, 160px);
  }
  .stats {
    padding-inline: min(10vw, 160px) clamp(20px, 5vw, 160px);
  }
  .sponsorship-media {
    padding-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .speaker-card__role {
    min-height: 70px;
  }
}
@media (max-width: 640px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .hero__title,
  .section-title,
  .about__subtitle,
  .venue__title,
  .venue__subtitle,
  .registration__card-heading,
  .sponsorship-media__heading,
  .program__title,
  .speakers__heading,
  .speaker-card__name,
  .track-card__title,
  .impact__item-title,
  .v-accordion-item__title {
    line-height: 1.5 !important;
  }

  .container,
  .hero,
  .nav__container,
  .countdown__container,
  .section {
    padding-inline: 20px !important;
  }

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

  .countdown__container {
    gap: 8px;
    padding: 0px !important;
  }
  .countdown__item {
    width: calc(33% - 8px);
  }
  .countdown__value {
    font-size: clamp(45px, 5.78vw, 111px);
  }
  .venue {
    background-image: linear-gradient(#00000066, #00000066), url("../assets/images/hero/yashobhumi.webp") !important;
    padding-top: 100px;
    padding-right: 20px;
  }
  .speakers__content {
    align-items: center;
  }

  /* Center Speakers and Program content */
  .speakers__heading,
  .speakers__subheading,
  .speaker-card__body,
  .program__title,
  .program__card-content {
    text-align: center !important;
  }

  .speakers__subheading {
    margin-left: auto;
    margin-right: auto;
  }

  .speaker-card__badge {
    margin-left: auto !important;
    margin-right: auto !important;
    display: table !important;
  }

  .program__card,
  .program__card-content {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
  }

  .program__day-badge {
    margin-bottom: 12px;
  }
}
/* ============================= */
.registration.strategicSession {
  background-image: url("../assets/images/hero/bg1.webp");
}
.topersSession {
  background-image: url("../assets/images/hero/bg3.webp");
}
.breakoutSession {
  background-image: url("../assets/images/hero/bg2.webp");
  justify-content: flex-start;
}
.internationalSession {
  background-image: url("../assets/images/hero/bg4.webp");
  justify-content: flex-start;
}
.breakoutSession .reg-info-row__icon,
.topersSession .reg-info-row__icon,
.strategicSession .reg-info-row__icon {
  height: 46px;
  width: 46px;
}
.topersSession .reg-info-row {
  align-items: flex-start;
}
.strategicSession .reg-info-row {
  align-items: center;
}

.breakoutSession .reg-info-row__text,
.topersSession .reg-info-row__text,
.strategicSession .reg-info-row__text {
  font-size: 26px;
  line-height: 110%;
}
.breakoutSession .registration__card {
  max-width: 500px;
}
.breakoutSession .registration__info-list {
  max-height: 400px;
  overflow-y: scroll;
}
.breakoutSession .registration__info-list {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #333333 transparent;
}
.breakoutSession .registration__info-list::-webkit-scrollbar {
  width: 6px;
}
.breakoutSession .registration__info-list::-webkit-scrollbar-track {
  background: transparent;
}
.breakoutSession .registration__info-list::-webkit-scrollbar-thumb {
  background-color: #333333;
  border-radius: 10px;
  border: 1px solid transparent;
}
.breakoutSession .registration__info-list::-webkit-scrollbar-thumb:hover {
  background-color: #555555;
}

@media (max-width: 1660px) {
  .breakoutSession .reg-info-row__icon,
  .topersSession .reg-info-row__icon,
  .strategicSession .reg-info-row__icon {
    height: 40px;
    width: 40px;
  }
}
@media (max-width: 1440px) {
  .breakoutSession .reg-info-row__text,
  .topersSession .reg-info-row__text,
  .strategicSession .reg-info-row__text {
    font-size: 22px;
  }
  .topersSession .reg-info-row,
  .breakoutSession .reg-info-row,
  .strategicSession .reg-info-row {
    align-items: center;
  }
  .internationalSession .registration__card,
  .topersSession .registration__card,
  .breakoutSession .registration__card,
  .strategicSession .registration__card {
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  .breakoutSession .reg-info-row__text,
  .topersSession .reg-info-row__text,
  .strategicSession .reg-info-row__text {
    font-size: 20px;
  }
  .registration__info-list {
    gap: 20px;
  }
}
/* =========== */
html {
  scroll-snap-type: y proximity; /* or 'mandatory' for stricter snapping */
  scroll-behavior: smooth;
}

.registration {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  scroll-margin-top: 80px;
}
/* ===================== */
/* Modal Overlay Logic */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(5px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box Animation */
.modal-content {
  transform: translateY(30px);
  transition: transform 0.3s ease-out;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #a0a0a0;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.close-modal:hover {
  color: white;
}

/* Reusing your Theme Styles */
.regForm {
  background-color: #0a0b10;
  padding: 50px 40px;
  border-radius: 24px;
  max-width: 550px;
  width: 90%;
  color: white;
}

.modalTitle {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: "Inter";
}

.registration-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 0.8rem;
  color: #a0a0a0;
  pointer-events: none;
}

.form-group input {
  width: 100%;
  background-color: #2d2e36;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 32px 18px 12px 18px;
  color: white;
  font-size: 1rem;
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #e5c175;
}

.submit-btn {
  background-color: #e5c175;
  color: #1a1a1a;
  border: none;
  padding: 16px 45px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s;
}

@media (max-width: 600px) {
  .regForm {
    padding: 20px 20px;
    width: 95%;
  }
}
/* ========================= */
.organizerSection {
  background: url("../assets/images/hero/people-taking-part-high-protocol-event 1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.organizerContainer {
  padding: 100px 0;
  width: 85% !important;
}
.organizerContainer h2 {
  font-size: 49px;
  color: #fff;
  font-family: "Inter";
}
.organizerBox {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 58px;
}
.organizerItem {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  color: #ffffff;
}
.organizerItem h4 {
  font-family: "Inter";
  font-weight: 400;
  font-size: 31px;
  margin-bottom: 18px;
}
.organizerItem p {
  font-family: "Inter";
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
}
@media (max-width: 1440px) {
  .organizerItem h4 {
    margin-bottom: 10px;
  }
  .organizerContainer h2 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .organizerContainer {
    padding: 80px 0;
    width: 90% !important;
  }
  .organizerItem {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .organizerItem {
    gap: 24px;
  }
  .organizerItem h4 {
    margin-bottom: 8px;
  }
  .organizerItem img {
    height: 100px;
  }
}
@media (max-width: 600px) {
  .organizerItem {
    gap: 10px;
    /* flex-direction: column; */
  }
  .organizerBox {
    gap: 28px;
    margin-top: 38px;
  }
  .organizerContainer h2 {
    font-size: 28px;
  }
  .organizerItem img {
    height: 80px;
  }
}
@media (max-width: 480px) {
  .organizerItem {
    gap: 10px;
    flex-direction: column;
  }
}
/* ====================== */
.programSection {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1437;
}
.programContainer {
  width: 85% !important;
  display: flex;
  flex-direction: column;
  margin: 100px 0;
  justify-content: center;
  color: #ffffff;
}
.overview-heading {
  font-weight: 700;
  font-size: 49px;
  margin-bottom: 40px;
  font-family: "Inter";
}

.overview-container {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 30px;
  align-items: start;
}

/* Sidebar Styling */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.track-item {
  box-shadow: 4px 10px 24px 0px #16376240;
  gap: 32px;
  border-radius: 24px;
  padding: 0 25px;
  height: 100px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: #00000066;
}
.track-item.active {
  background: #ba923245;
  border: 1px solid rgba(185, 157, 107, 0.3);
}
.track-num {
  font-size: 67px;
  font-weight: 600;
  color: #4a4538;
  margin-right: 20px;
}
.track-item.active .track-num {
  color: #6b5f38;
}
.track-text {
  font-size: 31px;
  font-weight: 700;
  color: #414858;
  font-family: "Inter";
}
.track-item.active .track-text {
  color: white;
}
.arrow {
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #6b5f38;
  display: none;
}
.track-item.active .arrow {
  display: block;
}
.content-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.content-card img {
  width: 100%;
  height: 625px;
  background-size: cover;
  object-fit: cover;
  background-position: center;
}
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 46.2%, rgba(0, 0, 0, 0.86) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.card-title {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: "Inter";
  font-weight: 700;
}
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag {
  background: #45341ef7;
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  align-items: center;
  color: #fff;
  font-family: "Inter";
}
.tag span {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 16px;
}
.overview-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
  gap: 28px;
}
.content-card {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  will-change: opacity, transform;
}

.track-item {
  transition:
    background-color 0.3s ease,
    border 0.3s ease;
}

@media (max-width: 1660px) {
  .track-item {
    gap: 24px;
    padding: 0 20px;
    height: 80px;
  }
  .track-num {
    font-size: 48px;
  }
  .content-card img {
    height: 530px;
  }
  .card-overlay {
    padding: 30px;
  }
  .tag {
    padding: 8px 14px;
    font-size: 14px;
  }
  .tag span {
    margin-right: 10px;
  }
  .overview-container {
    grid-template-columns: 320px 1fr;
  }
  .overview-actions {
    margin-top: 20px;
    gap: 24px;
  }
  .overview-heading {
    margin-bottom: 30px;
  }
  .programContainer {
    margin: 80px 0;
  }
}
@media (max-width: 1280px) {
  .programContainer {
    margin: 80px 0;
    width: 90% !important;
  }
  .overview-container {
    grid-template-columns: 280px 1fr;
  }
  .overview-heading {
    font-size: 38px;
    margin-bottom: 20px;
  }
  .track-num {
    font-size: 38px;
  }
  .track-text {
    font-size: 28px;
  }
  .track-item {
    gap: 8px;
    padding: 0 20px;
    height: 70px;
  }
  .content-card img {
    height: 435px;
  }
  .card-overlay {
    padding: 20px;
  }
  .sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .card-title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .tag {
    padding: 8px 10px;
    font-size: 10px;
  }
}

@media (max-width: 992px) {
  .overview-heading {
    font-size: 28px;
  }
  .programContainer {
    margin: 60px 0;
  }
  .track-num {
    font-size: 28px;
    margin-right: 10px;
  }
  .track-item {
    height: 50px;
  }
  .track-text {
    font-size: 20px;
  }
  .overview-container {
    grid-template-columns: 1fr;
  }
  .sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .track-item {
    min-width: 150px;
  }
  .overview-actions {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .track-num {
    font-size: 22px;
    margin-right: 0px;
  }
  .track-item {
    height: 50px;
  }
  .track-text {
    font-size: 16px;
  }
  .overview-container {
    grid-template-columns: 1fr;
  }
  .sidebar {
    gap: 10px;
  }
  .track-item {
    height: 40px;
  }
  .card-title {
    font-size: 20px;
  }
  .content-card img {
    height: 400px;
  }
  .overview-actions {
    gap: 10px;
  }
}
@media (max-width: 510px) {
  .btn-gold {
    padding: 12px 18px;
  }
}

@media (max-width: 450px) {
  .overview-actions {
    flex-wrap: wrap;
  }
}

.iti--container {
  z-index: 999999 !important;
}

.form-error {
  color: #ff0000;
}
.btn-gold-disabled {
  opacity: 0.5;
}
/* ================= */
.speakersCards {
  width: calc(100% - 390px);
}

.speaker-card {
  border-radius: 30px;
  height: 420px;
  overflow: hidden;
}

.speaker-card__portrait-wrap {
  width: 100%;
  height: 100%;
}

.speaker-card__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.speaker-card__name {
  font-family: "Inter";
  font-weight: 400;
  font-size: 31px;
}

.speaker-card__role {
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
}
.speaker-card__body {
  height: 100px;
  overflow: hidden;
  margin-bottom: -50px;
  transition: all 0.3s;
}
.speaker-card:hover .speaker-card__body {
  margin-bottom: 0px;
  height: auto;
}
.readMoreBtn {
  margin-top: 20px !important;
  gap: 10px;
  padding: 10px 20px !important;
  align-items: center;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .speaker-card__name {
    font-size: 22px;
    margin-bottom: 8px !important;
  }
  .speaker-card__role {
    font-size: 16px;
  }
  .speaker-card__role {
    min-height: 30px;
  }
  .speaker-card {
    height: 320px;
  }
}
/* ================ */
.stickyBtnBox {
  position: fixed;
  left: 0;
  top: 20%;
  z-index: 1000;
}
.stickyBtnBox .btnSticky2 {
  margin-top: -48px;
}
.stickyBtnBox .btnSticky img {
  width: 60px;
  transition: all 0.5s;
}
.stickyBtnBox .btnSticky img:hover {
  transform: scale(1.05);
}
.btn-red {
  display: none !important;
}
@media (max-width: 1660px) {
  .stickyBtnBox .btnSticky img {
    width: 50px;
  }
}
@media (max-width: 1440px) {
  .stickyBtnBox .btnSticky img {
    width: 45px;
  }
}

@media (max-width: 600px) {
  .stickyBtnBox .btnSticky2 {
    margin-top: -25px;
  }
  .stickyBtnBox {
    top: 30%;
  }
  .stickyBtnBox .btnSticky img {
    width: 30px;
  }
  .venue__subtitle,
  .hero__title {
    line-height: 1.1 !important;
  }
  .hero__subtitle br {
    display: none;
  }
  .about__content .section-title {
    margin-bottom: 10px;
  }
  .about__subtitle {
    line-height: 1.3 !important;
    margin-bottom: 10px;
  }
  .countdown {
    padding-top: clamp(80px, 14vw, 150px);
    padding-bottom: clamp(80px, 15.5vw, 200px);
  }
  .venusBox span {
    font-size: 12px;
  }
  .venusBox p {
    font-size: 31px;
  }
  .venue__card {
    gap: 10px;
  }
  .btn-gold {
    font-size: clamp(12px, 0.83vw, 16px);
  }
  .impact__item-title {
    line-height: 1.3 !important;
    margin-bottom: 10px;
  }
  .impact__content .section-title {
    margin-bottom: 30px;
  }
  .attend__card-title {
    line-height: 1.3 !important;
    font-size: clamp(18px, 2.5vw, 31px);
    margin-bottom: 10px;
  }
  .track-item {
    min-width: 130px;
  }
  .card-title {
    font-size: 18px;
    line-height: 1.3 !important;
  }
  .btn-golden,
  .btn-gold {
    width: 100%;
  }
  .registration__card {
    padding: 20px;
  }

  .breakoutSession .reg-info-row__text,
  .topersSession .reg-info-row__text,
  .strategicSession .reg-info-row__text {
    font-size: 18px;
  }
  .breakoutSession .reg-info-row__icon,
  .topersSession .reg-info-row__icon,
  .strategicSession .reg-info-row__icon {
    height: 30px;
    width: 30px;
  }
  .registration__card-heading {
    margin-bottom: 20px;
  }
  .organizerItem h4 {
    font-size: 22px;
  }
  .speaker-card__body {
    margin-bottom: -56px;
  }
  .reg-info-row__icon {
    width: 30px;
    height: 30px;
  }
  .reg-info-row__title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .registration__info-list {
    gap: 24px;
  }
  .section-title br {
    display: none;
  }
  .organizerItem {
    gap: 20px;
  }
  .btn-red {
    display: flex !important;
    color: #fff;
    border-color: #530307;
    margin-bottom: 16px;
  }
  .btn-red::before {
    background: #530307 !important;
  }
  .btn-red:hover {
    background: #530307 !important;
    color: #fff !important;
  }
  .hero__cta-mobile {
    display: none !important;
  }
  .modalTitle {
    font-size: 24px;
    font-family: "Inter";
    text-align: center;
    width: 90%;
  }
  .regForm {
    padding: 20px 0;
  }
  .close-modal {
    top: 14px;
    right: 14px;
  }
}
