/* ==================== CSS Variables ==================== */
:root {
  --color-primary-green: #9bffa0;
  --color-bg-dark: rgba(15, 15, 15, 1);
  --color-white: #ffffff;
  --color-black: #000;
  --color-place: rgba(0, 195, 255, 1);
  --color-orange: rgba(255, 171, 102, 1);
  --color-text-secondary: rgba(255, 255, 255, 0.8);
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-border-gradient: linear-gradient(
    111.17deg,
    #7c7c7c -1.87%,
    #9bffa0 103.65%
  );
  --font-castledown: "Castledown", sans-serif;
}

/* ==================== Global Reset ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Castledown";
  src: url("./assests/fonts/castledown-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-dark);
  color: var(--color-white);
  min-height: 100vh;
  font-family: var(--font-castledown);
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.theme-agenda {
  background-image: url("assests/images/agenda%20background.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

h1,
h2,
h3 {
  font-family: var(--font-castledown);
}

/* ==================== Navbar ==================== */
/* Navbar Base */
.navbar {
  border-bottom: 0.91px solid;
  border-image-source: var(--color-border-gradient);
  border-image-slice: 1;
  background-color: #00000000;
  padding: 0.8rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
  width: 100%;
  max-width: 100%;
}

.theme-about .navbar {
  border-bottom: 0.77px solid;
  border-image-source: linear-gradient(
    111.17deg,
    #7c7c7c -1.87%,
    #ff99ff 103.65%
  );
  border-image-slice: 1;
  background-color: #00000000;
  backdrop-filter: blur(6px);
  padding: 0.8rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
}

.theme-speaker .navbar {
  border-bottom: 0.77px solid;
  border-image-source: linear-gradient(
    111.17deg,
    #7c7c7c -1.87%,
    #ffab66 103.65%
  );
}

.theme-places .navbar {
  border-bottom: 0.77px solid;
  border-image-source: linear-gradient(
    111.17deg,
    #7c7c7c -1.87%,
    #00c3ff 103.65%
  );
}

.theme-agenda .navbar {
  border-bottom: 0.77px solid;
  border-image-source: linear-gradient(
    111.17deg,
    #7c7c7c -1.87%,
    #00c3ff 103.65%
  );
}

.navbar-logo {
  height: 40px !important;
}

.theme-default .theme-logo {
  content: url(assests/images/claim-logo-green.webp);
}

.theme-default .theme-cal {
  content: url(assests/images/calender.webp);
}

.theme-default .theme-loc {
  content: url(assests/images/location.webp);
}

.theme-about .theme-logo {
  content: url(assests/images/about-nav-logo.webp);
}

.theme-about .theme-cal {
  content: url(assests/images/about-us-date.webp);
}

.theme-about .theme-loc {
  content: url(assests/images/about-us-location.webp);
}

.theme-speaker .theme-logo {
  content: url(assests/images/about-logo.webp);
}

.theme-places .theme-logo {
  content: url(assests/images/Logo-places.webp);
}

.theme-places .theme-cal {
  content: url(assests/images/places-cel.webp);
}

.theme-places .theme-loc {
  content: url(assests/images/places-loc.webp);
}

.theme-speaker .theme-cal {
  content: url(assests/images/about-cal.webp);
}

.theme-speaker .theme-loc {
  content: url(assests/images/about-loc.webp);
}

.theme-agenda .theme-logo {
  content: url(assests/images/Logo-places.webp);
}

.theme-agenda .theme-cal {
  content: url(assests/images/places-cel.webp);
}

.theme-agenda .theme-loc {
  content: url(assests/images/places-loc.webp);
}

.theme-speaker .nav-link:hover {
  color: var(--color-orange) !important;
}

.theme-default .nav-link:hover {
  color: var(--color-primary-green) !important;
}

.theme-about .nav-link:hover {
  color: rgba(255, 153, 255, 1) !important;
}

/* Common styles */

.divider {
  width: 1px;
  height: 58px;
  background-color: var(--color-text-muted);
  margin: 0 20px;
}

.theme-about .divider {
  width: 1px;
  height: 58px;
  background: rgba(255, 153, 255, 1) !important;
  margin: 0 20px;
}

.theme-places .divider {
  border: 0.85px solid rgba(255, 255, 255, 1);
}

.theme-speaker .divider {
  background: var(--color-orange);
}

.date-location {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.date-location img {
  margin-right: 5px;
}

.nav-link {
  color: var(--color-white) !important;
  margin: 0 1rem;
  font-size: 0.95rem;
  transition: 0.3s;
}

.popup-navlink {
  cursor: pointer !important;
}

/* Mobile Toggler */
.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  position: relative;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.navbar-nav {
  position: relative;
  left: 25px;
}

/* ==================== Hero Section ==================== */
.main-container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 5rem;
  background: radial-gradient(
    circle at 16% 76%,
    rgba(155, 255, 160, 1) -36%,
    rgba(155, 255, 160, 0) 14%
  );
}

.diagonal-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: url("assests/images/setas-2.webp");
  background-size: contain;
  background-position: right -165px;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  top: 102px;
}

.date-badge {
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--color-white);
  margin-bottom: 25px;
}

.olx-event-date,
.higlighted-dot {
  color: var(--color-primary-green);
  height: 8px;
  width: 8px;
}

.olx-event-date img {
  margin: 0px 5px 5px 0px;
}

.olx-event-location img {
  margin: 0px 5px 4px 0px;
}

.not-display {
  display: none;
}

.hero-section {
  margin-bottom: 80px;
  padding: 0 15px;
}

.hero-section h1 {
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 0.9;
  margin-top: 12px;
  letter-spacing: -0.5px;
}

.hero-section h1 .future {
  font-weight: 300;
  background: linear-gradient(90deg, var(--color-white) 0%, #64f56b 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section h1 .marketplaces {
  font-weight: 300;
}

.hero-description {
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-text-secondary);
  margin: 25px 0 25px 0;
}

.sponsor-text {
  font-size: 13px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.sponsor-text span {
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  align-items: baseline;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-waitlist {
  background: var(--color-primary-green);
  color: var(--color-black);
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

/* ==================== Lower Section ==================== */
.lower-section {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 0 15px;
}

.video-card {
  position: relative;
  width: 45%;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-black);
  transform: none !important;
  height: 352px;
}

.video-bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Mute/Unmute Button */
.mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--color-primary-green);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
}

.mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.mute-btn:active {
  transform: scale(0.95);
}

.mute-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary-green);
}

.info-section {
  flex: 1;
}

.about-link {
  font-size: 16px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-section h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 15px;
  max-width: 100%;
}

.info-description {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-text-muted);
  width: 70%;
}

/* ==================== Speakers Section ==================== */
.speakers-wrapper {
  min-height: 100vh;
  position: relative;
}

.green-gradient {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.content-container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.speaker-list {
  width: 100%;
  background: url(assests/images/speaker-circle.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 5rem;
}

.speakers-section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
  width: 65%;
  margin: auto;
  justify-items: center;
}

.speaker-card {
  border-radius: 8px;
  position: relative;
  height: 330px;
  width: 100%;
  max-width: 242px;
}

#fourth-card .speaker-btn {
  bottom: -6px;
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(155, 255, 160, 0.2);
  cursor: pointer;
  border: 0.5px solid rgba(155, 255, 160, 1);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.speaker-image {
  width: 100%;
  height: 72%;
  display: block;
  object-fit: cover;
  object-position: top;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.speaker-info {
  padding: 5px 15px;
  height: 28%;
  background: rgba(155, 255, 160, 0.9);
  color: var(--color-black);
  display: flex;
  flex-direction: column;
}

.speaker-name {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-align: center;
}

.speakers-label {
  text-align: center;
  margin-top: 5rem;
}

.speaker-title {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 2px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: center;
}

.speaker-btn {
  display: inline-flex !important;
  width: auto !important;
  border-radius: 20px;
  text-transform: uppercase;
  align-self: start;
  padding: 2px 8px;
  text-decoration: none;
  background: var(--color-white);
  color: var(--color-black);
  margin: auto;
  position: relative;
  bottom: -23px;
}

.speaker-bottom-heading {
  color: var(--color-primary-green);
  text-transform: uppercase;
  font-size: 18px;
}

/* ==================== Scrolling Banner ==================== */
.scrolling-banner {
  background: var(--color-black);
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
  padding: 4px 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  transform: rotate(-3deg);
}

.scrolling-text {
  display: flex;
  white-space: nowrap;
  animation: scrollRight 30s linear infinite;
  width: max-content;
}

.scrolling-text span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 40px;
  color: var(--color-primary-green);
  margin-top: 7px;
}

.scrolling-text span.highlight {
  color: #10b981;
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

/* ==================== Claim Section ==================== */
.claim-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.side-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.side-image {
  position: absolute;
  top: 55px;
  width: 350px;
  height: auto;
}

.side-image img {
  width: 100%;
  height: auto;
  display: block;
}

.left-image {
  left: 0;
}

.right-image {
  right: 0;
}

.content-wrapper-claim {
  position: relative;
  top: 0px;
  z-index: 2;
}

.main-heading {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-align: center;
}

.main-heading strong {
  font-weight: 600;
}

.description-claim {
  font-size: clamp(13px, 2vw, 16px);
  line-height: 1.3;
  color: var(--color-white);
  max-width: 680px;
  margin: 0 auto 20px auto;
  text-align: center;
  font-weight: 300;
}

.cta-button-claim {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary-green);
  color: var(--color-black);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 20px rgba(126, 217, 87, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(126, 217, 87, 0.4);
  background: var(--color-primary-green);
  color: var(--color-black);
}

.bottom-section {
  margin-top: 80px;
  text-align: center;
}

.bottom-heading {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 56px;
}

.bottom-heading img {
  height: 56px;
  margin-left: 16px;
}

/* swiper  */
.swiper-container {
  width: 100vw;
  /* max-width: 1400px; */
  position: relative;
  padding: 0 80px;
  overflow: hidden;
}

.swiper-main {
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15% 15%,
    black 85%,
    transparent 100%
  );
  overflow: visible;
  padding: 60px 0;
}

.swiper-main .swiper-wrapper {
  align-items: center;
}

.swiper-main .swiper-slide {
  width: 320px;
  opacity: 0.3;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  cursor: pointer;
}

.swiper-main .swiper-slide-active {
  opacity: 1;
  transform: scale(1.05);
}

.swiper-slide-content {
  color: var(--color-primary-green);
  padding: 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* Add these transition properties */
  transition:
    border 0.6s ease,
    background 0.6s ease,
    box-shadow 0.6s ease,
    backdrop-filter 0.6s ease;

  /* Set initial values for smooth transition */
  border: 1px solid transparent;
  border-radius: 16px;
}

.swiper-main .swiper-slide-active .swiper-slide-content {
  border: 1px solid var(--color-primary-green);
  border-radius: 16px;
  background: rgba(15, 15, 15, 0.95);
  box-shadow:
    0 0 8px rgb(155 255 160 / 0%),
    0 0 15px rgb(155 255 160 / 0%),
    0 0 25px rgb(155 255 160 / 17%),
    inset 0 0 10px rgba(155, 255, 160, 0.4),
    inset 0 0 20px rgba(155, 255, 160, 0.25);
  backdrop-filter: blur(12px);
}

.swiper-slide-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
  transition: color 0.1s ease;
  /* Changed from 0.4s to 0.6s to match */
}

