/* ================================
   THEME UPGRADE – Gro Green Landscape
   Fresh, Modern, Natural Color Palette
   ================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #f9fdf8;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #2E7D32;
  letter-spacing: 0.5px;
}

/* Navbar */
.header-main {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.menu-container ul li a {
  font-weight: 600;
  padding: 12px 18px;
  color: #ffffff;
  transition: color 0.3s, background 0.3s;
}
.menu-container ul li a:hover {
  color: #4CAF50;
}

/* Hero Section */
#hero .slides li img {
  filter: brightness(70%);
}
#hero h1 {
  font-size: 45px;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}
#hero .hero-caption {
  font-size: 1.2rem;
  color: #ffffff;
}
#hero .btn {
  background: linear-gradient(45deg, #2E7D32, #4CAF50);
  border: none;
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}
#hero .btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(45deg, #4CAF50, #2E7D32);
}

/* Service Items */
.service-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}
.service-item:hover {
  transform: translateY(-8px);
}
.service-content {
  background: rgba(0,0,0,0.55);
  padding: 20px;
  border-radius: 0 0 12px 12px;
}
.service-content h4,
.service-content p {
  color: #fff;
}
.service-content i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #c4c967;
}

/* Testimonials */
.testimonial {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  margin: 15px;
  text-align: center;
}
.testimonial p {
  font-style: italic;
  color: #555;
}
.testimonial cite {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #2E7D32;
}

/* Counter section */
.counter-box {
  text-align: center;
  padding: 40px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.counter-box i {
  font-size: 2rem;
  color: #4CAF50;
  margin-bottom: 10px;
}
.counter-title {
  color: #2E7D32;
}

/* Estimate form */
.estimate-form .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 12px;
}
.estimate-form button {
  background: #4CAF50;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}
.estimate-form button:hover {
  background: #2E7D32;
}

/* Footer */
#footer {
  background: #2E7D32;
  color: #eee;
  padding: 50px 0 30px;
}
#footer a {
  color: #fff;
}
#footer .footer-title {
  font-weight: 600;
  margin-bottom: 15px;
}
.footer-social li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}
.footer-social li a:hover {
  background: #FFC107;
  color: #2E7D32;
}
