* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto",
    serif;
  --primary-color: rgb(255, 223, 144);
  --primary-background-color: rgb(17, 14, 7);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.desktop-hidden {
  display: none !important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hide scrollbar for Firefox */
html {
  scrollbar-width: none;
}

body {
  background-color: var(--primary-background-color);
  color: var(--primary-color);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body::before {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .5;
  background-image: url("/assets/images/noise-pattern.png");
  background-size: 100px 100px;
  background-repeat: repeat;
}

notification marquee {
  display: flex;
  padding: 10px;
  background-color: rgba(255, 223, 144, 0.122);
  color: #FFF;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 223, 144, .3);
  border-bottom: 1px solid rgba(255, 223, 144, .3);
}

.notifications-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 50vw;
}

.notification {
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.9rem;
  padding: 5px;
}

.notification:hover {
  background-color: rgba(255, 223, 144, 0.122);
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: nowrap;
  width: 100%;
}

.header-logo {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo .logo {
  height: 65px;
  width: auto;
}

.header-navlinks {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
}

.header-navlinks a {
  border: 1px solid transparent;
  transition: all 0.5s;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: inherit;
  padding: 12px 20px;
}

.header-navlinks a:last-child:hover {
  border: none !important;
}

.primary-button {
  background-color: rgba(255, 223, 144, 0.12);
  font-size: .9rem;
  cursor: pointer;
  border: none !important;
  box-shadow: inset 0 0 20px rgba(255, 223, 144, 0.12);
  outline: 1px solid;
  outline-color: rgba(255, 223, 144, 0.3);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 5px;
}

.primary-button:hover {
  box-shadow: inset 0 0 20px rgba(255, 223, 144, .5), 0 0 20px rgba(255, 223, 144, .2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  border: none;
}

.mobile-menu-button {
  display: none;
}

.mobile-menu-close {
  display: none;
}

.header--scroll{
  background-color: rgba(17, 14, 7, 0.9);
  backdrop-filter: blur(8px);
  transition: all 0.5s;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 223, 144, 0.5);
  z-index: 10;
  position: sticky;
  top: -1px;
}

hero_section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 135px);
  width: 90%;
  text-align: center;
  padding: 20px 0px;
}

hero_section .left-hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
}

hero_section .right-hero-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 40%;
  gap: 20px;
  overflow: hidden;
  z-index: 0;
}

hero_section .right-hero-section .hero-carousel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35%;
  /* background-color: rgba(255, 223, 144, .12); */
  border-radius: 10px;
  max-height: calc(100vh - 135px);
  height: 100%;
  position: relative;
  /* Ensure positioning context for pseudo-element */
  overflow: hidden;
  /* Ensures the gradient doesn’t overflow the border radius */
  gap: 20px;
}

hero_section .right-hero-section .hero-carousel .carousle-images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}


hero_section .right-hero-section .hero-carousel .carousle-images img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

@keyframes slide-up {
  from {
    transform: translateY(0);
  }

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

@keyframes slide-down {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(50%);
  }
}

.hero-carousel.up .carousle-images,
.hero-carousel.down .carousle-images {
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 90s;
  /* Adjust for speed */
}

.hero-carousel:hover .carousle-images {
  animation-play-state: paused;
}

.hero-carousel.up .carousle-images {
  animation-name: slide-up;
}

.hero-carousel.down .carousle-images {
  animation-name: slide-down;
}
hero_section .right-hero-section .hero-carousel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(17, 14, 7, .8) 0%, rgba(17, 14, 7, 0) 50%, rgba(17, 14, 7, .8) 100%);
  /* Radial gradient from black to transparent */
  pointer-events: none;
  /* Allow interaction with carousel */
  z-index: 1;
  /* Ensure the gradient sits above the background */
}


hero_section .right-hero-section .hero-carousel img {
  width: 100%;
}

hero_section .hero-subtitle {
  font-size: .9rem;
  font-weight: 500;
  color: var(--primary-color);
  width: 100%;
  text-align: left;
  text-transform: uppercase;
}

hero_section .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  padding-right: 10px;
  color: var(--primary-color);
  width: 100%;
  text-align: left;
  color: #FFF;
}

.blink {
    animation: smooth-blink 1s ease-in-out infinite;
}

