:root {
  --primary-blue: #0f2c4c;
  --accent-orange: #fd7e14;
  --steel-gray: #6c757d;
  --light-bg: #f8f9fa;
}

body {
  font-family: "Manrope", sans-serif;
  color: #333;
  overflow-x: hidden;
  padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Utilities --- */
.text-primary-blue {
  color: var(--primary-blue);
}
.text-accent-orange {
  color: var(--accent-orange);
}
.bg-primary-blue {
  background-color: var(--primary-blue);
}
.bg-accent-orange {
  background-color: var(--accent-orange);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  position: relative;
  margin-bottom: 50px;
  font-weight: 700;
  color: var(--primary-blue);
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  margin-top: 15px;
}

.section-title.center::after {
  margin: 15px auto;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 72px 0 42px;
  background:
    radial-gradient(
      circle at top left,
      rgba(253, 126, 20, 0.1),
      transparent 28%
    ),
    linear-gradient(115deg, rgba(8, 25, 43, 0.94), rgba(15, 44, 76, 0.82)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 24, 40, 0.78) 0%,
    rgba(9, 24, 40, 0.28) 52%,
    rgba(9, 24, 40, 0.7) 100%
  );
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto -10% -130px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(253, 126, 20, 0.34),
    rgba(253, 126, 20, 0)
  );
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffd8b8;
}

.hero-content h1,
.hero-copy h1 {
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.02;
  margin-bottom: 12px;
  max-width: 16ch;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.hero-link:hover {
  color: #ffd8b8;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

@media (max-width: 991px) {
  body {
    padding-top: 72px;
  }
}

.btn-custom {
  background-color: var(--accent-orange);
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 10px 24px rgba(253, 126, 20, 0.2);
}

.btn-custom:hover {
  background-color: transparent;
  color: var(--accent-orange);
}

/* --- Founder Card --- */
.founder-card {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.founder-card:hover {
  transform: translateY(-5px);
}

.founder-img-wrapper {
  height: 300px;
  overflow: hidden;
  background-color: #ddd;
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Service Cards --- */
.service-card {
  background: white;
  padding: 40px 30px;
  border-bottom: 4px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  border-bottom: 4px solid var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

/* --- Workforce Counters --- */
.counter-box {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-orange);
  font-family: "Oswald", sans-serif;
  display: block;
}

.counter-label {
  font-size: 1.1rem;
  color: var(--primary-blue);
  font-weight: 600;
}

/* --- Clients --- */
.client-logo {
  background: white;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  font-weight: 700;
  color: var(--steel-gray);
  font-size: 1.2rem;
}

.client-logo:hover {
  transform: scale(1.05);
  color: var(--primary-blue);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* --- Compliance Badges --- */
.compliance-badge {
  display: inline-flex;
  align-items: center;
  background: var(--light-bg);
  padding: 10px 20px;
  border-radius: 50px;
  margin: 5px;
  border: 1px solid #dee2e6;
  font-weight: 600;
  color: var(--primary-blue);
}

.compliance-badge i {
  color: var(--accent-orange);
  margin-right: 10px;
}

/* --- Vision Section --- */
.vision-section {
  background:
    linear-gradient(rgba(15, 44, 76, 0.9), rgba(15, 44, 76, 0.9)),
    url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

/* --- CTA Section --- */
.cta-section {
  background-color: var(--accent-orange);
  color: white;
}

@media (max-width: 991px) {
  body {
    padding-top: 72px;
  }

  .hero-section {
    min-height: auto;
    padding: 68px 0 34px;
  }

  .hero-content h1,
  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .hero-actions {
    gap: 10px;
  }

  .hero-link {
    width: 100%;
  }
}
/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 110px 20px;
  margin-top: 80px;
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 122, 42, 0.22),
      transparent 32%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(14, 28, 47, 0.18),
      transparent 36%
    ),
    linear-gradient(135deg, #f5efe7 0%, #fffaf4 45%, #eef3f7 100%);
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.cta-section::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -60px;
  background: rgba(198, 122, 42, 0.14);
  filter: blur(8px);
}

.cta-section::after {
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: -40px;
  background: rgba(14, 28, 47, 0.08);
}

.cta-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(14, 28, 47, 0.12);
}

.cta-copy {
  max-width: 690px;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(198, 122, 42, 0.12);
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-copy h2 {
  margin-bottom: 16px;
  color: var(--secondary-color);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.1;
}

.cta-copy p {
  margin: 0;
  max-width: 620px;
  color: #455468;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-actions {
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  background: linear-gradient(135deg, var(--secondary-color), #233a5a);
  color: white;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(14, 28, 47, 0.2);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}

.btn-main:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(14, 28, 47, 0.24);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.cta-note {
  color: #627284;
  font-size: 0.92rem;
  line-height: 1.5;
}
