/* =============================================
   STAFFING SOLUTIONS - CUSTOM STYLES
   Theme: Professional Blue & Orange
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --blue-deep:    #1E5DA5;
  --blue-mid:     #2B6DB8;
  --blue-light:   #3B7DD8;
  --blue-pale:    #E8F2FF;
  --orange:       #FF7A00;
  --orange-light: #FFB366;
  --orange-pale:  #FFF5E8;
  --white:        #FFFFFF;
  --gray-100:     #F8F9FC;
  --gray-200:     #EDF0F7;
  --gray-400:     #9CA3C0;
  --gray-600:     #5A6280;
  --gray-800:     #1E2340;
  --text-main:    #1E2340;
  --text-sub:     #5A6280;
  --shadow-sm:    0 2px 12px rgba(10,36,99,0.08);
  --shadow-md:    0 8px 32px rgba(10,36,99,0.13);
  --shadow-lg:    0 20px 60px rgba(10,36,99,0.18);
  --radius:       14px;
  --radius-lg:    22px;
  --transition:   all 0.32s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 10px; }

/* ===================== NAVBAR ===================== */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  background: rgba(10,36,99,0.85);
  backdrop-filter: blur(12px);
}
#mainNav.scrolled {
  background: rgba(10,36,99,0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 30px rgba(10,36,99,0.22);
  padding: 0;
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.brand-logo-box {
  width: 160px;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
}
.brand-logo-box img {
  width: 100%;
  height: auto;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.brand-tag {
  font-size: 0.6rem; font-weight: 600;
  color: var(--orange-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.875rem; font-weight: 600;
  padding: 0.5rem 0.85rem !important;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link:hover { color: var(--orange-light) !important; }
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.85rem; right: 0.85rem; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  min-width: 220px;
  animation: dropIn 0.22s ease;
  background: var(--white);
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--gray-800);
  transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
}
.dropdown-item i { color: var(--blue-light); width: 18px; }
.dropdown-item:hover {
  background: var(--blue-pale);
  color: var(--blue-deep);
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 0.45rem 1.2rem !important;
  font-weight: 700 !important;
  margin-left: 0.5rem;
  box-shadow: 0 3px 12px rgba(244,124,32,0.38);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.navbar-toggler {
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}





.topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1200;
      background: rgba(10,36,99,0.98);
      color: rgba(255,255,255,0.92);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 0.9rem;
      padding: 0.25rem 6rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      transition: transform 0.32s ease, opacity 0.32s ease, padding 0.32s ease, background 0.32s ease;
      transform: translateY(0);
    }
    .topbar.hidden {
      transform: translateY(-110%);
      opacity: 0;
      pointer-events: none;
    }
    .topbar a {
      color: rgba(255,255,255,0.92);
      text-decoration: none;
      transition: color 0.25s ease;
    }
    .topbar a:hover {
      color: var(--orange-light);
    }
    .topbar .topbar-contact {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      flex-wrap: wrap;
    }
    .topbar .topbar-contact span {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
    }
    .topbar .topbar-social {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }
    .topbar .topbar-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
    }
    .topbar .topbar-social a:hover {
      background: rgba(255,255,255,0.18);
    }
    .topbar.hidden {
      transform: translateY(-110%);
      opacity: 0;
      pointer-events: none;
    }
    @media (min-width: 992px) {
      #mainNav {
        top: 38px;
        transition: var(--transition);
      }
      #mainNav.topbar-hidden {
        top: 0;
      }
    }
    #mainNav {
      transition: var(--transition);
      z-index: 1150;
    }
    #mainNav.scrolled {
      background: rgba(10,36,99,0.96);
      backdrop-filter: blur(18px);
      box-shadow: 0 10px 30px rgba(10,36,99,0.18);
      padding-top: 0.7rem !important;
      padding-bottom: 0.7rem !important;
    }
    #mainNav.scrolled .navbar-brand {
      transform: translateY(-2px) scale(0.94);
    }
    #mainNav.scrolled .brand-logo-box {
      width: 150px;
    }
    .brand-logo-box {
      width: 160px;
      transition: width 0.3s ease, transform 0.3s ease;
    }
    .brand-logo-box {
      width: 160px;
      transition: width 0.3s ease, transform 0.3s ease;
    }
    .navbar-brand {
      transition: var(--transition);
    }

/* ===================== HERO ===================== */
#home {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--blue-deep) 0%, var(--blue-mid) 55%, #1a4fa8 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg-shapes {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-circle-1 { width: 600px; height: 600px; top: -180px; right: -130px; }
.hero-circle-2 { width: 380px; height: 380px; bottom: -100px; left: -80px; }
.hero-circle-3 { width: 200px; height: 200px; top: 50%; left: 40%; background: rgba(244,124,32,0.08); }

