body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  scroll-behavior: smooth;
}

/* Logo */
.logo {
  height: 45px;
  border-radius: 50%;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: #2e7d32 !important;
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #2e7d32 !important;
}

/* Mobile Navbar Slide */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    transition: all 0.4s ease;
    padding: 2rem;
  }
  .navbar-collapse.show {
    left: 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  background: url("https://images.unsplash.com/photo-1606787366850-de6330128bfc?auto=format&fit=crop&w=1600&q=80")
    no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    rgba(46, 125, 50, 0.3);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-top: 1rem;
}

/* CTA Buttons */
.hero-cta {
  margin-top: 2rem;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-card i {
  font-size: 1.4rem;
}

.cta-card:hover {
  transform: translateY(-5px) scale(1.03);
  background: rgba(46, 125, 50, 0.9);
  border-color: transparent;
}

/* Color accent for each */
.cta-card.call:hover {
  background: linear-gradient(135deg, #43a047, #66bb6a);
}

.cta-card.whatsapp:hover {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
}

.cta-card.email:hover {
  background: linear-gradient(135deg, #4caf50, #81c784);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .cta-card {
    width: 85%;
    justify-content: center;
  }
}

/* Section Titles */
.section-title {
  text-align: center;
  font-weight: bold;
  color: #2e7d32;
  margin: 60px 0 30px;
  font-size: 2rem;
}

/* Product Cards */
.product-card {
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.product-card .card-img-top {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px 10px 0 0;
}

/* Service Cards */
.service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

/* Contact */
.contact {
  background-color: #e8f5e9;
  padding: 60px 0;
}

.contact h3 {
  color: #2e7d32;
  font-weight: bold;
}

.contact p i {
  color: #2e7d32;
  margin-right: 8px;
}

/* Footer */
footer {
  background-color: #2e7d32;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}
