* {
  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;
  }
}


/* about 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;
}

.about-content {
  flex: 1 1 50%;
  color: white;
  max-width: 800px;
}

.about-content h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
}

.about-content h2 span {
  color: #FFD700;
}
.about-content h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
}

.about-content h1 span {
  color: #FFD700;
}

.about-content p {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
}

/* 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;
  }

  .about-content{
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Reduce heading size just in case it’s shown somewhere else */
  .about-content h2 {
    font-size: 16px;
  }

  /* Hide the desktop heading and paragraph */
  .desktop-heading,
  .desktop-intro {
    display: none;
  }

  /* Show only the mobile version text */
  .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 */

  }
}




/* ***************** */
.betting-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 40px;
  background: url('images/Who-we-are.webp') center/cover no-repeat;
  gap: 40px;
  flex-wrap: wrap;
  min-height: 800px;
}

.betting-text {
  flex: 1 1 50%;
  font-family: Arial, sans-serif;
  color: #014421;
  max-width: 800px;
  text-align: left;
  padding-left: 30px;
  margin-left: 100px;
  margin-right: auto;
}

.betting-text h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.betting-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: justify;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .betting-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 16px;
    min-height: auto;
    background-position: top center;
  }

  .betting-text {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0; /* Remove left padding */
    margin: 0;  /* Remove left margin */
  }

  .betting-text h2 {
    font-size: 22px;
    line-height: 1.3;
    text-align: left;
  }

  .betting-text p {
    font-size: 14px;
    text-align: justify;
  }
}





/* *********************** */
.gambling-section {
  background: url('images/about_back.webp') right center/cover no-repeat;
  padding: 60px 20px;
  color: white;
  font-family: Arial, sans-serif;
}

.gambling-section .content {
  max-width: 600px;
  margin-left: 150px;
  margin-right: auto;
  text-align: left;
}

.gambling-section h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  text-align: justify;
  line-height: 1.6;
}

.gambling-section p {
  font-size: 14px;
  margin-top: 20px;
  font-weight: 500;
  text-align: justify;
  line-height: 1.6;

}

.gambling-section ul {
  margin-top: 20px;
  padding-left: 20px;
  list-style: none;
  text-align: justify;
}

.gambling-section ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 25px;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

.gambling-section ul li::before {
  content: '•';
  color: yellow;
  position: absolute;
  left: 0;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .gambling-section .content {
    margin: 0 20px;
    max-width: 100%;
  }
}


/* ******************************** */

/* section 8 */

.two-column-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.left-content {
  flex: 1 1 500px;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

.left-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #000;
  line-height: 1.4;
  text-transform: uppercase;
}

.left-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: justify;
}

.right-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.right-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .two-column-section {
    flex-direction: column;
    padding: 20px;
  }

  .left-content h2 {
    font-size: 26px;
  }

  .left-content p {
    font-size: 16px;
  }

  .right-image {
    margin-top: 20px;
  }
}


/* Slider setup */
/* our partner */
.partners-section h2 {
  color: black;
  text-align: center;
  font-size: 32PX;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
}

.partners-section p {
  color: black;
  text-align: center;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  width: calc(250px * 10); /* 10 slides */
  animation: scroll 25s linear infinite;
}

.slide {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
}

.slide img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.1);
}

/* Sliding animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* *************************************** */

/* quote section

.awesomcart-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #055d5d;
  padding: 40px 30px;
  gap: 30px;
}

.awesomcart-col {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-col {
  align-items: flex-start;
}

.logo {
  width: 300px;
  height: auto;
}


.facts-col h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.facts-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facts-col li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #ffffff;
}

.facts-col li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999;
}

CTA Column

.cta-col {
  align-items: flex-end;
  text-align: right;
}

.cta-col h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.quote-btn {
  background-color: #fcdc0d;
  color: #007f3e;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.quote-btn:hover {
  background-color: #e5c300;
}

Responsive: Stack Columns


@media (max-width: 768px) {
  .awesomcart-section {
    flex-direction: column;
    text-align: center;
  }

  .logo-col,
  .facts-col,
  .cta-col {
    align-items: center !important;
    text-align: center;
  }

  .cta-col h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .quote-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
} */

/* **************************************** */
/*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);
  }
}