body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;

}

.text-green {
  color: #28a745; /* Green color */
}

.bg-green {
  background-color: #28a745;
}

.btn-green {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-green:hover {
  background-color: #28a745;
}

.hero {
  background: #28a745;
  color: white;
  text-align: center;
  padding: 80px 20px;
}


/* Image Section */
.image-section_index {
  width: 100%;
  height: 100vh; /* This ensures the section takes up the full viewport height */
  position: relative;
  overflow: hidden; /* Ensure no content is overflowing */
}

/* Image Container */
.image-container_index {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000; /* Fallback background color */
}

/* Make the image cover the entire section */
.image-container_index img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container */
  object-position: center; /* Centers the image */
  animation: fadeAndSkew 3s infinite; /* Apply the fade and skew animation */
}

/* Fade and Skew Effect */
@keyframes fadeAndSkew {
  0% {
    opacity: 1;
    transform: skew(0deg) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: skew(10deg, 5deg) scale(1.05); /* Skew and slight zoom effect */
  }
  100% {
    opacity: 1;
    transform: skew(0deg) scale(1);
  }
}




/* Pricing Section Styling */
.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.card-header {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.basic-plan {
  background-color: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.basic-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.premium-plan {
  background-color: #26862f;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0px 6px 12px rgba(28, 123, 196, 0.2);
}

.btn-basic, .btn-premium {
  font-size: 1rem;
  padding: 10px;
  margin-top: 15px;
}

.btn-basic {
  background-color: #26862f;
  color: white;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-basic:hover {
  background-color: #010114;
  color: white;
}

.btn-premium {
  background-color: #e7e7e7;
  color: rgb(0, 6, 12);
  border: none;
  transition: background-color 0.3s ease;
}

.btn-premium:hover {
  background-color: #acda52;
}

/* FAQ Styling */

/* FAQ Styling */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #0f4d1c;
}

.faq-item {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer; /* Makes the whole question clickable */
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: #e6f7e6; /* Light green hover effect */
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  color: black;
}

.faq-toggle {
  font-size: 18px;
  font-weight: bold;
  color: #128f16;
  margin-left: 10px;
}

.faq-answer {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 14px;
  color: darkgreen;
  display: none; /* Hidden by default */
}

.faq-answer.open {
  display: block;
}

/* General navbar styling */
.navbar {
  background-color: #f8f9fa;
  padding: 1rem 1.5rem;
  transition: transform 1s ease, opacity 1s ease;  /* Increased speed duration to 1s */
}

/* Navbar animation on load */
.navbar.hidden {
  transform: translateY(-100%);
}
/* Header Section - Navigation Bar */
header.navbar {
  background-color: #f8f9fa;
  transition: background-color 0.3s ease;
  animation: slideIn 0.5s ease-out; /* Animation on page load */
}

/* Navbar links styling */
.navbar-nav .nav-item .nav-link {
  color: #343a40;
  font-size: 16px;
  padding: 10px 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover Effect for all Links */
.navbar-nav .nav-item .nav-link:hover {
  background-color: #ddd;
  color: #007bff;
}

/* Styling for the "Sign Up" link (green button) */
.navbar-nav .nav-item .green {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

.navbar-nav .nav-item .green:hover {
  background-color: #218838; /* Darker green on hover */
  color: white;
}

/* Animation for the navigation bar */
@keyframes slideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Ensuring the modal button (Sign Up) stays prominent */
.navbar-nav .nav-item .green {
  font-weight: bold;
  color: #ffffff;
}


/* General Styles */
.stats-section {
  display: flex;
  justify-content: space-around; /* Distribute space between items */
  align-items: center; /* Align items vertically in the center */
  background-color: #128f16; /* Dark blue background */
  color: #ffffff; /* White text */
  padding: 40px 0;
  border-radius: 8px;
  gap: 20px; /* Add consistent spacing between items */
}

.stat-item {
  text-align: center; /* Center align text within each item */
}

.stat-item p {
  margin: 0;
  font-size: 16px; /* Smaller font size for the label */
  color: #7eef54; /* Lighter color for description */
}

.stat-item h2 {
  margin: 10px 0 0; /* Add spacing above and below the number */
  font-size: 36px; /* Make the numbers prominent */
  font-weight: bold;
}


/* Separator Lines */
.stat-item:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background-color: rgb(247, 251, 252);
  margin: 10px auto 0;
}

/* Bonus Section Styles */

/* BONUS SECTION */
.bonus-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background-color: #f9f9f9;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.text-content {
  flex: 1;
  max-width: 700px;
  padding-top: 100px;
}

.text-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.text-content h2 .highlight {
  color: #0f4d1c; /* Adjust to match your brand color */
}

.text-content p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

.image-content {
  flex: 1;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: none; /* 0 4px 8px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    margin-bottom: 20px;
  }

  .text-content h2 {
    font-size: 2rem;
  }
}
.features h2 {
  color: #0b691e;
}


/* Why Section*/
.why-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.why-section .text-section h2 {
  font-size: 2rem;
  color: #064b18;
  margin-bottom: 20px;
}

.why-section .text-section p {
  color: #1a1919;
  line-height: 1.6;
  margin-bottom: 30px;
}

.why-section .features {
  list-style: none;
  padding: 0;
}

.why-section .features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.why-section .features .icon {
  font-size: 1.5rem;
  color: #6c63ff;
  margin-right: 10px;
}

.image-container {
  text-align: center;
}

.image-container img {
  max-width: 100%;
  border-radius: 10px;
}

/* CSS for Testimonials*/
/* Testimonial Section Styles */
.testimonials {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #c1e1b7, #d8e6e3);
  color: rgb(17, 109, 30);
}

.testimonials h2 {
  margin-bottom: 30px;
  font-size: 24px;
  align-self: center;
  text-align: center;
}

.testimonial-container {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 90%;
  margin: 0 auto;
  flex-wrap: wrap; /* Enable wrapping for responsiveness */
}

.testimonial-card {
  flex: 0 0 30%;
  margin: 10px;
  padding: 20px;
  background-color: rgb(18, 112, 29);
  color: #eff4f5;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

.testimonial-card h3 {
  margin: 15px 0 5px;
  font-size: 18px;
}

.testimonial-card .country {
  font-size: 14px;
  color: #dceb4f;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .testimonial-container {
    flex-direction: column; /* Stack cards vertically */
    align-items: center;   /* Center-align cards */
  }

  .testimonial-card {
    flex: 0 0 100%; /* Make each card take full width */
    margin: 10px 0; /* Add vertical spacing between cards */
  }
}

@media screen and (max-width: 480px) {
  .testimonials h2 {
    font-size: 20px; /* Adjust heading size for smaller screens */
  }

  .testimonial-card h3 {
    font-size: 16px; /* Adjust card title size for smaller screens */
  }

  .testimonial-card {
    padding: 15px; /* Reduce padding for better spacing */
  }
}




/* Animation Styles 
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.testimonial-container {
  display: flex;
  animation: slide 70s linear infinite;
} */

/*Mission Section*/
/* Mission Section Styles */
/* Mission Section Styles */
.mission-section-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  color: #333;
  font-family: Arial, sans-serif;
}

.mission-section-custom .mission-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-section-custom .mission-image-column {
  flex: 1;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-section-custom .mission-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-section-custom .mission-text-column {
  flex: 1;
  padding: 20px;
  background-color: #26791d;
}

.mission-section-custom .mission-text-column h2 {
  font-size: 2rem;
  color: #def85e;
  /*color: #2c3e50;*/
  margin-bottom: 20px;
  line-height: 1.3;
}

.mission-section-custom .mission-brand-name {
/*  color: #3498db;*/
  color: #f4f4f5;
  font-weight: bold;
}

.mission-section-custom .mission-text-column p {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
}

.mission-section-custom .mission-text-column p br {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .mission-section-custom {
      padding: 20px 10px;
  }

  .mission-section-custom .mission-image-column,
  .mission-section-custom .mission-text-column {
      flex: 1 1 100%;
      padding: 10px;
  }

  .mission-section-custom .mission-text-column h2 {
      font-size: 1.8rem;
  }

  .mission-section-custom .mission-text-column p {
      font-size: 0.9rem;
  }
}



/* Location Coverage Section */
.coverage-section {
  padding: 60px 20px;
  background-color: #f9f9f9;

  /*background-color: #d5e5de; /* Light background for contrast */
}

.coverage-section .content-wrapper {
  display: flex;
  flex-wrap: wrap; /* Ensure responsiveness */
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.coverage-section .text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  
}

.coverage-section .text-content h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.coverage-section .text-content h2 .highlight {
  color: #15a732; /* Highlighted text in blue */
}

.coverage-section .text-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.coverage-section .image-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: center; /* Center image on smaller screens */
}

.coverage-section .image-content img {
  width: 100%;
  max-width: 500px; /* Prevent image from being too large */
  height: auto;
  border-radius: 8px; /* Add rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Ensure responsive design */
@media (max-width: 768px) {
  .coverage-section .content-wrapper {
    flex-direction: column;
    text-align: center; /* Align content for smaller screens */
  }

  .coverage-section .text-content,
  .coverage-section .image-content {
    max-width: 100%; /* Take full width on smaller screens */
  }
}


/*Footer */
/* Footer Styles */
.footer {
  background-color: #f2f4ff;
  padding: 40px 20px;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-left img.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer-left .footer-contact {
  margin-top: 20px;
  color: #162104;
}

.footer-left .flag-icon {
  width: 20px;
  margin-right: 5px;
}

.footer-middle {
  display: flex;
  flex: 2;
  justify-content: space-around;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0b691e;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #162104;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #1d39d4;
}

.footer-bottom {
  background-color: #20a316;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-socials a {
  color: white;
  margin-right: 10px;
  font-size: 20px;
}

.footer-socials a:hover {
  color: #128f16;
}

/* Sticky Footer */

/* Try to Remove body css and main css. There is no Main section in the html*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}


