body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #f8f9fa;
  color: #212529;
}

.service-header {
  background-color: #FBA504;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}
.service-card h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #FBA504;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.toggle-btn {
  margin-top: 1rem;
  background-color: rgba(255,255,255,0.85);
  color: #0d6efd;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  z-index: 2;
}


.service-list {
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

.service-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.service-list i {
  margin-right: 8px;
  color: #ffc107;
}

.hidden {
  display: none;
}

.service-footer {
  text-align: center;
  padding: 1rem;
  background-color: #e9ecef;
  font-size: 0.9rem;
}

/* Background images */
.bg-building {
  position: relative;
  background-image: url("../img/construction.jpg"); /* adjust path as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  color: white;
  overflow: hidden;
}

.bg-building::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay for contrast */
  z-index: 1;
}

.bg-building > * {
  position: relative;
  z-index: 2;

}

.bg-consultancy {
  position: relative;
  background-image: url("../img/business.jpg"); /* adjust path as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  color: white;
  overflow: hidden;
}

.bg-consultancy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay for contrast */
  z-index: 1;
}

.bg-consultancy > * {
  position: relative;
  z-index: 2;
}

.bg-fisheries {
  position: relative;
  background-image: url("../img/fisheries.jpg"); /* adjust path as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  color: white;
  overflow: hidden;
}
.bg-fisheries::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay for contrast */
  z-index: 1;
}

.bg-fisheries > * {
  position: relative;
  z-index: 2;
}
.bg-agri {
  position: relative;
  background-image: url("../img/agriculture.jpg"); /* adjust path as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  color: white;
  overflow: hidden;
}
.bg-agri::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay for contrast */
  z-index: 1;
}

.bg-agri > * {
  position: relative;
  z-index: 2;
}
