:root {
  --turquoise: #40E0D0;
  --turquoise-dark: #38cfc4;
  --charcoal: #222831;
  --light-gray: #EEEEEE;
  --text-color: #393E46;
  --accent: #FF6B6B;
  --white: #FFFFFF;
}

/* Reset and base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-gray);
  color: var(--text-color);
  line-height: 1.6;
}

/* Container */
.container { max-width: 1100px; margin: auto; padding: 20px; }

/* Brand */
.brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #008080;
  text-align: center;
}

/* Header (single, improved) */
header {
  background-color: #ffffffee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
header nav { text-align: center; margin-top: 10px; }
header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color .2s ease;
}
header nav a:hover { color: #008080; }

/* Optional alt header layout */
.main-header {
  background-color: #fffffff8;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 999;
  padding: 12px 0; transition: all .3s ease;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.nav-links a { margin-left: 24px; text-decoration: none; color: #333; font-weight: 500; transition: color .2s ease; }
.nav-links a:hover { color: #00b4a8; }

/* Hero */
.hero {
  background-color: var(--turquoise);
  color: var(--charcoal);
  text-align: center;
  padding: 80px 20px;
}
.hero h2 { font-size: 2.5rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; }

/* Button */
.btn {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color .3s, color .3s;
}
.btn:hover { background-color: var(--turquoise-dark); color: var(--charcoal); }

/* Sections */
.light-section { background-color: var(--white); padding: 60px 20px; text-align: center; }
#services { background-color: var(--light-gray); padding: 60px 20px; }

/* ✅ Uniform Popular Services grid/buttons */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.service-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100px; /* uniform height */
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border: 1px solid #eaeaea;
  font-weight: 700; font-size: 1em; text-align: center;
  cursor: pointer; user-select: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.service-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.12); border-color: #ffd84d; }
.service-btn.active { outline: 3px solid #FFD700; }

/* Legacy service boxes (if still used elsewhere) */
.services-grid.legacy { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.service-box {
  background-color: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Highlight block */
.beehire-highlight {
  background: linear-gradient(135deg, #d1f0ee, #e0f7f5);
  padding: 60px 20px;
  color: #003b3d;
  border-top: 1px solid #b8e4df;
  border-bottom: 1px solid #b8e4df;
}
.beehire-highlight h2 { font-family: 'Orbitron', sans-serif; font-size: 2rem; color: #008080; }
.beehire-highlight ul { list-style: none; padding: 0; margin-top: 20px; }
.beehire-highlight ul li { margin-bottom: 10px; font-size: 1rem; }

/* Mission / Vision (single copy only) */
#mission-vision {
  padding: 60px 20px;
  background: #f0fdfd;
  border-top: 1px solid #ccecec;
  border-bottom: 1px solid #ccecec;
}
#mission-vision h2 {
  text-align: center;
  color: #008080;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 30px;
}
.mission-box, .vision-box { margin-bottom: 30px; }
.mission-box h3, .vision-box h3 { color: #005f5f; font-size: 1.3rem; }
.mission-box p, .vision-box p { font-size: 1rem; line-height: 1.7; color: #333; }

/* Top Products */
#top-products { padding: 60px 20px; background: #f8fdfd; }
#top-products h1 { margin-bottom: 10px; }
#top-products p { margin-bottom: 25px; }
#top-products .btn { margin-top: 20px; }

/* Footer */
footer {
  background-color: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 20px;
}
#map { position: relative; } /* allow absolute overlay inside */
.map-overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.78);
  display: flex; align-items: center; justify-content: center;
  border-radius: 15px;
  font-weight: 700; color: #333;
  text-align: center; padding: 16px;
  pointer-events: none; /* block map but not trap focus */
}
