@font-face {
  font-family: 'Avenir';
  src: url('../../fonts/Avenir/Avenir-Regular/Avenir-Regular.ttf') format('truetype');
  font-display: swap;
  /* ← Add this */
}

/* page-specific styles: HOME PAGE */

.home-navbar {
  min-height: 100px;
  background: linear-gradient(180deg, #001F33 0%, rgba(0, 31, 51, 0.00) 100%);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(0, 31, 51, 0.95);
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
  }
}

.header-logo {
  width: 66px;
  height: 40px;
  flex-shrink: 0;
  aspect-ratio: 33/20;
}

@media (min-width: 1024px) {
  .header-logo {
    width: 124px;
    height: 75px;
  }
}

/* Custom Dropdown Styles */
.home-navbar .nav-link:hover,
.nav-item.dropdown:hover .dropdown-toggle,
.nav-item.dropdown .dropdown-toggle.show {
  background-color: #fff;
  color: #001F33 !important;
  /* Dark blue text */
  border-radius: 4px;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.nav-item.dropdown .dropdown-toggle.show {
  border-radius: 4px 4px 0 0;
}

.dropdown-menu {
  background-color: rgba(255, 255, 255, 0.2);
  /* Dark semi-transparent */
  border: none;
  border-radius: 0 4px 4px 4px;
  /* Align with toggle */
  padding: 0;
  margin-top: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  z-index: 9999 !important;
}

.dropdown-item {
  color: #fff;
  padding: 12px 20px;
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Arrow adjustment if needed */
.dropdown-toggle::after {
  display: none;
  /* Hide default arrow if not in screenshot, or style it */
}

.home-hero {
  min-height: 1000px;
  position: relative;
  /* Ensure positioning context */
}

@media (max-width: 1023px) {
  .home-hero {
    min-height: 400px;
  }

}

/* Gradient Blend to Page Background */
.home-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 450px;
  /* Adjust height of blend area */
  background: linear-gradient(to bottom, rgba(0, 31, 51, 0) 0%, #001F33 100%);
  z-index: 1;
  /* Above video, below text content if z-index managed correctly */
  pointer-events: none;
}

@media (max-width: 1023px) {
  .home-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    /* Adjust height of blend area */
    background: linear-gradient(to bottom, rgba(0, 31, 51, 0) 0%, #001F33 100%);
    z-index: 1;
    /* Above video, below text content if z-index managed correctly */
    pointer-events: none;
  }
}

.overlay {
  z-index: 1;
}

.home-hero .container {
  z-index: 2;
  width: 100%;
}

.object-fit-cover {
  object-fit: cover;
}

/* Show dropdown on hover (Desktop) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* Align perfectly with bottom of nav item */
  }
}

/* Button hover tweak */
.btn-outline-light:hover {
  color: #fff;
  /* background-color: rgba(255, 255, 255, 0.15); */
}

.hero-text {
  left: 84px;
  bottom: 80px;
}

.hero-texttt {
  left: 84px;
  bottom: 80px;
}

.sponsors-hero-text {
  left: 84px;
  bottom: 100px;
}

.hero-textt {
  left: 83px;
  bottom: 430px;
}

@media (max-width: 1023px) {
  .hero-textt {
    left: 11px;
    /* top: 230px; */
    bottom: 420px;
  }
}

.hero-main-title {
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
  /* normal */
  line-height: 110%;
  letter-spacing: -2px;
  color: var(--White, #FFF);
  opacity: 0;
  /* for animation */
  display: none;
  /* hidden on mobile */
}

@media (min-width: 1024px) {
  .hero-main-title {
    display: block;
    font-size: clamp(48px, 6.25vw, 120px);
    /* fluid scaling */
  }
}

@media (min-width: 1024px) and (max-width: 1499px) {
  .hero-main-title {
    font-size: clamp(48px, 5vw, 72px);
  }
}

/* Show title inside mobile hero section */
.hero-mobile-v2 .hero-main-title {
  display: block;
  font-size: clamp(36px, 8vw, 56px);
  opacity: 1;
  position: static;
  margin-bottom: 20px;
}

.hero-mobile-v2 .hero-textt {
  position: static;
}


@media (max-width: 1024px) {
  .hero-text {
    left: 20px;
    bottom: 40px;
  }


}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-text {
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@media (max-width: 1023px) {


  .hero-mobile-v2 {
    display: block;
  }

  .hero-text {
    display: block;
  }

  .hero-texttt {
    display: none;
  }
}

@media (min-width: 1023px) {
  .hero-text {
    display: block;
  }

  .hero-mobile-v2 {
    display: none;
  }
}

/* Event month styling */
.event-month {
  font-family: 'Avenir', Arial, sans-serif;
  font-weight: 700;
  /* Heavy */
  font-size: 40px;
  color: #d3ad6d;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-style: normal;
}

/* Fix icon alignment when used inline with text */
i.event-month {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}

.hero-text-content {
  width: 730px;
}

.hero-content-box {
  border-radius: 12px;
  background: var(--white-10, rgba(255, 255, 255, 0.10));
  display: flex;
  padding: 24px;
  align-items: center;
  gap: var(--Gutter, 28px);
  align-self: stretch;
}

/* Logo Slider Styles */
.partners-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  gap: 20px;
  width: 100%;
  color: #d3ad6d;
  /* Gold color matching event-month */
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

.partners-heading::before,
.partners-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  background-color: #0045E3;
  /* Dark blue/accent color for lines */
  /* opacity: 0.5; */
}

.logo-slider {
  overflow: hidden;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 100vw;
}

.slider-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  min-width: 0;
  margin-bottom: 30px;
}