.hero-orange-accent {
  position: absolute; top: 0; right: 0;
  width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--orange), transparent);
  opacity: 0.6;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,124,32,0.18);
  border: 1px solid rgba(244,124,32,0.35);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1.4rem;
  animation: fadeInDown 0.7s ease;
}
.hero-eyebrow span.dot {
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title .highlight {
  color: var(--orange-light);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 3px;
}

.hero-subtitle {
  font-size: 1.08rem; color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 2.2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions { animation: fadeInUp 0.8s ease 0.3s both; }
.btn-hero-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 22px rgba(244,124,32,0.45);
  transition: var(--transition);
  text-decoration: none; display: inline-block;
}
.btn-hero-primary:hover {
  background: var(--orange-light);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(244,124,32,0.5);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.95rem; font-weight: 600;
  transition: var(--transition);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease 0.45s both;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--white);
  line-height: 1;
}
.stat-number span { color: var(--orange-light); }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.hero-visual {
  position: relative; z-index: 2;
  animation: fadeInRight 0.9s ease 0.2s both;
}
.hero-card-stack {
  position: relative;
  max-width: 460px; margin-left: auto;
}
.hero-main-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.5rem;
}
.card-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white; font-weight: 700;
}
.card-meta { flex: 1; }
.card-meta h6 { color: white; font-size: 0.9rem; font-weight: 700; margin: 0; }
.card-meta small { color: rgba(255,255,255,0.6); font-size: 0.72rem; }
.card-badge {
  background: rgba(244,124,32,0.25);
  color: var(--orange-light);
  border-radius: 100px;
  padding: 3px 10px; font-size: 0.7rem; font-weight: 700;
}
.hero-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.metric-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 1rem;
  transition: var(--transition);
}
.metric-box:hover { background: rgba(255,255,255,0.15); }
.metric-val { font-size: 1.5rem; font-weight: 800; color: white; line-height: 1; }
.metric-val.orange { color: var(--orange-light); }
.metric-key { font-size: 0.7rem; color: rgba(255,255,255,0.55); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.floating-tag {
  position: absolute;
  background: white;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; color: var(--blue-deep);
  animation: float 4s ease-in-out infinite;
}
.floating-tag i { font-size: 1rem; }
.tag-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.tag-2 { top: -20px; right: -20px; animation-delay: 2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ===================== SECTION COMMONS ===================== */
section { padding: 5.5rem 0; }
.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 0.8rem;
  position: relative; padding-left: 20px;
}
.section-eyebrow::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 12px; height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--text-main);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-desc { font-size: 1rem; color: var(--text-sub); max-width: 540px; line-height: 1.8; }

/* ===================== ABOUT ===================== */
#about { background: var(--white); }

.about-img-wrap {
  position: relative;
}
.about-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-pale), var(--gray-200));
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-img-illustration {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.about-float-card {
  position: absolute;
  background: white; border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.about-float-card.card-tl { top: -18px; left: -18px; }
.about-float-card.card-br { bottom: -18px; right: -18px; }
.float-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.float-icon.blue-bg { background: var(--blue-pale); color: var(--blue-light); }
.float-icon.orange-bg { background: var(--orange-pale); color: var(--orange); }
.float-card-text h6 { font-size: 0.95rem; font-weight: 800; color: var(--text-main); margin: 0; }
.float-card-text small { color: var(--text-sub); font-size: 0.72rem; }

.about-pill-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.about-pill-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 1.1rem;
}
.pill-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); font-size: 1rem;
  flex-shrink: 0; margin-top: 2px;
}
.pill-text h6 { font-size: 0.92rem; font-weight: 700; margin: 0 0 2px; color: var(--text-main); }
.pill-text p { font-size: 0.82rem; color: var(--text-sub); margin: 0; }

/* ===================== SERVICES ===================== */
#services { background: var(--gray-100); }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 3rem; }
@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem;
  transition: var(--transition);
  border: 1.5px solid var(--gray-200);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3.5px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue-mid));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card.featured::before { transform: scaleX(1); background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 58px; height: 58px; border-radius: 14px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--blue-light);
  margin-bottom: 1.3rem;
  transition: var(--transition);
}
.service-card.featured .service-icon-wrap { background: var(--orange-pale); color: var(--orange); }
.service-card:hover .service-icon-wrap { background: var(--blue-light); color: white; }
.service-card.featured:hover .service-icon-wrap { background: var(--orange); color: white; }

