@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap');
:root {
    color-scheme: light;
}
:root {
    --primary-color : #00a652;
    --secondary-color : #ed1b24;
    --bg-color : #f5f7fa;
    --white : #fff;
    --gray : #777;
    --black : #000000;
}
html {
  scroll-behavior: smooth;
  color-scheme: light;
}
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* Page Loader */

#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#pageLoader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-box {
  text-align: center;
}

.loader-logo {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.loader-logo img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e9e9e9;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 15px;
  animation: loaderSpin 0.8s linear infinite;
}

.loader-box p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Registration Strip */

.registration-strip {
  background: linear-gradient(90deg, #003b1f 0%, #0b7a34 35%, #006a9c 70%, #003f8f 100%);
  background-size: 300% 300%;
  padding: 16px 0;
  text-align: center;
  overflow: hidden;
  animation: registerBgMove 5s ease-in-out infinite;
}

.registration-strip h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.registration-strip h3 a {
  color: #ffffff !important;
  text-decoration: none;
  display: inline-block;
  animation: registerZoom 1.5s ease-in-out infinite;
  text-shadow: 0 0 8px rgba(255,255,255,.45);
}

@keyframes registerBgMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes registerZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .registration-strip h3 {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .registration-strip {
    padding: 14px 10px;
  }

  .registration-strip h3 {
    font-size: 20px;
    line-height: 1.5;
  }
}

/* Top scrolling bar */
.top-bar {
  background: #003333;
  height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.scrolling-wrap {
  display: flex;
  width: max-content;
  animation: scrollText 50s linear infinite;
}

.top-bar:hover .scrolling-wrap {
  animation-play-state: paused;
}

.scrolling-content {
  display: flex;
  align-items: center;
  padding-right: 160px;
  white-space: nowrap;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

@keyframes scrollText {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Common width */
#header {
  position: sticky;
  top: 0;
  z-index: 99999;
}

#header header {
  position: relative;
  z-index: 99999;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 170px;
}

@media (max-width: 991px) {
  section[id] {
    scroll-margin-top: 125px;
  }
}

.header-inner {
  max-width: 1250px;
  margin: 0 auto;
}

/* Logo section */
.logo-section {
  background: var(--white);
  padding: 0;
}

.logo-section .row {
  min-height: 76px;
}

.main-logo-box {
  width: 200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-logo-box img {
  width: 50%;
  height: auto;
  object-fit: contain;
}

/* Partner logos */
.partner-logo-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.partner-logo-box {
  width: 110px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 12px;
}

.partner-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navbar */
.main-navbar {
  background: var(--primary-color);
}

.navbar {
  padding: 0;
  min-height: 43px;
}

.navbar-collapse {
  justify-content: flex-start !important;
}

.navbar-nav {
  align-items: center;
  width: 100%;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--white) !important;
  padding: 10px 17px;
  line-height: 23px;
  transition: 0.25s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 4px;
  height: 3px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Register button */
.register-item {
  margin-left: auto;
}

.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  min-width: 225px;
  height: 43px;
  padding: 0 39px !important;
  text-align: center;
  font-weight: 600;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 12% 100%);
  transition: 0.3s ease;
}

.register-btn::after {
  display: none;
}

.register-btn:hover {
  background: var(--white) !important;
  color: var(--secondary-color) !important;
}

/* Toggler */
.navbar-toggler {
  border: 1px solid var(--primary-color);
  padding: 6px 9px;
  background: var(--white);
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2300a651' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Desktop */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

/* Mobile & Tablet */
@media (max-width: 991px) {
  .header-inner {
    max-width: 100%;
    padding: 0 15px;
  }

  .top-bar {
    height: 40px;
  }

  .scrolling-content {
    padding-right: 80px;
    font-size: 14px;
  }

  .logo-section {
    padding: 8px 0;
  }

  .logo-section .row {
    min-height: 68px;
  }

  .main-logo-box {
    width: 100%;
    height: 60px;
    margin: 0;
    justify-content: flex-start;
  }

  .main-logo-box img {
    width: 80px;
    height: auto;
  }

  .partner-logo-wrapper,
  .partner-logo-box {
    display: none !important;
  }

  .mobile-menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 38px;
    margin-top: 10px;
    margin-left: auto;
  }

  .main-navbar {
    background: var(--white);
    border-bottom: 0;
  }

  .main-navbar .navbar {
    min-height: 0;
    padding: 0;
  }

  /* .main-navbar .navbar > .navbar-toggler {
    display: none !important;
  } */

  .navbar-collapse {
    margin-top: 0;
    background: var(--white);
  }

  /* .navbar-collapse:not(.show) {
    display: none !important;
  } */

  .navbar-nav {
    width: 100%;
    padding: 8px 0;
    align-items: flex-start;
  }

  .navbar-nav .nav-link {
    text-align: left;
    padding: 12px 15px;
    font-size: 16px;
    color: var(--black) !important;
  }

  .navbar-nav .nav-link::after {
    left: 15px;
    right: auto;
    width: 40px;
    bottom: 5px;
    background-color: var(--secondary-color) !important;
  }

  .navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
  }

  .navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
  }

  .register-item {
    margin-left: 0;
    width: 100%;
  }

  .register-btn {
    clip-path: none;
    width: 100%;
    height: auto;
    min-width: 100%;
    margin-top: 8px;
    padding: 13px 15px !important;
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
  }

  .register-btn:hover {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    transition: height 0.25s ease !important;
  }

  .mobile-menu-btn {
    transition: transform 0.15s ease, background-color 0.15s ease;
  }

  .mobile-menu-btn:active {
    transform: scale(0.94);
    background-color: var(--bg-color) !important;
  }
}