@media screen and (max-width: 1023px) {
  .slider-row {
    margin-bottom: 0;
  }

  .partners-heading {
    margin-bottom: 0;
  }
}

.slider-track {
  display: flex;
  gap: 0;
  /* Removed gap for border implementation */
  padding-right: 0;
  /* Removed padding */
  width: max-content;
}


.slider-track img {
  height: 60px;
  /* Logo height */
  /* width: 135px; */
  object-fit: contain;
  /* opacity: 1; */
  /* transition: opacity 0.3s; */
  box-sizing: content-box;
  /* Allows padding to add to height/width */
  padding: 0px 36px;
  /* Vertical padding extends border, horizontal creates space */
  border-left: 0.5px solid rgba(255, 255, 255, 0.30);
  /* Separator line */
}

@media (min-width: 1024px) and (max-width: 1499px) {
  .slider-track img {
    height: 48px;
    padding: 0px 20px;
  }
}


.slider-track img:hover {
  opacity: 1;
}

/* Animation Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Move half the width (one set of logos) */
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
    /* Start from shifted position */
  }

  100% {
    transform: translateX(0);
  }
}

/* Specific Row Animations */
.scroll-left .slider-track {
  animation: scroll-left 16s linear infinite;
}

.scroll-right .slider-track {
  animation: scroll-right 16s linear infinite;
}

/* Pause on hover */
/* .slider-row:hover .slider-track {
  animation-play-state: paused;
} */

/* Agenda Accordion Styles */
.agenda-accordion {
  display: flex;
  flex-direction: column;
  /* border-top: 1px solid #D3AD6D; */
}

.agenda-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid #D3AD6D;
  padding-top: 30px;
  flex-wrap: wrap;
}

.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #0045E3;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 30px 8px;
  cursor: pointer;
  gap: 20px;
  transition: background-color 0.2s;
}

@media (min-width: 1024px) {
  .accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
    /* Subtle hover effect */
  }
}

/* Time Badge */
.time-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  /* Dark blue/grey bg */
  color: #fff;
  font-family: 'Avenir', sans-serif;
  font-size: 14px;
  white-space: nowrap;
  min-width: 120px;
  /* Ensure alignment */
  justify-content: center;
}

.time-badge i {
  color: #D3AD6D;
}

.panel-title {
  flex: 1;
  color: #FFF;
  font-family: 'Avenir', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 1.05vw + 9px, 26px);
}


/* Toggle Icon */
.toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0045E3;
  /* Blue circle */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s;
}

/* Accordion Body */
.accordion-body {
  display: none;
  /* Hidden by default */
  padding: 0 0 30px 151px;
  /* Indent to align with title */
  color: #ccc;
  line-height: 1.6;
  /* Fluid font size */
  font-size: clamp(16px, 0.55vw + 10px, 20px);
}

@media (max-width: 1023px) {

  .accordion-header {
    flex-wrap: wrap !important;
    padding: 24px 0;
    gap: 0;
    align-items: center;
  }

  .time-badge {
    order: 1;
    margin-bottom: 24px;
    min-width: fit-content;
    padding: 8px 16px;
  }

  .toggle-icon {
    order: 2;
    margin-left: auto;
    margin-bottom: 24px;
  }

  .panel-title {
    order: 3;
    width: 100% !important;
    flex: 0 0 100% !important;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    color: #FFF;
  }

  .accordion-body {
    padding: 20px 0 30px 0;
    /* Remove indent on mobile */
    font-size: 18px;
  }

  .accordion-body .text-gold {
    display: block;
    line-height: 1.8;
  }
}