hero_section .hero-description {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary-color);
  width: 100%;
  text-align: left;
  padding-top: 10px;
}

@keyframes smooth-blink {
  0%,
  100% {
    opacity: 1;
    /* Fully visible */
  }

  50% {
    opacity: 0;
    /* Fully hidden */
  }
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}

.hero-buttons a {
  transition: all 0.5s;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: inherit;
  padding: 15px 20px;
  border-radius: 5px;
}

.hero-buttons a.secondary-button {
  outline: 1px solid rgba(255, 223, 144, 0.3) !important;
}

what_to_expect {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  width: 100%;
  background-color: rgba(255, 223, 144, .12);
  margin-top: 100px;
}

.what_to_expect-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 25%;
  padding: 10px;
}

.what_to_expect-container img {
  width: 40px;
  height: 40px;
}

.what_to_expect-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.what_to_expect-container svg {
  width: 50px;
  height: 50px;
  fill: var(--primary-color) !important;
}

.what_to_expect-container h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
}

.what_to_expect-container p {
  font-size: .8rem;
  font-weight: 400;
  color: #DDD;
  width: 100%;
}

about_us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 200px 20px;
  padding-bottom: 50px !important;
  width: 100%;
}

about_us .about-us-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 90%;
}

about_us .about-us-container h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: center;
}

about_us .about-us-container p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #DDD;
  width: 100%;
  text-align: justify;
  padding: 10px 40px;
}


.countdown-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.countdown-timer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  margin-top: 50px;
  width: 70%;
}

.countdown-timer__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.countdown-timer__value {
  font-size: 3rem;
  font-weight: 700;
  color: #FFF;
}

.countdown-timer__label {
  font-size: 1.5rem;
  font-weight: 400;
  color: #DDD;
}

.countdown-timer__divider {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
}

divider {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
  background-color: rgba(255, 223, 144, .12);
}

divider svg path {
  fill: rgb(17, 14, 7);
}

why_attend {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 100px 0px;
  padding-top: 0px;
  width: 100%;
  background-color: rgba(255, 223, 144, .12);
}

why_attend {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 200px 0px;
  padding-top: 0px;
  width: 100%;
  background-color: rgba(255, 223, 144, .12);
  min-height: 100vh;
  padding-top: 150px;
}

.why-attend-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 90%;
}

.why-attend-container h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: center;
}

.why-attend-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  padding: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.why-attend-card {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  width: 350px;
  height: 450px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: #FFF;
  transition: all 0.5s ease;
  animation: fadeIn 0.5s ease;
  border-radius: 10px;
  border: 1px solid rgba(255, 223, 144, 0.3);
  overflow: hidden;
}

.why-attend-card.one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:url("https://media.istockphoto.com/id/547133100/photo/old-farmer-holding-digital-tablet.jpg?s=612x612&w=0&k=20&c=KBbBqiL6EzNSkXJVW2QuwZKx-tJz6JaRzW6uUE6FGNc=") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.why-attend-card.two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:url("https://www.smilefoundationindia.org/blog/wp-content/uploads/2022/11/JIT_2559.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.why-attend-card.three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:url("https://www.devoxx4kids.org/wp-content/uploads/2013/10/lego_mindstorm01-800x500.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.why-attend-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  z-index: 1;

  /* Black text shadow */
  text-shadow: 2px 2px 8px rgba(17, 14, 7, 0.9);

  /* Darker background behind text */
  background: rgba(0, 0, 0, 0.9);
  border-radius: 5px;
}

.why-attend-card__overlay {
  font-size: 1rem;
  font-weight: 400;
  color: #FFF;
  display: flex;
  text-align: center;
  /* Added */
  align-items: center;
  /* Vertically center */
  justify-content: center;
  /* Horizontally center */
  background-color: rgba(17, 14, 7, .9);
  height: 100%;
  width: 100%;
  border-radius: 10px;
  margin: 1px solid rgba(255, 223, 144, 0.3);
  position: absolute;
  bottom: -100%;
}

.why-attend-card__overlay p {
  padding: 20px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  position: relative;
  font-family: "Roboto", sans-serif;
}

.why-attend-card:hover .why-attend-card__overlay {
  bottom: 0;
  transition: all 0.5s ease;
}

