body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  padding-top: 80px;

}

/* Navbar */
.navbar {
  background: white;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Hero */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)) fixed,
  url('images/weed-leaves-oil-still-life.jpg') center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
}

/* Buttons */
.btn-main {
  background: #2e8b57;
  color: white;
  border-radius: 30px;
  padding: 10px 25px;
}
.btn-main:hover { background: #246b45; }

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.card:hover { transform: translateY(-8px); }

/* Section */
section { padding: 80px 0; }

/* CTA */
.cta {
  background: linear-gradient(135deg, #2e8b57, #3cb371);
  color: white;
  border-radius: 20px;
  padding: 60px;
}

/* WhatsApp Button */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  padding: 40px 0;
}
.navbar-brand img {
    height: 50px; /* Increase this number until it looks right */
    width: auto;  /* Maintains aspect ratio */
    object-fit: contain;
}

/* Optional: Reduce navbar padding if the logo makes the bar too tall */
.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

 #services .card {
  border-radius: 15px;
  transition: 0.3s;
}

#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

#services i {
  background: #e9f7ef;
  padding: 15px;
  border-radius: 50%;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.blog-card img {
  height: 220px;
  object-fit: cover;
}

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

.read-more {
  text-decoration: none;
  color: #2e8b57;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, #2e8b57, #3cb371);
  color: white;
  border-radius: 20px;
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.cta-box::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  bottom: -40px;
  left: -40px;
}

.cta-box .btn {
  border-radius: 30px;
  font-weight: 500;
}

.cta-box .btn:hover {
  transform: translateY(-2px);
}
.instagram-section {
  padding: 80px 0;
}

.insta-img {
  border-radius: 15px;
  transition: 0.3s;
  cursor: pointer;
}

.insta-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.instagram-section {
  padding: 80px 0;
}

.insta-card {
  max-width: 500px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.insta-card:hover {
  transform: translateY(-5px);
}

.insta-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.insta-icon {
  font-size: 24px;
  color: #E1306C;
}

.insta-title {
  font-weight: 600;
  font-size: 18px;
}

.insta-text {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}

.insta-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.insta-stats h5 {
  margin: 0;
  font-weight: bold;
  color: #2e8b57;
}

.insta-stats small {
  color: #777;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }
  .navbar-collapse {
  transition: all 0.3s ease;
}
}
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}