:root {
  /* Use your image here */
  --masthead-bg: url("imgs/02.png");
  --text: #fff;
  --muted: #e8e8e8;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Poppins, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

.container {
  max-width: 85%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== MASTHEAD (Header + Hero as ONE section) ===== */
.masthead {
  position: relative; /* was: sticky */
  color: var(--text);
  /* background: var(--masthead-bg) center/cover no-repeat; */
  background: var(--masthead-bg) center top 66% / cover no-repeat;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* 2) Fix the nav to the top and give it a subtle backdrop */
.nav {
  position: relative;
  top: 0;
  left: 0;
  right: 0; /* allows centering with your .container sizing */
  height: 72px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent; /* transparent at the top */
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-inline: 0 !important;
}

.logo img {
  width: 150px;
  height: auto;
  object-fit: cover;
}
.links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}
.links a:hover {
  color: #fec912;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.hamburger .bar,
.hamburger .bar::before,
.hamburger .bar::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  content: "";
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease,
    bottom 0.25s ease;
}
.hamburger .bar {
  top: 50%;
}
.hamburger .bar::before {
  top: -6px;
}
.hamburger .bar::after {
  bottom: -6px;
}
.hamburger[aria-expanded="true"] .bar {
  background: transparent;
}
.hamburger[aria-expanded="true"] .bar::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}
.hamburger[aria-expanded="true"] .bar::after {
  bottom: 0;
  transform: translateX(-50%) rotate(-45deg);
}

/* 3) Mobile drawer must also be fixed, positioned under the nav */
.mobile-drawer {
  position: fixed; /* was: absolute */
  left: 0;
  right: 0;
  top: 72px; /* sits directly below the fixed nav */
  z-index: 95;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px) saturate(130%);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  height: 100vh;
  justify-content: center;
  display: flex;
}
.mobile-menu {
  display: grid;
  gap: 8px;
  padding: 16px;
}
.mobile-menu a {
  display: block;
  padding: 14px 12px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}
.mobile-menu a:hover {
  color: #fec912;
}
/* Hero content area (still inside .masthead) */
.hero {
  /* no change required, but keep your existing padding */
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  min-height: calc(100vh - 72px);
  padding: 48px 0 64px;
  position: relative;
  align-content: center;
}
.hero img {
  width: 30%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.title {
  font-size: 50px;
  line-height: 1.3;
  margin: 1rem 0 1rem;
  font-weight: bold;
}

.lead {
  max-width: 40ch;
  color: #f5f5f5;
  font-size: 22px;
}
.hero-actions {
  margin-block: 30px;
  display: flex;
  gap: 12px;
}
.btn {
  appearance: none;
  border: 0;
  border-radius: 3px;
  padding: 12px 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: #fec912;
  color: #000;
  width: 110px;
  transition: background-color 200ms ease, transform 150ms ease,
    box-shadow 200ms ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* If you need a subtle text lift over bright areas */
.title,
.lead {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Spacer content after masthead to demonstrate scroll */
.content {
  max-width: 900px;
  margin: 48px auto;
  color: #d8d8d8;
  padding: 0 20px;
}

.swiper {
  width: 100%;
  height: 100%;
}
.hero-swiper {
  max-width: 600px;
  margin-left: 0px !important;
  padding-bottom: 30px !important;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.swiper-button-next,
.swiper-button-prev {
  top: 75% !important;
}
.swiper-button-next {
  right: 85% !important;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "" !important;
}
.swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
/* Responsive */
@media (max-width: 2560px) {
  /* .hero {
    align-content: center;
    padding: 40px 0 64px;
  } */
  .swiper-button-next,
  .swiper-button-prev {
    top: 99% !important;
  }
}

@media (max-width: 1440px) {
  .title {
    font-size: 40px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 99% !important;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: calc(100vh - 72px);
  }
  .title {
    font-size: 30px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 99% !important;
  }
  .swiper-button-next {
    right: 80% !important;
  }
}

@media (max-width: 960px) {
  .links {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 48px;
  }
}
@media (max-width: 768px) {
  .title,
  .lead {
    width: 50%;
  }
  .title {
    font-size: 22px;
  }
  .lead {
    font-size: 18px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 98% !important;
  }
  .swiper-button-next {
    right: 80% !important;
  }
  .btn-primary {
    width: 85px;
  }
  .btn {
    padding: 10px;
    font-size: 14px;
  }
  .hero img {
    width: 45%;
  }
}
@media (max-width: 425px) {
  .title,
  .lead {
    width: 100%;
  }
  .title {
    font-size: 22px;
  }
  .lead {
    font-size: 14px;
    max-width: 250px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 98% !important;
  }
  .swiper-button-next {
    right: 60% !important;
  }
  .hero img {
    width: 60%;
  }
}
@media (max-width: 375px) {
  .swiper-button-next {
    right: 60% !important;
  }
}
/* ===== VALUE SECTION ===== */

.section {
  width: 100%;
  padding-bottom: 70px;
}

/* Section 1 */
.part1 {
  background: url("imgs/part1.png") center/cover no-repeat;
  color: white;
  padding: 80px 7.5%;
  min-height: 550px;
  display: flex;
  justify-content: flex-end;
}

.part1 .text-box {
  max-width: 700px;
  background: transparent;
  padding: 50px;
  border-radius: 5px;
  position: relative;
  text-align: center;
}
.part1 .text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.2); /* Adjust opacity for desired darkness */
  backdrop-filter: blur(5px); /* Adjust the blur amount */
  border-radius: 8px;
}
.part1 .text-box p {
  position: relative;
  z-index: 1;
  line-height: 1.5;
  font-size: 22px;
}
/* Section 2 */
.part2 {
  display: flex;
  background: url("imgs/part1.png") center/cover no-repeat;
  color: white;
  position: relative;
  min-height: 550px;
  z-index: 1;
  padding: 80px 7.5%;
  justify-content: flex-end;
}

.part2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.2); /* Adjust opacity for desired darkness */
  backdrop-filter: blur(5px); /* Adjust the blur amount */
  border-radius: 8px;
}

