body {
  font-family: 'Poppins', sans-serif;
  color: #FFFFFF;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
}

body::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera no scroll bar*/
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  margin-top: 5%;
  position: relative;
  font-weight: bold;
}

.heading_container h2 span {
  color: #2c7873;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero_area .hero_bg_box { /*Horse Video */
  position: absolute;
  margin: -3%;
  width: 108vw;
  z-index: 100;
  overflow: hidden;
}

.hero_area .hero_bg_box img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 8vw;
  width: max-content;
  position: absolute;
  left: 20px;
  bottom: 2rem;
  z-index: 2001;
  animation: logo-scroll 30s linear infinite;
  /* Calculate exact width: 6 logos + 5 gaps = 11 total items, so we need 200% + gap adjustment */
  min-width: calc(200% + 8vw);
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50% );
  }
}

.logo {
  max-height: 6.25rem;
  max-width: 12.5rem;
}

.stake_logo {
  max-height: 3.75rem;
}

.betright_logo {
  max-width: 12.5rem;
  height: 6.25rem;
}

@media (max-width: 992px) {
  .logo {
    position: relative;
    height: 1.25rem;
    margin: 0 auto;
  }

  .betright_logo {
    max-width: 60%;
    height: 0.75rem;
  }

  .stake_logo {
    max-height: 1.25rem;
  }

  .logo-carousel-track {
    gap: 1.25rem;
    animation-duration: 20s;
    min-width: calc(200% + 1.25rem);
  }
}

@media (max-width: 992px) {
  .hero_area {
    height: 13.75rem;
    width: 100%;
    margin-top: 3.5rem; /* Add margin to create space below navbar */
  }
}

.header_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2002;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar-brand {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #2c7873;
}

/*Navbar Items*/
.custom_nav-container .navbar-nav {
 display: flex;
 flex: 1;
 justify-content: center;
 margin-right: 10%;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  text-align: right;
  text-transform: uppercase;
  border-radius: 0.3125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #2c7873;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover::after {
  width: 80%;
}

.custom_nav-container .navbar-nav.ml-auto {
  justify-content: flex-end;
  margin-left: auto !important;
}

/* Ensure dropdown menu stays right-aligned on mobile */
@media (max-width: 992px) {
  .custom_nav-container .navbar-nav.ml-auto {
    justify-content: flex-end;
    margin-left: auto !important;
  }
  
  .dropdown-menu {
    right: 0;
    left: auto;
  }
}

/* make the arrow next to the dropdown menu not visible */
.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  display: none;
}



/*end header section*/
video {
  max-height: 100%;
  width: 100%; /* Full width */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.features_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  background-color: #ffffff;
  color: #000000;
  padding: 8rem 0;
  margin: 0;
}

.features_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 90%;
  max-width: 1400px;
  padding: 2rem;
  box-sizing: border-box;
}

.features_heading {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a1a1a;
  position: relative;
}

.features_heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2c7873;
  border-radius: 2px;
}

.features_card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.features_card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 0;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.features_card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.features_card:hover img {
  transform: scale(1.1);
}

.features_card_content {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Solution Section */
.solution {

  padding: 6rem 0;
  color: #f8f9fa;
}

.solution_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.solution_heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.solution_heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #2c7873;
  border-radius: 2px;
}

.solution_tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  width: 100%;
}

.tile {
  background: #ffffff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  min-width: 0; /* Prevents tiles from overflowing */
}

.tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tile img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.tile:hover img {
  transform: scale(1.1);
}

