/* ============================================
       Services page — CSS
       ============================================ */
:root {
  --dt-accent: #24c6db;
  --dt-accent-dark: #1aa9bd;
  --dt-accent-tint: rgba(36, 198, 219, 0.10);
  --dt-accent-tint-strong: rgba(36, 198, 219, 0.18);
  --dt-navy: #14313f;
  --dt-navy-deep: #0c222c;
  --dt-body: #5c6b73;
  --dt-line: rgba(20, 49, 63, 0.08);
  --dt-surface: #f7fbfb;

  /* rotating accent palette used sparingly on icons/badges
     to keep sections from feeling flat, while --dt-accent
     stays the dominant brand color everywhere else */
  --dt-c1: #24c6db;
  --dt-c1-tint: rgba(36, 198, 219, 0.12);
  --dt-c2: #6366f1;
  --dt-c2-tint: rgba(99, 102, 241, 0.12);
  --dt-c3: #22b573;
  --dt-c3-tint: rgba(34, 181, 115, 0.12);
  --dt-c4: #f7931e;
  --dt-c4-tint: rgba(247, 147, 30, 0.12);
}

/* Services Page Hero */
.services-page-hero {
  padding: 120px 0 90px;
  background: linear-gradient(180deg, #eefbfc 0%, var(--dt-surface) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

section.services.section.sm {
  padding: 80px !important;
}

.services-page-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--dt-accent-tint-strong);
  filter: blur(2px);
}

.services-page-hero::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--dt-c2-tint);
  filter: blur(2px);
}

.services-page-hero .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--dt-accent-dark);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.services-page-hero .hero-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--dt-accent);
  display: inline-block;
}

.services-page-hero h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dt-navy);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.services-page-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--dt-body);
  position: relative;
  z-index: 1;
}

.services-page-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 44px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.services-page-hero .hero-stats .stat b {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--dt-navy);
}

.services-page-hero .hero-stats .stat span {
  font-size: 13px;
  color: var(--dt-body);
}

/* Service Cards */
.service-detail-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  background: #fff;
  border: 1px solid var(--dt-line);
  border-radius: 10px;
  border-top: 3px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 45px rgba(20, 49, 63, 0.10);
}

.service-detail-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  background: var(--dt-accent-tint);
}

.service-detail-icon i {
  font-size: 25px;
  color: var(--dt-accent-dark);
}

/* rotate icon color + top border per card, 4-color cycle,
   so the 8 service cards read as a set rather than 8 identical tiles */
.services .row > div:nth-child(4n+1) .service-detail-icon { background: var(--dt-c1-tint); }
.services .row > div:nth-child(4n+1) .service-detail-icon i { color: var(--dt-c1); }
.services .row > div:nth-child(4n+1) .service-detail-card:hover { border-top-color: var(--dt-c1); }

.services .row > div:nth-child(4n+2) .service-detail-icon { background: var(--dt-c2-tint); }
.services .row > div:nth-child(4n+2) .service-detail-icon i { color: var(--dt-c2); }
.services .row > div:nth-child(4n+2) .service-detail-card:hover { border-top-color: var(--dt-c2); }

.services .row > div:nth-child(4n+3) .service-detail-icon { background: var(--dt-c3-tint); }
.services .row > div:nth-child(4n+3) .service-detail-icon i { color: var(--dt-c3); }
.services .row > div:nth-child(4n+3) .service-detail-card:hover { border-top-color: var(--dt-c3); }

.services .row > div:nth-child(4n+4) .service-detail-icon { background: var(--dt-c4-tint); }
.services .row > div:nth-child(4n+4) .service-detail-icon i { color: var(--dt-c4); }
.services .row > div:nth-child(4n+4) .service-detail-card:hover { border-top-color: var(--dt-c4); }

.service-detail-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dt-navy);
  margin-bottom: 5px;
}

.service-detail-card .service-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--dt-accent-dark);
  margin-bottom: 12px;
}

.service-detail-card p.service-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--dt-body);
  margin-bottom: 18px;
}

.service-features {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--dt-navy);
  margin-bottom: 9px;
  line-height: 1.5;
}

.service-features li i {
  color: var(--dt-accent);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dt-navy);
  text-decoration: none;
  padding-top: 16px;
  border-top: 1px solid var(--dt-line);
  transition: color 0.2s ease, gap 0.2s ease;
}

.service-detail-card:hover .service-detail-link {
  color: var(--dt-accent-dark);
}

.service-detail-link i {
  transition: transform 0.2s ease;
}

.service-detail-card:hover .service-detail-link i {
  transform: translateX(3px);
}

