/* ================= SERVICES INTRO ================= */

.services-intro{
  position:relative;
  padding:100px 0 55px;
  background:#eef5ff;
  overflow:hidden;
}

.services-intro::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 15%, rgba(14,165,233,.14), transparent 22%),
    radial-gradient(circle at 85% 20%, rgba(59,130,246,.12), transparent 18%);
  pointer-events:none;
}

.services-intro__content{
  position:relative;
  max-width:820px;
  margin:auto;
  text-align:center;
}

.services-label{
  display:inline-block;
  padding:8px 18px;
  background:rgba(14,165,233,.1);
  color:#0284c7;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  margin-bottom:22px;
}

.services-intro h2{
  font-size:48px;
  line-height:1.12;
  color:#0f172a;
  margin-bottom:22px;
}

.services-intro p{
  color:#475569;
  line-height:1.9;
  font-size:17px;
  max-width:700px;
  margin:auto;
}

.services-intro__highlights{
  display:grid;
  grid-template-columns:repeat(3,minmax(180px,1fr));
  gap:18px;
  margin-top:36px;
}

.highlight-card{
  display:flex;
  gap:16px;
  padding:20px;
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(14,165,233,.12);
  box-shadow:0 16px 34px rgba(14,165,233,.08);
}

.highlight-card span{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(14,165,233,.12);
  color:#0f172a;
  font-size:18px;
}

.highlight-card h4{
  font-size:18px;
  margin-bottom:6px;
  color:#0f172a;
}

.highlight-card p{
  color:#64748b;
  font-size:15px;
  line-height:1.7;
}

/* ================= SERVICES ================= */

.services-section{
  padding:60px 0 110px;
  background:#eef5ff;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(240px,1fr));
  gap:30px;
}

.service-card{
  background:#fff;
  padding:34px;
  border-radius:28px;
  border:1px solid rgba(14,165,233,.12);
  box-shadow:0 20px 45px rgba(15,47,51,.08);
  transition:.35s ease, transform .35s ease, box-shadow .35s ease;
  position:relative;
  overflow:hidden;
}

.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#0ea5e9,#2563eb);
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 52px rgba(14,165,233,.16);
}

.service-icon{
  width:80px;
  height:80px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  background:rgba(14,165,233,.12);
  color:#0f172a;
  margin-bottom:24px;
}

.service-card h3{
  font-size:24px;
  color:#0f172a;
  margin-bottom:14px;
}

.service-card p{
  color:#64748b;
  line-height:1.8;
  margin-bottom:22px;
}

.service-card a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,#0ea5e9,#2563eb);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  transition:.3s ease, transform .3s ease, box-shadow .3s ease;
}

.service-card a:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(14,165,233,.18);
}

/* ================= WHY CHOOSE ================= */

.why-choose{
  padding:100px 0;

  background:linear-gradient(
    135deg,
    #0f172a,
    #1e293b
  );

  color:#fff;
}

.why-choose__content{
  text-align:center;

  max-width:760px;

  margin:auto auto 60px;
}

.why-choose__content span{
  color:#38bdf8;

  font-weight:700;

  letter-spacing:1px;
}

.why-choose__content h2{
  font-size:52px;

  line-height:1.2;

  margin:18px 0;
}

.why-choose__content p{
  color:rgba(255,255,255,.75);

  line-height:1.9;
}

.why-grid{
  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:24px;
}

.why-box{
  background:rgba(255,255,255,.06);

  padding:40px 20px;

  border-radius:20px;

  text-align:center;

  backdrop-filter:blur(10px);

  transition:.35s ease;
}

.why-box:hover{
  transform:translateY(-8px);

  background:rgba(255,255,255,.1);
}

.why-box h3{
  font-size:42px;

  color:#38bdf8;

  margin-bottom:10px;
}

.why-box p{
  color:rgba(255,255,255,.8);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .services-intro__highlights{
    grid-template-columns:repeat(2,minmax(180px,1fr));
  }

  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:720px){

  .services-intro{
    padding:70px 0 40px;
  }

  .services-intro h2{
    font-size:36px;
  }

  .services-intro p{
    font-size:15px;
  }

  .services-intro__highlights{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .why-choose{
    padding:80px 0;
  }

  .why-choose__content h2{
    font-size:34px;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    padding:28px;
  }

}