.tile h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.tile_content {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .solution_tiles {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  
}

@media (max-width: 768px) {
  .solution_tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .solution_tiles {
    grid-template-columns: 1fr;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .features_container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features_heading,
  .solution_heading {
    font-size: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  
  .features_container {
    grid-template-columns: 1fr;
  }
  .features_heading,
  .solution_heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .features_section {
    padding: 2rem 0;
  }
  .features_card img {
    width: 60px;
    height: 60px;
  }
  .features_card h3 {
    font-size: 1.1rem;
    margin: 1rem 0;
  }
  .solution_tiles {
    grid-template-columns: 1fr;
  }
}

.about_section {
  height: 100%;
  background-color: #ffffff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* padding: 5rem 0; */
}

#chartdiv {
  width: 100%;
  height: 500px;
  margin: 10rem 0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0);
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  #chartdiv {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .about_section {
    height: auto;
    min-height: 120vh; /* Increase as needed to fit both columns stacked */
    padding: 3rem 0;
    display: block;
  }
  .about_section .row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  #chartdiv {
    height: 350px; /* Increase map height for mobile if needed */
    min-height: 250px;
    margin-bottom: 2rem;
  }
  .key_benefits {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  #chartdiv {
    height: 400px;
    margin: 1rem 0;
  }
}

@media (max-width: 576px) {
  #chartdiv {
    height: 350px;
    margin: 0.5rem 0;
  }
}

/* Ensure Leaflet map container is visible */
.leaflet-container {
  width: 100% !important;
  height: 70% !important;
  background: transparent;
}

/* Style for country markers */
.country-marker-icon {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.country-marker-icon:hover {
  transform: scale(1.25);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.country-marker-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Style for tooltips */
.stats-tooltip {
    background-color: #464081 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
    border-radius: 5px !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    z-index: 1000 !important;
    opacity: 1 !important;
}

.stats-tooltip .leaflet-tooltip-content {
    line-height: 1.6 !important;
    margin: 0 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.leaflet-tooltip-top.stats-tooltip::before {
    border-top-color: #464081 !important;
}

/* Ensure tooltips are above other elements */
.leaflet-tooltip {
    z-index: 1000 !important;
    pointer-events: none !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.leaflet-tooltip-pane {
    z-index: 1000 !important;
}

.key_benefits {
  max-width: 800px;
  margin: 2rem auto;
}

.key_benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.key_benefits li {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  color: #fff !important;
  text-shadow: 0 2px 8px #000, 0 0 2px #000;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.key_benefits li strong {
  font-weight: 700;
  display: inline;
}

.key_benefits li.visible {
  opacity: 1;
  transform: translateY(0);
}

.about_section .about_heading_container {
  padding: 20px;
  align-items: center;
  text-align: center;
}

.about_section .about_heading_container h2 {
  font-style: Arial;
  font-size: 40px;
  font-weight: 700;
}

.detail_heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 2rem 0;
  color: #ffffff;
}

.detail_heading .gradient-numbers {
  background: linear-gradient(45deg, #0066ff, #6600ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.detail_p_mt {
  margin-top: 15px;
  margin-left: 10%;
  font-size: 40px;
}

.about_section .img-box {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about_section .img-box img {
  width: 100%;
}

.about_section .detail-box p {
  color: #ffffff;
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #2c7873;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #2c7873;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: #2c7873;
}

.podium_section {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 200px; /* Adjust height as needed */
  margin: 50px 0;
}

.podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 80%;
}

.podium_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
}

.podium_number {
  position: absolute;
  top: -30px; /* Adjust position as needed */
  background-color: #2c7873;
  color: #ffffff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
}

#first_place {
  height: 200px; /* Adjust height as needed */
}

#second_place {
  height: 150px; /* Adjust height as needed */
}

#third_place {
  height: 100px; /* Adjust height as needed */
}

.podium_content {
  margin-top: 20px;
}

@media (max-width: 992px) {
  .about_section .row {
    text-align: center;
    justify-content: center;
    align-content: center;

  }
  .about_section .row .heading_container {
    text-align: center;
  }
  .about_section {
    width: 100%;
  }
  .about_section .col-md-5 offset-md-1 .detail-box pr-md-2 .heading_container {
    text-align: center;
  }
}

.product_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-top: 2rem;
}

.contact-cta-container {
  margin: 0 auto;
}

.product_card {
  background-color: #ffffff;
  color: #000000;
  border-radius: 50%; /* Make the card circular */
  padding: 25px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  width: 300px; /* Set equal width and height */
  height: 300px; /* Set equal width and height */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 0.5px; /* Add 1px gap between boxes */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* Center text inside the circle */
  position: relative;
}

