/* Brand styling */
:root {
  --brand-primary: #3c63ff;
  --brand-deep: #1f2b6c;
  --brand-accent: #f5f7ff;
  --brand-soft: #eef2ff;
  --text-main: #1a1a1a;
  --text-muted: #6c757d;
  --shadow-soft: 0 15px 40px rgba(13, 38, 76, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: #fff;
  scroll-behavior: smooth;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand-primary);
  border-radius: 50%;
}

.nav-link {
  font-weight: 500;
}

.hero-section {
  padding: 140px 0 100px;
  background: radial-gradient(circle at 20% 20%, #f0f4ff, transparent 35%), radial-gradient(circle at 80% 10%, #f9ecff, transparent 25%), linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.hero-card {
  border-radius: 18px;
  background: #fff;
}

.hero-visual img {
  transition: transform 0.6s ease;
}

.hero-card:hover .hero-visual img {
  transform: scale(1.03);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--brand-deep);
  font-weight: 700;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
}

.service-card,
.team-card,
.step-card {
  border: none;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.team-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 38, 76, 0.18);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.pill-card {
  background: var(--brand-accent);
  color: var(--brand-deep);
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.avatar:first-child {
  margin-left: 0;
}

.team-photo {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  inset: 0;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.cta-banner {
  background: linear-gradient(120deg, #2b3d8f, #3c63ff);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 25px 60px rgba(60, 99, 255, 0.35);
}

.step-card {
  padding: 18px;
  background: #fff;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-wrapper footer {
  position: relative;
  z-index: 5;
}

.btn-primary {
  background: linear-gradient(135deg, #3c63ff, #2b3d8f);
  border: none;
  box-shadow: 0 12px 24px rgba(60, 99, 255, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2f4dcc, #22357f);
}

.icon-circle i,
.pill-card i {
  font-size: 1.1rem;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 110px;
  }

  .testimonial-card {
    position: relative;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .section-heading h2 {
    font-size: 1.7rem;
  }
}