.why-attend-card:hover h4 {
  display: none;
}

.why-attend-card:hover {
  transform: translateY(-10px) scale(1.05) rotateX(5deg) rotateY(5deg);
    box-shadow: 0px 15px 40px rgba(17, 14, 7, 0.3);
}

rules_and_regulations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 100px 0px;
  padding-top: 100px;
  width: 100%;
  background-color: rgba(17, 14, 7);
}

.rules-and-regulations-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 90%;
  padding: 20px;
  background-color: rgba(255, 223, 144, .12);
    border-radius: 10px;
}

.rules-and-regulations-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: left;
}

.rules-and-regulations-container p {
  font-size: 1rem;
  font-weight: 400;
  color: #DDD;
  width: 100%;
  text-align: left;
}

.rules-and-regulations-container .rules-and-regulations-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding-top: 20px;
  width: 100%;
}

.rules-and-regulations-container button {
  color: var(--primary-color);
  background-color: rgba(255, 223, 144, 0.12);
  padding: 15px 20px;
  font-size: .9rem;
  cursor: pointer;
  border: none !important;
  box-shadow: inset 0 0 20px rgba(255, 223, 144, 0.12);
  outline: 1px solid;
  outline-color: rgba(255, 223, 144, 0.3);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
}

.rules-and-regulations-container button:hover {
  box-shadow: inset 0 0 20px rgba(255, 223, 144, .5), 0 0 20px rgba(255, 223, 144, .2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  border: none;
}

timeline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 100px 0px;
  padding-top: 100px;
  width: 100%;
  background-color: rgba(17, 14, 7)
}

.timeline-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 90%;
  padding: 20px;
  background-color: rgba(17, 14, 7, .9);
}

.timeline-container h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: center;
}

.day-selector {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  width: 100%;
}

.day-selector button {
  color: var(--primary-color);
  background-color: rgba(255, 223, 144, 0.12);
  padding: 15px 20px;
  font-size: .9rem;
  cursor: pointer;
  border: none !important;
  box-shadow: inset 0 0 20px rgba(255, 223, 144, 0.12);
  outline: 1px solid;
  outline-color: rgba(255, 223, 144, 0.3);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 5px;
}

.day-selector button:hover {
  box-shadow: inset 0 0 20px rgba(255, 223, 144, .5), 0 0 20px rgba(255, 223, 144, .2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  border: none;
}

.timeline-table {
  width: 100%;
  padding-top: 30px;
}

.timeline-table {
  width: 100%;
  margin: auto;
}

.timeline-table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.timeline-table tbody {
  width: 100%;
}

.timeline-table th {
  background-color: rgba(255, 223, 144, 0.12);
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 15px 20px;
  height: 50px;
}

.timeline-table tr {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 15px 20px;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid rgba(255, 223, 144, 0.3);
}


.timeline-table tr:last-child {
  border-bottom: none;
}

.timeline-table tr td:first-child {
  width: 20%;
}

.timeline-table tr td:last-child {
  width: 90%;
}

.timeline-table td {
  background-color: rgba(17, 14, 7, 0.9);
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  padding: 10px 20px;
}

.timeline-table tr:first-child:hover {
  background-color: transparent;
}

.timeline-table tr:hover {
  background-color: rgba(255, 223, 144, 0.12);
}

prizes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 0px;
  padding-top: 100px;
  width: 100%;
  background-color: rgba(17, 14, 7)
}

.prizes-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 90%;
  padding: 20px;
}

.prizes-container h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: center;
}

.prizes-container p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #DDD;
  width: 100%;
  text-align: justify;
  padding: 10px 40px;
}

.prizes-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
}

.winner-prizes {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 20px;
}

