:root {
    --bg-color: #fff;
    --text-color: #615b5b;
    --accent-color: #51f25efe;
    --accent-light: #00f36d;
    --shadow: rgba(134, 244, 171, 0.2);
  }
 
  
    body {
      background-color: #fff;
      font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    
    color: var(--text-color);
      color: #767474;
      margin: 0;
      padding: 0;
      line-height: 1.6;
    }
 

  
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3%;
    background-color: white;
    position: sticky;
    top: 0;
        z-index: 100;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    
  }
  .logo img {    /* keeps proportions correct */
    vertical-align: middle;
  }
  


  .nav a {
    color: var(--text-color);
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav a:hover {
    color: var(--accent-color);
  }
  
  .btn {
    background: var(--accent-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: var(--accent-light);
  }
  
  .btn-outline {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .btn-outline:hover {
    background: var(--accent-color);
    color: #000;
  }
  
  /* Banner */

  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .banner-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  /* Skills */.skills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 60px 20px;
}

.skill-box {
  background: #ffffff;
  padding: 25px 35px;
  border-radius: 15px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #0f5125;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.1),
    0 0 15px rgba(25, 135, 84, 0.12);
  transition: 0.3s ease;
}

.skill-box:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.15),
    0 0 25px rgba(25,135,84,0.25);
}

.skill-box .count {
  font-size: 40px;
  font-weight: 700;
  color: #198754;
  text-shadow: 0 0 8px rgba(25,135,84,0.3);
}

  
  /* services*/


/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Headings */
.services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.services p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

/* Grid layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Service box */
.service-box {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-box .icon {
  font-size: 40px;
  color: #0c7f55;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 16px;
  color: #555;
}

/* Hover effect */
.service-box:hover {
  border: 2px solid #21a566;
  background-color: #e6fff2;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .services h2 { font-size: 32px; }
  .services p { font-size: 16px; }
  .service-box h3 { font-size: 20px; }
  .service-box p { font-size: 15px; }
}

@media (max-width: 600px) {
  .services h2 { font-size: 28px; }
  .services p { font-size: 14px; }
  .service-box h3 { font-size: 18px; }
  .service-box p { font-size: 14px; }
  .service-grid { gap: 15px; }
}



  /* FAQ Section */
.faq {
    padding: 4rem 5%;
    background: #f6e0fb;
  }
  
  .faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  /* Left side - Features */
  .faq-features h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  .feature-box {
    background: #c5c0c0;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow);
  }
  
  .feature-box h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
  }
  
  /* Right side - FAQs */
  .faq-list h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
  }
  
  .faq-item {
    background: #1a1a1a;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow);
  }
  
  .faq-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
  }
  
  .faq-item p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Responsive stacking */
  @media (max-width: 768px) {
    .faq-container {
      grid-template-columns: 1fr;
    }
  
    .faq-features, .faq-list {
      text-align: left;
    }
  }
  
  
  /* Brands */
  .brands {
    text-align: center;
    padding: 3rem 5%;
  }
  
  .brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
  }
  
  .brand-list span {
    padding: 0.8rem 1.2rem;
    background: #e6e3e3;
    border-radius: 5px;
    box-shadow: 0 4px 8px var(--shadow);
  }
  
  /* Solutions */
  .solutions {
    padding: 4rem 5%;
    text-align: center;
  }
  
  .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .solution-box {
    background: #d4d3d3;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow);
  }
  




  /*service.php*/-------
/* ========== Global Styles ========== */

 

  

  /* ========== Services Section ========== */
  .detailed-services {
    padding: 80px 8%;
  }
  
  .service-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(206, 11, 11, 0.05);
    padding: 40px;
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }
  
  .service-left {
    flex: 1;
    text-align: center;
    margin-right: 40px;
  }
  
  .service-icon {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .service-left h2 {
    font-size: 1.5rem;
    color: #067d36;
  }
  
  .service-right {
    flex: 2;
  }
  
  .service-right p {
    margin-bottom: 15px;
  }
  
  .service-right ul {
    list-style: none;
    margin-bottom: 20px;
  }
  
  .service-right ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
  }
  
  .service-right ul li::before {
    content: "✔";
    color: #067039;
    position: absolute;
    left: 0;
  }
  
  
  /* ========== Responsive Design ========== */
  @media (max-width: 900px) {
    .service-row {
      flex-direction: column;
      text-align: center;
    }
  
    .service-left {
      margin-right: 0;
      margin-bottom: 20px;
    }
  
    .nav {
      display: none; /* optional: can replace with a hamburger menu later */
    }
  
    .banner-content h1 {
      font-size: 2rem;
    }
  }

  

/*about.php8/---------
/* About Banner */

  
  /* Who We Are */
  .who-we-are {
    text-align: center;
    padding: 60px 8%;
  }
  
  .who-we-are h2 {
    font-size: 2rem;
    color: #077639;
    margin-bottom: 15px;
  }
  
  .who-we-are p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* 4 Column Boxes */
  .about-boxes .grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .about-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  }
  
  .box-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #00ff99;
  }
  
  .about-box h3 {
    margin-bottom: 15px;
    color: #077639;
  }
  
  /* Our Records */
  .our-records {
    background: #f5f5f5;
    padding: 60px 8%;
  }
  
  .records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .record-box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .record-box h3 {
    color: #077639;
    margin-bottom: 10px;
  }
  
  .record-box ul {
    list-style: disc inside;
  }
  
  /* Our Commitment */
  .our-commitment {
    padding: 60px 8%;
    text-align: center;
  }
  
  .our-commitment h2 {
    color: #077639;
    margin-bottom: 15px;
  }
  
  .our-commitment p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
  }








/*contact page*/---------





  .contact-banner span {
    color: #00ff33;              /* change this hex to the span-colour you want */
  }
  
  /* Contact Info Grid */
  .contact-info .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 60px 8px;
    text-align: center;
  }
  
  .info-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  }
  
  .info-box h3 {
    color: #077639;
    margin-bottom: 10px;
  }

  /* Footer Container */
/* Footer base */
.footer {
  background-color: #ffffff;
  color: #0f0f0f;
  padding: 50px 20px;
 
  border-top: 1px solid #ddd;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo section */
.footer-logo {
  text-align: left;
  margin-bottom: 30px;
}

.footer-logo .logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
}

/* Footer sections (flex grid) */
.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Social Icons */
.footer-social h3,
.footer-links h3,
.footer-subscribe h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-social ul,
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-social ul li,
.footer-links ul li {
  margin-bottom: 10px;
}

.footer-social ul li a,
.footer-links ul li a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social ul li a:hover,
.footer-links ul li a:hover {
  color: #00ff2a;
}

/* Subscribe Form */
.footer-subscribe p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-subscribe form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-subscribe input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.footer-subscribe button {
  padding: 10px;
  border: none;
  background-color: rgb(31, 241, 122);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-subscribe button:hover {
  background-color: #89fa5d;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-sections {
    flex-direction: column;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-social,
  .footer-links,
  .footer-subscribe {
    text-align: center;
  }
}



    /* FOOTER */
    footer {
      margin-top: 30px;
      background: white;
      color: rgb(14, 14, 14);
      padding: 15px;
      text-align: center;
    
  }

  /* RESPONSIVE */
  @media(max-width: 768px) {
      .container {
          flex-direction: column;
      }
      .page-heading {
          font-size: 24px;
      }
  }

