body.page-template-page-home {
  background-color: #f5f6fb;
  color: #1b2230;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.home-page .hero-section {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 21, 45, 0.9),
    rgba(14, 21, 45, 0.3)
  );
  z-index: 0;
}
.hero-section > .container {
  position: relative;
  z-index: 1;
}
.hero-device {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-device img {
  width: 100%;
  display: block;
}

.opacity-85 {
  opacity: 0.85;
}

.metrics {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.service-card {
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 64, 205, 0.12);
}
.service-icon {
  width: 48px;
  height: 48px;
}

.case-studies {
  background: linear-gradient(180deg, #f0f4ff 0%, rgba(240, 244, 255, 0) 100%);
}
.case-card {
  background: #fff;
}
.case-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.about-panel {
  background: #fff;
}
.about-panel .bi {
  font-size: 1.4rem;
  line-height: 1;
}

.testimonial-card {
  background: #fff;
}
.testimonial-avatar {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.cta-banner {
  background: linear-gradient(120deg, #0f6eff, #42c5ff);
  border-radius: 32px;
  margin: 60px auto 120px auto;
  width: min(1200px, 92%);
  box-shadow: 0 20px 60px rgba(15, 110, 255, 0.3);
  padding-left: clamp(1.5rem, 4vw, 4rem);
  padding-right: clamp(1.5rem, 4vw, 4rem);
}
.group-content-width{
    max-width:1480px;
    width:90%;
    margin:0 auto;
}




@media (max-width: 991px) {
  .hero-section {
    padding: 80px 0;
    text-align: center;
  }
  .cta-banner {
    text-align: center;
  }
  .group-content-width{
        width:100%;
    }
}
@media (max-width: 767px) {
    
}