@media (max-width: 992px) {
  .product_card {
    width: 300px;
    height: 300px;
    margin: 0;
  }
  .product_card h3 {
    font-size: 15px;
    font-style: bold;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
  }
  
  .product_card img {
    list-style-type: none;
    padding: 0;
    width: 75%;
  }
}

.product_card:hover {
  transform: scale(1.05); /* Scale up on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

}

.product_card .img {
  transition: opacity 0.3s ease-in-out;
  max-width: 55%;
}

.product_card.connect-card {
  position: relative;
}

.product_card.connect-card .hover-img {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  /* hover image size larger */
  max-width: 75%;
 }

.product_card.connect-card:hover .img {
  opacity: 0;
}

.product_card.connect-card:hover .hover-img {
  opacity: 1;
}

/* .product_card.conquer-card .hover-img {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -10%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  // hover image size larger //
  width: 100%;
 }

.product_card.conquer-card:hover .img {
  opacity: 0;
}

.product_card.conquer-card:hover .hover-img {
  opacity: 1;
} */

.product_card h3 {
  font-size: 30px;
  font-style: bold;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.product_card img {
  list-style-type: none;
  padding: 0;
  max-width: 150px;
}

.product_card_button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  cursor: pointer;
}

.product_card a {
  color: inherit; /* Inherit color from parent */
  text-decoration: none; /* Remove underline */
}

.product_card ul li {
  margin: 5px 0;
  font-size: 14px;
}



.product_card button:hover {
  background-color: #2c7873;
}

.contact_section {
  position: relative;
  background-color: #f9f9f9;
}

.contact_section .heading_container {
  margin-bottom: 45px;
}

.contact_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_section .form_container {
  padding: 45px;
}

.contact_section .form_container .form-control {
  font-size: 2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  background: #f7f7f7;
  transition: border 0.2s, box-shadow 0.2s;
  color: #222;
  box-shadow: 0 2px 8px rgba(44,120,115,0.06);
  margin-bottom: 1.2rem;
}

.contact_section .form_container .form-control:focus {
  border: 2px solid #2c7873;
  box-shadow: 0 0 0 3px rgba(44,120,115,0.13);
  background: #fff;
}

.contact_section .form_container .form-control::-webkit-input-placeholder {
  color: #565554;
}

.contact_section .form_container .form-control:-ms-input-placeholder {
  color: #565554;
}

.contact_section .form_container .form-control::-ms-input-placeholder {
  color: #565554;
}

.contact_section .form_container .form-control::placeholder {
  color: #565554;
}

.contact_section .form_container .form-control.message-box {
  height: 95px;
}

.contact_section .form_container .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact_section .form_container .btn_box button {
  border: none;
  display: inline-block;
  padding: 12px 55px;
  background-color: #2c7873;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #2c7873;
  width: 100%;
}

.contact_section .form_container .btn_box button:hover {
  background-color: transparent;
  color: #2c7873;
}

.contact_section .img-box {
  overflow: hidden;
}

.contact_section .img-box img {
  min-width: 100%;
}

.client_section .client_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: auto;
  margin-top: 15px;
}

.client_section .client_container .img-box {
  width: 125px;
}

.client_section .client_container .img-box img {
  width: 100%;
  border-radius: 5px;
}

.client_section .client_container .detail-box {
  margin-top: 25px;
}
/* Powered By Section */
.client_section .client_container .detail-box h5 {
  color: #ffffff;
  margin-bottom: 15px;
}

.client_section .client_container .detail-box p {
  color: #ffffff;
  margin: 20px;
}

.client_section .client_container .detail-box span {
  margin-top: 25px;
  color: #1eb36a;
  font-size: 28px;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 0px;
  background-color: #000000;
  opacity: 1;
  top: 28%;
  color: #ffffff;
  font-size: 12px;
  margin: 0 2.5px;
}

.client_section .carousel-control-prev {
  left: 15%;
}

.client_section .carousel-control-next {
  right: 15%;
}

.client_section .carousel_btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info_section {
  background-color: #000000;
  color: #ffffff;
  padding: 45px 0 10px 0;
}

