.services-page {
  margin-top: 0;
  padding-top: 0;
}

.services-hero {
  padding: 100px 0 60px;
  background:
    linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
    url("../images/cllabs_logo.png") center / cover no-repeat;
  text-align: center;
}

.services-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0d4aa8;
}

.services-subtitle {
  max-width: 700px;
  margin: 15px auto 0;
  color: #555;
}

.services-section {
  padding: 70px 0;
  background-color: #f8fbff;
}

.section-title {
  font-weight: 600;
  color: #0d4aa8;
}

.service-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  font-size: 2.3rem;
  color: #2e9b45;
  margin-bottom: 14px;
}

.service-card h5 {
  font-weight: 600;
  color: #0d4aa8;
}

.service-short {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
}

.service-more {
  display: none;
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

.service-card.active .service-more {
  display: block;
}

.service-toggle {
  margin-top: 14px;
  background: none;
  border: none;
  color: #0d4aa8;
  font-weight: 500;
  cursor: pointer;
}

.service-toggle:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .service-card {
    padding: 24px 20px;
  }
}

/*HOME COLLECTION SECTION*/
.home-collection {
  padding: 70px 0;
}

.section-text {
  color: #555;
  margin-top: 10px;
  max-width: 520px;
}

@media (max-width: 768px) {
  .services-hero {
    padding: 80px 15px 50px;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-section {
    padding: 50px 0;
  }

  .home-collection {
    padding: 50px 0;
  }

  .section-text {
    max-width: 100%;
  }
}

/* filters botton */

.services-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid #0d4aa8;
  background: transparent;
  color: #0d4aa8;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  background: #0d4aa8;
  color: #fff;
}

.filter-btn.active {
  background: #0d4aa8;
  color: #fff;
}

/*WHY CHOOSE OUR SERVICES SECTION*/
.why-services {
  padding: 70px 0;
  background-color: #f9fbff;
}

.section-subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  color: #555;
  font-size: 0.95rem;
}

.why-card {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card i {
  font-size: 2.2rem;
  color: #2e9b45;
  margin-bottom: 14px;
}

.why-card h6 {
  font-weight: 600;
  color: #0d4aa8;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .why-services {
    padding: 50px 0;
  }
}

/*CTA SECTION*/
.services-cta {
  padding: 70px 0 90px;
  background-color: #f4f8ff;
}

.cta-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 35px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.cta-box h3 {
  color: #0d4aa8;
  font-weight: 600;
  margin-bottom: 8px;
}

.cta-box p {
  color: #555;
  margin: 0;
  max-width: 600px;
}

.cta-btn {
  padding: 12px 34px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .services-cta {
    padding: 50px 0 70px;
  }

  .cta-box {
    padding: 30px 22px;
    text-align: center;
  }

  .cta-btn {
    width: 100%;
  }
}

/*filter fix for mobile*/
@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }
}

.services-filter {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .services-filter {
    margin-top: 40px;
  }
}
