.services-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    linear-gradient(rgba(0, 22, 32, 0.8), rgba(0, 22, 32, 0.9)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=1200");

  background-size: cover;
  background-position: center;
}

.hero-label {
  color: #00ed64;
  letter-spacing: 2px;
  font-size: 13px;
}

.services-hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin: 10px 0;
}

.services-hero h1 span {
  color: #00ed64;
}

.hero-subtext {
  color: #8aa3b0;
  max-width: 600px;
  margin: auto;
}
/* ================= MAIN LAYOUT ================= */
.services-main {
  padding: 120px 0;
  background: radial-gradient(circle at top, #01212e, #001620);
}

.services-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
}

/* ================= SIDEBAR ================= */

.services-sidebar {
  background: linear-gradient(145deg, #0c2a36, #082029);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.services-sidebar h3 {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
}

.services-sidebar li {
  padding: 15px 16px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #bcd0da;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-sidebar li::after {
  content: "→";
  color: #00ed64;
  transition: 0.3s;
}

.services-sidebar li:hover {
  background: rgba(0, 237, 100, 0.1);
  transform: translateX(6px);
  color: #fff;
}

.services-sidebar li:hover::after {
  transform: translateX(5px);
}

.services-sidebar .active {
  background: linear-gradient(135deg, #00ed64, #00c853);
  color: #001620;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,237,100,0.3);
}

/* ================= RIGHT CONTENT ================= */

.service-details {
  background: linear-gradient(145deg, #0c2a36, #082029);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* IMAGE */

.service-details img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 30px;
  transition: 0.4s;
}

.service-details img:hover {
  transform: scale(1.02);
}

/* TITLE */

.service-details h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* DESCRIPTION */

.service-desc {
  color: #8aa3b0;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 30px;
}

/* ================= KEY FEATURES ================= */

.section-heading {
  color: #00ed64;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}

.service-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.service-points div {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.service-points div:hover {
  background: rgba(0, 237, 100, 0.08);
}

.service-points i {
  color: #00ed64;
  font-size: 18px;
  margin-top: 4px;
}

.service-points strong {
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.service-points p {
  margin: 0;
  font-size: 14px;
  color: #8aa3b0;
}

/* ================= BENEFITS ================= */

.service-benefits {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-benefits h4 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 20px;
}

.service-benefits ul {
  padding: 0;
  list-style: none;
}

.service-benefits li {
  margin-bottom: 14px;
  color: #bcd0da;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-benefits li i {
  color: #00ed64;
}

/* BENEFITS IMAGE */

.service-benefits img {
  width: 100%;
  border-radius: 16px;
  height: 300px;
  object-fit: cover;
  transition: 0.4s;
}

.service-benefits img:hover {
  transform: scale(1.03);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .service-points {
    grid-template-columns: 1fr;
  }

  .service-benefits {
    grid-template-columns: 1fr;
  }

  .service-details {
    padding: 30px;
  }
}