.info_section h5 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.info_section .info_top {
  margin-bottom: 25px;
}

.info_section .info_top .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_section .info_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 600px;
}

@media (max-width: 992px){ /* Make the content appear one on top of the other on smaller screens */
  .info_section .info_contact{
    min-width: 245px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    align-items: center;
  }

}

.info_section .info_contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
}

.info_section .info_contact a i {
  margin-right: 5px;
  font-size: 20px;
}

.info_section .info_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
}

.info_section .info_menu li { /*links */
  list-style-type: none;
  margin-bottom: 10px;
}

.info_section .info_menu li a { /*links */
  color: #ffffff;
}

/* footer section*/
.footer_section {
  background: black;
  color: #ffffff;
  padding: 4rem 0 2rem;
  position: relative;
  margin-top: 2rem;
}

.footer_content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer_logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer_logo h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.footer_links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer_column h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer_column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 30px;
  height: 2px;
  background: #2c7873;
}

.footer_column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_column ul li {
  margin-bottom: 0.75rem;
}

.footer_column ul li a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer_column ul li a:hover {
  color: #2c7873;
}

.footer_bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer_bottom p {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 992px) {
  .footer_content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer_links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer_links {
    grid-template-columns: 1fr;
  }

  .footer_section {
    padding: 3rem 0 1.5rem;
  }
}

/* Dropdown menu styling */
.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.8);
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
  display: block;
  visibility: hidden;
  position: fixed;
  right: 80px;  /* Offset from right edge */
  top: 60px;    /* Offset from top to appear below header */
  transform: none !important;
  min-width: 200px;
  max-width: 95vw;  /* Prevent overflow on mobile */
  z-index: 2001;
}

/* Show dropdown menu */
.dropdown.show .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Dropdown items styling */
.dropdown-item {
  color: white !important;
  padding: 8px 20px;
  transition: background-color 0.2s ease;
}

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

/* Mobile adjustments */
@media (max-width: 992px) {
  .navbar-nav.d-none {
    display: none !important;
  }
  .navbar-nav.d-lg-none {
    display: flex !important;
  }
}

@media (min-width: 992px){
  .navbar-nav.d-none{
    display: flex !important;
  }
  navbar.nav.d-lg-none{
    display: none !important;
  }
}