.prize-card {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #FFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.5s ease;
  padding: 20px;
  background-color: rgba(17, 14, 7, 0.9);
  border: 1px solid rgba(255, 223, 144, 0.3);
  width: 33%;
  border-radius: 10px;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* 3D Hover Effect */
.prize-card:hover {
  transform: translateY(-10px) scale(1.05) rotateX(5deg) rotateY(5deg);
}

/* Optional: Smooth animation when hovering out */
.prize-card:active {
  transform: translateY(2px);
}

.prize-card.one {
  margin-top: 20px;
  background-color: rgba(255, 223, 144, 0.12);
  padding: 15px 20px;
  font-size: .9rem;
  cursor: pointer;
  border: none !important;
  box-shadow: inset 0 0 20px rgba(255, 223, 144, 0.12);
  outline: 1px solid;
  outline-color: rgba(255, 223, 144, 0.3);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.prize-card.two {
  margin-top: 50px;
}

.prize-card.three {
  margin-top: 50px;
}

.prize-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
}

.prize-card p {
  font-size: 1rem;
  font-weight: 400;
  color: #DDD;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
}

.prize-card button {
  color: var(--primary-color);
  background-color: rgba(255, 223, 144, 0.12);
  padding: 15px 20px;
  font-size: .9rem;
  cursor: pointer;
  border: none !important;
  box-shadow: inset 0 0 20px rgba(255, 223, 144, 0.12);
  outline: 1px solid;
  outline-color: rgba(255, 223, 144, 0.3);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.special-prizes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
}

.special-prizes .prizes-card {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #FFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.5s ease;
  padding: 20px;
  border: 1px solid rgba(255, 223, 144, 0.3);
  width: 33%;
  border-radius: 10px;
  transform-style: preserve-3d;
}


.special-prizes .prizes-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
}

.special-prizes .prizes-card p {
  font-size: 1rem;
  font-weight: 400;
  color: #DDD;
  width: 100%;
  text-align: left;
  padding: 10px 20px;
}

.all-participants {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 100px 20px;
  padding-top: 30px;
  width: 100%;
  background-color: rgba(17, 14, 7);
}

.all-participants .prizes-card {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  color: #FFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.5s ease;
  padding: 20px;
  background-color: rgba(17, 14, 7, 0.9);
  border: 1px solid rgba(255, 223, 144, 0.3);
  width: 100%;
  border-radius: 10px;
  transform-style: preserve-3d;
}

.all-participants .prizes-card button {
  color: var(--primary-color);
  background-color: rgba(255, 223, 144, 0.12);
  padding: 15px 20px;
  font-size: .9rem;
  cursor: pointer;
  border: none !important;
  box-shadow: inset 0 0 20px rgba(255, 223, 144, 0.12);
  outline: 1px solid;
  outline-color: rgba(255, 223, 144, 0.3);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: right;
}


.all-participants .prizes-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: left;
  padding: 10px 20px; 
  text-transform: uppercase;
}

.all-participants .prizes-card p {
  font-size: 1rem;
  font-weight: 400;
  color: #DDD;
  width: 100%;
  text-align: left;
  padding: 10px 20px;
}

sponsors {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 100px 0px;
  padding-top: 50px;
  width: 100%;
  background-color: rgba(17, 14, 7)
}

.sponsors-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 90%;
  padding: 20px;
}

.sponsors-container h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: center;
}

.platinum-sponsors {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
}

.platinum-sponsors h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  margin-top: 50px;
}


.platinum-sponsors .sponsor-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.platinum-sponsors .sponsor-card img {
  width: 130px;
  cursor: pointer;
}

.samatrix-logo {
  width: 200px !important;
}

.platinum-sponsors .sponsor-card img:last-child {
  width: 130px;
}

.gold-sponsors {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
}

.gold-sponsors h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  margin-top: 50px;
}

.gold-sponsors .sponsor-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.gold-sponsors .sponsor-card img {
  width: 130px;
  cursor: pointer;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* FAQ Section Styling */
faq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 100px 0;
  width: 100%;
  animation: fadeIn 1s ease-in-out;
}

.faq-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 90%;
  padding: 20px;
}

.faq-container h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  width: 100%;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
  margin-top: 50px;
}

/* FAQ Question Styling */
.faq-question {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 223, 144, 0.3);
  border-radius: 10px;
  width: 100%;
  padding: 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.faq-question:hover {
  box-shadow: 0px 15px 40px rgba(255, 223, 144, 0.3);
}

.faq-question h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question h4 svg {
  width: 25px;
  height: 25px;
  fill: var(--primary-color);
  transition: transform 0.3s ease;
}

