/* Service Details Page Styles - Copied from service-details.ejs */
.hero {
  position: relative;
  background: #0B0D0E;
  color: #fff;
  min-height: 540px;
  padding: 75px 0 48px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, #23272F 0 1px, transparent 1px 80px), repeating-linear-gradient(180deg, #23272F 0 1px, transparent 1px 80px);
  opacity: 0.5;
  z-index: 0;
}

.hero__grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 1px, transparent 1px 80px), repeating-linear-gradient(180deg, transparent 0 1px, transparent 1px 80px);
  z-index: 1;
  pointer-events: none;
}

.hero__grid-cell {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid #23272F;
  opacity: 0;
  z-index: 1;
  pointer-events: auto;
  transition: background 0.18s, opacity 0.18s;
}

.hero__grid-cell:hover {
  opacity: 1;
  z-index: 2;
  background: #2563eb;
}

.hero__centerpiece {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem;
}

.hero__title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -1px;
  padding: 2rem 0;
  color: white;
}

.hero__badge {
  display: inline-block;
  background: #181A1B;
  color: #fff;
  font-size: 0.95rem;
  border-radius: 16px;
  padding: 4px 16px;
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero__cta {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.10);
  transition: background 0.18s;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hero__cta-arrow {
  display: inline-block;
  opacity: 0;
  width: 0;
  margin-left: 0;
  font-size: 1.2em;
  transition: opacity 0.18s, width 0.18s, margin-left 0.18s;
  white-space: nowrap;
  overflow: hidden;
}

.hero__cta:hover {
  background: #1746b3;
}

.hero__cta:hover .hero__cta-arrow {
  opacity: 1;
  width: 1.2em;
  margin-left: 0.5em;
}

body,
html {
  background: #fff;
  color: #181A1B;
  font-family: 'Inter', Arial, sans-serif;
}

.ai-feature-grid {
  background: #fff;
  padding: 64px 0 32px 0;
}

.ai-feature-grid__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.ai-feature-grid__heading {
  font-size: 2.1rem;
  font-weight: 700;
  color: #181A1B;
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 1.3;
}

.ai-feature-grid__highlight {
  color: #2563eb;
  font-weight: 800;
}

.ai-feature-grid__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.ai-feature-card {
  background: #f8fafc;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(37, 99, 235, 0.08);
  padding: 2.2rem 2rem 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #e5e7eb;
  position: relative;
  min-height: 180px;
}

.ai-feature-card__icon {
  font-size: 2.2rem;
  color: #2563eb;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #181A1B;
  margin-bottom: 0.5rem;
}

.ai-feature-card__desc {
  font-size: 1.01rem;
  color: #232a44;
  line-height: 1.5;
}

/* WHY CHOOSE US SECTION */
.ai-consulting {
  background: #fff;
  padding: 64px 0 32px 0;
}

.ai-consulting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.ai-consulting__text {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ai-consulting__title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #181A1B;
  margin-bottom: 1.1rem;
  line-height: 1.2;
}

.ai-consulting__highlight {
  color: #2563eb;
  font-weight: 800;
}

.ai-consulting__card {
  background: #f8fafc;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(37, 99, 235, 0.08);
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  border: 1.5px solid #e5e7eb;
  margin-bottom: 1.1rem;
}

.ai-consulting__card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #181A1B;
  margin-bottom: 0.5rem;
}

.ai-consulting__card-desc {
  font-size: 1.01rem;
  color: #232a44;
  line-height: 1.5;
}

.ai-consulting__image {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
}

.custom-service-hero__img-card {
  background: #f8fafc;
  border-radius: 24px;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 2px 18px rgba(37, 99, 235, 0.08);
  width: 240px;
  height: 240px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.custom-service-hero__img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.custom-service-hero__contact-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.06);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-service-hero__contact-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #181A1B;
  margin-bottom: 8px;
}

.custom-service-hero__contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  color: #232a44;
}

.custom-service-hero__contact-icon {
  font-size: 1.25rem;
  color: #2563eb;
  background: #f3f6fa;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-service-hero__contact-text {
  font-size: 1.08rem;
  color: #232a44;
}

/* CTA SECTION */
.ai-solutions {
  background: #fff;
  padding: 64px 0 0 0;
}

.ai-solutions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.ai-solutions__heading {
  font-size: 2.1rem;
  font-weight: 700;
  color: #181A1B;
  margin-bottom: 1.2rem;
  text-align: center;
}

.ai-solutions__desc {
  font-size: 1.13rem;
  color: #232a44;
  margin-bottom: 2.2rem;
  text-align: center;
}

.custom-service-hero__cta-link {
  color: #2563eb;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.18s;
}

.custom-service-hero__cta-link:hover {
  color: #1e40af;
}

.service-details-quote-btn {
  background: #2563eb;
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  border-radius: 18px;
  padding: 20px 48px;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.10);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin: 0 auto;
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  line-height: 1.2;
}

.service-details-quote-btn:hover {
  background: #1746a2;
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.18);
  text-decoration: none !important;
}

@media (max-width: 991px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .ai-feature-grid__grid,
  .ai-solutions__grid,
  .ai-consulting__container {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .ai-consulting__image img,
  .custom-service-hero__img-card img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .custom-hero__title {
    font-size: 2rem;
  }

  .ai-feature-grid__heading,
  .ai-solutions__heading,
  .ai-consulting__title {
    font-size: 1.3rem;
  }

  .ai-feature-card,
  .ai-solutions__card,
  .ai-consulting__card {
    padding: 1.2rem 1rem;
  }
}