/* AI Service Page Styles - Copied from services-ai.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: #000;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
}
.ai-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  overflow: hidden;
}
.ai-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000 60%, #2563eb 100%);
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}
/* HERO GRID EFFECT */
.ai-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: 1;
  pointer-events: none;
}
.ai-hero__grid-cell {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid #23272F;
  opacity: 0;
  z-index: 2;
  pointer-events: auto;
  transition: background 0.18s, opacity 0.18s;
}
.ai-hero__grid-cell:hover {
  opacity: 1;
  background: rgba(37, 99, 235, 0.18);
  z-index: 3;
}
.ai-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 1rem 3rem 1rem;
}
.ai-hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
.ai-hero__highlight {
  color: #2563eb;
  font-weight: 800;
}
.ai-hero__subtitle {
  font-size: 1.18rem;
  color: #e0e0e0;
  margin-bottom: 2.2rem;
  line-height: 1.5;
}
.ai-hero__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
}
.ai-btn {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.85rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  text-transform: none;
  display: inline-flex;
  align-items: center;
}
.ai-btn--primary {
  background: #fff;
  color: #2563eb;
  border: 2px solid #fff;
}
.ai-btn--primary:hover {
  background: #2563eb;
  color: #fff;
  border: 2px solid #2563eb;
}
.ai-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.ai-btn--outline:hover {
  background: #2563eb;
  color: #fff;
  border: 2px solid #2563eb;
}
.ai-btn--dark {
  background: #181818;
  color: #fff;
  border: 2px solid #181818;
}
.ai-btn--dark:hover {
  background: #2563eb;
  color: #fff;
  border: 2px solid #2563eb;
}

/* FEATURE GRID */
.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: 1.2rem;
  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: 220px;
}
.ai-feature-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-feature-card__icon i {
  color: #2563eb;
  font-size: 2.2rem;
  opacity: 1;
}
.ai-feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.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;
}

/* END-TO-END AI CONSULTING */
.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: center;
  gap: 48px;
}
.ai-consulting__text {
  flex: 1 1 0%;
}
.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__subtitle {
  font-size: 1.13rem;
  color: #232a44;
  margin-bottom: 2.2rem;
  line-height: 1.5;
}
.ai-consulting__card {
  background: #f8fafc;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(37,99,235,0.08);
  padding: 2rem 2rem 2rem 2rem;
  border: 1.5px solid #e5e7eb;
  margin-bottom: 1.5rem;
}
.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: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-consulting__image img {
  width: 320px;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(37,99,235,0.13);
  background: #f8fafc;
}

/* AI SOLUTIONS SECTION */
.ai-solutions {
  background: #fff;
  padding: 64px 0 64px 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;
}
.ai-solutions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.ai-solutions__card {
  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: 220px;
  background: #f8fafc;
}
.ai-solutions__card--orange {
  background: linear-gradient(135deg, #2563eb 0%, #1746b3 100%);
  color: #fff;
}
.ai-solutions__card--dark {
  background: linear-gradient(135deg, #2563eb 0%, #1746b3 100%);
  color: #fff;
}
.ai-solutions__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-solutions__icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}
.ai-solutions__icon i {
  color: #fff;
  font-size: 3rem;
  opacity: 1;
}
.ai-solutions__card-title,
.ai-solutions__card-desc,
.ai-solutions__card {
  color: #fff !important;
}
.ai-solutions__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #181A1B;
  margin-bottom: 0.5rem;
}
.ai-solutions__card-desc {
  font-size: 1.01rem;
  color: #232a44;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

@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 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .ai-hero__grid-bg { display: none; }
}
@media (max-width: 700px) {
  .ai-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; }
} 