@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.ttf") format("truetype");
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #1f2937;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  margin: 0 auto;
  padding: 0 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.services-hero {
  padding: clamp(2.8rem, 6vw, 5rem) 0;
  background: linear-gradient(110deg, #3b82f6 0%, #2563eb 25%, #3730a3 55%, #5b21b6 80%, #4c1d95 100%);
  color: #ffffff;
}

.services-hero-inner h1 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: clamp(2.25rem, 5vw, 3.45rem);
  line-height: 1.15;
}
.services-hero-inner p {
  margin: 1rem 0 0;
  max-width: 620px;
  color: #dbeafe;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.5;
}

.service-detail {
  padding: clamp(3rem, 5vw, 5rem) 0;
  border-bottom: 1px solid #e5e7eb;
}
.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.service-detail-icon {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.55rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2f7cf6, #8224e3);
  box-shadow: 0 8px 18px rgba(47, 124, 246, 0.35);
}
.service-detail-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.service-detail-content h2 {
  margin: 1.2rem 0 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: #111827;
}
.service-detail-content h3 {
  margin: 1.4rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.service-detail-desc {
  margin: 0.8rem 0 0;
  color: #4b5563;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.55;
}

.service-features {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.service-features li {
  position: relative;
  padding-left: 1.9rem;
  color: #374151;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.45;
}
.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: url("../images/circle-tick.png") center/58% no-repeat, linear-gradient(135deg, #3b82f6, #8b5cf6);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.2);
}

.service-callout {
  margin: 1.6rem 0 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid;
  -o-border-image: linear-gradient(180deg, #3b82f6, #8b5cf6) 1;
     border-image: linear-gradient(180deg, #3b82f6, #8b5cf6) 1;
  background: #f8fafc;
  border-radius: 0 0.5rem 0.5rem 0;
  color: #374151;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-style: italic;
  line-height: 1.55;
}

.service-detail-media {
  margin: 0;
  width: 100%;
  max-height: 370px;
  border-radius: 0.8rem;
  background: #f1f5f9;
  overflow: hidden;
}
.service-detail-media img {
  width: 100%;
  height: 100%;
  max-height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0.8rem;
}

.tech-capabilities {
  background: #ffffff;
  padding: clamp(3.5rem, 5vw, 5.5rem) 0;
}

.tech-cap-head {
  text-align: center;
}
.tech-cap-head h2 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #111827;
}
.tech-cap-head p {
  margin: 0.7rem 0 0;
  color: #64748b;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.5;
}

.tech-cap-grid {
  margin-top: clamp(2rem, 3.5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.tech-cap-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  background: #ffffff;
  padding: 1.4rem 1.3rem;
  transition: box-shadow 0.25s ease;
}
.tech-cap-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.tech-cap-card h3 {
  margin: 0.9rem 0 0;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}
.tech-cap-card p {
  margin: 0.5rem 0 0;
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
}

.tech-cap-icon {
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.5rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2f7cf6, #8224e3);
  box-shadow: 0 8px 18px rgba(47, 124, 246, 0.35);
}
.tech-cap-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.services-cta-section {
  padding: 0;
}
.services-cta-section .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.services-cta-card {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.2rem, 3vw, 2.8rem);
  background: radial-gradient(65% 85% at 78% 22%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 70%), linear-gradient(100deg, #2563eb 0%, #7c3aed 50%, #9333ea 100%);
  color: #ffffff;
}
.services-cta-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}
.services-cta-card p {
  margin: 1rem auto 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.5;
}

.services-cta-btn {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.7rem 1.3rem;
  background: #ffffff;
  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.services-cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

@media (max-width: 1023px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .service-detail-media {
    max-height: 280px;
    order: -1;
  }
  .service-detail--reversed .service-detail-media {
    order: -1;
  }
  .tech-cap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 0.8rem;
  }
  .services-hero {
    padding: 2.4rem 0;
  }
  .services-hero-inner h1 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.15;
  }
  .services-hero-inner p {
    margin-top: 0.75rem;
    font-size: 1.02rem;
    line-height: 1.5;
  }
  .service-detail {
    padding: 2.2rem 0;
  }
  .service-detail-icon {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0.45rem;
  }
  .service-detail-content h2 {
    margin-top: 1rem;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .service-detail-content h3 {
    margin-top: 1.1rem;
    font-size: 1rem;
  }
  .service-detail-desc {
    font-size: 1rem;
  }
  .service-features li {
    padding-left: 1.7rem;
    font-size: 0.98rem;
  }
  .service-callout {
    margin-top: 1.2rem;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }
  .service-detail-media {
    max-height: 240px;
  }
  .tech-capabilities {
    padding: 2.5rem 0;
  }
  .tech-cap-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.25rem;
  }
  .tech-cap-card {
    padding: 1.1rem 1rem;
  }
  .tech-cap-card h3 {
    font-size: 1.1rem;
  }
  .tech-cap-card p {
    font-size: 0.95rem;
  }
  .services-cta-card {
    padding: 2rem 1rem;
  }
  .services-cta-card p {
    font-size: 1rem;
    line-height: 1.45;
  }
  .services-cta-btn {
    width: auto;
  }
}
@media (max-width: 479px) {
  .services-hero-inner h1 {
    font-size: 1.75rem;
  }
  .service-detail-content h2 {
    font-size: 1.45rem;
  }
  .service-detail-media {
    max-height: 200px;
  }
  .services-cta-card h2 {
    font-size: 1.55rem;
  }
}/*# sourceMappingURL=services-page.css.map */