
    :root {
      --primary: #28a745;
      --accent: #ffc107;
      --dark: #1a1a1a;
      --light: #f8f9fa;
    }
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--light);
      color: #333;
    }
    .navbar {
      background-color: var(--light);
      transition: all 0.3s ease;
      padding: 1rem 0;
    border-bottom: #1e7e34  7px solid ;
    font-weight: 500;
   
    }
    .navbar.scrolled {
      background: white;
      padding: 0.5rem 0;
      box-shadow: 0 4px 15px rgba(183, 126, 126, 0.1);
      color: yellow;
    }
    .navbar-brand {
      font-weight: 700;
      font-size: 1.6rem;
      color: white !important;
    }
    .nav-link {
      color: var(--primary) !important;
      border: #28a745 3px solid ;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--accent) !important;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background-color: var(--accent);
      transition: width 0.3s ease, left 0.3s ease;
    }
    .nav-link:hover::after, .nav-link.active::after {
      width: 100%;
      left: 0;
    }

    
    .hero {
      position: relative;
      height: 100vh;
      background-color: white!important;
      background:  url('../images/pexels-photo-356036.jpeg') center/cover no-repeat fixed;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: white (40, 167, 69, 0.4);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 2rem;
    }
    .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-shadow: 3px 3px 8px rgba(0,0,0,0.6);
    }
    .hero p {
      font-size: 1.4rem;
      margin-bottom: 2rem;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }
    .btn-primary {
      background-color: var(--accent);
      border-color: var(--accent);
      color: #000;
      font-weight: 600;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    .btn-primary:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    .section-title {
      color: var(--primary);
      font-weight: 700;
      position: relative;
      display: inline-block;
    }
    .section-title::after {
      content: '';
      position: absolute;
      width: 60px;
      height: 4px;
      background: var(--accent);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    .feature-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
.service-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: 0.3s;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    .service-img {
      height: 200px;
      object-fit: cover;
    }
    .step-number {
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.3rem;
      margin: 0 auto 1rem;
    }
    .stats-number {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
    }
    .cta-band {
      border-top: var(--accent) 1px solid ;
      box-shadow: #12a54f 770px 4px 1500px rgba(18, 159, 44, 0.2);
    }
    .cta-band h3{
     box-shadow: 0 80px 100px yellow;
      color: green;
    }
    .cta-band p {
      color: var(--accent);
      
    }
    
    footer {
       background: linear-gradient(135deg, var(--primary), #1e7e34);
      color: #ddd;
      border-top: var(--accent) 4px solid ;
    }

    footer .small {
      font-weight: 500;
    }
   
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    @media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    background-attachment: scroll;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .hero .lead {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .hero-content {
    padding: 15px;
  }
}


@media (max-width: 576px) {
  .hero {
    min-height: 60vh;
    background-attachment: scroll;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .hero .lead {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .hero-content {
    padding: 10px;
  }
  
  .hero .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px !important;
  }
}
   