.service-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--text-main); margin-bottom: 0.6rem; }
.service-card p  { font-size: 0.83rem; color: var(--text-sub); line-height: 1.75; margin-bottom: 1.2rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700;
  color: var(--blue-light); text-decoration: none;
  transition: var(--transition);
}
.service-card.featured .service-link { color: var(--orange); }
.service-link:hover { gap: 10px; }
.service-card .featured-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--orange-pale); color: var(--orange);
  border-radius: 100px; padding: 3px 10px; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ===================== WHY US ===================== */
#why-us { background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%); color: white; }
#why-us .section-title { color: white; }
#why-us .section-desc { color: rgba(255,255,255,0.7); }
#why-us .section-eyebrow { color: var(--orange-light); }
#why-us .section-eyebrow::before { background: var(--orange-light); }

.why-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-top: 3rem; }
@media (max-width: 991px) { .why-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px)  { .why-cards { grid-template-columns: 1fr; } }

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-6px);
}
.why-card-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(43,92,230,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white; margin: 0 auto 1.2rem;
}
.why-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin: 0; }

/* ===================== INDUSTRIES ===================== */
#industries { background: var(--white); }

.industry-tabs-wrap { margin-top: 2.5rem; }
.industry-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.5rem; }
.ind-tab {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--text-sub); font-size: 0.83rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.ind-tab.active, .ind-tab:hover {
  background: var(--blue-deep); color: white; border-color: var(--blue-deep);
}

.industry-showcase {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
@media (max-width: 767px) { .industry-showcase { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .industry-showcase { grid-template-columns: 1fr; } }

.ind-card {
  border-radius: var(--radius);
  padding: 1.6rem;
  background: var(--gray-100);
  border: 1.5px solid transparent;
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition);
}
.ind-card:hover {
  background: var(--blue-pale); border-color: var(--blue-light);
  transform: translateY(-4px);
}
.ind-icon { font-size: 2rem; }
.ind-info h6 { font-size: 0.9rem; font-weight: 700; color: var(--text-main); margin: 0 0 3px; }
.ind-info small { font-size: 0.75rem; color: var(--text-sub); }

/* ===================== PROCESS ===================== */
#process { background: var(--gray-100); }

.process-steps { margin-top: 3rem; }
.process-step {
  display: flex; gap: 2rem; align-items: flex-start;
  margin-bottom: 2.5rem; position: relative;
}
.step-num-wrap {
  display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
}
.step-num {
  width: 52px; height: 52px; border-radius: 14px;
  background: white; border: 2px solid var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--blue-light);
  box-shadow: 0 4px 16px rgba(43,92,230,0.15);
  position: relative; z-index: 1;
}
.step-line {
  width: 2px; flex: 1; min-height: 50px;
  background: linear-gradient(to bottom, var(--blue-light), transparent);
  margin-top: 6px;
}
.process-step:last-child .step-line { display: none; }
.step-content h5 { font-size: 1rem; font-weight: 800; color: var(--text-main); margin-bottom: 0.4rem; }
.step-content p  { font-size: 0.85rem; color: var(--text-sub); margin: 0; }

/* ===================== STATS SECTION ===================== */
.stats-banner {
  background: var(--orange);
  padding: 3.5rem 0;
}
.stat-banner-item { text-align: center; }
.stat-banner-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700; color: white; line-height: 1;
}
.stat-banner-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; }

/* ===================== CAREER ===================== */
career.html { background: var(--white); }

.career-board { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; margin-top: 2.5rem; }
@media (max-width: 767px) { .career-board { grid-template-columns: 1fr; } }

.job-card {
  background: white; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.6rem;
  transition: var(--transition);
}
.job-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.job-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.8rem; }
.job-title { font-size: 1rem; font-weight: 800; color: var(--text-main); margin: 0; }
.job-type {
  background: var(--blue-pale); color: var(--blue-light);
  border-radius: 100px; padding: 3px 10px; font-size: 0.7rem; font-weight: 700;
  white-space: nowrap; flex-shrink: 0;
}
.job-type.type-orange { background: var(--orange-pale); color: var(--orange); }
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1rem; }
.job-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-sub); }
.job-meta-item i { font-size: 0.85rem; color: var(--blue-light); }
.job-desc { font-size: 0.82rem; color: var(--text-sub); line-height: 1.75; margin-bottom: 1.2rem; }
.btn-apply {
  background: var(--blue-deep); color: white;
  border: none; border-radius: 8px;
  padding: 8px 20px; font-size: 0.82rem; font-weight: 700;
  transition: var(--transition); text-decoration: none; display: inline-block;
}
.btn-apply:hover { background: var(--blue-light); color: white; transform: translateY(-2px); }