@media (max-width: 991px) {
  .logo-section .row {
    display: flex;
    align-items: center;
  }

  .logo-section .col-6:last-child {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
  }

  .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 44px;
    height: 40px;
    border: 2px solid #00a651 !important;
    border-radius: 6px;
    background: #fff !important;
    align-items: center;
    justify-content: center;
    padding: 6px !important;
  }

  .navbar-toggler-icon {
    display: block !important;
    width: 26px;
    height: 26px;
    opacity: 1 !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2300a651' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  }
}


/* Hero Section code on Html */

.hero-section {
  width: 100%;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-mobile {
  display: none;
}

/* Mobile */
@media (max-width: 767px) {
  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
  }
}

/* About Section Code on html */

.dedication-section {
  background: var(--white);
  padding: 60px 0 80px;
}

.dedication-content {
  max-width: 1260px;
  margin: 0 auto;
}

.dedication-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 50px;
}

.dedication-content h2 span {
    color: var(--primary-color);
}

.dedication-content h2 {
    color: var(--secondary-color);
}

.dedication-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  /* line-height: 1.65; */
  line-height: 30px;
  font-weight: 400;
  color: var(--black);
  /* margin-bottom: 24px; */
}

.list {
  font-family: 'Montserrat', sans-serif;
  line-height: 30px;
}

.dedication-content h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 10px;
}

.strong {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-color);  
}

/* Tablet */
@media (max-width: 991px) {
  .dedication-section {
    padding: 45px 0 60px;
  }

  .dedication-content h2 {
    font-size: 32px;
    margin-bottom: 35px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .dedication-section {
    padding: 35px 0 45px;
  }

  .dedication-content h2 {
    font-size: 26px;
  }

  .dedication-content p {
    font-size: 15px;
  }

  .dedication-content h4 {
    font-size: 18px;
  }
}

/* Event Info Section Code on Html */
.event-info-section {
  background: var(--bg-color);
  padding: 60px 0 80px;
  font-family: 'Montserrat', sans-serif;
}

.event-title {
  max-width: 1260px;
  margin: 0 auto;
}

.event-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 25px;
}

.event-title h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.event-title h2 span {
  color: var(--secondary-color);
}

.event-title h4 span {
  color: var(--primary-color);
  font-weight: 700;
}

.event-title p {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 2;
  font-weight: 500;
  color: var(--black);
  margin-top: 10px;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 25px;
  margin: 45px auto;
  max-width: 1260px;
  text-align: center;
}

.benefit-item i {
  width: 60px;
  height: 60px;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 28px;
  margin-bottom: 12px;
}

.benefit-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.event-date-note h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 40px;
}

.race-card {
  background: var(--white);
  border: 2px solid transparent;
  border-color: var(--primary-color);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

.race-card:hover {
  border-color: var(--secondary-color);
}

.race-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}

.race-card h3 span {
  font-size: 52px;
  line-height: 1;
}

.race-card h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
}

.race-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.race-card strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--primary-color);
}

.race-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-color);
}

.race-card hr {
  margin: 22px 0;
}

.race-register-btn {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  margin-top: 20px;
  padding: 13px 42px;
  background: var(--primary-color);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 166, 81, 0.25);
  transition: 0.3s ease;
}

.race-register-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}

