/* Font + Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #ffffff;
  color: #0c1f1c;
  line-height: 1.7;
  padding: 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 40px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #0d1f1a;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: #1a422e;
  border-bottom: 2px solid #1a422e;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  z-index: 100;
}

.dropdown-menu li {
  width: 180px;
  padding: 0.5rem 1rem;
}

.dropdown-menu li a {
  color: #0d1f1a;
  font-weight: 400;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ========== Hamburger & Mobile Menu ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 3;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--off-white);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: var(--dark-green);
  padding: 30px 20px;
  transition: right 0.4s ease-in-out;
  z-index: 9;
}

.mobile-menu.open {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: flex-end;
}

.close-menu {
  font-size: 1.8rem;
  color: var(--off-white);
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu ul li a {
  color: var(--off-white);
  font-size: 1.1rem;
  line-height: 1.2;
}

.mobile-menu ul .dropdown-menu {
  display: none;
  flex-direction: column;
  margin-left: 15px;
  background: transparent;
}

.mobile-menu ul .dropdown:hover .dropdown-menu {
  display: flex;
}

.mobile-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-buttons .btn {
  padding: 14px;
  text-align: center;
  color: var(--off-white);
}
.mobile-menu ul .dropdown-menu {
  display: none;
  flex-direction: column;
  margin-left: 15px;
  background: #4fc874;
  padding: 10px;
  border-radius: 8px;
}

.mobile-menu ul .dropdown:hover .dropdown-menu {
  display: flex;
}

.mobile-menu ul .dropdown-menu li a {
  color: #f4ffec;
  padding: 8px 10px;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.mobile-menu ul .dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-banner {
  background: url('assets/field.jpg') center center/cover no-repeat;
  position: relative;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #f2f2f2;
}

/* Section Container */
.services-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1200px;
  margin: auto;
}

/* Individual Service Block */
.service-block {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  background-color: #f8fef9;
  padding: 2rem;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

/* Text Section */
.service-text {
  flex: 1;
  min-width: 300px;
}

.service-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #093c27;
}

.service-text p {
  font-size: 1rem;
  color: #444;
}

/* Image Section */
.service-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .service-block,
  .service-block.reverse {
    flex-direction: column;
    text-align: left;
  }

  .service-image img {
    width: 100%;
  }
}

.cta-banner {
  background: url('assets/city2.png') center center/cover no-repeat;
  position: relative;
  padding: 100px 5%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  background: linear-gradient(135deg, rgba(27, 56, 43, 0.9), rgba(79, 200, 116, 0.8));
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.cta-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 20px;

}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #e6fff0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;

}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-btn {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;

}

.primary-btn {
  background-color: #ffffff;
  color: #1b382b;
  border: none;
}

.primary-btn:hover {
  background-color: #e6fff0;
  transform: translateY(-3px);
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.footer {
  background-color: #1b382b;
  color: #ffffff;
  padding: 80px 5% 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d9eedd;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #82d89d;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #4fc874;
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #d9eedd;
}

.footer-socials a {
  margin-right: 10px;
  display: inline-block;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-socials img:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #a5cdb8;
  border-top: 1px solid #2e5546;
  padding-top: 15px;
}