.career-cta-box {
  background: linear-gradient(135deg, var(--blue-pale), white);
  border: 2px dashed var(--blue-light);
  border-radius: var(--radius-lg); padding: 2.5rem;
  text-align: center; margin-top: 2rem;
}
.career-cta-box h4 { font-size: 1.2rem; font-weight: 800; color: var(--blue-deep); margin-bottom: 0.6rem; }
.career-cta-box p  { font-size: 0.9rem; color: var(--text-sub); margin-bottom: 1.4rem; }

/* ===================== BLOG ===================== */
#blog { background: var(--gray-100); }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2.5rem; }
@media (max-width: 991px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative; overflow: hidden;
}
.blog-thumb-1 { background: linear-gradient(135deg, #dbeafe, #eff6ff); }
.blog-thumb-2 { background: linear-gradient(135deg, #fef3c7, #fffbeb); }
.blog-thumb-3 { background: linear-gradient(135deg, #dcfce7, #f0fdf4); }
.blog-cat {
  position: absolute; top: 12px; left: 12px;
  background: white; border-radius: 100px; padding: 3px 12px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-deep); box-shadow: var(--shadow-sm);
}
.blog-body { padding: 1.5rem; }
.blog-date { font-size: 0.72rem; color: var(--text-sub); margin-bottom: 0.5rem; font-weight: 600; }
.blog-title { font-size: 0.95rem; font-weight: 800; color: var(--text-main); line-height: 1.45; margin-bottom: 0.6rem; }
.blog-excerpt { font-size: 0.8rem; color: var(--text-sub); line-height: 1.75; margin-bottom: 1rem; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; color: var(--blue-light);
  text-decoration: none; transition: var(--transition);
}
.blog-read-more:hover { gap: 10px; color: var(--blue-deep); }

/* ===================== CONTACT ===================== */
contact-us.html { background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; align-items: start; }
@media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--blue-light); flex-shrink: 0;
}
.contact-icon.orange { background: var(--orange-pale); color: var(--orange); }
.contact-info-text h6 { font-size: 0.9rem; font-weight: 700; color: var(--text-main); margin-bottom: 2px; }
.contact-info-text p  { font-size: 0.85rem; color: var(--text-sub); margin: 0; }

.contact-form-box {
  background: white; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-label { font-size: 0.83rem; font-weight: 700; color: var(--text-main); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.87rem;
  color: var(--text-main);
  transition: var(--transition);
  font-family: 'Manrope', sans-serif;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3.5px rgba(43,92,230,0.1);
  outline: none;
}
.btn-submit {
  background: var(--blue-deep);
  color: white; border: none; width: 100%;
  padding: 13px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 700;
  transition: var(--transition); cursor: pointer;
}
.btn-submit:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(43,92,230,0.35); }

/* ===================== FOOTER ===================== */
footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 2rem;
}
.footer-brand { margin-bottom: 1.2rem; }
.footer-desc { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.95rem;
  transition: var(--transition); text-decoration: none;
}
.social-btn:hover { background: var(--orange); color: white; border-color: var(--orange); transform: translateY(-3px); }
.footer-heading { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: white; margin-bottom: 1.4rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--orange); }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2rem 0 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange-light); }
.orange-text { color: var(--orange-light); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== BACK TO TOP ===================== */
#backToTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-deep); color: white;
  border: none; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
#backToTop.show { opacity: 1; pointer-events: auto; }
#backToTop:hover { background: var(--orange); transform: translateY(-4px); }

/* responsive tweaks */
@media (max-width: 767px) {
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 1.7rem; }
  section { padding: 3.8rem 0; }
}


/* ===================== CONTACT CTA PANEL ===================== */

.contact-panel {
      background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
      color: white;
      padding: 4rem 2rem;
      border-radius: 2rem;
      overflow: hidden;
      position: relative;
    }
    .contact-panel::before {
      content: '';
      position: absolute;
      top: -20px;
      right: -80px;
      width: 220px;
      height: 220px;
      background: rgba(255,255,255,0.12);
      border-radius: 50%;
    }
    .contact-panel h2 {
      font-size: 2.4rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .contact-panel p {
      max-width: 720px;
      color: rgba(255,255,255,0.92);
      margin-bottom: 1.8rem;
    }
    .contact-panel a {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: white;
      color: var(--orange);
      padding: 0.85rem 1.7rem;
      border-radius: 10px;
      font-weight: 700;
      text-decoration: none;
      transition: var(--transition);
    }
    .contact-panel a:hover {
      transform: translateY(-2px);
    }































