/* === Reset & Global === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  height: 2000px;
  margin: 0;
  margin-top: 50px;
}
/* === Header / Hero === */
.header {
  text-align: center;
  padding: 3rem 1rem;
  background: #ffffff;
  border-bottom: 1px solid #ccc;
}

.header h1 {
  color: #2d5a27;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.header p {
  font-size: 1.2rem;
  color: #555;
}

.header button {
  margin-top: 1.5rem;
  background-color: #2d5a27;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

/* === Popup === */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.close-btn {
  float: right;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
}

/* === Tabs & Cards === */
.services {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.tab {
  background: transparent;
  border: 2px solid #2d5a27;
  color: #2d5a27;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover {
  background-color: #2d5a27;
  color: white;
}

.tab.active {
  background-color: #2d5a27;
  color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
}

.highlight-green {
  color: #2d5a27 !important;
}



/* new */
.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  max-width: 1000px;
  padding: 20px 25px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin: 20px auto;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.card-header h3 {
  margin: 0;
  font-weight: bold;
}
.card-body ul {
  list-style: none;
  padding: 0;
}

.card-body ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.card-body i {
  color: #0d6efd;
  margin-right: 8px;
}

.card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 10px;
}

.call-button {
  background: #fff;
  color: #d50000;
  border: 1px solid #d50000;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.call-button:hover {
  background: #d50000;
  color: white;
}

.whatsapp-button {
  background: #2d5a27;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  color: white;
  font-size: 18px;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.search-container {
  text-align: center;
  margin-bottom: 20px;
}

#searchInput {
  width: 50%;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
