* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: white;
  color: white;
  overflow-x: hidden;
}
/* navigation bar */
.navbar {
  background-color: #0e5d0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;

  /* Fixed position to stay on top */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* stay above other elements */
}


.navbar-logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Brush Script MT', cursive;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.navbar-menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.navbar-menu a {
  color: white;
  text-decoration: none;
  padding: 14px 10px;
  display: block;
  transition: background 0.3s;
  border-radius: 24px;
}

.navbar-menu a:hover {
  background-color: #e3e027;
  color: #111;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu a {
    width: 100%;
  }

  .navbar-toggle {
    display: block;
  }
}

/* ************************** */
/* b2c header */
.about-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 40px;
  flex-wrap: wrap;
  background: url('images/about.webp') center/cover no-repeat;
  min-height: 600px;
  position: relative;
}

.about-content {
  flex: 1 1 50%;
  color: white;
  max-width: 800px;
}

.about-content h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
}

.about-content h2 span {
  color: #FFD700;
}

.about-content p {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.5;
}

/* Button Styling */
.demo-button {
  padding: 20px 30px;
  background-color: #fcdb19;
  color: #007a0d;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-top: 60px;
}

/* Hide mobile intro by default */
.mobile-intro {
  display: none;
}

/* Responsive: Show only "This is us" on small screens */
@media screen and (max-width: 768px) {
  .about-header {
    background-size: contain;
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    min-height: auto;
    position: relative;
  }

  .about-content,
  .about-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-image {
    margin-top: 30px;
  }

  .about-content h1 {
    font-size: 36px;
  }

  /* Hide desktop version text */
  .desktop-heading,
  .desktop-intro {
    display: none;
  }

.mobile-intro {
  display: block;
  font-size: 18px;
  margin-top: 20px;
  font-weight: 600;
  color: white;
  text-align: left;
  margin-left: 0;
  padding-left: 0;
  width: 100%;
  position: relative;
  left: -70px; /* adjust this based on the .about-header padding */
}


  /* Mobile-specific button styling */
  .demo-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
    padding: 10px 18px;
    margin-top: 0;
  }
}




/* ctfc section */
.features-section {
  padding: 50px 20px;
  background-color: #f0f0f0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-box {
  background-color: #024b22;
  color: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  background-color: #046b32;
}

.icon-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.icon-heading svg {
  flex-shrink: 0;
}

.icon-heading h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}


/* ******************************************* */
/* sliding the images ony by one as it was */
/* include the js in b2c.js */

/* Section Styling */
.sport-betting {
  padding: 40px 20px;
  background-color: green;
  position: relative;
  overflow: hidden;
}

/* Heading and Intro */
.section-heading {
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 16px;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto;
}

/* Container and Track */
.betting-container {
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: slideLeft 60s linear infinite;
  gap: 16px;
}

/* Card Styles */
.betting-card {
  flex-shrink: 0;
  width: 240px;
  border-radius: 8px;
  overflow: hidden;
}

.betting-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Button */
.button-content {
  text-align: center;
  margin-top: 20px;
}

.more-details-bottom-button {
  background-color: yellow;
  color: #20753b;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'Arial', sans-serif;
  cursor: pointer;
}

/* Animation */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 22px;
  }

  .betting-card {
    width: 180px;
  }

  .slider-track {
    gap: 12px;
  }

  .more-details-bottom-button {
    font-size: 14px;
    padding: 10px 18px;
  }
}
/* **************************************************** */

/*.sport-betting {
  padding: 40px 20px;
  background-color: green;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 16px;
  color: #f2f2f2;
}

.betting-container {
  overflow: hidden;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 15px;
  will-change: transform;
}

.betting-card {
  min-width: 250px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: none;
}

.betting-card img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.button-content {
  text-align: center;
  margin-top: 20px;
}

.more-details-bottom-button {
  background-color: yellow;
  color: #20753b;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  font-family: 'Times New Roman', Times, serif;
  padding: 12px 20px;
}

 Responsive


@media screen and (max-width: 768px) {
  .section-heading h2 {
    font-size: 24px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .betting-card {
    min-width: 180px;
  }

  .more-details-bottom-button {
    font-size: 14px;
    padding: 10px 16px;
  }
}*/

/* **************************************** */

.platform-features {
  padding: 40px;
  background-color: #f9f9f9;
}

.platform-features h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  color: #014d00;
}

.platform-features p {
    color: black;
    text-align: center;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.platform-card {
  background: #014a07;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.platform-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.platform-card h2::before {
  content: '✔';
  color: yellow;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
}
/* ************************************** */
.steps-section {
  padding: 40px 20px;
  text-align: center;
  max-width: 1300px;
  margin: auto;
}

.main-heading {
  font-size: 32px;
  font-weight: 800;
  color: #004400;
}

.sub-heading {
  margin-top: 10px;
  font-size: 16px;
  color: #444;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.step-box {
  background-color: #006400;
  color: #fff;
  border-radius: 10px;
  flex: 1;
  padding: 20px;
  position: relative;
  min-width: 180px;
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-5px);
}

.step-box.last {
  background-color: #003300;
}

.circle {
  background-color: #195c1c;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  margin: auto;
}

.circle.yellow {
  background-color: #f6c501;
  color: #000;
}

.step-title {
  margin-top: 15px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3em;
}

.arrow {
  display: block;
  font-size: 24px;
  margin-top: 10px;
  color: #fff;
}


/* section 14, banner */

.banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-content img {
  width: 100%;
  max-width: 1600px; /* Controls max stretch size */
  height: auto;
  display: block;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .banner-content img {
    max-width: 100%;
  }
}






/*footer */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

.site-footer {
  background-color: #007a0d;
  color: white;
  padding: 30px 20px;
  font-family: sans-serif;
  text-align: center;
}

.footer-top {
  margin-bottom: 20px;
}

.service-text {
  font-size: 18px;
  margin-bottom: 10px;
}

.flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
}

.footer-middle {
  background-color: #002c0f;
  padding: 15px 20px;
  margin: 30px auto 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
}

.footer-logo {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.footer-logo span {
  color: #ffc107;
}

.social-icons a {
  margin: 0 8px;
  color: white;
  font-size: 20px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 8px;
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #007a0d;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  margin-top: 10px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .social-icons {
    margin-top: 10px;
  }
}

.floating-support-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  animation: pulse 1.5s infinite;
}

.floating-support-btn:hover {
  transform: scale(1.1);
  background-color: #1ebd5a;
}

.floating-support-btn i {
  line-height: 60px;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}