/* Collapsible Answer Styling */
.faq-question p {
  font-size: 1rem;
  font-weight: 400;
  color: #DDD;
  text-align: left;
  padding: 0px 0px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.faq-question a {
  color: var(--primary-color);
  text-decoration: none;
}

.faq-question.active p {
  max-height: 500px;
  opacity: 1;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease-in-out;
  padding: 10px 0px;
}

.faq-question.active h4 svg {
  transform: rotate(180deg);
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 100px 0px;
  padding-bottom: 10px;
  width: 100%;
  background-color: rgba(17, 14, 7);
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  width: 80%;
}

.footer-container .footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.footer-container .footer-logo img {
  width: 250px;
}

.footer-container .footer-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
}

.footer-container .footer-links .footer-links-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.footer-container .footer-links .footer-links-column h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}

.footer-container .footer-links .footer-links-column a, .footer-container .footer-links .footer-links-column p {
  font-size: 1rem;
  font-weight: 400;
  color: #DDD;
  width: 100%;
  text-align: left;
  text-decoration: none;
}

.footer-container .footer-links .footer-links-column a:hover, .footer-container .footer-links .footer-links-column p:hover {
  color: #FFF;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-socials a {
  color: #FFF;
}

.footer-socials a:hover {
  color: var(--primary-color);
}

.footer-socials a svg {
  width: 25px;
  height: 25px;
  fill: #FFF !important;
}

.footer-credits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 80%;
  margin-top: 50px;
}

.footer-credits p {
  font-size: 1rem;
  font-weight: 400;
  color: #DDD;
  width: 100%;
  text-align: center;
}

.footer-credits p a {
  color: #FFF;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background-color: rgba(17, 14, 7, 0.8);
  padding: 50px 20px;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 50px;
  border: 1px solid rgba(255, 223, 144, .3);
}

.modal-content p {
  font-size: 1rem;
  font-weight: 400;
  color: #FFF;
  text-align: left;
  width: 100%;
}

.modal-content p:first-child {
  margin-top: 100px;
}


.modal-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.modal-content .close  {
  font-size: 1.5rem;
  color: #FFF;
}

humans {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px 0px;
  padding-top: 20px;
  width: 100%;
  background-color: rgba(17, 14, 7)
}

.humans-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 90%;
  padding: 20px;
}

.humans-container h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: center;
}

.humans-container p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #DDD;
  width: 100%;
  text-align: justify;
  padding: 10px 40px;
}

.humans-container .team-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 20px;
}

.team-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  width: 100%;
  text-align: left;
  padding: 20px;
  text-transform: uppercase;
}

.team-grid {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
  flex-wrap: wrap;
  padding: 10px 40px;
}

.team-member {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 250px;
}

.team-member .profile-image {
  width: 120px;
  height: 120px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-color: rgba(255, 223, 144, 0.3);
}

.team-member .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-member h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFF;
  width: 100%;
  text-align: left;
  padding: 10px 0px 0px 0px;
  text-transform: uppercase;
}

.team-member p {
  font-size: 1rem;
  font-weight: 400;
  color: #DDD;
  width: 100%;
  text-align: left;
  padding: 0px 0px;
}

/* Full-screen overlay */
.trailer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

/* Container to hold the iframe and close button */
.trailer-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

/* Close button styling */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.close-btn:hover {
  background-color: #f00;
  color: #fff;
}

/* Make the iframe responsive and fill the screen */
#ytplayer {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: none;
}

/* Disable scrolling on the body and html */
body.no-scroll,
html.no-scroll {
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0);
}

.container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 90%;
  padding: 20px;
  background-color: rgba(0,0,0);
  max-width: 150px;
}

