/* ================= SECTION ================= */
#serv-services-section{
  padding: 90px 5%;
  background: #f8fafc;
  font-family: 'Inter', sans-serif;
  text-align: center;
  background: var(--abtbackground);
}

/* HEADER */
.serv-services-header h2{
  font-size: 2.5rem;
  font-weight: 600;
  color: #0f172a;
}
.serv-green-line{
  border: none; height: 2px;  width: 100%; 
  background-color: #6e8f2f; /* grass green */           
  margin: 20px auto;  border-radius: 2px;
}

.serv-divider{
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #6e8f2f, #b68b2a);
  margin: 15px auto 25px auto;
  border-radius: 4px;
}

.serv-services-header p{
  max-width: 700px;
  margin: 0 auto 60px auto;
  color: #64748b;
}

/* ================= WRAPPER ================= */
.serv-services-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

/* ================= COLUMNS ================= */
.serv-services-col{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ================= SERVICE CARDS ================= */
.serv-service-item{
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  text-align: left;

  /* Animation start state */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.serv-service-item:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.10);
}

.serv-service-item h3{
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #0f172a;
}

.serv-service-item p{
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ================= CENTER IMAGE ================= */
.serv-services-center{
  flex: 0 0 320px;
}

.serv-services-center img{
  width: 100%;
  height: auto;
}

/* ================= ANIMATION ACTIVE ================= */
.serv-inview .serv-service-item{
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.serv-inview .serv-service-item:nth-child(1){ transition-delay: 0.05s; }
.serv-inview .serv-service-item:nth-child(2){ transition-delay: 0.18s; }
.serv-inview .serv-service-item:nth-child(3){ transition-delay: 0.30s; }

/* ================= RESPONSIVE ================= */
@media (max-width: 992px){
  .serv-services-wrapper{
    flex-direction: column;
  }

  .serv-services-col{
    text-align: center;
  }

  .serv-service-item{
    text-align: center;
  }

  .serv-services-center{
    order: -1;
    margin-bottom: 30px;
  }
}