.swiper-main .swiper-slide-active .swiper-slide-title {
  color: #7fff7f;
}

.swiper-slide-subtitle {
  font-size: 0.9rem;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Navigation Arrows */
.swiper-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.swiper-nav-prev {
  left: 10px;
}

.swiper-nav-next {
  right: 20px;
}

.section-seprator {
  background: var(--color-white);
  position: relative;
}

.separator-line {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  /* border thickness */
  background: linear-gradient(to right, black, white, black);
}

/* waitlist section styling */
.waitlist-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  position: relative;
}

.waitlist-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.waitlist-guest-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.waitlist-guest-text {
  color: #e5e7eb;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.waitlist-main-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.waitlist-description {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--color-white);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* media and press  */
/* Main Section */
.media-press-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  /* background: radial-gradient(circle at 50% 170%, rgb(155 255 160) 0%, rgb(0 0 0 / 0%) 55%, rgb(0 0 0 / 6%) 120%); */
}

/* Container */

.content-wrapper-media {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  /* width: 83%; */
  /* margin: auto; */
  height: 75vh;
}

/* Left Side Content */
.left-content {
  flex: 1;
  min-width: 300px;
}

.media-label {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 20px;
}

.media-label img {
  margin-right: 10px;
}

.main-heading-press {
  font-size: 64px;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.subtitle {
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

/* Buttons */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-download {
  display: none;
  background-color: transparent;
  color: var(--color-white);
  /* border: 2px solid #475569; */
  border: 0.52px solid #ffffff;
  padding: 12px 32px;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 25px;
}

.btn-download:hover {
  border-color: #00c3ff;
  color: var();
  transform: translateY(-2px);
}

.btn-press {
  background: #00c3ff;
  color: var(--color-black);
  border: none;
  padding: 12px;
  width: 220px;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 25px;
}

.btn-press:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Right Side - Media Image */
.right-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-pass-image {
  max-width: 100%;
  height: auto;
  max-height: 730px;
  transition: transform 0.3s ease;
  position: relative;
  right: -116px;
  bottom: 218px;
}

.media-pass-image:hover {
  transform: translateY(-10px);
}

/* Logo Marquee Section */
.viewing-label {
  text-align: center;
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.logo-marquee {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.logo-marquee:hover {
  animation-play-state: paused;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  cursor: pointer;
}

.logo-item img {
  height: 32px;
  filter: grayscale(100%) brightness(2);
  transition: all 0.3s ease;
  opacity: 1;
}

.logo-item:hover img {
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.6;
  transform: scale(1.1);
}

/* the places */
.the-places-lisbon-section {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 40px 0;
}

.the-places-glow-effect {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgb(71 185 76) 0%,
    rgb(76 175 80 / 87%) 30%,
    #000000 70%
  );
  filter: blur(60px);
  pointer-events: none;
}

.the-places-content-wrapper {
  position: relative;
  z-index: 2;
}

.the-places-badge-tag {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.the-places-main-title {
  font-size: 56px;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.the-places-location-subtitle {
  font-size: 22px;
  color: var(--color-primary-green);
  margin-bottom: 13px;
  letter-spacing: 3px;
}

.the-places-location-subtitle img {
  margin-bottom: 5px;
}

.the-places-description-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
  margin-bottom: 20px;
}

.the-places-convento-title {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.the-places-view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid var(--color-primary-green);
  border-radius: 25px;
  color: var(--color-primary-green);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  margin-top: 10px;
  text-transform: uppercase;
}

#places-more-btn {
  display: none;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  height: 400px;
  perspective: 1000px;
  cursor: grab;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
  position: absolute;
  border: none;
  width: 280px;
  height: 380px;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  user-select: none;
}

.card.center {
  z-index: 10;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.card.center img {
  filter: none;
}

.card.left {
  z-index: 5;
  transform: translate(-120%, -50%) scale(0.8);
  opacity: 0.7;
}

.card.right {
  z-index: 5;
  transform: translate(20%, -50%) scale(0.8);
  opacity: 0.7;
}

.scrolling-banner-bg-1 {
  transform: rotate(6deg) translateY(-138px) !important;
  background: var(--color-primary-green);
  position: relative;
  z-index: -1;
}

.scrolling-banner-bg {
  background: var(--color-black);
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  overflow: hidden;
  padding: 4px 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  transform: rotate(-1deg);
}

.scrolling-banner-bg-1 .scrolling-text span {
  color: var(--color-black);
  position: relative;
  z-index: 3;
}

.footer-faqs-gradient {
  background: linear-gradient(
    to bottom,
    #00000008 0%,
    #101010 25%,
    #1a241a 50%,
    #2d4832 60%,
    #4f925f 72%,
    #7be391 81%,
    #a6ffb5 100%
  );
}

/* FAQ Section */
.faq-section {
  margin: auto;
  width: 100%;
  max-width: 100%;
}

.faqs-bg {
  background: url(assests/images/faqs-hero.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right !important;
}

.faq-title {
  font-size: 56px;
  margin-bottom: 40px;
  text-transform: capitalize;
  background: linear-gradient(90deg, #b7f7b7 0%, #0bef16 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  border-bottom: 0.15px solid #b1fba8;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px 50px 20px 0px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 25px;
  font-size: 24px;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.6);
}

.faq-question.active::after {
  content: "âˆ’";
  color: #22c55e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 25px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.faq-answer.active {
  max-height: 300px;
  padding: 0 25px 20px 0px;
}

.container-faqs-help {
  display: flex;
  justify-content: space-between;
}

.contact-help-btn {
  color: var(--color-black);
  background: var(--color-primary-green);
  border: none;
  border-radius: 24px;
  padding: 0px 32px;
}

/* footer section  */
footer {
  padding: 60px 40px 40px;
}

.footer-content {
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.newsletter-section {
  flex: 1;
  max-width: 500px;
}

.newsletter-section h2 {
  font-size: 48px;
  color: var(--color-black);
  margin-bottom: 30px;
  line-height: 1.2;
}

.email-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.email-input {
  flex: 1;
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid #1a1a1a;
  background: transparent;
  font-size: 16px;
  color: var(--color-black);
  outline: none;
}

.email-input::placeholder {
  color: var(--color-black);
}

.newsletter-btn {
  position: relative;
  right: 32px;
}

.footer-right {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.social-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-label {
  font-size: 16px;
  color: var(--color-black);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.help-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.help-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.help-label {
  font-size: 16px;
  color: var(--color-black);
}

.contact-btn {
  background: var(--color-black);
  color: var(--color-primary-green);
  border: none;
  padding: 5px 8px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.2s;
  text-transform: uppercase;
}

.theme-about .contact-btn {
  color: rgb(61 19 91);
  background: var(--color-white);
}

.theme-about .footer-link {
  color: var(--color-white);
}

.email-white-input {
  border-bottom: 1px solid var(--color-white);
}

.contact-btn:hover {
  transition: all 0.3s ease;
  box-shadow:
    0 0 10px rgba(0, 0, 0, 0.7),
    /* outer soft glow */ 0 0 20px rgba(0, 0, 0, 0.6),
    inset 0 0 6px rgba(255, 255, 255, 0.05);
}

.links-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--color-black);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 16px;
  color: var(--color-black);
}

.sponsor {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--color-black);
}

.dark-bold {
  font-weight: 900 !important;
}

.newsletter-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0f0f0f;
  color: #9bffa0;
  border: 1px solid #9bffa0;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(155, 255, 160, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.newsletter-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.theme-places .waitlist-form-container {
  background: rgba(1, 12, 20, 0.7);
  border: 0.81px solid var(--color-place);
}

.theme-places .find-more-popup-container {
  background: rgba(1, 12, 20, 0.7);
  border: 0.81px solid var(--color-place);
}

.theme-places .popup-cancel-btn {
  border: 0.81px solid var(--color-place);
}

.theme-places .popup-submit-btn {
  background-color: var(--color-place);
}

/* ============================================
   Success Popup Styles
   ============================================ */

.success-popup-container {
  text-align: center;
  padding: 40px 30px;
  max-width: 500px;
}

.success-icon {
  margin: 0 auto 20px;
  animation: successScale 0.5s ease-out;
}

.success-icon svg {
  filter: drop-shadow(0 4px 12px rgba(92, 184, 92, 0.3));
}

.success-title {
  color: #5cb85c;
  margin-bottom: 15px;
  font-size: 28px;
}

.success-message {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.success-popup-container .btn-sucess-group {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.success-popup-container .popup-submit-btn {
  min-width: 150px;
  background: #5cb85c;
  transition: all 0.3s ease;
}

.success-popup-container .popup-submit-btn:hover {
  background: #4cae4c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 184, 92, 0.3);
}

/* Animation for success icon */
@keyframes successScale {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Fade in animation for success popup */
.popup-overlay#successPopup.active {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.popup-overlay#successPopup.active .popup-container {
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Popup Modal Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(1px);
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}

.popup-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Popup Container */
.popup-container {
  background: linear-gradient(180deg, #253125 0%, #1a2a1af2 50%, #0f1f0f 100%);
  border: 0.81px solid #9bffa0;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  animation: slideUp 0.4s ease-out;
  padding: 2rem 0rem;
}

.theme-about .popup-container {
  background: linear-gradient(
    360deg,
    #3d135b,
    #381553,
    #34164b,
    #2f1644,
    #2a163c,
    #261635,
    #21152d,
    #1d1426,
    #18131e,
    #141117,
    #0f0f0f
  );
  border: 1px solid #3d135b;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Form Styling */
.popup-title {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: -0.5px;
}

.popup-subtitle {
  color: var(--color-white);
  font-size: 11px;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.popup-container form {
  width: 80%;
  margin: auto;
  padding-top: 10px;
}

.form-label {
  color: var(--color-white);
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #e8f0e8;
  padding: 8px 11px;
  font-size: 12px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  height: 45px !important;
  width: 100%;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.021);
  border-color: rgba(92, 184, 92, 0.6);
  box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.12);
  color: #fff;
  outline: none;
}

.theme-about .form-control:focus,
.form-select:focus {
  background: rgba(255, 153, 255, 0.055);
  border: 0.85px solid rgba(255, 153, 255, 1);
  box-shadow: 0 0 0 3px rgba(238, 80, 238, 0.144);
  color: #fff;
  outline: none;
}

.form-control::placeholder {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
}

.theme-about .form-control::placeholder {
  color: rgba(247, 180, 247, 0.822);
  font-size: 12px;
  font-weight: 400;
}

.theme-about .email-input {
  color: var(--color-white);
}

.theme-about .email-input::placeholder {
  color: var(--color-white);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a8bfa8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 14px;
  padding-right: 36px;
}

.form-select option {
  background: #1a2a1a;
  color: #fff;
  padding: 10px;
}

textarea.form-control {
  min-height: 60px;
  resize: vertical;
  height: auto;
  padding-top: 8px;
  line-height: 1.4;
}

/* File Upload Styling */
.file-upload-container {
  background: rgba(255, 255, 255, 0.04);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 14px;
  text-align: center;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-container:hover {
  border-color: rgba(92, 184, 92, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.file-upload-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  opacity: 0.6;
}

.file-upload-icon svg {
  width: 100%;
  height: 100%;
  stroke: #a8bfa8;
  fill: none;
  stroke-width: 2;
}

.file-upload-text {
  color: #a8bfa8;
  font-size: 11px;
  margin-bottom: 2px;
}

.file-upload-subtext {
  color: #6b8a6b;
  font-size: 10px;
}

.file-upload-input {
  display: none;
}

.file-selected {
  background: rgba(92, 184, 92, 0.1);
  border: 1px solid rgba(92, 184, 92, 0.4);
  border-radius: 8px;
  padding: 7px 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.file-selected-name {
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.file-remove-btn {
  background: transparent;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  padding: 2px 6px;
  font-size: 16px;
  line-height: 1;
}

/* Submit Button */
.popup-submit-btn {
  background: var(--color-primary-green);
  color: var(--color-black);
  border: none;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.theme-about .popup-submit-btn {
  background: rgba(255, 153, 255, 1);
  color: var(--color-black);
}

.theme-about .popup-submit-btn:hover {
  background: rgb(243, 123, 243);
  color: var(--color-white);
}

.popup-submit-btn:hover {
  background: var(--color-primary-green);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(92, 184, 92, 0.4);
}

/* Cancel Button */
.popup-cancel-btn {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-primary-green);
  border-radius: 8px;
  padding: 0px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 34px;
}

.theme-about .popup-cancel-btn {
  border: 0.85px solid rgba(255, 153, 255, 1);
  color: rgba(255, 153, 255, 1);
}

.theme-about .popup-cancel-btn:hover {
  background: transparent;
}

.popup-cancel-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Button Group */
.button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

/* Checkbox Styling */
.form-check {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-check-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 15px;
  height: 15px;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
  border-radius: 4px;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-check-input:checked {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.theme-about .form-check-input:checked {
  background-color: rgb(243, 123, 243);
  border: 1px solid rgb(255, 119, 255);
}

.form-check-input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.15);
}

.form-check-label {
  color: var(--color-white);
  font-size: 11px;
  cursor: pointer;
  line-height: 1.3;
  flex: 1;
  margin-top: 4px;
}

.form-check-label a {
  color: #5cb85c;
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.problem-textarea {
  height: 120px !important;
}

.form-popup-link:hover {
  cursor: pointer;
}

/* about-us page  */
.container-about {
  margin: 0 auto;
  background:
    url(assests/images/top-arch.webp), url(assests/images/bottom-1.webp),
    url(assests/images/bottom-2.webp), url(assests/images/bottom-3.webp);
  /* background-position: left top -18%,right 55%, right 50%, right 40%; */
  background-position:
    left top 0%,
    right 45%,
    right 43%,
    right 40% !important;
  background-size: 500px;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.aboutus-heading {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff 22%, #f514f5 100%);
  background-clip: text;
  /* Standard */
  color: transparent;
}

.what-to-expect-heading {
  font-size: 3.5rem;
  text-align: center;
}

.aboutus-text p,
.expect-intro p {
  text-align: center;
  line-height: 1.6;
  /* margin-bottom: 60px; */
  font-size: 1.1rem;
  color: var(--color-white);
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
  width: 60%;
  margin: auto;
}

.feature-box {
  background-color: rgba(61, 19, 91, 0.2);
  border: 1px solid rgba(139, 69, 139, 0.5);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  width: 55%;
  margin: 1.9rem 0rem;
}

.feature-icon img {
  height: 100%;
  width: 100%;
}

.feature-box:nth-child(odd) {
  align-self: flex-start;
}

.feature-box:nth-child(even) {
  align-self: flex-end;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.feature-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ccc;
}

/* Left triangle */
#feature-with-triangle-left {
  position: relative;
}

#feature-with-triangle-left::before {
  content: "";
  position: absolute;
  top: -92px;
  right: 81px;
  width: 900px;
  height: 500px;
  background: url(assests/images/triangle-icon.webp) no-repeat center / contain;
  z-index: -1;
}

/* Right triangle */
#feature-with-triangle-right {
  position: relative;
  z-index: 1;
}

#feature-with-triangle-right::before {
  content: "";
  position: absolute;
  top: -219px;
  left: 245px;
  width: 900px;
  height: 900px;
  background: url(assests/images/triangle-icon.webp) no-repeat center / contain;
  z-index: -1;
}

.faqs-links-form {
  color: var(--color-primary-green);
  text-decoration: underline;
  cursor: pointer;
}

.event-section {
  height: 300px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.event-section::after {
  content: "";
  background:
    url(assests/images/about-event-icon.webp),
    url(assests/images/about-event-icon-1.webp);
  background-repeat: no-repeat;
  background-position:
    left -15%,
    left 0%;
  background-size: 337px;
  height: 500px;
  width: 500px;
  display: block;
  z-index: 33;
  position: relative;
}

.event-section::before {
  content: "";
  position: absolute;
  top: 189%;
  left: 5%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle at center,
    rgba(168, 85, 247, 0.4) 0%,
    rgba(147, 51, 234, 0.25) 25%,
    rgba(126, 34, 206, 0.15) 40%,
    rgba(109, 40, 217, 0.08) 55%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
  border-radius: 50%;
}

.event-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 40px;
}

.highlight-anoucement {
  color: rgba(255, 153, 255, 1);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 7%;
  height: 88px;
  padding-bottom: 18px;
  background: linear-gradient(180deg, #ff99ff 0%, #0f0f0f 100%);
  color: var(--color-white);
}

.countdown-box {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
}

.countdown-label {
  font-size: 0.8rem;
  color: var(--color-white);
  text-transform: uppercase;
}

/* marketplace section  */
.marketplace-section {
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.marketplace-title {
  font-size: 1.5rem;
  font-weight: 100;
  margin-bottom: 30px;
}

.marketplace-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.date-item,
.location-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 0.95rem;
}

.waitlist-btn-about {
  background: rgba(255, 153, 255, 1);
  color: var(--color-black);
  border: none;
  padding: 12px 35px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin: auto;
  box-shadow: 0 4px 15px rgba(255, 153, 255, 1);
  z-index: 99;
  position: relative;
}

.about-last-grdient {
  background: linear-gradient(
    360deg,
    #3d135b,
    #381553,
    #34164b,
    #2f1644,
    #2a163c,
    #261635,
    #21152d,
    #1d1426,
    #18131e,
    #141117,
    #0f0f0f
  );
}

.contact-btn-about {
  background: var(--color-white);
  color: rgba(61, 19, 91, 1);
}

.theme-about .newsletter-popup {
  background: var(--color-white);
  border: 1px solid rgba(255, 153, 255, 1);
  color: rgba(255, 153, 255, 1);
}

/* speaker page css */
.speaker-page-container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 15px;
  background-image:
    url(assests/images/about-seat-02.webp),
    url(assests/images/about-seat-01.webp),
    url(assests/images/speaker-gradient.webp);
  background-position:
    left bottom,
    right 62%,
    center -1250px;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size:
    250px,
    250px,
    100% 100%;
  background-attachment: scroll, scroll, scroll;
}

.speaker-page-header-section {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.speaker-page-main-title {
  background: linear-gradient(90deg, #ffffff 0%, #ff9966 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 5rem;
  margin-bottom: 23px;
  line-height: 1.2;
}

.speaker-page-subtitle {
  color: var(--color-white);
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 500;
}

/* Grid Layout */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 30px;
  column-gap: 18px;
  margin-bottom: 40px;
  justify-items: center;
  /* center the cards in the grid */
}

.speaker-page-card {
  background: transparent;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
  cursor: pointer;
  width: 320px;
  height: 350px;
}

.speaker-page-img-wrapper {
  position: relative;
  width: 100%;
  /* fill the card */
  height: 100%;
  /* fill the card */
  overflow: hidden;
}

.speaker-page-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: filter 0.3s ease;
}

.speaker-page-card:hover .speaker-page-img {
  filter: grayscale(100%);
}

.speaker-page-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  text-align: left;
  transition: all 0.3s ease;
}

.speaker-page-name {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.speaker-desigination {
  font-size: 12px;
  margin-bottom: 8px;
  color: #ccc;
}

.speaker-page-badge {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-black);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hover Content - Updated */
.speaker-page-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 15px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.speaker-page-card:hover .speaker-page-hover-content {
  opacity: 1;
  pointer-events: auto;
}

.speaker-page-card:hover .speaker-page-info {
  opacity: 0;
}

/* Top section in hover state */
.speaker-hover-top {
  padding-top: 10px;
}

/* Bottom section in hover state */
.speaker-hover-bottom {
  padding-bottom: 10px;
}

.speaker-page-description {
  color: var(--color-white);
  font-size: 13px;
  line-height: 1.1;
  margin-bottom: 12px;
  margin-top: 8px;
  text-align: justify;
}

.speaker-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-orange);
  color: var(--color-black);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
  width: 55%;
  border-radius: 20px;
  padding: 5px 5px;
}

.speaker-linkedin-btn img {
  height: 100%;
}

.speaker-btn-arrow {
  margin-left: 10px;
}

.speaker-linkedin-btn:hover {
  background: var(--color-orange);
  color: var(--color-black);
}

.speaker-page-cta-section {
  text-align: center;
  margin-top: 80px;
}

.speaker-page-cta-title {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 300;
}

.speaker-page-cta-text {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 35px;
  width: 50%;
  margin: 15px auto;
}

.speaker-page-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-orange);
  color: var(--color-black);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.speaker-page-cta-button:hover {
  background: var(--color-orange);
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

.speaker-countdown {
  background: url(assests/images/speaker-arch.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.theme-speaker .contact-btn {
  color: var(--color-white);
}

.theme-speaker .highlight-anoucement {
  color: var(--color-orange);
}

.theme-speaker .countdown-item {
  background: linear-gradient(180deg, #ffab66 0%, #0f0f0f 100%);
}

.theme-speaker .event-section::before {
  display: none !important;
}

.theme-speaker .event-section::after {
  display: none !important;
}

.theme-speaker .waitlist-btn-about {
  background: var(--color-orange);
  color: var(--color-black);
  transition: all 0.3s ease;
  box-shadow: none;
}

.theme-speaker .waitlist-btn-about:hover {
  background: var(--color-orange);
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

.theme-speaker .marketplace-section {
  padding: 0px !important;
}

.theme-speaker .popup-container {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.95) 0%,
    rgba(45, 36, 22, 0.95) 50%,
    rgba(61, 46, 31, 0.95) 100%
  );
  border: 0.77px solid var(--color-orange);
}

.theme-speaker .popup-cancel-btn {
  border: 1px solid var(--color-orange);
}

.theme-speaker .popup-submit-btn {
  background: var(--color-orange);
  color: var(--color-black);
}

.theme-speaker .popup-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--color-orange) !important;
  background: var(--color-orange);
}

.theme-speaker .form-check-input:checked {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.theme-speaker .newsletter-popup {
  color: var(--color-orange);
  background: var(--color-black);
  border: 1px solid var(--color-orange);
}

.theme-speaker .success-icon svg {
  stroke: var(--color-orange);
}

.theme-speaker .form-control:focus,
.form-select:focus {
  border-color: var(--color-orange);
  /* box-shadow: 0 0 0 3px var(--color-orange); */
}

.speaker-page-footer-gradient {
  background: linear-gradient(
    to bottom,
    #0a0a0a00 0%,
    rgba(255, 171, 102, 1) 100%
  );
}

.theme-speaker .email-input::placeholder {
  color: var(--color-black);
}

/* places page css */
/* places page css */
/* ================== THE PLACE SECTION ================== */
.the-place-section {
  background:
    url("assests/images/top-left-circle.webp") top left no-repeat,
    url("assests/images/triangle-3.webp") bottom 100px right 0px no-repeat,
    url("assests/images/triangle-2.webp") bottom 50px right 0px no-repeat,
    url("assests/images/triangle-1.webp") bottom 0 right 0 no-repeat,
    radial-gradient(
      circle at 98% 0%,
      rgb(0 195 255 / 58%) -36%,
      rgba(155, 255, 160, 0) 14%
    );
  /* radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #000814, #001f33) */

  background-size: 350px, 400px, 320px, 260px, cover, cover;

  overflow: hidden;
  color: var(--color-white);
  margin-bottom: 0;
  padding: 120px 20px 80px;
  position: relative;
  z-index: 1;
}

.the-place-section {
  animation: softGlow 6s ease-in-out infinite;
}

.the-place-title {
  display: inline-block;
  background: linear-gradient(90deg, #ffffff 20%, #5ce1e6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.city-subtitle {
  display: block;
  background: linear-gradient(90deg, #ffffff 20%, #5ce1e6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
}

.place-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.place-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
  color: #dcdcdc;
  margin-bottom: 1.5rem;
}

.place-image {
  position: relative;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  width: 100%;
  max-width: 450px;
  height: auto;
  flex-shrink: 0;
}

.place-text-content {
  flex: 1;
  padding-top: 20px;
}

/* ================== FULL-WIDTH GALLERY SECTION ================== */
.gallery-section {
  overflow: hidden;
  position: relative;
}

.gallery-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scroll-gallery {
  display: flex;
  width: max-content;
  animation: scrollGallery 40s linear infinite;
  gap: 15px;
}

.gallery-img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05);
}

@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-320px * 5 - 75px));
  }
}

.scroll-gallery:hover {
  animation-play-state: paused;
}

/* ================== VENUE SECTION ================== */
.venue-section {
  /* background: radial-gradient(circle at center, #012a3a, #000814 70%); */
  padding: 58px 0px 10px 0px;
  margin-top: 0;
  overflow: hidden;
  position: relative;
}

.bg-img-curve {
  background:
    radial-gradient(
      circle at 56% 12%,
      rgb(0 195 255 / 15%) -3%,
      rgba(155, 255, 160, 0) 12% 12%
    ),
    url(assests/images/right-circle.webp);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 200px auto;
}

.venue-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.venue-text {
  flex: 1;
  color: white;
  max-width: 600px;
}

.venue-icon i {
  color: #00e0ff;
  font-size: clamp(32px, 5vw, 42px);
  margin-bottom: 15px;
}

.venue-text h2 {
  color: #00e0ff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 8px;
}

.venue-location {
  color: #cfcfcf;
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: 20px;
}

.venue-description {
  color: #dcdcdc;
  line-height: 1.8;
  font-size: clamp(14px, 1.8vw, 16px);
}

.venue-map {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 600px;
}

.map-img {
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  transition: transform 0.3s ease;
  height: auto;
}

.map-img:hover {
  transform: scale(1.03);
}

/* ================== GET THERE SECTION ================== */
.get-there-section {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at 2% 44%,
    rgb(10 35 79) -3%,
    rgba(155, 255, 160, 0) 12% 12%
  );
}

/* Main Container */
.get-there-container {
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 60px;
}

/* Text */
.get-there-text {
  flex: 1;
  color: var(--color-white);
}

.get-there-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-white);
}

