#home h1 {
  color: #333;
}

#home p {
  font-size: 1.2rem;
  color: #555;
}

#home .btn-success {
  background-color: #1b861b;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 500;
}


@media (max-width: 768px) {
  #home .row {
    flex-direction: column-reverse;
  }
  #home img {
    height: 50vh;
  }
}

.btn-black {
  background-color:#f0fff0;
  color: black;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-black:hover {
  background-color:#1b861b; 
  color: black;
}

.card-body p {
  text-align: center;
}
#services p {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* ============================
   Services Page Styles
   ============================ */

body {
      font-family: "Poppins", sans-serif;
      background-color: #f8f9fa;
      color: #333;
    }

    /* Cards */
    .card {
      border: none;
      border-radius: 1rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .card i {
      font-size: 2.5rem;
      color: #1b861b;
      margin-bottom: 15px;
    }

    .request-btn {
      background-color: #FFD700;
      color: #000;
      font-weight: 600;
      border: none;
      transition: all 0.3s ease;
      border-radius: 8px;
    }

    .request-btn:hover {
      background-color: #1b861b;
      color: #fff;
    }

    .custom-btn {
      background-color: #FFD700;
      color: #000;
      font-weight: 600;
      border: none;
      padding: 10px 25px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .custom-btn:hover {
      background-color: #1b861b;
      color: #fff;
    }

    /* Footer */
    footer {
      background-color: #212529;
      color: #fff;
      padding: 50px 0 20px;
    }

    footer h5 {
      font-weight: 600;
      margin-bottom: 15px;
    }

    footer a {
      color: #bbb;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: color 0.2s;
    }

    footer a:hover {
      color: #FFD700;
    }

    .social-icons a {
      font-size: 1.5rem;
      color: #fff;
      margin-right: 15px;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #FFD700;
    }

    .subscribe-input {
      border-radius: 25px;
      padding: 8px 15px;
      border: none;
      width: 100%;
      max-width: 280px;
    }

    .subscribe-btn {
      background-color: #FFD700;
      border: none;
      border-radius: 25px;
      padding: 8px 20px;
      font-weight: 600;
      margin-left: 10px;
      transition: all 0.3s;
    }

    .subscribe-btn:hover {
      background-color: #1b861b;
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      margin-top: 30px;
      padding-top: 15px;
      font-size: 0.9rem;
      color: #aaa;
    }

 
/* BLOG */

.blog-banner h1 {
  z-index: 2;
}
.article-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
}
.article-content img {
  max-width: 100%;
  border-radius: 6px;
  margin: 1rem 0;
}