/* Why Choose Us */
.why-choose-us {
  padding: 70px 0;
  background: linear-gradient(135deg, #eefbfc 0%, #f4f2fd 100%);
}

.why-choose-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  border-left: 3px solid transparent;
  height: 100%;
  box-shadow: 0 6px 20px rgba(20, 49, 63, 0.05);
}

.why-choose-number {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dt-accent-tint);
  color: var(--dt-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

/* rotate the 4 why-choose cards through the same accent cycle */
.why-choose-us .row > div:nth-child(4n+1) .why-choose-card { border-left-color: var(--dt-c1); }
.why-choose-us .row > div:nth-child(4n+1) .why-choose-number { background: var(--dt-c1-tint); color: var(--dt-c1); }

.why-choose-us .row > div:nth-child(4n+2) .why-choose-card { border-left-color: var(--dt-c2); }
.why-choose-us .row > div:nth-child(4n+2) .why-choose-number { background: var(--dt-c2-tint); color: var(--dt-c2); }

.why-choose-us .row > div:nth-child(4n+3) .why-choose-card { border-left-color: var(--dt-c3); }
.why-choose-us .row > div:nth-child(4n+3) .why-choose-number { background: var(--dt-c3-tint); color: var(--dt-c3); }

.why-choose-us .row > div:nth-child(4n+4) .why-choose-card { border-left-color: var(--dt-c4); }
.why-choose-us .row > div:nth-child(4n+4) .why-choose-number { background: var(--dt-c4-tint); color: var(--dt-c4); }

.why-choose-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dt-navy);
  margin-bottom: 6px;
}

.why-choose-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dt-body);
  margin: 0;
}

/* Process */
.service-process {
  padding: 60px 0;
  background: #ffffff;
}

.process-card {
  text-align: center;
  padding: 40px 20px;
}

.process-number {
  width: 55px;
  height: 55px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: var(--dt-accent-tint);
  color: var(--dt-accent-dark);
}

/* rotate the 4 process steps through the accent cycle,
   which also reinforces that these are sequential/distinct stages */
.service-process .row > div:nth-child(4n+1) .process-number { background: var(--dt-c1-tint); color: var(--dt-c1); }
.service-process .row > div:nth-child(4n+2) .process-number { background: var(--dt-c2-tint); color: var(--dt-c2); }
.service-process .row > div:nth-child(4n+3) .process-number { background: var(--dt-c3-tint); color: var(--dt-c3); }
.service-process .row > div:nth-child(4n+4) .process-number { background: var(--dt-c4-tint); color: var(--dt-c4); }

.container.section-title.aos-init.aos-animate {
  padding: 0px !important;
}

.process-card h4 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--dt-navy);
}

.process-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dt-body);
}

/* FAQ */
.services-faq {
  padding: 60px 0;
  background: linear-gradient(180deg, #f7fbfc 0%, #eef7f8 100%);
}

.services-faq .accordion-item {
  border: 1px solid var(--dt-line);
  border-radius: 10px !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.services-faq .accordion-button {
  font-size: 16px;
  font-weight: 600;
  color: var(--dt-navy);
  background: #fff;
  padding: 20px 24px;
  box-shadow: none;
}

.services-faq .accordion-button:not(.collapsed) {
  color: var(--dt-accent-dark);
  background: var(--dt-accent-tint);
}

.services-faq .accordion-button:focus {
  box-shadow: none;
  border-color: var(--dt-line);
}

.services-faq .accordion-button::after {
  background-size: 16px;
}

.services-faq .accordion-body {
  padding: 4px 24px 22px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--dt-body);
}

/* CTA — bold gradient close to the page */
.services-cta {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dt-navy-deep) 0%, var(--dt-navy) 45%, var(--dt-accent-dark) 130%);
}

.services-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.services-cta::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(36, 198, 219, 0.15);
}

.services-cta h2 {
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.services-cta p {
  max-width: 650px;
  margin: 0 auto 25px;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  z-index: 1;
}

.services-cta .btn-primary {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  background: var(--dt-accent);
  border: 2px solid var(--dt-accent);
  color: #06262b;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease,
              transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 25px rgba(36, 198, 219, 0.25);
}

.services-cta .btn-primary i {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.services-cta .btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--dt-navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.services-cta .btn-primary:hover i {
  transform: translateX(4px);
}

.services-cta .btn-primary:active {
  transform: translateY(0);
}

.services-cta .btn-primary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .services-page-hero .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .services-page-hero {
    padding: 60px 20px 60px;
  }

  .services-page-hero h1 {
    font-size: 32px;
  }

  .why-choose-us,
  .service-process,
  .services-faq {
    padding: 60px 0;
  }
}
