/* ================== Global Reset ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

/* ================== NAVBAR ================== */
.navbar {
  background-color: #0e5d0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-logo img {
  height: 40px;
  width: auto;
}


.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,
.navbar-menu a.active {
  background-color: #fcdb19;
  color: #111;
}

/* ✅ Mobile Navbar Adjustments */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 6px 14px; /* Reduced navbar height */
  }

  .header-logo img {
    height: 32px; /* Smaller logo for mobile */
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
    background-color: #0e5d0a;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu a {
    width: 100%;
    padding: 12px 10px;
    font-size: 16px;
  }
}

/* ================== SLIDER ================== */
.swiper-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0 20px;
}

/* ✅ Image now uses <img> */
.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Reduced to prevent overflow */
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
}

/* ================== SLIDER CONTENT ================== */
.slider-content {
  max-width: 900px;
  color: white;
  padding-left: 80px;
  z-index: 5;
  position: relative;
}

.slider-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-top: 120px;
  line-height: 1.2;
}

.slider-content h1 span {
  font-size: 70px;
  color: #00cc66;
  font-weight: 900;
}
.slider-content h2 {
  font-size: 60px;
  font-weight: 700;
  margin-top: 120px;
  line-height: 1.2;
}

.slider-content h2 span {
  font-size: 70px;
  color: #00cc66;
  font-weight: 900;
}

.slider-content p {
  font-size: 22px;
  margin: 25px 0 35px;
  line-height: 1.8rem;
  opacity: 0.8;
  padding-bottom: 50px;
}

.btn-cta {
  background: #fcdb19;
  color: #0e5d0a;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 600;
}

.btn-cta:hover {
  background: #00994d;
  color: white;
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* ================== MOBILE SLIDER STYLING ================== */
@media screen and (max-width: 768px) {
  .hero-slider {
    height: auto;
    min-height: auto;
    margin-top: 70px; /* spacing for navbar */
    padding: 0;
  }

  .swiper-container {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: auto !important;
    aspect-ratio: 16/9;
  }

  .swiper-slide {
    height: auto;
    aspect-ratio: 16/7;
  }

  .slider-content {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    width: 90%;
    padding-left: 0;
  }

  .slider-content h1 {
    font-size: 20px;
    margin-top: 0;
    /* line-height: 1.3; */
    color: #fff;
    display: block;
    padding-bottom: 20px;
  }

  .slider-content h1 span {
    font-size: 22px;
    color: #00cc66;
    /* display: block; */
  }
  .slider-content h2 {
    font-size: 20px;
    margin-top: 0;
    /* line-height: 1.3; */
    color: #fff;
    display: block;
    padding-bottom: 20px;
  }

  .slider-content h2 span {
    font-size: 22px;
    color: #00cc66;
    /* display: block; */
  }

  .slider-content p {
    display: none;
  }

  .btn-cta {
    padding: 8px 16px;
    font-size: 12px;
    margin-top: 12px;
    border-radius: 14px;
    background: #fcdb19;
  }

  /* Hide arrows on small screens */
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .slider-content h1 {
    font-size: 18px;
  }

  .slider-content h1 span {
    font-size: 20px;
  }

  .btn-cta {
    padding: 8px 18px;
    font-size: 11px;
  }

  .swiper-container,
  .swiper-slide {
    height: 60vh;
  }
}








/* 3rd section */
.unique-grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  background-color: #ffffff;
  justify-items: center;
}

.unique-grid-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  width: 100%;
  max-width: 100px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.unique-grid-item:hover {
  transform: translateY(-3px);
}

.unique-grid-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

