#service-page {
  background: url('../img/project60.jpg') no-repeat center/cover;
  position: relative;
}

.hero-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.services-page {
    padding: 100px 7%;
    background:var(--bg-light);
}

.services-hero{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.services-hero h1{
    font-size:3rem;
    line-height:1.2;
    margin:15px 0;
    color:var(--text-darker);
}

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

.service-box{
    background:var(--bg-card);
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow-sm);
    transition:.35s;
    border-top:4px solid transparent;
}

.service-box:hover{
    transform:translateY(-8px);
    border-top:4px solid var(--primary);
    box-shadow:var(--shadow-md);
}

.service-icon{
    width:70px;
    height:70px;
    background:var(--primary-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    margin-bottom:25px;
}

.service-icon i{
    color:var(--primary);
    font-size: 28px;
}

.service-box ul i {
  color: var(--primary);
}

.service-box h2{
    margin-bottom:15px;
    color:var(--text-darker);
}

.service-box p{
    margin-bottom:20px;
}

.service-box ul{
    list-style: none;
}

.service-box ul li {
    padding:10px 0;
    border-bottom:1px solid rgba(0,0,0,.06);
    color:var(--text-muted);
}

.service-box ul li:last-child{
    border-bottom: none;
}

@media(max-width:992px){

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

}

@media(max-width:768px){

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

    .services-hero h1{
        font-size:2.2rem;
    }

}

.how-we-work{
  padding:100px 10%;
  background:var(--bg-light);
  text-align:center;
}

.how-we-work h2{
  font-size:2.6rem;
  margin-top:10px;
  color:var(--text-darker);
}

/* GRID */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-top:60px;
  position:relative;
}

/* STEP CARD */
.process-step{
  background:var(--bg-card);
  padding:35px 25px;
  border-radius:18px;
  box-shadow:var(--shadow-sm);
  position:relative;
  transition:0.3s ease;
  border:1px solid rgba(198, 93, 30, 0.08);
}

/* hover effect */
.process-step:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
  border-color:var(--primary);
}

/* STEP NUMBER LOOK */
.process-step h3{
  color:var(--primary);
  font-size:1.4rem;
  margin-bottom:15px;
  position:relative;
}

/* decorative line under title */
.process-step h3::after{
  content:"";
  width:40px;
  height:3px;
  background:var(--accent);
  display:block;
  margin:10px auto 0;
  border-radius:10px;
}

.process-step p{
  color:var(--text-muted);
  line-height:1.6;
}

/* CONNECTING LINE (desktop feel) */
.process-grid::before{
  content:"";
  position:absolute;
  top:30%;
  left:5%;
  right:5%;
  height:2px;
  background:linear-gradient(
    90deg,
    var(--primary-soft),
    var(--primary),
    var(--primary-soft)
  );
  z-index:0;
  opacity:0.4;
}

/* bring cards above line */
.process-step{
  z-index:1;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:992px){

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

  .process-grid::before{
    display:none;
  }

}

@media(max-width:600px){

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

  .how-we-work h2{
    font-size:2rem;
  }

}

.industries-we-serve{
  padding: 120px 7%;
  background:var(--primary-soft);
  text-align:center;
}

.industries-we-serve h2{
  font-size:2.6rem;
  margin-top:10px;
  color:var(--text-darker);
}

.industry-intro{
  max-width:750px;
  margin:20px auto 50px;
  color:var(--text-muted);
  line-height:1.7;
}

/* GRID */
.industry-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.industry-card{
  background:var(--bg-card);
  padding:35px 25px;
  border-radius:18px;
  box-shadow:var(--shadow-sm);
  transition:0.35s ease;
  border:1px solid rgba(198, 93, 30, 0.08);
  text-align:left;
  position:relative;
  overflow:hidden;
}

/* hover effect */
.industry-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
  border-color:var(--primary);
}

/* ICON */
.industry-card i{
  font-size:26px;
  color:var(--primary);
  margin-bottom:15px;
}

/* TITLE */
.industry-card h3{
  font-size:1.2rem;
  margin-bottom:10px;
  color:var(--text-darker);
}

/* TEXT */
.industry-card p{
  color:var(--text-muted);
  line-height:1.6;
  font-size:0.95rem;
}

/* subtle accent glow */
.industry-card::before{
  content:"";
  position:absolute;
  top:-40%;
  right:-40%;
  width:120px;
  height:120px;
  background:var(--primary-light);
  opacity:0.15;
  border-radius:50%;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:992px){

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

}

@media(max-width:600px){

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

  .industries-we-serve h2{
    font-size:2rem;
  }

}