/* .accordion-item.active .accordion-body {
  display: block; 
} Removed to allow jQuery slideDown to animate */

.text-gold {
  color: #D3AD6D;
}

.panelists-list {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.panelists-list p {
  padding-right: 14px;
  padding-left: 4px;
  border-right: 1px solid #fff;
  margin-bottom: 0 !important;
  line-height: 1;
  display: flex;
  align-items: center;
}

.panelists-list p:last-child {
  border-right: none;
  padding-right: 0;
}

@media (max-width: 1023px) {
  .panelists-list {
    flex-direction: column;
    gap: 8px;
  }

  .panelists-list p {
    border-right: none;
    padding-right: 0;
    line-height: 1.4;
  }
}

/* Featured Speakers Section */
.speakers-section {
  position: relative;
  overflow: hidden;
}

.speakers-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 20px;
  /* Space for scrollbar if visible, or visual spacing */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  min-height: 600px;
  /* Stabilizes vertical height when cards expand to 160px + text */
  align-items: flex-start;
  /* Ensures cards are top-aligned */
  cursor: grab;
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .speakers-scroll-container {
    min-height: 100%;
    margin-bottom: 60px;
  }
}

.speakers-scroll-container.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.speakers-scroll-container.dragging * {
  pointer-events: none;
}

