/* ===== Base Styles ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f7fff9;
  scroll-behavior: smooth;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
h2 { text-align: center; margin-bottom: 1.5rem; }

/* ===== Header ===== */
header {
  background: #2e7d32;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.4rem;
  font-weight: 600;
}
nav {
	margin-top: 20px;
}
nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
li {
	 margin: 0 20px 20px 20px;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover { color: #c8e6c9; }

/* Mobile Menu */
#menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #2e7d32;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    border-radius: 0 0 8px 8px;
  }
  nav ul.active { display: flex; }
  #menu-toggle { display: block; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 90vh;
  background: url('images/banner.jpg')
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: ;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero h2 { font-size: 2.8rem; }
.hero p { background: #81c784; margin: 1rem 0; border-radius: 25px; font-size: 1.2rem; }
.btn {
  background: #81c784;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;

}
.btn:hover {
  background: #66bb6a;
  transform: scale(1.05);
}

/* ===== Services ===== */
.services {
  padding: 4rem 0;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== About ===== */
.about {
  padding: 4rem 0;
  text-align: center;
}
.about p {
  max-width: 800px;
  margin: auto;
  font-size: 1rem;
}

/* ===== Contact ===== */
.contact {
  padding: 4rem 0;
  text-align: center;
}
.contact-form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: none;
}
.contact-form button {
  background: #43a047;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.8rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover { background: #2e7d32; }
#formStatus {
  font-size: 0.9rem;
}
/* ===== Phone Link Styling ===== */
.call-now, .phone-link, .phone-footer {
  color: #ffffff; /* make text and emoji white */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.call-now:hover, .phone-link:hover, .phone-footer:hover {
  text-decoration: underline;
  color: #c8e6c9; /* light green hover effect */
}
/* ===== Footer ===== */
footer {
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

/* ===== Animations ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0);} }
@keyframes slideLeft { from { opacity: 0; transform: translateX(-50px);} to { opacity: 1; transform: translateX(0);} }
@keyframes slideRight { from { opacity: 0; transform: translateX(50px);} to { opacity: 1; transform: translateX(0);} }
@keyframes slideDown { from { opacity: 0; transform: translateY(-30px);} to { opacity: 1; transform: translateY(0);} }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0);} }

.fade-up { animation: fadeUp 1s forwards; opacity: 0; }
.slide-in-left { animation: slideLeft 1s forwards; opacity: 0; }
.slide-in-right { animation: slideRight 1s forwards; opacity: 0; }
.fade-slide-down { animation: slideDown 1s forwards; opacity: 0; }
.fade-slide-up { animation: slideUp 1s forwards; opacity: 0; }
.delay { animation-delay: 0.3s; }
.delay2 { animation-delay: 0.6s; }