/* Tablet */
@media (max-width: 991px) {
  .event-info-section {
    padding: 45px 0 60px;
  }

  .event-title h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .event-title h4 {
    font-size: 22px;
  }

  .event-title p {
    font-size: 16px;
  }

  .benefits-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .event-info-section {
    padding: 35px 0 45px;
  }

  .event-title h2 {
    font-size: 26px;
  }

  .event-title h4 {
    font-size: 19px;
  }

  .event-title p {
    font-size: 15px;
  }

  .benefits-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .race-card {
    padding: 28px 20px;
  }

  .race-card h3 {
    font-size: 30px;
  }

  .race-card h3 span {
    font-size: 44px;
  }

  .race-card h5 {
    font-size: 19px;
  }
}

/* Gallery Section Code on Html */

.gallery-section {
  background: var(--white);
  padding: 60px 0 80px;
}

.gallery-content {
  max-width: 1260px;
  margin: 0 auto;
}

.gallery-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.gallery-content h2 span {
  color: var(--secondary-color);
}

.gallery-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 45px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Lightbox */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  padding: 80px 90px 90px;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.25s ease;
}

.lightbox-close,
.lightbox-arrow,
.zoom-buttons button {
  border: 0;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  cursor: pointer;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  transition: 0.3s ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover,
.zoom-buttons button:hover {
  background: var(--secondary-color);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 32px;
  line-height: 1;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  width: 56px;
  height: 56px;
  font-size: 46px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.zoom-buttons {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100000;
}

.zoom-buttons button {
  width: 46px;
  height: 46px;
  font-size: 30px;
  line-height: 1;
}

/* Laptop */

@media (max-width: 1199px) {
  .gallery-content {
    max-width: 960px;
  }

  .gallery-lightbox {
    padding: 80px 80px 90px;
  }
}

/* Tablet */

@media (max-width: 991px) {
  .gallery-section {
    padding: 45px 0 60px;
  }

  .gallery-content h2 {
    font-size: 32px;
  }

  .gallery-content p {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .gallery-item img {
    height: 240px;
  }

  .gallery-lightbox {
    padding: 75px 70px 85px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .lightbox-arrow {
    width: 50px;
    height: 50px;
    font-size: 42px;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .zoom-buttons {
    right: 20px;
    bottom: 20px;
  }

  .zoom-buttons button {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
}

/* Mobile */

@media (max-width: 575px) {
  .gallery-section {
    padding: 35px 0 45px;
  }

  .gallery-content h2 {
    font-size: 26px;
  }

  .gallery-content p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-item img {
    height: 220px;
  }

  .gallery-lightbox {
    padding: 70px 48px 85px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .lightbox-arrow {
    width: 38px;
    height: 38px;
    font-size: 32px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .zoom-buttons {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .zoom-buttons button {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}

/* Small Mobile */

@media (max-width: 375px) {
  .gallery-lightbox {
    padding: 68px 42px 82px;
  }

  .lightbox-arrow {
    width: 34px;
    height: 34px;
    font-size: 30px;
  }

  .zoom-buttons button,
  .lightbox-close {
    width: 36px;
    height: 36px;
  }

  .zoom-buttons button {
    font-size: 24px;
  }

  .lightbox-close {
    font-size: 26px;
  }
}

/* Sponsors Section Code on Html */
/* Sponsors Section */

.sponsors-section {
  background: var(--bg-color);
  padding: 60px 0 80px;
}

.sponsors-content {
  max-width: 1260px;
  margin: 0 auto;
}

.sponsors-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 55px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.sponsors-content h2 span {
  color: var(--secondary-color);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px 70px;
  align-items: center;
  justify-items: center;
}

.sponsor-item {
  width: 100%;
  min-height: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.sponsor-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--secondary-color);
  margin: 0 0 28px;
  text-transform: uppercase;
}

.sponsor-item img {
  max-width: 210px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .sponsors-section {
    padding: 45px 0 60px;
  }

  .sponsors-content h2 {
    font-size: 32px;
    margin-bottom: 45px;
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 35px;
  }

  .sponsor-item img {
    max-width: 200px;
    max-height: 110px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .sponsors-section {
    padding: 35px 0 45px;
  }

  .sponsors-content h2 {
    font-size: 26px;
    margin-bottom: 40px;
    text-align: center;
  }

  .sponsors-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .sponsor-item {
    min-height: auto;
  }

  .sponsor-item h4 {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .sponsor-item img {
    max-width: 230px;
    max-height: 130px;
  }
}

/* Terms & FAQ Section on Html */

/* Terms & FAQ Section */

.terms-section {
  background: var(--white);
  padding: 60px 0 80px;
}

.terms-content {
  max-width: 1260px;
  margin: 0 auto;
}

.terms-tabs {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 42px;
  border-bottom: 2px solid #ddd;
  width: fit-content;
}

.terms-tab-btn {
  border: none;
  background: transparent;
  padding: 0 0 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #999;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  opacity: 0.45;
  transition: all 0.3s ease;
}

.terms-tab-btn.active {
  opacity: 1;
}

.terms-tab-btn[data-tab="termsContent"].active {
  color: var(--primary-color);
}

.terms-tab-btn[data-tab="faqContent"].active {
  color: var(--secondary-color);
}

.terms-tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.terms-tab-btn:hover {
  opacity: 1;
}

.terms-tab-content {
  display: none;
}

.terms-tab-content.active {
  display: block;
}

.terms-tab-content h4 {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  margin: 24px 0 8px;
  text-transform: uppercase;
}

.terms-tab-content h5 {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 8px;
}

.terms-tab-content p {
  font-family: 'Montserrat', sans-serif;
  color: #4d2c24;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  margin: 0 0 18px;
}

/* Tablet */
@media (max-width: 991px) {
  .terms-section {
    padding: 40px 0 60px;
  }

  .terms-tabs {
    gap: 22px;
    margin-bottom: 35px;
  }

  .terms-tab-btn {
    font-size: 28px;
  }

  .terms-tab-content h4 {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .terms-section {
    padding: 35px 0 45px;
  }

  .terms-tabs {
    gap: 18px;
    margin-bottom: 30px;
    width: 100%;
  }

  .terms-tab-btn {
    font-size: 22px;
  }

  .terms-tab-content h4 {
    font-size: 18px;
  }

  .terms-tab-content h5 {
    font-size: 17px;
  }

  .terms-tab-content p {
    font-size: 15px;
  }
}

.faq-accordion {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  color: var(--primary-color);
  transition: 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 0 18px;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--black);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(180deg);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
  cursor: pointer;
}

.faq-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--primary-color);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transition: 0.3s ease;
}

.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 575px) {
  .faq-question {
    font-size: 15px;
    padding: 15px 0;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* Simple Contact Section on Html*/

/* Simple Contact Section */

.simple-contact-section {
  background: var(--bg-color);
  padding: 60px 0 80px;
}

.simple-contact-content {
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
}

.simple-contact-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.simple-contact-content h2 span {
  color: var(--secondary-color);
  font-weight: 700;
}

.simple-contact-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 2;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 18px;
}

.simple-contact-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

.simple-contact-content span {
  color: var(--black);
  font-weight: 500;
}

.simple-contact-content .support-text {
  margin-top: 40px;
}

/* Tablet */
@media (max-width: 991px) {
  .simple-contact-section {
    padding: 45px 0 60px;
  }

  .simple-contact-content h2 {
    font-size: 32px;
    margin-bottom: 35px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .simple-contact-section {
    padding: 35px 0 45px;
  }

  .simple-contact-content h2 {
    font-size: 26px;
  }

  .simple-contact-content p {
    font-size: 15px;
  }

  .simple-contact-content .support-text {
    margin-top: 28px;
  }
}


/* Footer */

/* Footer Section */

.footer-section{
    background-color: var(--primary-color);
    background-image: url("img/bg.webp");
    background-repeat: repeat;
    background-size:10px 10px;
    background-position: top left;
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 45px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-logo-circle {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
}

.footer-logo-circle img {
  width: 125px;
  height: 125px;
  padding-bottom: 10px;
  object-fit: contain;
}

.footer-brand p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.9);
  max-width: 390px;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact-item a,
.footer-contact-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: .3s ease;
}

.footer-links a:hover,
.footer-contact-item a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: .3s ease;
}

.footer-social a:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.footer-bottom {
  max-width: 1260px;
  margin: 45px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom span {
  color: rgba(255,255,255,.7);
  margin: 0 8px;
}

/* Tablet + Mobile: Quick Links and Contact Us in single row */
@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col {
    text-align: left;
  }

  .footer-contact-item {
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

/* Very small mobile */
@media (max-width: 420px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-links a,
  .footer-contact-item a,
  .footer-contact-item span {
    font-size: 13px;
  }

  .footer-contact-item {
    gap: 8px;
  }

  .footer-contact-item i {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 991px) {
  .footer-section {
    padding: 45px 15px 0;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo-circle {
    margin: 0 auto 20px;
  }

  .footer-brand p {
    max-width: 520px;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .footer-section {
    padding: 40px 15px 0;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 18px;
  }

  .footer-logo-circle {
    width: 130px;
    height: 130px;
  }

  .footer-logo-circle img {
    width: 105px;
    height: 105px;
  }

  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a,
  .footer-contact-item a,
  .footer-contact-item span {
    font-size: 13px;
  }

  .footer-contact-item {
    gap: 8px;
    align-items: flex-start;
  }

  .footer-contact-item i {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .footer-social {
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-bottom {
    margin-top: 35px;
    padding: 16px 0;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-contact-item,
  .footer-social {
    justify-content: center;
  }
}
/* Back To Top Button */

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all .3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
}

#backToTop i {
    font-size: 18px;
}

/* Tablet */
@media (max-width:991px) {
    #backToTop {
        width: 48px;
        height: 48px;
        right: 18px;
        bottom: 90px;
    }
}

/* Mobile */
@media (max-width:575px) {
    #backToTop {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 90px;
        font-size: 16px;
    }
}


/* Prize Poster Section */

.prize-poster-section {
  background: var(--bg-color);
  padding: 60px 0 80px;
}

.prize-poster-content {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}

.prize-poster-content img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.prize-poster-content h2 {
  font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 70px;
    margin-top: 70px;
}

/* Tablet */
@media (max-width: 991px) {
  .prize-poster-section {
    padding: 45px 0 60px;
  }

  .prize-poster-content {
    max-width: 620px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .prize-poster-section {
    padding: 35px 0 45px;
  }

  .prize-poster-content {
    max-width: 100%;
  }

  .prize-poster-content img {
    width: 100%;
  }
}

/* Route Map Section */

.route-map-section {
  background: var(--white);
  padding: 60px 0 80px;
}

.route-map-content {
  max-width: 1260px;
  margin: 0 auto;
}

.route-map-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.route-map-content h2 span {
  color: var(--primary-color);
}

.route-map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.route-map-card {
  background: var(--bg-color);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}

.route-map-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
  cursor: zoom-in;
}

.route-map-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.route-map-img:hover img {
  transform: scale(1.05);
}

.route-map-info {
  padding: 22px 10px 5px;
}

.route-map-info h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
}

.route-map-info p {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}

.route-map-info p span {
  color: var(--primary-color);
  font-weight: 700;
}

/* Tablet */
@media (max-width: 991px) {
  .route-map-section {
    padding: 45px 0 60px;
  }

  .route-map-content h2 {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .route-map-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .route-map-section {
    padding: 35px 0 45px;
  }

  .route-map-content h2 {
    font-size: 26px;
  }

  .route-map-card {
    padding: 12px;
    border-radius: 14px;
  }

  .route-map-img {
    border-radius: 12px;
  }

  .route-map-info {
    padding: 18px 5px 5px;
  }

  .route-map-info h4 {
    font-size: 18px;
  }

  .route-map-info p {
    font-size: 15px;
  }
}


/* 404 Page */

.error-section{
    background:#fff;
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:70px 0;
}

.error-content{
    max-width:700px;
    margin:auto;
    text-align:center;
}

.error-content img{
    width:260px;
    max-width:100%;
    margin-bottom:25px;
}

.error-content h1{
    font-family:'Montserrat',sans-serif;
    font-size:120px;
    font-weight:800;
    color:var(--primary-color);
    line-height:1;
    margin-bottom:15px;
}

.error-content h2{
    font-family:'Montserrat',sans-serif;
    font-size:36px;
    font-weight:700;
    color:var(--secondary-color);
    margin-bottom:18px;
}

.error-content p{
    max-width:560px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
    color:#666;
    margin-bottom:35px;
}

.error-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 35px;
    background:var(--primary-color);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.error-btn:hover{
    background:var(--secondary-color);
    color:#fff;
}

.error-btn i{
    font-size:16px;
}

/* Tablet */

@media(max-width:991px){

.error-content img{
    width:220px;
}

.error-content h1{
    font-size:95px;
}

.error-content h2{
    font-size:30px;
}

}

/* Mobile */

@media(max-width:575px){

.error-section{
    min-height:70vh;
    padding:50px 0;
}

.error-content img{
    width:170px;
}

.error-content h1{
    font-size:72px;
}

.error-content h2{
    font-size:24px;
}

.error-content p{
    font-size:15px;
}

.error-btn{
    width:100%;
    justify-content:center;
}

}