.unique-grid-item h2 {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.unique-grid-item a {
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 768px) {
  .unique-grid-section {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }
  .unique-grid-item {
    max-width: 140px;
    min-height: 140px;
  }
  .unique-grid-item img {
    width: 55px;
    height: 55px;
  }
  .unique-grid-item h2 {
    font-size: 14px;
  }
}









/* 4th section */
.custom-grid-section {
  padding: 50px 5%;
  font-family: Arial, sans-serif;
  background-color: #f0f2f5;
}

.custom-grid-header {
  text-align: center;
  margin-bottom: 40px;
}

.custom-grid-header h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-grid-header p {
  font-size: 16px;
  color: #333;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.5;
}

/* GRID LAYOUT */
.custom-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARD STYLE */
.custom-card {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.custom-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.custom-card p {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.4;
}

/* Buttons inside cards */
.custom-card-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.custom-card-buttons button {
   flex: 1;
  padding: 10px;
  border: none;
  color: white;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap; /* prevents button text from breaking */
  text-align: center;
}

.custom-card-buttons button:hover {
  opacity: 0.85;
}

/* Footer button */
.custom-grid-footer {
  text-align: center;
  margin-top: 30px;
}

.custom-more-details-btn {
  background-color: #fcdb19;
  color: #0f0418;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.custom-more-details-btn:hover {
  background-color: #f8c800;
}

/* ✅ Mobile responsiveness */
@media (max-width: 768px) {
  .custom-grid-section {
    padding: 30px 15px;
  }

  .custom-grid-header h3 {
    font-size: 22px;
  }

  .custom-card {
    max-width: 100%;
  }

  .custom-card-buttons {
    flex-direction: row;
  }
}


/* 5th section */

.sport-betting {
  padding: 40px;
  background-color: green;
  position: relative;
}

.betting-container {
  overflow: hidden;
  max-width: 980px; /* 3 cards * (400px + 30px margin-right) */
  margin: 0 auto;
}

.betting-container h2 {
  color: white;
  font-size: 36px;
  font-family: sans-serif;
  font-weight: bolder;
  margin-left: 40px;
  text-align: center;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  margin-top: 20px;
}

.betting-card {
  width: 300px;
  flex-shrink: 0;
  margin-right: 30px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.betting-card-top {
  width: 300px;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #132745;
}

.betting-card-top img {
  width: 100%;
  height: 100%;
}

.betting-card-bottom {
  padding: 15px;
  text-align: center;
}

.betting-card-bottom h2 {
  color: black;
  font-size: 24px;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  padding-right: 30px;
  padding-bottom: 10px;
}

.betting-card-bottom p {
  color: black;
  font-size: 14px;
}

.betting-controls {
  text-align: center;
  margin-top: 20px;
}

.betting-controls button {
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 24px;
  /* background-color: yellow; */
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.more-details-button {
  background-color: #fcdb19;
  color: #20753b;
  font-size: 18px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  font-family: 'Times New Roman', Times, serif;
  padding: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Products/Solutions slider – mobile fix */
/* Products/Solutions slider – mobile fix */
@media (max-width: 767px){
  body{overflow-x:hidden;}
  .sport-betting{padding:16px;}
  .betting-container{max-width:100%; overflow:hidden!important;}
  .betting-container h2{margin-left:0;font-size:28px;}
  .slider-track{margin-top:16px;padding:0!important;}

  /* make each card fill the screen */
  .betting-card{
    width:calc(100vw - 32px) !important; /* full width minus section padding */
    margin:0 auto 16px auto !important;
  }
  .betting-card-top{
    width:100%;
    height:80vw;
  }
  .betting-card-top img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .betting-card-bottom{padding:14px;}
  .betting-card-bottom h2{padding-right:0;font-size:22px;}
  .betting-card-bottom p{display:none;}  /* hide paragraph */

  .more-details-button{width:100%;}
}





/* section 6 */
.card-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  padding: 30px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure uniform height */
  min-height: 550px;
  overflow: hidden;
}

.card-top {
  height: 300px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-bottom {
  flex-grow: 1;
  padding: 16px;
  text-align: center;
  background-color: #fff;
  color: black;
  font-size: larger;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-bottom p {
  flex-grow: 1;
  margin-bottom: 0px;
  font-family: sans-serif;
  line-height: 1.2;
  font-size: 18px;
}
.card-bottom h3 {
  flex-grow: 1;
  margin-bottom: 0px;
  padding-bottom: 0px;
  text-align: center;
  
}

.top-content {
  padding: 16px;
  text-align: center;
  margin: 10px;
}
.button-content{
  padding: 0px;
  text-align: center;
  margin-bottom: 10px;
}
.more-details-bottom-button{
  background-color: #fcdb19;
  color: #20753b;
  font-size: 18px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  font-family: 'Times New Roman', Times, serif;
  padding: 15px;
  padding-left: 20px;
  padding-right: 20px;

}
@media screen and (max-width: 768px) {

  .card-bottom {
    flex-grow: 0 !important;      /* stop extra stretching */
    justify-content: flex-start !important;
    padding-bottom: 0 !important;
  }

  .card-bottom h3 {
    margin-bottom: 5px !important;
  }

  .button-content {
    margin-top: 5px !important;
  }

  /* Make button closer by removing extra space */
  .card {
    min-height: auto !important;  /* allow card to shrink */
    height: auto !important;
  }

  .card-top {
    height: 300px !important;     /* smaller image height */
  }

  /* .card-top img {
    width: 80%; 
    height: 60%;
   } */
}




/* section 7 */

.games-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #000;
}
a {
  text-decoration: none;
}

.section-title {
  color: #00ff88;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-subtitle {
  max-width: 900px;
  margin: 0 auto 40px;
  color: #ccc;
  font-size: 16px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
}

.game-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6);
  transition: transform 0.3s;
}

.game-card:hover {
  transform: scale(1.03);
}

.game-info {
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  padding: 20px;
  width: 100%;
  text-align: left;
}

.category {
  color: #00ff88;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 5px;
}

.game-card h3 {
  font-size: 20px;
  margin: 5px 0;
  color: #fff;
}

.desc {
  font-size: 14px;
  color: #ccc;
}

@media screen and (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 0 10px;
  }

  .game-card {
    width: 100%;
    height: 250px;
  }

  .desc {
    display: none;
  }
  .card-bottom p {
    display: none;
  }
}

/* section 7 */
/*
.games-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #000;
}

a {
  text-decoration: none;
}

.section-title {
  color: #00ff88;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-subtitle {
  max-width: 900px;
  margin: 0 auto 40px;
  color: #ccc;
  font-size: 16px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
}

.game-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6);
  transition: transform 0.3s;
}

.game-card:hover {
  transform: scale(1.03);
}

.game-info {
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  padding: 20px;
  width: 100%;
  text-align: left;
}

.category {
  color: #00ff88;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 5px;
}

.game-card h3 {
  font-size: 20px;
  margin: 5px 0;
  color: #fff;
}

.desc {
  font-size: 14px;
  color: #ccc;
}

@media screen and (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 0 10px;
  }

  .game-card {
    width: 100%;
    height: 250px;
  }
} */


/* 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;
}

.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;
  }
}

/* section 9, blog section */
section.blogs {
      padding: 60px 20px;
      text-align: center;
    }

    section.blogs h2 {
      font-size: 32px;
      color: #024b04;
      font-weight: 800;
      margin-bottom: 40px;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .blog-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-card img {
      width: 100%;
      height: auto;
      border-bottom: 1px solid #eee;
    }

    .blog-content {
      padding: 20px;
      text-align: left;
    }

    .blog-content h3 {
      font-size: 18px;
      margin: 0 0 12px;
      font-weight: 700;
    }

    .blog-meta {
      font-size: 14px;
      color: #555;
      display: flex;
      justify-content: space-between;
    }

    .blog-meta b {
      color: #000;
    }

    .view-button {
      margin-top: 40px;
    }

    .view-button a {
      background: #fcdb19;
      color: #004b00;
      padding: 12px 25px;
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s ease;
    }

    .view-button a:hover {
      background: #fcdb19;
    }

    @media(max-width: 500px) {
      section.blogs h2 {
        font-size: 24px;
      }

      .blog-content h3 {
        font-size: 16px;
      }
    }


/* contact us form and faq section 10 */

.faq-contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.form-section, .faq-section {
  flex: 1;
  min-width: 300px;
}

.form-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #003300;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin: 10px 0 5px;
  font-size: 14px;
}

label span {
  color: red;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.two-fields {
  display: flex;
  gap: 20px;
}

.two-fields > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Phone field styles */
#phone {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.form-field input,
.two-fields input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
}

.iti {
  width: 100%;
}


textarea {
  resize: none;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}

.checkbox input {
  margin-right: 10px;
  margin-top: 4px;
}

.checkbox a {
  color: #007BFF;
  text-decoration: none;
  font-size: 13px;
}

button {
  margin-top: 20px;
  background-color: #006644;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #004d33;
}

.faq-section h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

.faq-section p {
  font-size: 15px;
  margin-top: 6px;
  line-height: 1.5;
  color: #333;
}
/* ****************************************** */

/* 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;
  margin-bottom: 30px;
}

.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%); }
}

/* section 12 */

.content-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  color: #111;
  font-family: 'Segoe UI', sans-serif;
}

.content-wrapper h2 {
  color: #0e5d0a;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}

.content-wrapper h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.content-wrapper strong {
  font-weight: bold;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content-wrapper h2 {
    font-size: 26px;
  }

  .content-wrapper h3 {
    font-size: 18px;
  }

  .content-wrapper p {
    font-size: 15px;
  }
}

/* we re, section 13 */
.we-are-section {
  padding: 40px 20px;
  background-color: #ffffff;
}

.we-are-wrapper {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
}

.we-are-wrapper h2 {
  text-align: center;
  color: #0e5d0a;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.we-are-wrapper ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #0e5d0a;
}

.we-are-wrapper ul li {
  font-size: 16px;
  margin-bottom: 10px;
}


/* Notice Pop-Up */
/* Popup container */
.notice-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  animation: fadeIn 0.5s ease-in-out;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Header with green background */
.notice-header {
  background: linear-gradient(to right, #0f9d0f, #006400);
  color: white;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

/* Close button */
.close-btn {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 20px;
  cursor: pointer;
  color: white;
}

/* Body with white background */
.notice-body {
  background: white;
  padding: 15px 20px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}



/* 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%;
  }
}

/* section 15*/
/*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);
  }
}