.part2 .model-1 {
  width: 500px;
  border-radius: 5px;
  position: absolute;
  top: -165px;
  left: 7.5%;
  height: 800px;
}
.part2 img.arrow {
  position: absolute;
  z-index: 1;
  bottom: -170px;
  left: 0;
  width: 200px;
}

.part2 .part2-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  max-width: 425px;
  z-index: 1;
  margin-right: 4.5%;
}

.part2 h2,
.part3 h2 {
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: 0;
}

.part2 p,
.part3 p {
  margin-bottom: 20px;
  line-height: 1.6;
}
.part3 {
  display: flex;
  background: #fff;
  position: relative;
  min-height: 550px;
  padding: 80px 7.5%;
  color: #000;
}
.part3 .part-text {
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 425px;
}
.part3 .model-2 {
  width: 500px;
  border-radius: 5px;
  position: absolute;
  top: -50px;
  right: 7.5%;
  height: 670px;
  z-index: 1;
}
.part3 img.arrow {
  position: absolute;
  z-index: 1;
  bottom: 55px;
  right: 0;
  width: 200px;
}
@media (max-width: 1024px) {
  .part1 .text-box p {
    font-size: 18px;
  }
  .part1 .text-box {
    max-width: 530px;
    background: transparent;
    padding: 40px;
    border-radius: 5px;
    position: relative;
    text-align: center;
    height: fit-content;
  }

  .part2 .model-1 {
    top: -165px;
    left: 70px;
    width: 350px;
    height: 650px;
  }

  .part3 .model-2 {
    max-width: 325px;
    height: 600px;
  }
  .part3 img.arrow {
    bottom: 35px;
    width: 170px;
  }
  .part2 img.arrow {
    width: 170px;
  }
  .section {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .part1 {
    background: url(imgs/04.png) center/cover no-repeat;
    min-height: 150vh;
    justify-content: center;
  }
  .part2 {
    min-height: 130vh;
  }
  .part2,
  .part3 {
    align-items: flex-end;
    justify-content: center;
    padding: 100px 7.5%;
  }
  .part3 {
    min-height: 105vh;
  }
  .part2 .model-1 {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 350px;
    margin: auto;
  }
  .part3 .model-2 {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 440px;
    margin: auto;
    height: 500px;
  }
  .part2 .part2-content {
    margin-bottom: 40px;
  }
  .part2 .part2-content,
  .part3 .part-text {
    margin-right: 0;
    max-width: 350px;
    padding-inline-start: 10px;
  }
  .part2 h2,
  .part3 h2 {
    font-size: 32px;
  }
  .part2 img.arrow {
    bottom: 78vh;
  }
  .part3 img.arrow {
    bottom: 55vh;
  }
}
@media (max-width: 425px) {
  .part1 {
    min-height: 140vh;
  }
  .part2 {
    min-height: 120vh;
  }
  .part2 .model-1 {
    width: 300px;
    bottom: 600px;
    height: 600px;
  }
  .part3 .model-2 {
    height: 450px;
  }
}
@media (max-width: 375px) {
  .part1 .text-box p {
    font-size: 14px;
  }
  .part2 {
    min-height: 90vh;
  }
  .part2 .model-1 {
    width: 300px;
    bottom: 580px;
    height: 500px;
  }
  .part2 img.arrow,
  .part3 img.arrow {
    width: 130px;
  }
  .part3 .model-2 {
    max-width: 300px;
  }
  .part2 h2,
  .part3 h2 {
    font-size: 28px;
  }
  .part2 p,
  .part3 p {
    font-size: 14px;
  }
}
/* who-we-are  */
.who-we-are {
  background: url("imgs/who-are-we.png") no-repeat center center/cover;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 7.5%;
  min-height: 100vh;
  position: relative;
}

/* optional dark overlay */
.who-we-are::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.who-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
}
.who-right {
  text-align: center;
}
.who-left,
.who-right {
  max-width: 35%;
}

