/* ===== STICKY FOOTER FIX ===== */

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}
    
    :root {
      --primary: #111827; /* dark slate */
      --accent: #ea6c00; /* orange */
      --accent-soft: rgba(234, 108, 0, 0.12);
      --bg-light: #f9fafb;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
      background-color: #ffffff;
      color: #111827;
      scroll-behavior: smooth;
    }

    /* NAVBAR */
    .navbar {
      transition: all 0.2s ease;
    }

    .navbar.scrolled {
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
      background-color: rgba(17, 24, 39, 0.96) !important;
      backdrop-filter: blur(14px);
    }

    /* HERO */
    .hero-section {
      padding-top: 6.5rem;
      padding-bottom: 4.5rem;
      background: radial-gradient(circle at top left, #fff3e0 0, #ffffff 46%);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 999px;
      background-color: var(--accent-soft);
      color: #7c3800;
      padding: 0.25rem 0.75rem;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .hero-badge span.dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background-color: #ea6c00;
    }

    .hero-title {
      font-size: clamp(2.1rem, 4vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      color: var(--primary);
    }

    .hero-subtitle {
      font-size: 1rem;
      color: #4b5563;
    }

    .btn-primary-ak {
      background-color: var(--accent);
      border-color: var(--accent);
      border-radius: 999px;
      padding: 0.7rem 1.6rem;
      font-weight: 600;
      color: #ffffff;
    }

    .btn-primary-ak:hover {
      background-color: #c95e00;
      border-color: #c95e00;
    }

    .btn-outline-ak {
      border-radius: 999px;
      border-color: var(--primary);
      color: var(--primary);
      padding: 0.7rem 1.6rem;
      font-weight: 600;
    }

    .btn-outline-ak:hover {
      background-color: var(--primary);
      color: #fff;
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat h4 {
      font-weight: 700;
      margin-bottom: 0.1rem;
    }

    .hero-stat p {
      color: #6b7280;
      font-size: 0.87rem;
      margin-bottom: 0;
    }

    .hero-card {
      border-radius: 1.5rem;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
      border: 1px solid rgba(148, 163, 184, 0.35);
      overflow: hidden;
      background: linear-gradient(135deg, #0f172a, #111827);
      color: #f9fafb;
    }

    .hero-card-header {
      padding: 1.5rem 1.5rem 0.5rem;
    }

    .hero-card-grid {
      padding: 0.5rem 1.5rem 1.5rem;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      font-size: 0.85rem;
    }

    .hero-pill {
      border-radius: 0.9rem;
      background-color: rgba(15, 23, 42, 0.7);
      padding: 0.75rem 0.85rem;
      border: 1px solid rgba(148, 163, 184, 0.5);
    }

    .hero-pill span.label {
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-size: 0.7rem;
      color: #9ca3af;
      display: block;
    }

    .hero-pill span.value {
      font-weight: 600;
      color: #e5e7eb;
    }

    /* SECTION GENERIC */
    section {
      padding: 4rem 0;
    }

    .section-label {
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      color: #9ca3af;
      font-weight: 600;
    }

    .section-title {
      font-size: 1.9rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 0.5rem;
    }

    .section-subtitle {
      color: #4b5563;
      max-width: 620px;
    }

    /* CARDS */
    .feature-card,
    .service-card {
      border-radius: 1.2rem;
      border: 1px solid #e5e7eb;
      transition: transform 0.18s ease, box-shadow 0.18s ease,
        border-color 0.18s ease;
      height: 100%;
      background-color: #ffffff;
    }

    .feature-card:hover,
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
      border-color: rgba(148, 163, 184, 0.8);
    }

    .icon-circle {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      background-color: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #7c3800;
      font-size: 1.1rem;
      margin-bottom: 0.8rem;
    }

    .badge-soft {
      background-color: var(--accent-soft);
      color: #7c3800;
      border-radius: 999px;
      font-size: 0.7rem;
      padding: 0.25rem 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 600;
    }

    /* INDUSTRIES PILL GRID */
    .industry-pill {
      border-radius: 999px;
      border: 1px dashed #d1d5db;
      padding: 0.5rem 0.9rem;
      font-size: 0.85rem;
      color: #374151;
      background-color: #f9fafb;
    }

    /* TESTIMONIAL */
    .testimonial-card {
      border-radius: 1.5rem;
      border: 1px solid #e5e7eb;
      padding: 2rem;
      background: #f9fafb;
    }

    .testimonial-quote {
      font-size: 1rem;
      color: #374151;
    }

    .testimonial-name {
      font-weight: 600;
      margin-bottom: 0;
    }

    .testimonial-role {
      font-size: 0.85rem;
      color: #6b7280;
    }

    /* CONTACT */
    .contact-card {
      border-radius: 1.35rem;
      border: 1px solid #e5e7eb;
      background-color: #ffffff;
      box-shadow: 0 12px 30px rgba(148, 163, 184, 0.25);
    }

    .form-control,
    .form-select {
      border-radius: 0.75rem;
      border-color: #d1d5db;
      padding: 0.7rem 0.9rem;
      font-size: 0.95rem;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 0.16rem rgba(234, 108, 0, 0.25);
    }

    /* FOOTER */
    .footer {
      background-color: var(--primary);
      color: #e5e7eb;
      padding: 2.5rem 0 1.5rem;
      margin-top: 3rem;
    }

    .footer a {
      color: #9ca3af;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .footer a:hover {
      color: #f9fafb;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.9rem;
    }

    .footer-logo span.icon {
      width: 22px;
      height: 22px;
      border-radius: 7px;
      background-color: #ea6c00;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: #111827;
    }

    /* SMALL UTILITIES */
    .bg-light-alt {
      background-color: var(--bg-light);
    }

    @media (max-width: 767.98px) {
      .hero-card-grid {
        grid-template-columns: 1fr;
      }
      .hero-section {
        padding-top: 5.5rem;
      }
    }

    /* ===== ACTIVE NAV LINK ===== */
    .navbar-nav .nav-item {
      margin: 0 0.5rem;
    }

    .nav-link.active {
      font-weight: 600;
      color: #ffffff !important;
      position: relative;
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 2px;
      background: #ea6c00;
      border-radius: 2px;
    }

    /* HERO CAROUSEL */
.hero-carousel {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  background: #111827;
}

.hero-slide-img {
  height: 420px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-caption {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, rgba(17,24,39,0) 0%, rgba(17,24,39,0.88) 70%);
}

.carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

@media (max-width: 767.98px) {
  .hero-slide-img { height: 320px; }
}

/* ===== HERO DARK BG ===== */
.hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #111827 100%) !important;
}
.hero-title { color: #f9fafb !important; }
.hero-subtitle { color: #94a3b8 !important; }
.hero-stat h4 { color: #f9fafb !important; }
.hero-stat p { color: #94a3b8 !important; }
.hero-badge {
  background-color: rgba(234,108,0,0.18) !important;
  color: #fdba74 !important;
}
.hero-badge span.dot { background-color: #ea6c00 !important; }

/* ===== AWARDS SECTION ===== */
.awards-section {
  background-color: #f9fafb;
  padding: 4rem 0;
}
.award-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.2rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}
.award-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ea6c00;
}

/* ===== CTA BANNER ===== */
.cta-section { padding: 3rem 0 4rem; }
.cta-card {
  background: linear-gradient(135deg, #111827, #1e293b);
  border-radius: 1.5rem;
  padding: 2.5rem 3rem;
  color: #f9fafb;
}
.cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f9fafb;
  letter-spacing: -0.03em;
}
.cta-sub { color: #94a3b8; font-size: 0.95rem; }
.btn-cta-orange {
  background-color: #ea6c00;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
}
.btn-cta-orange:hover { background-color: #c95e00; color: #fff; }
.btn-cta-outline {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #f9fafb;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  background: transparent;
}
.btn-cta-outline:hover {
  border-color: #fff;
  color: #fff;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #0f172a;
  color: #e5e7eb;
  padding: 3.5rem 0 0;
  margin-top: 0;
}
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-heading {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
}
.footer-links { margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: #f9fafb; }
.footer-contact { margin: 0; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}
.footer-contact a { color: #9ca3af; text-decoration: none; }
.footer-contact a:hover { color: #f9fafb; }
.footer-icon { opacity: 0.6; flex-shrink: 0; }
.footer-cert-badge {
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(234,108,0,0.4);
  color: #fdba74;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  letter-spacing: 0.06em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: #6b7280;
}

/* ===== PROFILE PAGE ===== */
.profile-section { padding: 5rem 0; }

/* Hero */
.profile-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  margin-top: 66px;
}
.profile-hero-img-wrap {
  position: absolute;
  inset: 0;
}
.profile-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.profile-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.95) 0%, rgba(10,14,26,0.45) 60%, rgba(10,14,26,0.2) 100%);
}
.profile-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
}
.profile-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f9fafb;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0.5rem 0;
}
.profile-hero-sub {
  color: #94a3b8;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.bg-light-alt.profile-section {
  padding: 3rem 0;
}
/* Stats bar */
.stats-bar-section { padding: 0; }
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #111827;
  border-radius: 0 0 1.2rem 1.2rem;
  padding: 1.8rem 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f9fafb;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}
@media (max-width: 575px) { .stat-divider { display: none; } }

/* Who we are image */
.profile-img-stack {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
}
.profile-img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1.4rem;
  display: block;
}
.profile-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #ea6c00;
  border-radius: 1rem;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(234,108,0,0.35);
}
.profile-img-badge-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.profile-img-badge-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

/* Checklist */
.profile-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.profile-checklist li {
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
  color: #374151;
  font-size: 0.93rem;
}
.profile-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ea6c00;
  font-weight: 700;
}