/* Right Image */
.get-there-image {
  flex: 1;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

.two-image {
  width: auto;
  max-width: 100%;
  height: 70%;
}

/* countdown section places  */
.theme-places .highlight-anoucement {
  color: var(--color-place);
}

.theme-places .countdown-item {
  background: linear-gradient(180deg, #00c3ff 0%, #0f0f0f 100%);
}

.theme-places .event-section::before {
  display: none !important;
}

.theme-places .event-section::after {
  display: none !important;
}

.theme-places .waitlist-btn-about {
  background: var(--color-place);
  box-shadow: none;
}

.theme-places .marketplace-section {
  padding: 0px;
}

.theme-places .waitlist-btn-about:hover {
  box-shadow: 0 4px 15px var(--color-place);
  cursor: pointer;
}

.theme-places .contact-btn {
  color: var(--color-black);
  background: var(--color-white);
}

.theme-places .form-popup-link {
  color: var(--color-white);
}

.theme-places .form-control:focus,
.form-select:focus {
  border-color: var(--color-place);
}

.theme-places .popup-submit-btn:hover {
  background: var(--color-place);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--color-place);
}

.theme-places .form-check-input:checked {
  background-color: var(--color-place);
  border-color: var(--color-place);
}

.theme-places .success-popup-container {
  border: 0.81px solid var(--color-place);
  background: rgba(8, 10, 11, 0.7);
}

.theme-places .success-icon svg {
  stroke: var(--color-place);
}

.theme-places .popup-submit-btn {
  background-color: var(--color-place);
}

.theme-places .newsletter-popup {
  background: var(--color-place);
  color: black;
}

.theme-places footer {
  /* background: linear-gradient(180deg, rgb(8 8 8 / 0%) 0%, rgba(10, 35, 79, 0.7) 40%, rgba(10, 35, 79, 1) 100%); */
  background: linear-gradient(
    180deg,
    rgb(8 8 8 / 0%) 0%,
    rgb(28 55 101 / 70%) 40%,
    rgb(32 58 103) 100%
  );
  color: var(--color-white) !important;
}

.theme-places footer a {
  color: white !important;
}

.theme-about .success-icon svg {
  stroke: rgb(243, 123, 243);
}

.theme-places .email-input::placeholder {
  color: var(--color-white);
}

/* ================== RESPONSIVE BREAKPOINTS ================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  .place-content-wrapper {
    gap: 30px;
  }

  .venue-container,
  .get-there-container {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .the-place-section {
    background-size: 300px, 300px, 302px, 300px, cover, cover;
    background-position:
      top left,
      bottom 75px right 0px,
      bottom 150px right 2px,
      bottom -26px right 0px,
      center,
      center;
  }

  .place-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .place-image {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .place-text-content {
    padding-top: 0;
  }

  .venue-container,
  .get-there-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .venue-text,
  .get-there-text {
    max-width: 100%;
  }

  .venue-map {
    justify-content: center;
    max-width: 100%;
  }

  .venue-section {
    background-position: top right;
    background-size: 150px auto;
    padding: 80px 20px;
  }

  .gallery-img {
    width: 280px;
    height: 180px;
  }

  @keyframes scrollGallery {
    to {
      transform: translateX(calc(-280px * 5 - 75px));
    }
  }
}

/* Tablets */
@media (max-width: 768px) {
  .the-place-section {
    background-size: 300px, 300px, 302px, 300px, cover, cover;
    background-position:
      top left,
      bottom 75px right 0px,
      bottom 150px right 2px,
      bottom -26px right 0px,
      center,
      center;
  }

  .city-subtitle {
    margin-bottom: 2rem;
  }

  .gallery-img {
    width: 240px;
    height: 160px;
  }

  .venue-section,
  .get-there-section {
    padding: 60px 20px;
  }

  @keyframes scrollGallery {
    to {
      transform: translateX(calc(-240px * 5 - 75px));
    }
  }

  .speaker-page-main-title {
    font-size: 4rem;
  }

  .speaker-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .speaker-page-container {
    background-position:
      left bottom,
      right 62%,
      center -4050px;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .the-place-section {
    background-size: 300px, 300px, 302px, 300px, cover, cover;
    background-position:
      top left,
      bottom 75px right 0px,
      bottom 150px right 2px,
      bottom -26px right 0px,
      center,
      center;
    /* padding: 60px 15px 40px; */
  }

  .venue-section {
    padding: 50px 15px;
    background-size: 100px auto;
    background-position: top right;
  }

  .get-there-section {
    padding: 50px 15px;
  }

  .gallery-section {
    padding: 40px 0;
  }

  .gallery-img {
    width: 200px;
    height: 140px;
  }

  .scroll-gallery {
    gap: 12px;
  }

  @keyframes scrollGallery {
    to {
      transform: translateX(calc(-200px * 5 - 60px));
    }
  }

  .place-image::after {
    height: 40px;
    bottom: -15px;
  }

  .get-there-container {
    flex-direction: column-reverse;
  }

  .marketplace-section {
    padding: 0 !important;
  }

  .viewing-label {
    margin-top: 25px;
  }

  .speaker-page-header-section {
    margin-bottom: 0px;
  }

  .speaker-page-container {
    background-position:
      left bottom,
      right 62%,
      center -4150px;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .gallery-img {
    width: 180px;
    height: 120px;
  }

  .marketplace-section {
    padding: 0 !important;
  }

  @keyframes scrollGallery {
    to {
      transform: translateX(calc(-180px * 5 - 60px));
    }
  }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .the-place-section {
    padding: 40px 15px 30px;
  }

  .venue-section,
  .get-there-section {
    padding: 40px 15px;
  }

  .gallery-section {
    padding: 30px 0;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .venue-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .map-img {
    max-width: 100%;
  }

  .venue-description {
    margin: 0 auto;
  }

  .venue-section {
    background-position: right bottom;
    background-size: 400px auto;
  }
}

@media (max-width: 576px) {
  .venue-section {
    background-size: 250px auto;
  }

  .venue-text h2 {
    font-size: 1.6rem;
  }

  .higlighted-dot {
    display: none;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .get-there-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .two-image {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .get-there-section {
    margin: 0 !important;
  }

  .get-there-text h2 {
    font-size: 1.6rem;
  }

  .countdown-item {
    width: 5%;
  }

  .get-there-text p {
    text-align: start;
    line-height: 1.3;
  }

  .get-there-text {
    text-align: start;
  }

  .bg-img-curve {
    background-position: right 10%;
  }

  .get-there-section {
    background: radial-gradient(
      circle at 9% 25%,
      rgb(10 35 79) -1%,
      rgba(155, 255, 160, 0) 18% 12%
    );
  }
}

/* Responsive */

@media (max-width: 400px) {
  .popup-container {
    padding: 18px 16px;
  }

  .popup-title {
    font-size: 18px;
  }

  .popup-subtitle {
    font-size: 10px;
  }

  .form-control,
  .form-select {
    font-size: 12px;
  }

  .button-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .popup-submit-btn,
  .popup-cancel-btn {
    width: 100%;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .popup-container {
    max-width: 520px;
    padding: 26px 30px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .popup-container {
    max-width: 500px;
  }

  .speaker-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .speaker-page-container {
    background-position:
      left bottom,
      right 62%,
      center -1850px;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .speaker-grid {
    gap: 15px;
  }
}

@media (max-height: 700px) {
  .popup-overlay {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
    overflow: hidden;
  }

  #popup-form-container {
    height: 70vh !important;
  }

  .faqs-waitlist-form {
    height: 85vh !important;
  }

  .moreinfo-faqs-form {
    height: 70vh;
  }

  .popup-title {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .popup-subtitle {
    font-size: 13px;
    text-align: center;
    width: 85%;
    margin: auto;
    overflow: hidden;
  }

  .form-label {
    margin-bottom: 3px;
  }

  .form-control,
  .form-select {
    margin-bottom: 8px;
    height: 32px;
    padding: 7px 10px;
  }

  textarea.form-control {
    min-height: 50px;
  }

  .file-upload-container {
    padding: 2px 15px;
  }

  .form-check {
    margin-bottom: 10px;
  }

  .button-group {
    margin-top: 4px;
  }

  .popup-submit-btn,
  .popup-cancel-btn {
    height: 32px;
    padding: 0 !important;
  }
}

/* ==================== Media Queries ==================== */
@media (max-width: 1230px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .lower-section {
    flex-direction: column;
  }

  .video-card {
    width: 100%;
    max-width: 500px;
  }

  .side-image {
    width: 180px;
    top: 14%;
  }

  .main-heading-press {
    font-size: 42px;
    margin-bottom: 12px;
  }

  .content-wrapper-media {
    flex-direction: column-reverse;
    height: 100vh;
  }

  .media-pass-image {
    bottom: 76px;
    right: 133px;
    max-width: 85%;
  }

  .left-content {
    flex: 0;
  }

  .side-image-container {
    top: 57%;
  }

  .side-image {
    width: 170px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-right {
    width: 100%;
    justify-content: space-between;
    gap: 40px;
  }

  .newsletter-section {
    max-width: 100%;
  }

  .speakers-label {
    margin: 0 !important;
  }
}

@media (max-width: 992px) {
  .the-places-main-title {
    font-size: 36px;
  }

  .carousel-container {
    height: 350px;
  }

  .card {
    width: 240px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 42px;
  }

  .info-section h2 {
    font-size: 28px;
  }

  .speaker-list {
    background-size: contain;
  }

  .speaker-bottom-heading {
    margin-top: 1.5rem !important;
  }

  .claim-section {
    padding: 10px 0;
  }

  .speakers-section-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  .speakers-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .speaker-btn {
    bottom: -4;
  }

  #fourth-card .speaker-btn {
    bottom: -3px;
  }

  .bottom-heading {
    font-size: 36px;
  }

  .bottom-heading img {
    height: 36px;
  }

  .side-image {
    width: 300px;
  }

  .swiper-container {
    padding: 0 60px;
  }

  .swiper-main .swiper-slide {
    width: 280px;
  }

  .swiper-nav-btn {
    width: 40px;
    height: 40px;
  }

  .waitlist-section {
    padding: 2rem 1rem;
  }

  .waitlist-guest-indicator {
    margin-bottom: 1.5rem;
  }

  .waitlist-main-heading {
    margin-bottom: 1.25rem;
  }

  .waitlist-description {
    margin-bottom: 2rem;
  }

  .waitlist-cta-button {
    padding: 0.875rem 2rem;
    width: 100%;
    max-width: 300px;
  }

  .main-heading-press {
    font-size: 40px;
  }

  .media-pass-image {
    right: -36px;
    bottom: 186px;
  }

  .subtitle {
    font-size: 16px;
  }

  .logo-marquee-wraper {
    margin-top: 3rem;
    margin-bottom: 20px;
  }

  .side-image {
    width: 180px;
    top: 14%;
  }

  .main-heading-press {
    font-size: 42px;
    margin-bottom: 12px;
  }

  .content-wrapper-media {
    flex-direction: column-reverse;
    height: 100vh;
  }

  .carousel-container {
    height: 300px;
    margin-top: 30px;
  }

  .card {
    width: 200px;
    height: 280px;
  }

  .media-pass-image {
    bottom: 202px;
    right: 321px;
    max-width: 60%;
  }

  .left-content {
    flex: 0;
  }

  .agenda-tab {
    padding: 20px 5px;
    flex-direction: column;
  }

  footer {
    padding: 72px 0px 30px;
  }

  .newsletter-section h2 {
    font-size: 36px;
  }

  .footer-right {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .sponsor {
    width: 100%;
    justify-content: flex-start;
  }

  .speakers-label {
    margin: 0 !important;
  }

  #feature-with-triangle-left::before {
    width: 10px;
    height: 140px;
    top: 67px;
    right: 802px;
    z-index: -1;
  }

  #feature-with-triangle-right::before {
    top: 76px;
    left: -32px;
    z-index: -1;
  }

  .feature-box {
    width: 90%;
  }

  .feature-text br {
    display: none;
  }

  .container-about {
    background-position:
      left 4% top 1%,
      right 28%,
      right 27%,
      right 24% !important;
    background-size: 300px;
  }

  .event-title {
    font-size: 1.8rem;
  }

  .countdown-item {
    width: 10%;
  }
}

@media (max-width: 576px) {
  .navbar {
    backdrop-filter: blur(22px);
  }

  .hero-section h1 {
    font-size: 42px;
  }

  .hero-description br {
    display: none;
  }

  .diagonal-lines {
    background-position: right -50px;
  }

  .hero-description {
    text-align: justify;
    font-size: 16px;
  }

  .not-display {
    display: block;
  }

  .date-badge {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    align-items: start;
  }

  .btn-waitlist {
    /* width: 65%; */
    text-align: center;
  }

  .video-card {
    height: 250px;
  }

  .mute-btn {
    width: 25px;
    height: 25px;
  }

  .description-claim br {
    display: none;
  }

  .info-description br {
    display: none;
  }

  .speaker-list {
    background-size: contain;
  }

  .speaker-btn {
    bottom: -18px;
  }

  #fourth-card .speaker-btn {
    bottom: 0px;
    /* gap: 32px !important; */
  }

  .side-image {
    width: 180px;
    top: 14%;
  }

  .main-heading-press {
    font-size: 42px;
    margin-bottom: 12px;
  }

  .media-press-section {
    min-height: 88vh;
  }

  .content-wrapper-media {
    flex-direction: column-reverse;
    height: 62vh;
  }

  .media-pass-image {
    bottom: 201px;
    max-width: 72%;
    left: -477px;
  }

  .left-content {
    flex: 0;
  }

  .side-image-container {
    top: 7%;
  }

  .side-image {
    width: 170px;
  }

  .the-places-main-title {
    font-size: 28px;
  }

  .the-places-image-card.the-places-tall,
  .the-places-image-card.the-places-medium,
  .the-places-image-card.the-places-wide {
    width: 85px;
    height: 120px;
  }

  .scrolling-banner-bg-1 {
    transform: rotate(6deg) translateY(-71px) !important;
  }

  .popup-overlay {
    height: auto !important;
    overflow: scroll !important;
  }

  .popup-cancel-btn {
    height: 48px;
    font-size: 12px;
  }

  .form-check-label {
    margin-top: 1px !important;
  }

  .form-control,
  .form-select {
    height: 60px !important;
  }

  .popup-title {
    font-size: 24px;
  }

  .popup-subtitle {
    font-size: 13px;
  }

  .waitlist-section {
    min-height: 45vh;
  }

  .btn-sucess-group {
    width: 50%;
    margin: 10px auto;
  }

  .speaker-page-main-title {
    font-size: 2rem;
    line-height: 1.3;
    padding: 1rem 0 !important;
  }

  .speaker-grid {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }

  .speaker-page-cta-text {
    width: 94%;
  }

  .countdown-item {
    width: 15%;
  }

  .marketplace-info {
    justify-content: center;
  }

  .event-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .speakers-wrapper {
    padding: 30px 0px;
  }

  .main-heading {
    font-size: 1.5rem;
  }

  .speakers-section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .speaker-image {
    height: 75%;
  }

  .speaker-info {
    height: 25%;
  }

  .speaker-name {
    font-size: 0.8rem;
  }

  .cta-button-claim {
    padding: 12px 24px;
    font-size: 0.75rem;
  }

  .bottom-heading {
    display: flex;
    font-size: 24px;
    flex-direction: column;
  }

  .bottom-heading img {
    height: 24px;
    margin-left: 8px;
  }

  .waitlist-description {
    font-size: 0.875rem;
  }

  .swiper-main .swiper-slide {
    width: 186px;
  }

  .swiper-slide-content {
    padding: 15px;
  }

  .swiper-slide-subtitle {
    margin-bottom: 0px;
  }

  .main-heading-press {
    font-size: 42px;
    margin-bottom: 12px;
  }

  .content-wrapper-media {
    flex-direction: column-reverse;
    height: 100vh;
  }

  .media-pass-image {
    bottom: 250px;
    max-width: 98%;
    left: -350px;
  }

  .left-content {
    flex: 0;
  }

  .side-image-container {
    top: 6%;
  }

  .bottom-section {
    margin-top: 30px;
  }

  .mobile-break {
    display: block !important;
  }

  .side-image {
    width: 170px;
  }

  .newsletter-section h2 {
    font-size: 28px;
  }

  .email-form {
    flex-direction: column;
    align-items: stretch;
  }

  .email-input {
    width: 100%;
  }

  .footer-top {
    margin-bottom: 50px;
  }

  .newsletter-btn {
    left: 106px;
    bottom: 45px;
  }

  .card {
    width: 150px;
    height: 200px;
  }

  .two-scrolling-banner {
    margin: 0 !important;
  }

  .scrolling-banner-bg {
    transform: rotate(9deg) translateY(-24px) !important;
  }

  .scrolling-banner-bg-1 {
    transform: rotate(-11deg) translateY(-9px) !important;
  }

  .faq-title {
    font-size: 32px;
  }

  .newsletter-btn {
    left: 106px;
    bottom: 45px;
  }

  .speaker-list {
    background-size: contain;
  }

  .speakers-label {
    margin: 0 !important;
  }

  .feature-box {
    width: 95%;
    margin: auto;
  }

  .feature-text br {
    display: none;
  }

  .feature-box:nth-child(odd) {
    align-self: flex-start;
  }

  .feature-box:nth-child(even) {
    align-self: flex-start;
  }

  .features {
    width: 100%;
    margin-top: 3rem;
  }

  .aboutus-text p,
  .expect-intro p {
    padding-left: 10px;
    font-size: 16px;
    padding-right: 10px;
    text-align: justify;
  }

  .aboutus-text p br,
  .expect-intro p br {
    display: none;
  }

  .event-title {
    font-size: 1.5rem;
  }

  .countdown-item {
    width: 18%;
  }

  .marketplace-info {
    justify-content: start;
    gap: 16px;
  }

  #feature-with-triangle-left::before {
    display: none;
  }

  #feature-with-triangle-right::before {
    display: none;
  }

  .what-to-expect-heading {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #ffffff 22%, #f514f5 100%);
    font-weight: 500;
    background-clip: text;
    color: transparent;
  }

  .container-about {
    background-position:
      left -15% top 0%,
      right 12%,
      right 12%,
      right 10% !important;
    background-size: 250px !important;
  }

  .aboutus-heading {
    font-size: 1.5rem;
    padding-top: 0 !important;
  }

  .aboutus-text p,
  .expect-intro p {
    font-size: 14px !important;
    padding: 0px !important;
    width: 80% !important;
    margin: auto;
  }

  .form-control,
  .form-select {
    height: 45px !important;
  }

  .popup-overlay {
    height: auto !important;
  }

  .popup-submit-btn,
  .popup-cancel-btn {
    height: 32px !important;
  }

  .speaker-countdown {
    background-size: contain;
  }

  .waitlist-btn-about {
    background: rgba(255, 153, 255, 1);
    color: var(--color-black);
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin: auto;
    box-shadow: 0 4px 15px rgba(255, 153, 255, 1);
    position: relative;
    pointer-events: auto;
  }

  .marketplace-section {
    position: relative;
    overflow: visible;
  }
}

@media (min-width: 1440px) {
  .diagonal-lines {
    background-position: right -140px;
  }

  .hero-section h1 {
    margin-top: 3.5rem;
    font-size: 6rem;
  }

  .hero-description {
    font-size: 30px;
  }

  .date-badge {
    font-size: 25px;
  }

  .btn-waitlist {
    padding: 12px 36px;
    font-size: 24px;
  }

  .sponsor-text span {
    font-size: 18px;
  }

  footer {
    height: 57vh;
  }

  .info-section h2 {
    font-size: 55px;
    line-height: 1;
  }

  .the-places-view-more-btn {
    margin-top: 28px;
  }

  .video-card {
    width: 55%;
    height: 450px;
  }

  .info-description {
    line-height: 1.5;
  }

  .speakers-grid {
    width: 80%;
  }

  #fourth-card .speaker-btn {
    bottom: -26px;
  }

  .speaker-card {
    height: 410px;
    max-width: 300px;
  }

  .speaker-name {
    font-size: 1.5rem;
  }

  .speaker-title {
    font-size: 0.7rem;
  }

  .speaker-btn {
    padding: 10px 26px;
  }

  .speakers-section-title {
    font-size: 4rem;
  }

  .swiper-container {
    padding: 0 100px;
  }

  .waitlist-section {
    min-height: 50vh;
    padding: 0rem 1.5rem;
  }

  .waitlist-description {
    font-size: 20px;
  }

  .main-heading-press {
    font-size: 5rem;
  }

  .subtitle {
    font-size: 24px;
    max-width: 100%;
  }

  .btn-press {
    font-size: 18px;
    width: 300px;
    padding: 15px;
  }

  .media-pass-image {
    max-height: 550px;
    right: -191px;
    bottom: 205px;
  }

  .content-wrapper-media {
    height: 60vh;
  }

  .media-press-section {
    min-height: 80vh;
  }

  .olx-event-date img {
    height: 24px;
    margin-bottom: 10px;
  }

  .olx-event-location img {
    height: 24px;
    margin-bottom: 10px;
  }

  .popup-container {
    padding: 24px 28px;
  }

  .countdown-item {
    width: 5%;
    height: 100px;
    padding-bottom: 18px;
  }

  .event-section {
    height: 220px;
  }

  .aboutus-heading {
    font-size: 5.5rem;
  }

  .what-to-expect-heading {
    font-size: 5.5rem;
  }

  .aboutus-text p,
  .expect-intro p {
    font-size: 1.45rem;
  }

  .container-about {
    background-position:
      left top 2%,
      right 36%,
      right 37%,
      right 35% !important;
    background-size: 700px, 700px, 700px, 700px !important;
  }

  .feature-text {
    font-size: 20px;
  }

  .feature-icon {
    height: 100px;
    width: 100px;
  }

  #feature-with-triangle-right::before {
    left: 390px;
  }

  #feature-with-triangle-left::before {
    right: 300px;
  }

  .popup-submit-btn {
    font-size: 12px;
  }

  .feature-box {
    width: 70%;
    padding: 32px;
  }

  .success-popup-container .popup-submit-btn {
    min-width: 175px;
    font-size: 20px;
    padding: 6px;
  }

  .success-title {
    font-size: 32px;
  }

  .success-message {
    font-size: 20px;
  }

  .success-popup-container {
    height: 42vh !important;
  }

  .marketplace-section {
    margin-top: 3rem;
  }

  /* .speaker-grid {
    column-gap: 120px;
  } */
}

/* Default: hide on desktop/laptop */
.mobile-br {
  display: none;
}

/* Show on mobile + tablet */
@media (max-width: 1024px) {
  .mobile-br {
    display: block;
    width: 100%;
    height: 0;
  }
}

@media (max-width: 480px) {
  .speaker-page-footer-gradient {
    background: linear-gradient(
      to bottom,
      #0a0a0a00 0%,
      /* transparent at top */ rgba(255, 171, 102, 1) 60%
        /* orange starts MUCH earlier */
    );
  }
}

@media (max-width: 480px) {
  .speaker-page-container {
    background-size:
      250px,
      250px,
      200% 100%;
  }
}

/* Make coming-soon cards same size as real cards */
.speaker-page-card.coming-soon .speaker-page-img-wrapper {
  aspect-ratio: 3 / 4;
  /* Same shape as original speaker cards */
  width: 100%;
  overflow: hidden;
}

.speaker-page-card.coming-soon .speaker-page-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  /* Fill card shape */
  object-position: center;
  /* Center the coming-soon image */
}

/* ==================== Home Agenda Section ==================== */
.home-agenda-section {
  padding-bottom: 80px;
  position: relative;
}

.home-agenda-card {
  background: url("assests/images/agenda-section-green-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
  padding: 60px;
  display: flex;
  gap: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  min-height: 700px;
}

/* Green glow effect at the bottom left */
.home-agenda-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: url("assests/images/agenda-arc.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  pointer-events: none;
  z-index: 1;
}

.home-agenda-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
  padding-top: 20px;
}

.home-agenda-title {
  font-family: var(--font-castledown);
  font-size: 5rem;
  font-weight: 300;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    var(--color-primary-green) 60%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.home-agenda-date-location {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 50px;
  font-weight: 300;
}

.home-agenda-date-location p {
  margin-bottom: 5px;
}

.btn-view-schedule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(
    84.77deg,
    #9bffa0 1.59%,
    rgba(155, 255, 160, 0) 121.45%
  );
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  transition: all 0.3s ease;
  border: none;
}

.btn-view-schedule img {
  height: 20px !important;
  width: 20px !important;
  rotate: -30deg;
}

.btn-view-schedule:hover {
  box-shadow: 0 5px 15px rgba(155, 255, 160, 0.144);
  color: #fff;
}

.home-agenda-right {
  flex: 1.2;
  z-index: 2;
}

/* Reusing agenda tabs style but scoped */
.home-agenda-tabs {
  display: flex;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
}

.home-agenda-tab {
  flex: 1;
  padding: 15px 20px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-castledown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.home-agenda-tab:last-child {
  border-right: none;
}

.home-agenda-tab.active {
  background: var(--color-primary-green);
  color: #000;
}

.home-agenda-tab.active .home-agenda-tab-name {
  text-decoration: underline;
}

.home-agenda-tab-name {
  font-weight: 600;
  font-size: 1rem;
}

.home-agenda-tab-date {
  font-size: 0.8rem;
  opacity: 0.8;
}

.home-agenda-tab.active .home-agenda-tab-date {
  opacity: 1;
  font-weight: 500;
}

/* Agenda List Items */
.home-agenda-list {
  display: flex;
  flex-direction: column;
}

.home-agenda-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  gap: 20px;
}

.home-agenda-time {
  width: 100px;
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.8;
  font-weight: 300;
  flex-shrink: 0;
}

.home-agenda-details {
  flex: 1;
}

.home-agenda-item-title {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.3;
}

.home-agenda-speaker {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .home-agenda-card {
    flex-direction: column;
    padding: 40px;
    gap: 40px;
  }

  .home-agenda-title {
    font-size: 3.5rem;
  }

  .home-agenda-glow {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
  }
}

@media (max-width: 480px) {
  .home-agenda-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .home-agenda-title {
    font-size: 2.5rem;
  }

  .home-agenda-tabs {
    flex-direction: row;
  }

  .home-agenda-tab {
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .home-agenda-item {
    flex-direction: column;
    gap: 5px;
  }

  .home-agenda-time {
    width: 100%;
    margin-bottom: 5px;
  }
}

.agenda-wrapper {
  padding-top: 120px;
  min-height: 100vh;
}

.agenda-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.agenda-header h1 {
  font-size: 3rem;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(111.17deg, #ffffff 25.13%, #00c3ff 100.65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.agenda-date {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
}

.agenda-nav {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.agenda-tab {
  flex: 1;
  padding: 20px;
  text-align: left;
  background: transparent;
  border: 1px solid rgba(0, 195, 255, 1);
  color: var(--color-white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agenda-tab:last-child {
  border-right: 1px solid rgba(0, 195, 255, 1);
}

.agenda-tab span:first-child {
  font-weight: 500;
}

.agenda-tab span:last-child {
  font-size: 0.8rem;
  opacity: 0.6;
}

.agenda-tab.active {
  background: rgba(0, 195, 255, 1);
  color: #000 !important;
}

.agenda-tab.active span:first-child {
  text-decoration: underline;
}

/* ================== ACCOMMODATION SECTION ================== */
.accommodation-section {
  background-image: url("assests/images/hotel-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
}

.accommodation-header {
  margin-bottom: 50px;
}

.accommodation-icon {
  width: 50px;
  margin-bottom: 20px;
}

.accommodation-title {
  color: rgba(0, 195, 255, 1);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Castledown", sans-serif;
}

.accommodation-intro {
  color: #fff;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.6;
}

.hotel-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hotel-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: transparent;
}

.hotel-image-wrapper {
  flex: 0 0 400px;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
}

.hotel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-info {
  flex: 1;
}

.hotel-name {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: "Castledown", sans-serif;
}

.hotel-rating {
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-rating i {
  color: #fff;
  font-size: 0.9rem;
}

.hotel-address {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hotel-address i {
  margin-top: 4px;
}

.hotel-distance {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 25px;
  padding-left: 22px;
}

.hotel-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 5px;
}

.hotel-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid rgba(0, 195, 255, 1);
  color: rgba(0, 195, 255, 1);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
}

.hotel-btn:hover {
  background: rgba(0, 195, 255, 0.1);
  color: rgba(0, 195, 255, 1);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .accommodation-section {
    padding: 60px 0;
  }

  .hotel-card {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hotel-image-wrapper {
    flex: 0 0 auto;
    width: 100%;
    height: 250px;
  }

  .accommodation-title {
    font-size: 2rem;
  }
}

.agenda-tab.active span:last-child {
  opacity: 1;
}

.agenda-list {
  display: flex;
  flex-direction: column;
}

.agenda-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.agenda-item:hover {
  background: transparent;
}

.agenda-item-header {
  display: flex;
  align-items: baseline;
  /* Align text baselines */
  justify-content: flex-start;
  gap: 80px;
}

.agenda-time {
  width: 200px;
  /* Increased width for more spacing */
  font-size: 1rem;
  color: var(--color-white);
  opacity: 0.7;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.agenda-title-wrapper {
  flex: 1;
}

.agenda-item-title {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
}

.agenda-toggle {
  font-size: 1.8rem;
  margin-left: 20px;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.agenda-item-details {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 250px;
}

.agenda-item.active {
  background: transparent;
}

.agenda-item.active .agenda-item-details {
  max-height: 500px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.presented-by {
  color: #00c3ff;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 1px;
}

.agenda-description {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-top: 5px;
  max-width: 600px;
}

.agenda-day-description {
  font-size: 1.2rem;
  color: var(--color-white);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  max-width: 850px;
}

.agenda-badge {
  display: flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
  margin-top: 8px;
  line-height: 1;
}

.badge-keynote {
  background-color: rgba(0, 195, 255, 0.67);
}

.badge-panel {
  background-color: rgba(255, 171, 102, 0.67);
;
}

.badge-fireside {
  background-color: rgba(255, 153, 255, 0.67);
}

.badge-lightning {
  background-color: rgba(155, 255, 160, 0.6);
}

.agenda-item-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 300;
}


/* This creates the dot */
.agenda-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px; 
  background-color: currentColor; 
  filter: brightness(1.2); 
}

/* Optional: If you want the dots to be a specific bright color */
.badge-keynote::before { background-color: rgba(0, 195, 255, 1); }
.badge-tech-talk::before { background-color: rgba(255, 153, 255, 1);}
.badge-synthesis::before { background-color: rgba(155, 255, 160, 1); }
.badge-panel::before { background-color: rgba(255, 171, 102, 1); }
@media (max-width: 991px) {
  .agenda-time {
    width: 180px;
  }

  .agenda-item-details {
    padding-left: 180px;
  }
}

@media (max-width: 768px) {
  .agenda-wrapper {
    padding-top: 100px;
  }

  .agenda-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .agenda-header h1 {
    font-size: 2.5rem;
    margin-left: -2px;
    /* Slight adjustment to align with navbar logo on mobile */
  }

  .agenda-item-header {
    flex-direction: column;
    position: relative;
    gap: 24px !important;
  }

  .agenda-time {
    width: 100%;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }

  .agenda-item-title {
    font-size: 1.6rem;
  }

  .agenda-toggle {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1rem !important;
  }

  .agenda-item-details {
    padding-left: 0;
  }
}

/* ==================== Theme Agenda Popups ==================== */
.theme-agenda .form-control:focus,
.theme-agenda .form-select:focus {
  background: rgba(0, 195, 255, 0.05) !important;
  border: 0.85px solid rgba(0, 195, 255, 1) !important;
  box-shadow: 0 0 0 3px rgba(0, 195, 255, 0.14) !important;
}

.theme-agenda .form-check-input:checked {
  background-color: rgba(0, 195, 255, 1) !important;
  border-color: rgba(0, 195, 255, 1) !important;
}

.theme-agenda .popup-submit-btn {
  background: rgba(0, 195, 255, 1) !important;
  color: #000 !important;
}

.theme-agenda .popup-submit-btn:hover {
  background: rgba(0, 225, 255, 1) !important;
  box-shadow: 0 6px 20px rgba(0, 195, 255, 0.4) !important;
}

.theme-agenda .popup-cancel-btn {
  border: 1px solid rgba(0, 195, 255, 1) !important;
  color: rgba(0, 195, 255, 1) !important;
}

.theme-agenda .file-upload-container:hover {
  border-color: rgba(0, 195, 255, 0.5) !important;
}

.theme-agenda .highlight-anoucement {
  color: rgba(0, 195, 255, 1) !important;
}

.theme-agenda .presented-by {
  color: rgba(0, 195, 255, 1);
}

.theme-agenda .popup-container {
  border: 1px solid rgba(0, 195, 255, 1) !important;
  background: linear-gradient(
    135deg,
    rgba(0, 195, 255, 0.1) 0%,
    rgba(15, 15, 15, 0.95) 100%
  ) !important;
  backdrop-filter: blur(10px);
}

.theme-agenda footer {
  color: #fff !important;
}

.theme-agenda .footer-link,
.theme-agenda .social-label,
.theme-agenda .help-label,
.theme-agenda .copyright,
.theme-agenda .sponsor span,
.theme-agenda .newsletter-section h2 {
  color: #fff !important;
}

.theme-agenda .social-icon img {
  filter: brightness(0) invert(1);
}

body.theme-agenda {
  background-image: url("assests/images/agenda\ background.webp") !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

.theme-agenda .email-input {
  color: #fff !important;
  border-bottom-color: #fff !important;
}

.theme-agenda .email-input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.theme-agenda .contact-btn {
  background: transparent !important;
  border: 1px solid #fff !important;
  color: #fff !important;
}

/* Agenda Speaker Avatars */
.agenda-speaker-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.agenda-speaker-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.agenda-speaker-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-top: 4px;
}

.agenda-speaker-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 0.5px solid #00c3ff;
  margin-right: -10px;
  position: relative;
  background-color: #000;
  transition: transform 0.3s ease;
}

/* Reverse stacking: Individual pairs */
.agenda-speaker-avatars .agenda-speaker-avatar:nth-child(1) {
  z-index: 2;
}

.agenda-speaker-avatars .agenda-speaker-avatar:nth-child(2) {
  z-index: 1;
}

.agenda-speaker-text {
  flex-grow: 1;
}

.presented-by {
  color: #00c3ff;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: inline-block;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: var(--font-castledown);
  margin-top: 8px;
}

.speaker-minus {
  color: #00c3ff;
  margin-left: 8px;
  font-weight: 600;
  font-size: 1.1rem;
}

.agenda-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-top: 8px;
  max-width: 700px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.agenda-speaker-row.active .agenda-description {
  max-height: 1000px;
  opacity: 1;
  margin-bottom: 5px;
}

.speaker-minus {
  color: #00c3ff;
  margin-left: 10px;
  font-weight: bold;
}

.agenda-tag {
  display: inline-block;
  font-size: 0.7rem;
  margin-top: 5px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  width: fit-content;
}

/* Specific Agenda Tabs Overrides for Design Match */
.agenda-nav {
  border: none;
  background: transparent;
  gap: 0;
}

.agenda-tab {
  background: transparent;
  border: 1px solid rgba(0, 195, 255, 1);
  color: #fff;
  opacity: 0.7;
}

.agenda-tab.active {
  background: #00c3ff;
  color: #000 !important;
  border-color: #00c3ff;
  opacity: 1;
}

.agenda-tab.active span:first-child {
  text-decoration: underline;
}