.who-left h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.who-left p,
.who-right p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .who-left h2 {
    font-size: 32px;
  }
  .who-left p,
  .who-right p {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .who-content {
    flex-direction: column;
    text-align: center;
  }
  .who-left {
    text-align: start;
  }
  .who-left,
  .who-right {
    max-width: 100%;
  }
  .who-we-are {
    display: block;
    background: none;
    padding: 0;
    min-height: auto;
  }

  .who-content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .who-left,
  .who-right {
    flex: 1;
    max-width: 100%;
    min-height: 50vh;
    padding: 30px 7.5%;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Left side gets left half of background */
  .who-left {
    background: url("imgs/who-are-we.png") no-repeat left center/200% 100%;
  }
  .who-left p {
    max-width: 350px;
  }
  /* Right side gets right half of background */
  .who-right {
    background: url("imgs/who-are-we.png") no-repeat right center/200% 100%;
  }

  /* Dark overlay effect for both halves */
  .who-left::before,
  .who-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }

  .who-left > *,
  .who-right > * {
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 425px) {
  .who-right {
    padding: 30px 15%;
  }
}
@media (max-width: 375px) {
  .who-left h2 {
    font-size: 28px;
  }
  .who-left p,
  .who-right p {
    font-size: 14px;
  }
}
/* Yellow Border Section */

.border-section {
  position: relative;
  background: #fec912;
  height: 40px;
  z-index: 11;
}

.border-section img {
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: auto;
}
.border-section-inside {
  display: none;
}
@media (max-width: 1024px) {
  .border-section {
    height: 40px;
  }
  .border-section img {
    top: 0;
  }
}

@media (max-width: 900px) {
  .border-section-inside,
  .border-section {
    position: relative;
    background: #fec912;
    height: 20px;
    z-index: 11;
    display: block;
  }

  .border-section-inside img,
  .border-section img {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 375px) {
  .border-section-inside,
  .border-section {
    height: 15px;
  }
}
/* Vision & Mission Section */
.vision-mission {
  display: flex;
  position: relative;
  min-height: 500px;
}

.vision,
.mission {
  flex: 1;
  padding: 80px 3.5%;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.vm-content {
  max-width: 550px;
  padding-inline-start: 60px;
}

.vision {
  background: #3b1b66;
}

.mission {
  background: #f6b500;
}

.vision h2,
.mission h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vision p,
.mission p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Center Image */
.center-image {
  position: absolute;
  top: 70%;
  left: 46.5%;
  transform: translate(-50%, -50%);
  max-height: 650px;
  z-index: 2;
}

@media (max-width: 1024px) {
  .vision-mission {
    flex-direction: column;
    position: relative;
    text-align: center;
  }

  .vision,
  .mission {
    min-height: 100vh; /* split evenly */
    display: flex;
    padding-left: 7.5%;
    padding-right: 7.5%;
    padding-block: 100px;
    align-items: center;
  }

  /* Vision aligns top */
  .vision {
    justify-content: flex-start;
    padding-top: 50px;
    padding-bottom: 100px;
  }

  /* Mission aligns bottom */
  .mission {
    justify-content: flex-end;
    padding-bottom: 100px;
    padding-top: 50px;
  }

  /* Center image: overlaps both halves */
  .center-image {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 600px;
    z-index: 2;
  }
  .vision p,
  .mission p {
    font-size: 18px;
  }
  .vision h2,
  .mission h2 {
    font-size: 32px;
  }
  .vm-content {
    padding-inline-start: 0px;
  }
}
@media (max-width: 425px) {
  .vm-content {
    padding-inline-start: 0px;
  }
  .vision,
  .mission {
    min-height: 105vh;
  }
}
@media (max-width: 375px) {
  .vision h2,
  .mission h2 {
    font-size: 28px;
  }
  .vision p,
  .mission p {
    font-size: 14px;
  }
  .vision,
  .mission {
    min-height: 90vh;
  }
  .center-image {
    max-width: 300px;
  }
}
/* --- Values section --- */
.values {
  background: #fff;
  color: #111;
  padding: 200px 0 120px;
  position: relative;
}
.values .values-arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
}
.values .values-arrow-yellow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200px;
}
.values .values-arrow-black {
  position: absolute;
  right: 0;
  bottom: -113px;
  width: 120px;
  z-index: 1;
}
.values-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}
.values-head h2 {
  margin: 0 0 8px;
  font-weight: bold;
  font-size: 40px;
}
.values-head p {
  color: #444;
}