/* Mission cards */
.mission-card {
  border-radius: 1.2rem;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.mission-card-accent {
  background: linear-gradient(135deg, #111827, #1e293b);
  border-color: transparent;
}
.mission-icon { font-size: 1.6rem; }
.fw-700 { font-weight: 700; }

/* Timeline */
.timeline { position: relative; padding-left: 1.5rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e5e7eb;
}
.timeline-item {
  position: relative;
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d1d5db;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #d1d5db;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  left: -1.5rem;
}
.timeline-dot-accent {
  background: #ea6c00;
  box-shadow: 0 0 0 2px rgba(234,108,0,0.3);
}
.timeline-body { flex: 1; }
.timeline-year {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ea6c00;
  margin-bottom: 0.2rem;
}
.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.3rem;
}
.timeline-text {
  font-size: 0.88rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* Profile image grid */
.profile-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  border-radius: 1.2rem;
  overflow: hidden;
}
.profile-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}
.profile-grid-img-tall {
  grid-row: 1 / 3;
}

/* Award cards */
.award-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 1.2rem 1.2rem 0 0;
  background: #f3f4f6;
}
.award-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== PAGE TRANSITIONS ===== */
body {
  opacity: 0;
  transition: opacity 0.08s ease;
}
body.loaded {
  opacity: 1;
}