.container .content video {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .header-navlinks {
    display: none;
  }

  .header__navlinks--mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: rgba(17, 14, 7, 1);
    padding: 100px 10px;
    padding-bottom: 0px;
    z-index: 10;
  }

  .header__navlinks--mobile > body {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }
  
  .header__navlinks--mobile > .primary-button {
    box-shadow: none;
    outline: none;
    background-color: transparent;
  }

  .mobile-menu-button {
    display: block;
    background: transparent;
    outline: none;
    border: none;
    cursor: pointer;
  }

  .mobile-menu-close {
    position: fixed;
    top: 10px;
    right: 10px;
    display: block;
    background: transparent;
    outline: none;
  }

  .mobile-menu-close svg {
    width: 25px;
    height: 25px;
    fill: var(--primary-color);
    z-index: 10000;
  }

  .mobile-menu-button svg {
    width: 25px;
    height: 25px;
    fill: var(--primary-color);
  }

  .header--scroll {
    padding: 10px 10px;
  }

  hero_section {
    background-position: center;
    padding: 20px;
    background: none;
    width: 100%;
  }

  hero_section .left-hero-section {
    width: 100%;
  }

  hero_section .right-hero-section {
  display: none;
}

  hero_section .hero-subtitle {
    font-size: .6rem;
  }

  hero_section .hero-title {
    font-size: 2rem;
    padding-top: 10px;
  }

  hero_section .hero-description {
    font-size: 1rem;
  }

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

  .hero-buttons a {
    padding: 12px 20px;
    font-size: .9rem;
  }

  what_to_expect {
    padding: 10px;
    margin-top: 50px;
    max-width: 100%;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .what_to_expect-container {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .what_to_expect-container img {
    display: none;
  }

  .what_to_expect-text {
    align-items: center;
  }

  .what_to_expect-container svg {
    width: 30px;
    height: 30px;
  }

  .what_to_expect-container h3 {
    font-size: 1rem;
        text-align: center;
  }

  .mobile-centre{
    text-align: center;
  }

  .what_to_expect-container p {
    font-size: .8rem;
  }

  about_us {
    padding: 100px 10px;
    padding-bottom: 50px !important;
  }

  about_us .about-us-container h3 {
    font-size: 1.5rem;
  }

  about_us .about-us-container p {
    font-size: .9rem;
    padding: 10px;
    text-align: left;
  }

  countdown-container {
    padding-top: 50px;
  }

  .countdown-timer {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap:5px;
  }


  .countdown-timer__item {
    align-items: center;
  }


  .countdown-timer__value {
    font-size: 1.5rem;
  }

  .countdown-timer__label {
    font-size: 1rem;
  }


  .countdown-timer__divider {
    font-size: 1.5rem;
  }

  divider {
    padding: 0;
  }

  divider svg path {
    fill: rgb(17, 14, 7);
  }

  why_attend {
    padding: 100px 10px;
    padding-top: 0px;
    min-height: 100vh;
    padding-top: 150px;
  }

  .why-attend-container h3 {
    font-size: 1.5rem;
  }

  .why-attend-cards {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 20px;
  }

  .why-attend-card {
    width: 100%;
  }

  .why-attend-card.one::before {
    background-size: cover;
    background-position: center;
  }

  .why-attend-card.two::before {
    background-size: cover;
    background-position: center;
  }

  .why-attend-card.three::before {
    background-size: cover;
    background-position: center;
  }

  .why-attend-card h4 {
    font-size: 1.2rem;
  }

  .why-attend-card p {
    font-size: 1rem;
  }

  rules_and_regulations {
    padding: 100px 10px;
    padding-top: 100px;
  }

  .rules-and-regulations-container h3 {
    font-size: 1.5rem;
  }

  .rules-and-regulations-container p {
    font-size: 1rem;
  }

  .rules-and-regulations-container .rules-and-regulations-buttons {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
  }

  .rules-and-regulations-container button {
    padding: 12px 20px;
    font-size: .9rem;
  }

  timeline {
    padding: 100px 10px;
    padding-top: 100px;
  }

  .timeline-container {
    width: 95%;
  }

  .timeline-container h3 {
    font-size: 1.5rem;
  }

  .day-selector {
    padding: 10px 10px;
    flex-direction: column;
  }

  .day-selector button {
    padding: 12px 20px;
    font-size: .9rem;
  }

  .timeline-table {
    padding-top: 30px;
  }

  .timeline-table table {
    width: 100%;
  }

  .timeline-table tbody {
    width: 100%;
  }

  .timeline-table th {
    font-size: 1rem;
    padding: 10px 10px;
  }

  .timeline-table tr {
    font-size: 1rem;
    padding: 10px;
    height: 50px;
  }

  .timeline-table tr td:first-child {
    width: 35%;
  }

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

  .desktop-hidden {
    display: flex !important;
  }


  .timeline-table td {
    font-size: 1rem;
    padding: 10px 10px;
  }

  prizes {
    padding: 100px 10px;
    padding-top: 100px;
  }

  .prizes-container {
    width: 95%;
  }

  .prizes-container h3 {
    font-size: 1.5rem;
  }

  .prizes-container p {
    font-size: 1.1rem;
  }

  .prizes-list {
    padding: 0px;
  }

  .winner-prizes {
    padding: 20px 0px;
    display: flex;
    flex-direction: column !important;
  }

  .prize-card {
    width: 100%;
  }

  .prize-card h4 {
    font-size: 1.5rem;
  }

  .prize-card p {
    font-size: 1rem;
  }

  .special-prizes {
    padding: 20px;
  }

  .special-prizes .prizes-card {
    width: 100%;
  }

  .special-prizes .prizes-card h4 {
    font-size: 1.5rem;
  }

  .special-prizes .prizes-card p {
    font-size: 1rem;
  }

  .all-participants {
    padding: 100px 0px;
    padding-top: 30px;
  }

  .all-participants .prizes-card {
    width: 100%;
    align-items: center;
  }


  .all-participants .prizes-card h4 {
    font-size: 1.5rem;
    text-align: center;
  }

    .all-participants .prizes-card p {
      text-align: center;
    }

  .sponsor-card {
    width: 100%;
    flex-direction: column !important;
  }

  sponsors {
    padding: 100px 10px;
    padding-top: 100px;
  }

  .sponsors-container {
    width: 95%;
  }

  .sponsors-container h3 {
    font-size: 1.5rem;
  }

  .platinum-sponsors h4 {
    font-size: 1.3rem;
    margin-top: 0px;
  }



  .platinum-sponsors .sponsor-card {
    width: 100%;
  }

  .platinum-sponsors .sponsor-card img {
    width: 150px;
  }

  .samatrix-logo {
    width: 200px !important;
  }

  .xyz-logo {
    width: 100px !important;
  }

  .gold-sponsors h4 {
    font-size: 1.3rem;
  }

  .gold-sponsors .sponsor-card {
    width: 100%;
  }

  .gold-sponsors .sponsor-card img {
    width: 150px;
  }

  faq {
    padding: 100px 10px;
    padding-top: 100px;
  }

  .faq-container {
    width: 95%;
    padding: 20px 0px;
  }

  .faq-container h3 {
    font-size: 1.5rem;
  }

  .faq-questions {
    padding: 10px 0px;
  }

  .faq-question {
    width: 100%;
    padding: 15px;
  }

  .faq-question h4 {
    font-size: 1.2rem;
    max-width: calc(100% - 35px);
  }

  .faq-question p {
    font-size: 1rem;
  }

  footer {
    padding: 100px 10px;
    padding-bottom: 10px;
  }

  .footer-container {
    width: 95%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-container .footer-logo img {
    width: 200px;
  }

  .footer-container .footer-links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
  }

  .footer-container .footer-links .footer-links-column {
    width: 100%;
  }

  .footer-container .footer-links .footer-links-column h4 {
    font-size: 1.3rem;
  }

  .footer-container .footer-links .footer-links-column a, .footer-container .footer-links .footer-links-column p {
    font-size: .9rem;
  }

  .footer-credits {
    width: 95%;
  }

  .footer-container p {
    font-size: .8rem;
  }

  .footer-credits p {
    font-size: .8rem;
  }

  .modal-content {
    padding: 20px;
    padding-top: 50px;
    border: 1px solid rgba(255, 223, 144, .3);
  }

  .modal-content p {
    font-size: .9rem;
  }

  humans {
    padding: 100px 10px;
    padding-top: 100px;
  }

  .humans-container {
    width: 95%;
  }

  .humans-container h3 {
    font-size: 1.5rem;
  }

  .humans-container p {
    font-size: 1rem;
    text-align: center;
    padding: 10px;
  }

  .team-section h4 {
    font-size: 1.1rem;
    text-align: center;
  }

  .team-grid {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .team-member {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .team-member .profile-image {
    width: 100px;
    height: 100px;
  }

  .team-member h4 {
    font-size: 1rem;
    text-align: center;
  }

  .team-member p {
    font-size: .9rem;
    text-align: center;
    padding: 0px 0px;
  }

  

}