/* ================= GLOBAL ================= */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7f6;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  background: #0a3d2e;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box img {
  height: 55px;
}

.logo {
  color: #d6ea23;
  font-size: 20px;
  font-weight: 600;
}

#menu {
  display: flex;
  list-style: none;
}

#menu li {
  margin: 0 15px;
}

#menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

#menu a:hover {
  color: #2ecc71;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background: url('hero.jpg') center/cover no-repeat;
  height: 70vh;   /* 👈 reduced height */
  min-height: 400px; /* 👈 safe for mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero button {
  background: #2ecc71;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: #27ae60;
}

/* ================= ABOUT ================= */
.about {
  text-align: center;
  padding: 60px 0 30px;
}

.about h2 {
  font-size: 28px;
}

.about p {
  color: #555;
}

/* ================= SERVICES ================= */
.services {
  padding: 60px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  margin-bottom: 10px;
  color: #0a3d2e;
}

.card p {
  color: #666;
  font-size: 14px;
}

.card ul {
  padding-left: 18px;
  margin-top: 10px;
}

.card ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* ================= WHY ================= */
.why {
  background: #0a3d2e;
  color: #fff;
  padding: 60px 0;
}

.why ul {
  padding-left: 20px;
}

.why li {
  margin: 10px 0;
}

/* ================= CONTACT ================= */
.contact {
  padding: 60px 0;
}

.contact input,
.contact textarea {
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
}

.contact button {
  background: #2ecc71;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* ================= FLOAT BUTTONS ================= */
.whatsapp, .call {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp {
  bottom: 20px;
  background: #25D366;
}

.call {
  bottom: 90px;
  background: #007bff;
}

/* ================= FOOTER ================= */
footer {
  background: #0a3d2e;
  color: #fff;
  text-align: center;
  padding: 25px;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  #menu {
    display: none;
    flex-direction: column;
    background: #0a3d2e;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
  }

  #menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  
  .hero {
    height: 60vh;
  }

  .hero h1 {
    font-size: 26px;
  }
}
