 body {
      font-family: 'Segoe UI', sans-serif;
    }
    .topbar {
      background-color: #0c3c24;
      color: white;
      font-size: 14px;
      padding: 5px 0;
    }
    .topbar a {
      color: white;
      text-decoration: none;
      margin-left: 10px;
    }
    .navbar-brand img {
      height: 70px;
    }
    .navbar-nav .nav-link {
      font-weight: 500;
      color: #333 !important;
	  margin:0px 10px;
    }
    .navbar-nav .nav-link.active {
      color: #0c3c24 !important;
      font-weight: bold;
    }
   .hero-img {
    height: 600px;
    object-fit: cover; /* Ensures image fills the area without stretching */
  }

   .animate-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .hero-img {
      height: 300px; /* Adjust for mobile screens */
    }
  }
   .icon-circle {
    width: 100px;
    height: 100px;
    background-color: #5ec96d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
  }

  .service-box {
    transition: all 0.3s ease;
  }

  .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  }

  .border-success {
    border-top: 3px solid #5ec96d !important;
  }
    .line {
    flex: 1;
    height: 2px;
    background-color: #5ec96d;
    max-width: 100px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.8s ease;
  }

  /* Animation when section becomes visible */
  .animate-lines.in-view .line {
    opacity: 1;
    transform: scaleX(1);
  }

   .letter-spacing-2 {
    letter-spacing: 2px;
  }
  
  .hover-transform {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hover-transform:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
  }
  
  .transition-all {
    transition: all 0.3s ease;
  }
  
  .bg-gradient {
    background-image: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 100%);
  }
    .hover-zoom {
    transition: transform 0.4s ease;
  }

  .hover-zoom:hover {
    transform: scale(1.05);
  }
 .scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #198754; /* Bootstrap success color */
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(25, 135, 84, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: #157347;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(25, 135, 84, 0.5);
}

.scroll-top i {
  font-size: 1.25rem;
}

.about-banner {
  background-image: 
    linear-gradient(to right, rgba(0, 100, 0, 0.85) 30%, rgba(0, 100, 0, 0.2) 50%, rgba(0, 0, 0, 0.85) 100%),
    url('images/Untitled-design5.jpg');
  background-size: cover;
  background-position: center;
  height: 200px;
  position: relative;
}
.about-banner h1 {
  margin-left: 40px;
}

 .blog-title { font-size: 1.5rem; }
    .blog-meta i { font-size: 1rem; }
    .blog-meta span { font-size: 0.95rem; }
    .blog-excerpt { font-size: 1rem; }
    .pagination .page-link { color: #198754; }
    .pagination .page-item.active .page-link {
      background-color: #198754;
      border-color: #198754;
      color: white;
    }
    .popular-posts h4 { font-size: 1.3rem; }
    .popular-posts a { font-size: 1rem; line-height: 1.4; }

       .work-process-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .work-process-title h6 {
      color: #4CAF50;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .work-process-title h2 {
      font-weight: 700;
      color: #003B29;
    }

   .step-item {
  transition: all 0.3s ease-in-out;
  cursor: default;
}

.step-item:hover {
  background-color: #f2fef5; /* light green background on hover */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(60, 171, 65, 0.15);
  cursor: pointer;
}

.step-item:hover .step-circle {
  background-color: #3cab41;
  transform: scale(1.05);
}

.step-item:hover .step-number {
  color: #fff;
}

.step-circle {
  background-color: #3cab41;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: background 0.3s ease, transform 0.3s ease;
}

.step-circle img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.step-item:hover .step-circle img {
  transform: scale(1.1);
}

.step-number {
  font-size: 14px;
  font-weight: bold;
  color: #3cab41;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}
    .dashed-line {
      width: 100%;
      height: 1px;
      border-top: 2px dashed #d0d0d0;
      position: absolute;
      top: 70px;
      z-index: -1;
    }

    @media (max-width: 767px) {
      .dashed-line {
        display: none;
      }
    }
     :root {
      --primary-green: #28a745;
      --dark-green: #218838;
      --light-bg: #f4fdf4;
      --dark-text: #212529;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
    }
    
    .faq-section {
      background-color: var(--light-bg);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    
    .section-header {
      position: relative;
      margin-bottom: 40px;
    }
    
    .section-subtitle {
      display: flex;
      align-items: center;
      font-size: 18px;
      font-weight: 600;
      color: var(--primary-green);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }
    
    .section-subtitle::before {
      content: '';
      display: inline-block;
      width: 40px;
      height: 3px;
      background-color: var(--primary-green);
      margin-right: 15px;
      transition: all 0.5s ease;
    }
    
    .section-title {
      font-size: 42px;
      font-weight: 700;
      color: var(--dark-text);
      margin-bottom: 30px;
      position: relative;
    }
    
    .progress-container {
      position: relative;
      margin-bottom: 30px;
    }
    
    .progress-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .progress-label {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark-text);
    }
    
    .progress-percent {
      font-weight: 700;
      color: var(--primary-green);
      font-size: 18px;
    }
    
    .progress {
      height: 14px;
      border-radius: 10px;
      background-color: #e9ecef;
      overflow: visible;
    }
    
    .progress-bar {
      background-color: var(--primary-green);
      border-radius: 10px;
      position: relative;
      transition: width 2s ease-in-out;
    }
    
    .progress-bar::after {
      content: '';
      position: absolute;
      right: -5px;
      top: -3px;
      width: 20px;
      height: 20px;
      background-color: var(--primary-green);
      border-radius: 50%;
      border: 3px solid white;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    
    .accordion {
      --bs-accordion-border-color: transparent;
      --bs-accordion-btn-focus-border-color: transparent;
      --bs-accordion-btn-focus-box-shadow: none;
    }
    
    .accordion-item {
      border-radius: 8px !important;
      margin-bottom: 20px;
      border: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .accordion-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .accordion-button {
      font-size: 18px;
      font-weight: 600;
      color: var(--primary-green) !important;
      background-color: white;
      padding: 20px 25px;
    }
    
    .accordion-button:not(.collapsed) {
      background-color: white;
      color: var(--primary-green) !important;
    }
    
    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2328a745'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      transform: scale(1.2);
    }
    
    .accordion-body {
      font-size: 16px;
      color: #6c757d;
      padding: 0 25px 25px;
      line-height: 1.7;
    }
    
    /* Animation classes */
    .animate-progress {
      animation: progressAnimation 2s forwards;
    }
    
    .animate-line {
      animation: lineGrow 1s forwards;
    }
    
    @keyframes progressAnimation {
      from { width: 0%; }
      to { width: 70%; }
    }
    
    @keyframes lineGrow {
      from { width: 0; }
      to { width: 40px; }
    }
    
    @media (max-width: 992px) {
      .section-title {
        font-size: 36px;
      }
      
      .accordion-button, 
      .progress-label,
      .progress-percent {
        font-size: 16px;
      }
    }