.solution_product {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.solution_product img {
  width: 50vw;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.3s;
  will-change: transform, opacity;
}

.solution_product img.visible {
  visibility: visible;
  opacity: 1;
  animation: fadeInUp 1s ease forwards, levitate 3s ease-in-out infinite;
  transition: visibility 0s linear 0s;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .solution_product img.racebook_app {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .solution_product img.racebook_app {
    width: 90%;
  }
}

/* Key Benefits Styles */
html {
  scroll-behavior: smooth;
}

.key_benefits .benefit {
  /* margin-left: 5%; */
  font-size: 18px;
  font-weight: 200;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
  line-height: 1.6;
  margin-bottom: 5%;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.key_benefits li.visible {
  opacity: 1;
  transform: translateX(0);
}

 .key_benefits .benefit:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
} 

#chartdiv {
  height: 600px;
  width: 100%;
}

.testimonials-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.testimonial {
  display: none;
  animation: fade 1.5s ease-in-out;
}
.testimonial-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial .img-box {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #000000
}
.testimonial .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding:3px;
}
.testimonial .detail-box {
  color: #ffffff;
}
.testimonial .detail-box h5 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #ffffff;
}
.testimonial .detail-box .role {
  font-size: 16px;
  color: #9e9e9e;
  margin-bottom: 20px;
}
.testimonial .detail-box .quote {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
.dots-container {
  text-align: center;
  padding: 20px 0;
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.dot.active {
  background-color: #2c7873;
}
.testimonial.active {
  display: block;
  opacity: 1;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .testimonial-content {
    padding: 20px;
  }
  
  .testimonial .detail-box h5 {
    font-size: 20px;
  }
  
  .testimonial .detail-box .quote {
    font-size: 16px;
  }
}

.Product_section.layout_padding {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 1rem;
  margin-top: 2rem;
}

.Product_section .heading_container.heading_center {
  margin-top: 4rem;
}

.product-image-area {
  width: 100%;
  max-width: 1255px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Maintain aspect ratio: 1255/803 ≈ 1.56 */
  aspect-ratio: 1255 / 803;
  background: transparent;
}

.product-image-area img {
  width: 50vw;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.3s;
  will-change: transform, opacity;
}

.product-image-area img.visible {
  visibility: visible;
  opacity: 1;
  animation: fadeInUp 1s ease forwards, levitate 3s ease-in-out infinite;
  transition: visibility 0s linear 0s;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .product-image-area img.racebook_app {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .product-image-area img.racebook_app {
    width: 90%;
  }
}

.Subheading {
  padding: 1.5rem 0;
  text-align: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.15rem;
  max-width: 700px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.01em;
}

@media (max-width: 992px) {
  .about_section {
    height: auto;
    min-height: 100vh;
    padding: 3rem 0;
  }

  #chartdiv {
    height: 300px;
  }

  .key_benefits {
    margin: 1rem auto;
  }

  .key_benefits li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }

  .Product_section.layout_padding {
    min-height: auto;
    padding: 3rem 0;
  }

  .product_section {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
  }

  .product_card {
    width: 300px;
    height: 300px;
    margin: 0;
  }

  .product-image-area {
    aspect-ratio: auto;
  }

  .product-image-area img {
    width: 100%;
  }

  .product-image-area h2 {
    font-size: 1.75rem;
    margin: 1rem 0;
  }

  .Subheading {
    font-size: 1rem;
    padding: 1rem 0;
    margin: 0 auto 1rem auto;
  }
}

@media (max-width: 576px) {

  #chartdiv {
    height: 250px;
  }

  .key_benefits li {
    font-size: 0.9rem;
    padding: 0.75rem;
  }

  .product_card {
    width: 225px;
    height: 225px;
  }

  .product_card img {
  .product-card h3 {
    font-size: 1.25rem;
  }

  .product-image-area img {
    width: 100%;
  }

  .product-image-area h2 {
    font-size: 1.5rem;
  }
}
}

@media (max-width: 768px) {
  .features_section {
    padding: 2rem 0;
  }
  .features_heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .features_card img {
    width: 60px;
    height: 60px;
  }
  .features_card h3 {
    font-size: 1.1rem;
    margin: 1rem 0;
  }
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.5); /* Optional: white border */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.contact-cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  background: linear-gradient(135deg, #181818 0%, #232526 100%);
  text-align: center;
}

.contact-cta-container {
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 100%;
}

.contact-cta-container h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-cta-desc {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2c7873;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(44,120,115,0.15);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.contact-cta-btn:hover, .contact-cta-btn:focus {
  background: #1a5e56;
  box-shadow: 0 4px 16px rgba(44,120,115,0.25);
  transform: translateY(-2px) scale(1.03);
}

.cta-arrow {
  stroke: #fff;
  transition: stroke 0.2s;
}

.contact-cta-btn:hover .cta-arrow {
  stroke: #FFD700; /* Gold accent on hover */
}

@media (max-width: 600px) {
  .contact-cta-container {
    padding: 1.5rem 0.5rem;
    max-width: 95vw;
  }
}

.contact_section .contact-form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44, 120, 115, 0.12), 0 1.5px 6px rgba(0,0,0,0.06);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 50%;
  margin: 2rem auto 2rem auto;
  color: #222;
}

.contact_section .contact-form-card .form-group {
  margin-bottom: 1.5rem;
}

.contact_section .contact-form-card .form-control {
  font-size: 1.15rem;
  padding: 1.1rem 1.2rem;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  background: #f7f7f7;
  transition: border 0.2s, box-shadow 0.2s;
  color: #222;
  box-shadow: 0 2px 8px rgba(44,120,115,0.06);
  margin-bottom: 1.2rem;
}

.contact_section .contact-form-card .form-control:focus {
  border: 2px solid #2c7873;
  box-shadow: 0 0 0 3px rgba(44,120,115,0.13);
  background: #fff;
}