.speakers-scroll-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.speaker-card {
  min-width: 290px;
  width: 290px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;

  /* Inactive State Scale */
  transform: scale(0.95);

  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    min-width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-card.active {
  min-width: 428px;
  width: 428px;
  transform: scale(1);
}

.speaker-image {
  width: 100%;
  height: 360px;
  /* Default height */
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inactive State Opacity */
/* opacity: 0.6;
  margin-left: -12px;
} */

@media (max-width: 1023px) {
  .speaker-image {
    margin-left: 12px;
  }
}

.speaker-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(180, 140, 70, 0.75);
  z-index: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.speaker-card.active .speaker-image {
  height: 480px;
  /* Active height */
}

.speaker-card.active .speaker-image::after {
  opacity: 0;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay gradient effect on image? 
   The design shows a color overlay or duotone effect. 
   I'll add a subtle overlay to match the 'gold/blue' tint if needed, 
   but for now clean images. */

.speaker-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 0px;
}

@media (max-width: 1023px) {
  .speaker-info {
    margin-left: 12px;
  }
}

.speaker-name {
  color: #D3AD6D;
  /* Gold */
  font-family: 'Avenir', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.speaker-title {
  color: #FFF;
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  opacity: 1;
  margin: 0;
}

@media (max-width: 1023px) {
  .speaker-card.active {
    min-width: 290px;
    width: 290px;
  }

  .speaker-card.active .speaker-image {
    height: 360px;
    /* Reset to match inactive height on mobile */
  }
}

@media (max-width: 575px) {

  .speaker-card,
  .speaker-card.active {
    min-width: 240px;
    width: 240px;
  }

  .speaker-image,
  .speaker-card.active .speaker-image {
    height: 300px !important;
  }
}

@media (min-width: 1024px) and (max-width: 1499px) {
  .speaker-card.active {
    min-width: 340px;
    width: 340px;
  }

  .speaker-card.active .speaker-image {
    height: 380px;
  }
}

/* Venue Section */
.venue-section {
  position: relative;
  /* padding-bottom: 100px; */
  /* margin-top: 50px; */
  /* min-height: 1000px; */
  /* Restored to original height or keep user's 1000px preference if needed, but 800px is usually sufficient */
  display: flex;
  align-items: center;
  /* overflow: hidden; */
  /* Removed max-width, margin:auto, border-radius for full width */
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 1023px) {
  .venue-section {
    flex-direction: column;
    min-height: auto;
    height: auto;
    align-items: flex-start;
  }

  .venue-section .container {
    height: auto !important;
    /* padding-top: 60px; */
    padding-bottom: 40px;
  }

  .map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }
}

.venue-mobile-bg {
  width: 100%;
  height: auto;
  align-self: stretch;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .venue-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('../images/venue-event-bg.png') center right / cover no-repeat;
  }

  .venue-mobile-bg {
    display: none;
  }
}

.venue-map-placeholder {
  width: 350px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #0045E3;
}

.faq-item {
  display: flex;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid #0045E3;
  gap: 40px;
}

.faq-question {
  width: 40%;
  color: #D3AD6D;
  font-family: 'Avenir', sans-serif;

  /* Fluid font size: scales with viewport */
  font-size: clamp(20px, 1.1vw + 8px, 26px);

  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  flex-shrink: 0;
}

.faq-answer {
  width: 60%;
  color: var(--White, #FFF);
  font-family: 'Avenir', sans-serif;

  /* Fluid font size */
  font-size: clamp(16px, 0.7vw + 8px, 20px);

  font-weight: 400;
  line-height: 160%;
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 1023px) {
  .faq-item {
    flex-direction: column;
    gap: 16px;
  }

  .faq-question,
  .faq-answer {
    width: 100%;
  }
}



.venue-map-container {
  width: 350px;
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  padding: 40px;
}

@media (max-width: 1023px) {
  .cta-content {
    padding: 24px;
  }
}

/* CTA Section */
.cta-card {
  border-radius: 24px;
  /* padding: 60px 50px; */
  min-height: 400px;
  transition: transform 0.3s ease;
}

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

.cta-register {
  /* background: radial-gradient(126.13% 136.25% at 0% 0%, #C5A47E 0%, #9E7F5C 100%); */
  color: #021223;
}

.cta-sponsor {
  background: radial-gradient(97.46% 115.42% at 0% 0%, #0044CC 0%, #002D88 100%);
  color: #FFF;
}

.cta-label {
  font-family: 'Avenir', sans-serif;
  color: white;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
  opacity: 0.8;
  display: block;
}

.cta-heading {
  font-family: 'Avenir', sans-serif;
  font-size: var(--CTA-Heading, clamp(40px, 1.4vw + 26px, 56px));
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

/* Pattern Overlay using CSS gradients to mimic the triangles slightly */
.cta-bg-pattern {
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  opacity: 0.3;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
}

/* ================= MOBILE HERO V2 (Lines 64-95 in index.html) ================= */
.hero-mobile-v2 {
  padding: 40px 0px;
  background-color: #001F33;
  /* Ensure dark background */
}

.hero-mobile-date {
  color: #D3AD6D;
  font-family: 'Avenir', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-mobile-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-mobile-location i {
  color: #D3AD6D;
  font-size: 20px;
}

.hero-mobile-location p {
  color: #fff;
  font-family: 'Avenir', sans-serif;
  font-size: 18px;
  margin: 0;
}

.hero-mobile-info-badge {
  display: inline-flex;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #fff;
  font-family: 'Avenir', sans-serif;
  font-size: 16px;
  margin-bottom: 24px;
}

.hero-mobile-cta-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-mobile-cta-h1 {
  color: #fff;
  font-family: 'Avenir', sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.hero-mobile-btn-blue {
  background-color: #0045E3;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 16px;
  width: 100%;
  font-family: 'Avenir', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.hero-mobile-btn-white {
  background-color: #E8F0FE;
  /* Light blue/white tint */
  color: #001F33;
  border: none;
  border-radius: 999px;
  padding: 16px;
  width: 100%;
  font-family: 'Avenir', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.hero-mobile-btn-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-mobile-btn-row {
  display: flex;
  gap: 12px;
}

@media (max-width: 575px) {
 /* .hero-mobile-btn-row {
    flex-direction: column;
    gap: 16px;
  }*/

  .hero-mobile-btn-container {
    gap: 16px;
  }
  .hero-textt {
        bottom: auto;
        top: auto;
        position: relative !important;
        left: 0;
        margin-top: -75px;
    }
  .hero-mobile-v2 .hero-main-title{
        font-size: clamp(45px, 8vw, 56px);
  }

  .logo-slider .partners-heading{
    margin-bottom: 32px;
  }
   .logo-slider .slider-row{
    margin-bottom: 24px;
  }
}

.hero-mobile-btn-row .hero-mobile-btn-white {
  flex: 1;
}

/* ================= MOBILE MENU OVERLAY ================= */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001F33;
  /* Pure Navy */
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  visibility: hidden;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  height: 100px;
}

.mobile-menu-header .navbar-brand img {
  width: 66px;
  height: 40px;
  flex-shrink: 0;
  aspect-ratio: 33/20;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 4px;
}

.mobile-menu-content {
  flex: 1;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.menu-level {
  width: 100%;
  padding: 0 24px;
  display: none;
  /* Hide by default */
}

.menu-level.active {
  display: block;
  /* Show only active */
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.mobile-nav li,
.back-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-family: 'Avenir', sans-serif;
  font-size: 18px;
}

.mobile-nav li a {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
}

.mobile-nav li i,
.back-link i {
  color: #D3AD6D;
  /* Gold */
  font-size: 16px;
}

.back-link {
  justify-content: flex-start;
  gap: 15px;
  color: #fff;
  font-weight: 400;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-footer {
  padding: 24px;
  background-color: #001F33;
}

.register-interest-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  border-radius: 999px;
  background-color: #0045E3;
  /* Blue from screenshot */
  border: none;
  font-size: 18px;
  font-weight: 500;
}

.register-interest-btnn {
  display: flex;
  padding: 9px 25px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: var(--Blue, #0045E3);
}

.register-interest-btnn:hover {
  display: flex;
  padding: 9px 25px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: #fff;
  color: #000;
}

/* Body lock when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

.custom-navbar-toggler {
  background: none;
  border: none;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-navbar-toggler .navbar-toggler-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.highlight-text {
  color: var(--Gold, #D3AD6D);
  font-family: Avenir;
  font-size: var(--Text-XS, 14px);
}

@media (max-width: 1023px) {
  .last-year-video {
    margin-top: 40px;
  }
}

.intro-text {
  font-size: var(--Text-XL, clamp(18px, 0.45vw + 16px, 24px));
  line-height: 1.4;
  margin-top: clamp(16px, 1.2vw, 24px);
  margin-bottom: clamp(28px, 3vw, 50px);
}

@media (max-width: 1023px) {
  .intro-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.hotel-name {
  font-size: var(--Text-XL, 26px);
  margin-bottom: 0;
  line-height: 1;
}

@media (max-width: 1023px) {
  .hotel-name {
    font-size: var(--Text-L, 24px);
  }
}

.live-stream {
  display: flex;
  padding: 12px var(--XS, 16px);
  justify-content: center;
  align-items: center;
  gap: var(--XXS, 8px);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.10);
  width: fit-content;
}

.hero-blue-btn {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 999px;
  background: var(--Blue, #0045E3);
  color: var(--White, #FFF);
  text-decoration: none;
  /* CTA/CTA S */
  font-family: Avenir;
  font-size: var(--Text-S, 16px);
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  /* 17.6px */
  white-space: nowrap;
}

.hero-blue-btn:hover {
  background: white;
  color: #000;
}

.hero-white-btn {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--White, #FFF);
  color: var(--Navy, #001F33);
  text-decoration: none;
  /* CTA/CTA S */
  font-family: Avenir;
  font-size: var(--Text-S, 16px);
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  /* 17.6px */
  white-space: nowrap;
  width: 100%;
}

.hero-white-btn:hover {
  background: #0045E3;
  color: var(--White, #FFF);
}

.card-white-btn {
  display: flex;
  padding: 17px 30px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: var(--White, #FFF);
  color: var(--Navy, #001F33);
  text-decoration: none;
  /* CTA/CTA S */
  font-family: Avenir;
  font-size: var(--Text-S, 16px);
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  /* 17.6px */
  white-space: nowrap;
}

.card-white-btn:hover {
  background: #0045E3;
  color: var(--White, #FFF);
}

@media screen and (max-width: 1550px) {
  .hero-blue-btn {
    padding: 12px 20px;
    font-size: var(--Text-S, 14px);
  }

  .hero-white-btn {
    padding: 12px;
    font-size: var(--Text-S, 14px);
  }

  .card-white-btn {
    padding: 12px 25px;
  }

}

/* Buttons */
.btn-submitt {
  background-color: #0045E3;
  color: #fff;
  padding: 17px 30px;
  border-radius: 999px;
  border: none;
  font-size: 18px;
  font-weight: 800;
  transition: all 0.4s ease-in-out;
}

.btn-submitt:hover {
  background-color: #fff;
  color: #000;
  transition: all 0.4s ease-in-out;
}

/* Buttons */
.accordian-btn-submitt {
  background-color: transparent;
  color: #fff;
  padding: 12px 25px;
  border-radius: 999px;
  border: 1.5px solid #0045E3;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  /* Matching the weight in the image */
  transition: all 0.4s ease-in-out;
}

.accordian-btn-submitt.active,
.accordian-btn-submitt:hover {
  background-color: #0045E3;
  color: #fff;
  border-color: #0045E3;
}

.accordian-btn-submitt span {
  font-size: 10px;
  vertical-align: super;
  margin-left: 2px;
}

@media (max-width: 1023px) {
  .btn-submitt {
    padding: 12px 25px;
    font-size: 16px;
  }
}

.header-social-icons {
  display: flex;
  gap: 16px;
}

.header-social-icons a {
  color: #FFF;
  font-size: 16px;
}

.home-hero-video-overlay{
      width: 100%;
    position: absolute;
    background: #001F33;
    height: 100%;
    opacity: 30%;
}