* {
  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('products-assets/SERVICEs_Header.webp') center/cover no-repeat;
  min-height: 600px;  
}

.about-content {
  flex: 1 1 50%;
  color: white;
  max-width: 800px;
}

.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; /* Yellow highlight */
}

.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 in 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 h1 {
    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: -20px;
  }
}
/* header end */

/* products list cards */

.section-container {
  /* max-width: 1200px; */
  margin: auto;
  margin-top: 40px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  color: #014421;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

.section-title p {
  max-width: none;
  margin: 10px;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin: 40px;
}

.card {
  color: #fff;
  padding: 25px;
  border-radius: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card .btn {
  align-self: flex-start;
  text-decoration: none;
  background-color: #ffdf40;
  color: #007f3e;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: none;
  transition: background-color 0.3s ease;
}

.card .btn:hover {
  background-color: #186e3a;
  color: #ffdf40;
}

/* Custom card backgrounds */
.bg-green {
  background-color: #007f3e;
}

.bg-darkgreen {
  background-color: #045d2d;
}

.bg-forest {
  background-color: #014421;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    margin: 20px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }

  .card .btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* ****************************************** */

.whitelabel-section {
  padding: 60px 20px;
  /* background: url("assets/bg-pattern.png") repeat; */
  background-color:#014421;
  background-size: 400px;
  animation: moveBg 50s linear infinite;
  color: #fff;
}

@keyframes moveBg {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}

.section-header {
  max-width: none;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.section-header p {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  margin: 10px;
}

.list-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #014421;
  color: #000;
  padding: none;
  border-radius: none;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  height: 100%;
  max-height: 300px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: white;
}

.product-card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: white;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  background-color: #f4c100;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e0b000;
}

/* ***************************************************************************** */
.alt-two-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 40px 50px;
  max-width: 1200px;
  margin: auto;
}

.alt-text {
  flex: 1;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}

.alt-text h2 {
  font-size: 28px;
  margin-bottom: 6px;
  color: #000;
}

.alt-text span {
  display: block;
  height: 5px;
  background-color: rgb(245, 248, 83);
  width: 90px;
  margin-bottom: 12px;
}

.alt-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.alt-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alt-image img {
  width: 80%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

/* ✅ Mobile View */
@media (max-width: 768px) {
  .alt-two-col {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    gap: 15px;
  }

  .alt-text h2 {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .alt-text p {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .alt-image img {
    width: 60%;
    max-width: 180px;
    margin: 0 auto;
  }
}



/*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);
  }
}