/* Track + nav */
.values-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.values-nav {
  background-color: #fff;
  border: none;
}
.values-nav:disabled {
  opacity: 0.4;
}

/* Swiper sizing */
.values-swiper {
  overflow: visible;
  padding-bottom: 30px;
} /* allow scaled active slide overflow */
.values-swiper .swiper-wrapper {
  align-items: end;
}
.values-swiper .swiper-slide {
  width: clamp(260px, 38vw, 420px); /* variable width */
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s,
    filter 0.3s;
  opacity: 0.6;
  filter: grayscale(0.15);
  transition: all 1s ease;
}

.value-card {
  height: 100%;
  background: #eee;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
}
.value-card svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.value-card p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.value-card--dark {
  background: #111;
  color: #fff;
}
.value-link {
  margin-top: auto;
  text-decoration: none;
}

/* “One active in the middle” look */
.values-swiper .swiper-slide-prev,
.values-swiper .swiper-slide-next {
  opacity: 0.85;
}
.values-swiper .swiper-slide .value-icon img {
  width: 40px;
  height: 40px;
}
.values-swiper .swiper-slide .value-icon,
.values-swiper .swiper-slide p,
.values-swiper .swiper-slide a {
  display: none;
}
.values-swiper .swiper-slide-active .value-icon,
.values-swiper .swiper-slide-active a {
  display: block;
}
.values-swiper .swiper-slide-active p {
  display: -webkit-box !important;
}
.values-swiper .swiper-slide-active {
  transform: translateY(-8px) scale(1.05);
  opacity: 1;
  filter: none;
  transition: all 0.5s ease;
  background-color: transparent;
}
.values-swiper .swiper-slide-active .value-card {
  background: #111;
  color: #fff; /* force the center card black */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.values .next,
.values .prev {
  position: absolute;
  bottom: -80px;
  cursor: pointer;
}
.values .next {
  right: 46%;
}
.values .prev {
  left: 46%;
}
.next svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
@media (max-width: 1024px) {
  .values {
    height: 100vh;
  }
  .values .next {
    right: 44%;
  }
  .values .prev {
    left: 44%;
  }
}
/* Mobile */
@media (max-width: 960px) {
  .values {
    padding: 100px 7.5%;
  }
  .values-nav {
    display: none;
  }
  .values-swiper .swiper-slide .value-icon img {
    width: 40px;
    height: 40px;
  }
  .values-swiper .swiper-slide h3 {
    font-size: 18px;
  }
  .values-swiper .swiper-slide p {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .values-head h2 {
    font-size: 28px;
  }
  .values-head p {
    font-size: 14px;
  }
}
/* why-select */
.why-select {
  background-image: url("imgs/why-select.png");
  background-size: cover;
  background-position: center;
  height: 800px;
  position: relative;
  padding: 75px 7.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
}

.why-select ul {
  max-width: 70%;
}
@media (max-width: 768px) {
  .why-select {
    background-position: 60%;
    justify-content: start;
    height: 800px;
  }
}
@media (max-width: 767px) {
  .why-select {
    background: url(imgs/06.png) center/cover no-repeat;
    justify-content: start;
    height: 800px;
  }
  .why-select h2 {
    font-size: 32px;
  }
  .why-select ul {
    padding: 0 7.5%;
    max-width: 100%;
  }
  .why-select ul li {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .why-select h1 {
    font-size: 28px;
  }
  .why-select p,
  .why-select ul li {
    font-size: 14px;
  }
}
/*chance*/
.chance {
  background-image: url("imgs/chance.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  padding: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.chance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
@media (max-width: 425px) {
  .chance {
    padding: 7.5%;
  }
}
@media (max-width: 375px) {
  .chance h2 {
    font-size: 28px;
  }
  .chance p {
    font-size: 14px;
  }
}
/* Ensure content stays above the overlay */
.chance > * {
  position: relative;
  z-index: 2;
  max-width: 500px;
  text-align: center;
}

/*Footer*/
.footer {
  display: flex;
  justify-content: space-between;
  background-color: #0a0a0a;
  padding: 50px 7.5%;
  color: white;
}

.footer h3 {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 30px;
  font-weight: bold;
}
.footer .footer-middle {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-inline-end: 20px;
}
.footer h6 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
}
.footer p {
  margin: 5px 0;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.social-icons a {
  text-decoration: underline;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  background-color: #0a0a0a;
  padding: 30px 7.5%;
  position: relative;
}
.footer-bottom::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 91.5%;
  background: #707070;
  top: 0;
  left: 4.5%;
}
.footer-bottom .logo img {
  object-fit: contain;
  width: 150px;
  height: auto;
}
.map-container {
  width: 100%;
  max-width: 400px;
  height: 150px;
  margin-block: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.map-container iframe {
  width: 100%;
  height: 100%;
}
.footer a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .footer h3 {
    font-size: 26px;
  }
  .footer h6 {
    font-size: 18px;
  }
  .footer p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom {
    gap: 20px;
  }
  .footer .footer-left,
  .footer .footer-right,
  .footer .footer-block {
    padding: 40px;
  }
  .footer .footer-left,
  .footer .footer-block {
    border-bottom: 1px solid #707070;
  }
  .footer .footer-right a {
    width: 100%;
  }
  .footer-bottom::after {
    width: 63%;
    left: 19%;
  }
}
@media (max-width: 425px) {
  .footer a img {
    width: 350px;
  }
}
@media (max-width: 375px) {
  .footer h3 {
    font-size: 22px;
  }
}
/* start hidden */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms ease, transform 400ms ease;
}

/* becomes visible when JS adds .is-visible */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
/* Hover state */
.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #ffda33; /* slightly lighter yellow */
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  outline: none;
}

/* Active (when clicked) */
.btn-primary:active {
  background-color: #e6b800; /* a bit darker */
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