.contact_section .contact-form-card textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact_section .contact-form-card .btn-primary {
  margin-top: 0.5rem;
  font-size: 1.15rem;
  padding: 0.9rem 2.5rem;
  border-radius: 10px;
}

.contact-hero {
  background: linear-gradient(90deg, #2c7873 0%, #1eb36a 100%);
  color: #fff;
  padding: 8.5rem 0 2rem 0; /* Increased top padding for more space below header */
  text-align: center;
}
.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.contact-hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.contact-main .contact-flex {
  display: flex;
  height: 60vh;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.info-card {
  background: #fff;
  color: #2c7873;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,120,115,0.08);
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.info-card i {
  font-size: 1.5rem;
}
@media (max-width: 900px) {
  .contact-main .contact-flex {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-info-cards {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}

.contact-split {
  display: flex;
  min-height: 70vh;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 0;
}

.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 4rem 2.5rem 4rem 6vw;
  background: linear-gradient(135deg, #2c7873 0%, #1eb36a 100%);
  color: #fff;
  min-width: 320px;
  max-width: 480px;
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  box-shadow: 0 8px 32px rgba(44, 120, 115, 0.12);
}

.detail-item {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  gap: 1rem;
}
.detail-item i {
  font-size: 1.6rem;
  color: #fff;
}

.contact-form-area {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4rem 6vw 4rem 2.5rem;
  background: #fff;
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
  min-width: 340px;
}

.contact-form-card {
  width: 100%;
  max-width: 70%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44, 120, 115, 0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  color: #222;
}

.contact-form-card .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
  .contact-split {
    flex-direction: column;
    border-radius: 0;
  }
  .contact-details, .contact-form-area {
    border-radius: 0;
    max-width: 100%;
    padding: 2rem 1rem;
    align-items: flex-start;
  }
  .contact-form-card {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
  }
  .contact-form-card .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Modern Contact Split Styles */
.contact-split-modern {
  display: flex;
  min-height: 60vh;
  background: #181c23;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin: 10vh auto;
  max-width: 1100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.contact-split-left {
  flex: 1;
  background: linear-gradient(135deg, #181c23 80%, #232a34 100%);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 320px;
}
.contact-info-block {
  margin-bottom: 36px;
}
.contact-info-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 1px;
}
.contact-info-block p,
.contact-link {
  font-size: 1rem;
  color: #bfc9d1;
  margin: 0;
}
.contact-link {
  color: #bfc9d1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-link.green:hover {
  color: #00b05b;
}
.contact-split-right {
  flex: 2;
  background: #fff;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-split-right h2 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #181c23;
  margin-bottom: 32px;
  text-align: center;
}
.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form-modern .form-row {
  display: flex;
  gap: 16px;
}
.contact-form-modern input,
.contact-form-modern textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid #e0e3e7;
  border-radius: 6px;
  background: #f7f9fa;
  color: #181c23;
  outline: none;
  transition: border 0.2s;
  width: 100%;
}
.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
  border-color: #00e676;
}
.contact-form-modern textarea {
  min-height: 100px;
  resize: vertical;
}
.btn-submit {
  background: #050505;
  color: #fff;
  border: none;
  padding: 14px 0;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.btn-submit:hover {
  background: #00b05b;
}
@media (max-width: 900px) {
  .contact-split-modern {
    flex-direction: column;
    min-height: unset;
  }
  .contact-split-left, .contact-split-right {
    padding: 32px 16px;
    min-width: unset;
  }
}

@media (max-width: 600px), (max-height: 600px) {
  .country-marker-icon {
    width: 14px !important;
    height: 14px !important;
  }
  .country-marker-icon img {
    width: 100% !important;
    height: 100% !important;
  }
  .stats-tooltip {
    font-size: 10px !important;
    padding: 4px 6px !important;
  }
}

@media (max-width: 600px) and (orientation: landscape) {
  .about_section {
    width: 80%;
    max-width: 80vh !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .logo-carousel-track {
    gap: 1rem;
    animation-duration: 15s;
    min-width: calc(200% + 1rem);
  }
}
