/* =========================================================
   Smart Manpower — Complete Design System
   Brand: Navy #162264 | Green #3db420 | White #fff
   Font: Inter (Google Fonts)
   ========================================================= */

/* --- CSS Custom Properties --- */
:root {
  --navy:      #162264;
  --navy-dk:   #0d1640;
  --navy-lt:   #1e2e8a;
  --green:     #3db420;
  --green-dk:  #2c8a16;
  --green-lt:  #edfae5;
  --white:     #fff;
  --light:     #f8fafc;
  --text:      #0f172a;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: .25s ease;
}

/* --- Base Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dk); }

ul { list-style: none; padding: 0; margin: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }

p { color: var(--muted); line-height: 1.75; }

.sec-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-lt);
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.lead { font-size: 1.1rem; color: var(--muted); }

/* --- Buttons --- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green);
  color: var(--white) !important;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary-custom:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,180,32,.35);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--navy) !important;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white) !important;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green);
  color: var(--white) !important;
  padding: .75rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-green:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
}

.btn-white-navy {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--navy) !important;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-white-navy:hover {
  background: transparent;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-white-green {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--green-dk) !important;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-white-green:hover {
  background: var(--green);
  color: var(--white) !important;
  border-color: var(--green);
  transform: translateY(-2px);
}

/* --- Navbar --- */
.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.2rem 0;
}

.nav-main.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
  padding: .6rem 0;
}

.nav-main .navbar-brand img {
  height: 48px;
  width: auto;
}

.nav-main .navbar-brand .brand-fallback {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}

.nav-main.scrolled .navbar-brand .brand-fallback { color: var(--navy); }

.nav-main .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: .4rem .85rem !important;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-main.scrolled .nav-link { color: var(--navy) !important; }
.nav-main .nav-link:hover {
  color: var(--green) !important;
  background: rgba(61,180,32,.08);
}

.nav-main .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: .5rem;
  min-width: 240px;
}

.nav-main .dropdown-item {
  border-radius: 6px;
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
}
.nav-main .dropdown-item:hover {
  background: var(--green-lt);
  color: var(--green-dk);
}

.navbar-toggler {
  border: none;
  padding: .3rem;
}
.navbar-toggler:focus { box-shadow: none; }
.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(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.nav-main.scrolled .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(22,34,100,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- Section Base --- */
.section { padding: 5rem 0; }
.section-light { padding: 5rem 0; background: var(--light); }
.section-navy { padding: 5rem 0; background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3, .section-navy h4, .section-navy .sec-label { color: var(--white); }
.section-navy p { color: rgba(255,255,255,.75); }
.section-navy .sec-label { background: rgba(61,180,32,.2); }
.section-green {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dk) 100%);
  color: var(--white);
}
.section-green h2, .section-green h3 { color: var(--white); }
.section-green p { color: rgba(255,255,255,.88); }

/* --- Hero (Home) --- */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, var(--navy-lt) 100%);
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(61,180,32,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30,46,138,.3) 0%, transparent 40%);
  z-index: 1;
}

/* Dot mesh */
.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(61,180,32,.15);
  border: 1px solid rgba(61,180,32,.4);
  color: #7fff5a;
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-home h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-home .lead { color: rgba(255,255,255,.78); margin-bottom: 2rem; }

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.2rem;
  margin-top: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
}
.trust-item i { color: var(--green); }

/* Mock Dashboard Card */
.dashboard-card {
  background: #162264;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 24px 64px rgba(22,34,100,.28), 0 4px 16px rgba(0,0,0,.15);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.dashboard-header h6 { color: var(--white); font-size: .85rem; margin: 0; }
.dash-badge {
  background: rgba(61,180,32,.2);
  color: #7fff5a;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 50px;
}

.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .75rem;
  margin-bottom: 1.2rem;
}
.dash-stat {
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  padding: .75rem;
  text-align: center;
}
.dash-stat .val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  display: block;
}
.dash-stat .lbl { font-size: .7rem; color: rgba(255,255,255,.6); }

.dash-bar-wrap { margin-bottom: .5rem; }
.dash-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .3rem;
}
.dash-bar {
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}
.dash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #7fff5a);
  border-radius: 3px;
}

.dash-list { margin-top: 1rem; }
.dash-list-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .78rem;
  color: rgba(255,255,255,.7);
}
.dash-list-item:last-child { border: none; }
.dash-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dash-dot.green { background: var(--green); }
.dash-dot.yellow { background: #f59e0b; }
.dash-dot.red { background: #ef4444; }

/* Burj Khalifa SVG wrapper */
.burj-wrap {
  position: absolute;
  bottom: 0;
  right: -30px;
  opacity: .07;
  z-index: 1;
  pointer-events: none;
}

/* --- Stats Bar --- */
.stats-bar { padding: 2.5rem 0; background: var(--white); box-shadow: var(--shadow-sm); }
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .3rem;
}
.stat-item i { font-size: 1.8rem; color: var(--green); margin-bottom: .3rem; }
.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label { font-size: .82rem; color: var(--muted); font-weight: 500; }
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  align-self: center;
}

/* --- Service Cards --- */
.card-service {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card-service::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card-service:hover::before { transform: scaleX(1); }
.card-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.icon-navy { background: rgba(22,34,100,.1); color: var(--navy); }
.icon-green { background: var(--green-lt); color: var(--green-dk); }
.icon-blue { background: #eff6ff; color: #3b82f6; }
.icon-purple { background: #f5f3ff; color: #7c3aed; }
.icon-orange { background: #fff7ed; color: #ea580c; }
.icon-teal { background: #f0fdfa; color: #0d9488; }

.card-service h5 { color: var(--navy); margin-bottom: .6rem; font-size: 1.05rem; }
.card-service p { font-size: .88rem; margin-bottom: 1rem; }
.card-service .learn-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.card-service .learn-more:hover { gap: .6rem; }

/* --- Feature Cards --- */
.card-feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: var(--green-lt);
  color: var(--green-dk);
}
.card-feature h5 { color: var(--navy); font-size: 1rem; margin-bottom: .5rem; }
.card-feature p { font-size: .85rem; margin: 0; }

/* --- Why Choose (Navy) Feature Items --- */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition), transform var(--transition);
}
.why-item:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(61,180,32,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  flex-shrink: 0;
}
.why-item h5 { color: var(--white); font-size: 1rem; margin-bottom: .4rem; }
.why-item p { font-size: .85rem; color: rgba(255,255,255,.65); margin: 0; }

/* --- Industry Cards --- */
.card-industry {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.card-industry:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}
.card-industry i { font-size: 2.2rem; color: var(--navy); margin-bottom: .8rem; display: block; }
.card-industry h6 { color: var(--navy); font-weight: 700; font-size: .92rem; margin-bottom: .3rem; }
.card-industry .count { font-size: .75rem; color: var(--muted); }

/* --- Process Steps --- */
.step-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(61,180,32,.35);
  z-index: 1;
}
.step-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--border));
}
.step-wrap h5 { color: var(--navy); font-size: .95rem; margin-bottom: .4rem; }
.step-wrap p { font-size: .82rem; color: var(--muted); }

/* --- Testimonial Cards --- */
.card-testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  transition: transform var(--transition);
  position: relative;
}
.card-testimonial:hover { transform: translateY(-4px); }
.card-testimonial::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--green);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: .3;
}
.testimonial-stars { color: #f59e0b; margin-bottom: .8rem; font-size: .9rem; }
.testimonial-text { font-style: italic; color: var(--text); font-size: .9rem; margin-bottom: 1.2rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.author-title { font-size: .78rem; color: var(--muted); }

/* --- Team Cards --- */
.card-team {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-team:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.card-team h5 { color: var(--navy); margin-bottom: .25rem; }
.card-team .role { font-size: .85rem; color: var(--green); font-weight: 600; margin-bottom: .5rem; }
.card-team p { font-size: .82rem; }

/* --- Value Cards --- */
.card-value {
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  height: 100%;
  border-top: 4px solid var(--green);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-value:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-value i { font-size: 2rem; color: var(--green); margin-bottom: .8rem; display: block; }
.card-value h5 { color: var(--navy); margin-bottom: .5rem; }

/* --- FAQ Accordion --- */
.faq-wrap .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-wrap .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  padding: 1.1rem 1.3rem;
}
.faq-wrap .accordion-button:not(.collapsed) {
  background: var(--green-lt);
  color: var(--green-dk);
  box-shadow: none;
}
.faq-wrap .accordion-button::after {
  filter: none;
}
.faq-wrap .accordion-body {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  background: var(--white);
  padding: 1rem 1.3rem 1.3rem;
}

/* --- Contact Form --- */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-size: .9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,180,32,.12);
  outline: none;
}
.form-control::placeholder { color: #b0bec5; }

/* --- Contact Info --- */
.contact-info-wrap {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  color: var(--white);
}
.contact-info-wrap h4 { color: var(--white); margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-item:last-of-type { border: none; }
.contact-item i { font-size: 1.3rem; color: var(--green); margin-top: .1rem; flex-shrink: 0; }
.contact-item-label { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: .2rem; }
.contact-item-val { color: var(--white); font-size: .9rem; font-weight: 500; }

/* --- Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: 7rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 600px; }
.breadcrumb { background: none; padding: 0; }
.breadcrumb-item { font-size: .85rem; }
.breadcrumb-item a { color: rgba(255,255,255,.6); }
.breadcrumb-item a:hover { color: var(--green); }
.breadcrumb-item.active { color: var(--green); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* --- About Values Section --- */
.company-values-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.company-values-card h4 { color: var(--white); margin-bottom: 1.2rem; }
.value-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(61,180,32,.15);
  color: #7fff5a;
  border: 1px solid rgba(61,180,32,.3);
  padding: .35rem .85rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  margin: .25rem;
}

/* --- Mock Software UI --- */
.software-card {
  background: var(--navy-dk);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
}
.software-topbar {
  display: flex;
  gap: .4rem;
  margin-bottom: 1.2rem;
}
.software-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.software-nav {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.software-nav-item {
  padding: .3rem .7rem;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
}
.software-nav-item.active {
  background: var(--green);
  color: var(--white);
}
.software-nav-item:not(.active) {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
}

/* --- Feature Check List --- */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem 0;
  font-size: .92rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border: none; }
.feature-list li i { color: var(--green); font-size: 1rem; flex-shrink: 0; }

/* --- Outsourcing Cards --- */
.card-outsource {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-outsource:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-outsource i { font-size: 1.8rem; color: var(--green); margin-bottom: .8rem; display: block; }
.card-outsource h5 { color: var(--navy); margin-bottom: .5rem; }

/* --- Pricing Cards --- */
.card-pricing {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.card-pricing:hover { border-color: var(--green); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-pricing.featured {
  border-color: var(--green);
  transform: scale(1.03);
}
.card-pricing.featured:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: .3rem 1.2rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
}
.card-pricing h4 { color: var(--navy); font-size: 1.3rem; margin-bottom: .5rem; }
.card-pricing .price-note { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.pricing-list li {
  padding: .5rem 0;
  font-size: .88rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .5rem;
  text-align: left;
}
.pricing-list li:last-child { border: none; }
.pricing-list li i { color: var(--green); flex-shrink: 0; }

/* --- Blog Cards --- */
.card-blog {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-blog:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.card-blog-body { padding: 1.4rem; }
.blog-meta { font-size: .78rem; color: var(--muted); margin-bottom: .5rem; }
.card-blog-body h5 { color: var(--navy); font-size: .95rem; margin-bottom: .5rem; }
.coming-soon-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: .2rem .6rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}

/* --- Footer --- */
.footer-main {
  background: var(--navy-dk);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-brand p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; margin: 1rem 0; }
.footer-heading {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer-links li { margin-bottom: .55rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--green); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .75rem;
}
.footer-contact-item i { color: var(--green); font-size: .95rem; margin-top: .15rem; }
.footer-contact-item span { font-size: .85rem; color: rgba(255,255,255,.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; margin: 0; }

.social-links { display: flex; gap: .5rem; margin-top: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--green); color: var(--white); }

/* --- WhatsApp Floating Button --- */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
  color: var(--white);
}
.wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- Alert messages --- */
.alert-success-custom {
  background: var(--green-lt);
  border: 1px solid var(--green);
  color: var(--green-dk);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-weight: 500;
}
.alert-error-custom {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-weight: 500;
}

/* --- Map placeholder --- */
.map-placeholder {
  height: 300px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--muted);
  border: 2px dashed var(--border);
}
.map-placeholder i { font-size: 3rem; color: var(--navy); }

/* --- Legal pages --- */
.legal-content h2 { font-size: 1.4rem; color: var(--navy); margin-top: 2.5rem; margin-bottom: .75rem; }
.legal-content h3 { font-size: 1.1rem; color: var(--navy); margin-top: 1.5rem; margin-bottom: .5rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: var(--muted); margin-bottom: .4rem; font-size: .93rem; }

/* --- CTA Section --- */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green-dk) 0%, var(--green) 50%, #5ecd38 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2rem; }

/* --- Blog subscribe --- */
.subscribe-form { display: flex; gap: .5rem; max-width: 440px; margin: 0 auto; }
.subscribe-form .form-control { border-radius: 8px; }
.subscribe-form .btn-primary-custom { white-space: nowrap; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .section, .section-light, .section-navy, .section-green, .cta-section { padding: 3.5rem 0; }
  .hero-home { padding: 5.5rem 0 3rem; min-height: auto; }
  .stat-divider { display: none; }
  .stats-bar .row { row-gap: 1.5rem; }
  .card-pricing.featured { transform: scale(1); }
  .burj-wrap { display: none; }
  .step-connector { display: none; }
  .nav-main .dropdown-menu { box-shadow: none; border-top: 1px solid var(--border); }
}

@media (max-width: 767.98px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .form-wrap { padding: 1.5rem; }
  .contact-info-wrap { padding: 1.5rem; }
  .dashboard-card { margin-top: 2rem; }
  .subscribe-form { flex-direction: column; }
  .trust-indicators { gap: .4rem .8rem; }
}

/* --- Utility --- */
.text-green { color: var(--green) !important; }
.text-navy { color: var(--navy) !important; }
.bg-green-lt { background: var(--green-lt); }
.rounded-custom { border-radius: var(--radius); }
.shadow-custom { box-shadow: var(--shadow); }
.fw-800 { font-weight: 800; }
.mb-section { margin-bottom: 3.5rem; }
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .92rem;
  color: var(--text);
}
.check-list li i { color: var(--green); flex-shrink: 0; margin-top: .1rem; }


/* =============================================================
   SMART MANPOWER — DESIGN SYSTEM v3
   White navbar · Light hero · Dark footer redesign
   ============================================================= */

/* ── Navbar: clean white ─────────────────────────────────────── */
.nav-main {
  background: #ffffff !important;
  box-shadow: 0 2px 20px rgba(22,34,100,.10) !important;
  padding: .3rem 0 !important;
  border-bottom: 1px solid #e8ecf4 !important;
}
.nav-main.scrolled {
  background: rgba(255,255,255,.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .3rem 0 !important;
}
.nav-logo-link { padding: 0 !important; }
.nav-logo-img  { height: 68px; width: auto; display: block; }

/* Nav links: navy text, green underline active */
.nav-main .nav-link {
  color: #162264 !important;
  font-weight: 500;
  font-size: .92rem;
  padding: .45rem .75rem !important;
  border-radius: 6px;
  position: relative;
}
.nav-main .nav-link:hover { color: #3db420 !important; background: #f0fdf4 !important; }
.nav-main .nav-link.active { color: #3db420 !important; font-weight: 600; }
.nav-main .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: .75rem; right: .75rem;
  height: 2px;
  background: #3db420;
  border-radius: 2px;
}

/* Dropdown */
.nav-main .dropdown-menu {
  border: 1px solid #e8ecf4 !important;
  box-shadow: 0 12px 36px rgba(22,34,100,.13) !important;
  border-radius: 10px !important;
}
.nav-main .dropdown-item { color: #162264 !important; font-size: .88rem; }
.nav-main .dropdown-item:hover { background: #f0fdf4 !important; color: #3db420 !important; }

/* Get Demo button */
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #3db420;
  color: #fff !important;
  font-weight: 600;
  font-size: .9rem;
  padding: .55rem 1.3rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(61,180,32,.35);
  transition: background .15s, transform .12s, box-shadow .15s;
}
.btn-demo:hover {
  background: #35a01b;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(61,180,32,.42);
}

/* Mobile hamburger */
.nav-main .navbar-toggler { border-color: rgba(22,34,100,.25) !important; }
.nav-main .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(22,34,100,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
@media (max-width:991px) {
  .nav-main .navbar-collapse {
    background: #fff !important;
    border-top: 1px solid #e8ecf4 !important;
    padding: .75rem 1rem 1rem !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 8px 24px rgba(22,34,100,.10) !important;
  }
}

/* ── Hero: light white ───────────────────────────────────────── */
.hero-home {
  background: linear-gradient(148deg, #eef2ff 0%, #ffffff 52%, #f0fdf5 100%) !important;
  min-height: 88vh !important;
  padding-top: 5.5rem !important;
  padding-bottom: 3rem !important;
}
.hero-home::before {
  background-image:
    radial-gradient(circle at 5% 70%, rgba(61,180,32,.07) 0%, transparent 45%),
    radial-gradient(circle at 95% 10%, rgba(22,34,100,.05) 0%, transparent 40%) !important;
}
.hero-home h1 { color: #162264 !important; }
.hero-home .lead { color: #4a5568 !important; }

/* Hero right: Burj behind dashboard */
.hero-right-wrap {
  position: relative;
}
.hero-burj-photo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  opacity: .18;
  filter: saturate(.4) brightness(1.1);
  pointer-events: none;
  z-index: 0;
}
.hero-right-wrap .dashboard-card {
  position: relative;
  z-index: 1;
}

/* Hero badge: "RIGHT PEOPLE. RIGHT SOLUTIONS." */
.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #f0fdf4;
  border: 1px solid rgba(61,180,32,.3);
  color: #1a7a0a;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .3rem .85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.hero-tagline-badge i { color: #3db420; }

/* UAE highlighted in hero h1 */
.hero-uae { color: #3db420; }

.trust-indicators { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.trust-item { color: #4a5568 !important; font-size: .85rem; font-weight: 500; }
.trust-item i { color: #3db420 !important; }
.hero-home .btn-outline-white {
  color: #162264 !important;
  border: 2px solid rgba(22,34,100,.35) !important;
  background: transparent !important;
}
.hero-home .btn-outline-white:hover {
  background: rgba(22,34,100,.06) !important;
  border-color: #162264 !important;
}

/* ── Section Navy: stay dark ─────────────────────────────────── */
.section-navy { background: #0f1d4a !important; }
.section-navy h2,.section-navy h3,.section-navy h4 { color: #fff !important; }
.section-navy p { color: rgba(255,255,255,.65) !important; }
.section-navy .sec-label { background: rgba(61,180,32,.15) !important; color: #72e44e !important; }
.why-item {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  box-shadow: none !important;
}
.why-item:hover {
  background: rgba(61,180,32,.12) !important;
  border-color: rgba(61,180,32,.4) !important;
  transform: translateY(-4px) !important;
}
.why-icon { background: rgba(61,180,32,.15) !important; }
.why-item h5 { color: #fff !important; font-size:.95rem; }
.why-item p { color: rgba(255,255,255,.6) !important; }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0d1640 0%, #162264 100%) !important;
  padding: 6rem 0 3rem !important;
}

/* ── CTA section ─────────────────────────────────────────────── */
.section-green {
  background: linear-gradient(145deg, #1f6b0e 0%, #2c8a16 40%, #3db420 100%) !important;
}

/* =============================================================
   FOOTER — Complete redesign
   ============================================================= */
.footer-main {
  background: #0a1628 !important;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}

.footer-desc {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.footer-divider {
  width: 40px; height: 3px;
  background: #3db420;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.footer-social { display: flex; gap: .6rem; }
.fsoc-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .9rem;
  transition: all .15s;
}
.fsoc-btn:hover {
  background: #3db420;
  border-color: #3db420;
  color: #fff;
  transform: translateY(-2px);
}

/* Column headings */
.footer-col-heading {
  color: #fff !important;
  font-size: .75rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  margin-bottom: 1.1rem !important;
  padding-bottom: .6rem !important;
  border-bottom: 2px solid #3db420 !important;
  display: inline-block !important;
}

/* Column links */
.footer-col-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-col-links li { margin-bottom: .45rem; }
.footer-col-links a {
  color: rgba(255,255,255,.58);
  text-decoration: none;
  font-size: .83rem;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color .14s, gap .14s;
}
.footer-col-links a i { font-size: .65rem; color: #3db420; flex-shrink: 0; }
.footer-col-links a:hover { color: #fff; gap: .5rem; }

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .85rem;
  color: rgba(255,255,255,.6);
  font-size: .83rem;
  line-height: 1.5;
}
.footer-contact-list i { color: #3db420; margin-top: .15rem; flex-shrink: 0; font-size: .95rem; }
.footer-contact-list a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-contact-list a:hover { color: #3db420; }

/* Why list */
.footer-why-list {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-why-list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.6);
  font-size: .83rem;
  margin-bottom: .6rem;
}
.footer-why-list i { color: #3db420; font-size: .9rem; flex-shrink: 0; }

/* Newsletter */
.footer-newsletter {
  background: #0f1e3a;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 1.8rem 0;
}
.nl-icon {
  width: 52px; height: 52px;
  background: rgba(61,180,32,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #3db420;
  font-size: 1.3rem;
}
.nl-heading {
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}
.nl-divider {
  width: 1px; height: 52px;
  background: rgba(255,255,255,.15);
  margin: 0 auto;
}
.nl-form {
  display: flex;
  gap: .6rem;
}
.nl-input {
  flex: 1;
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: 8px !important;
  color: #fff !important;
  padding: .65rem 1rem !important;
  font-size: .88rem !important;
}
.nl-input::placeholder { color: rgba(255,255,255,.35) !important; }
.nl-input:focus { outline: none !important; border-color: #3db420 !important; box-shadow: none !important; }
.nl-btn {
  background: #3db420;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .65rem 1.4rem;
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex; align-items: center; gap: .4rem;
  cursor: pointer;
  transition: background .15s;
}
.nl-btn:hover { background: #35a01b; }

/* Footer bottom */
.footer-bottom {
  padding: 1.2rem 0;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom-link {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  font-size: .8rem;
}
.footer-bottom-link:hover { color: #3db420; }
.footer-bottom-sep { color: rgba(255,255,255,.2); margin: 0 .5rem; }

/* Certification badges */
.cert-badges { display: flex; gap: .5rem; justify-content: flex-end; flex-wrap: wrap; }
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 5px;
  white-space: nowrap;
}
.cert-badge i { color: #3db420; font-size: .75rem; }

@media (max-width:767px) {
  .cert-badges { justify-content: flex-start; }
  .nl-form { flex-direction: column; }
}

/* ── Stat bar numbers: larger, bolder ───────────────────────── */
.stat-item .stat-number { font-size: 2rem !important; font-weight: 800 !important; }

/* ── Industry card: green hover icon ────────────────────────── */
.card-industry:hover i { color: var(--green) !important; transition: color .25s; }

/* ── Service card: green top border on hover ─────────────────── */
.card-service { border-top: 3px solid transparent !important; transition: border-color .25s, transform .25s, box-shadow .25s !important; }
.card-service:hover { border-top-color: var(--green) !important; }

/* ── Responsive nav padding fix ─────────────────────────────── */
@media (max-width: 991px) {
  .nav-main { padding: .6rem 0 !important; }
  .navbar-collapse { background: var(--white); border-top: 1px solid var(--border); padding: 1rem; margin-top: .5rem; border-radius: 0 0 12px 12px; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
}

/* =============================================================
   HOMEPAGE v3 — Hero, Services Strip, Stats+CTA
   ============================================================= */

/* ── Hero: decorative shapes ─────────────────────────────────── */
.hero-home { overflow: hidden; position: relative; }
.hero-deco-navy {
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  background: #162264;
  border-radius: 50%;
  opacity: .07;
  pointer-events: none;
}
.hero-deco-green {
  position: absolute;
  top: 20px; right: -30px;
  width: 160px; height: 160px;
  background: #3db420;
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
}

/* ── Hero right wrap: Burj behind dashboard ──────────────────── */
.hero-right-wrap {
  position: relative;
  min-height: 480px;
}
.hero-burj-photo {
  position: absolute;
  left: -40px; top: -20px;
  width: 340px;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  opacity: .22;
  filter: saturate(.3) brightness(1.1);
  pointer-events: none;
  z-index: 0;
}
.hero-right-wrap .dashboard-card {
  position: relative;
  z-index: 1;
  margin-left: auto;
  max-width: 440px;
}

/* ── Solutions strip ─────────────────────────────────────────── */
.solutions-strip {
  background: #fff;
  border-top: 1px solid #e8ecf4;
  border-bottom: 1px solid #e8ecf4;
}
.solutions-strip-head {
  padding: 2.5rem 2rem;
  border-right: 1px solid #e8ecf4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solutions-strip-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #162264;
  line-height: 1.3;
  margin: 0;
}
.solutions-explore {
  border-top: 1px solid #e8ecf4;
  background: #fafbff;
}

/* Individual solution card */
.sol-card {
  padding: 1.8rem 1.2rem;
  border-right: 1px solid #e8ecf4;
  text-align: center;
  transition: background .18s, box-shadow .18s;
  cursor: default;
}
.sol-card:last-child { border-right: none; }
.sol-card:hover {
  background: #f0fdf4;
  box-shadow: inset 0 -3px 0 #3db420;
}
.sol-card-icon {
  width: 52px; height: 52px;
  border: 2px solid #e8ecf4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  color: #162264;
  transition: all .18s;
}
.sol-card:hover .sol-card-icon {
  border-color: #3db420;
  color: #3db420;
  background: #f0fdf4;
}
.sol-card h6 {
  font-size: .8rem;
  font-weight: 700;
  color: #162264;
  margin-bottom: .5rem;
  line-height: 1.3;
}
.sol-card p {
  font-size: .72rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Explore all button */
.btn-explore-all {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #162264;
  color: #fff !important;
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s, transform .12s;
}
.btn-explore-all:hover { background: #1e3580; transform: translateY(-1px); }

/* ── Stats + CTA section ─────────────────────────────────────── */
.stats-cta-wrap { overflow: hidden; }

.stats-dark-panel {
  background: #0f1d4a;
  padding: 3.5rem 3rem;
  height: 100%;
  display: flex;
  align-items: center;
}
.sdp-item {
  text-align: center;
}
.sdp-icon {
  width: 48px; height: 48px;
  background: rgba(61,180,32,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #3db420;
  margin: 0 auto .75rem;
}
.sdp-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #3db420;
  line-height: 1;
  margin-bottom: .25rem;
}
.sdp-lbl {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* CTA light panel */
.cta-light-panel {
  background: #f8faff;
  height: 100%;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-headshot {
  width: 130px;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(22,34,100,.12);
}
.cta-light-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #162264;
  margin-bottom: .6rem;
}
.cta-light-content p {
  font-size: .88rem;
  color: #4a5568;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* ── Responsive adjustments ──────────────────────────────────── */
@media (max-width: 991px) {
  .hero-right-wrap { min-height: 380px; }
  .hero-burj-photo { width: 260px; }
  .solutions-strip-head { border-right: none; border-bottom: 1px solid #e8ecf4; }
  .sol-card { border-right: none; border-bottom: 1px solid #e8ecf4; }
  .stats-dark-panel { padding: 2.5rem 2rem; }
  .cta-light-panel { flex-direction: column; text-align: center; padding: 2.5rem 2rem; }
  .cta-headshot { width: 100px; height: 120px; min-height: unset; }
}
@media (max-width: 767px) {
  .solutions-strip-head { padding: 1.5rem; }
  .sol-card { padding: 1.2rem .8rem; }
  .sdp-num { font-size: 1.8rem; }
}

/* =============================================================
   MEGA MENU
   ============================================================= */
.nav-main { position: relative; }

/* The nav item that holds the mega menu */
.nav-mega-wrap { position: static !important; }

/* Arrow icon */
.nav-mega-arrow {
  font-size: .65rem;
  transition: transform .2s;
  vertical-align: middle;
  margin-left: .15rem;
}
.nav-mega-wrap:hover .nav-mega-arrow,
.nav-mega-wrap.mega-open .nav-mega-arrow { transform: rotate(180deg); }

/* Mega menu panel */
.mega-menu {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: #fff;
  border-top: 3px solid #3db420;
  box-shadow: 0 16px 48px rgba(22,34,100,.13);
  border-radius: 0 0 14px 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 1050;
  pointer-events: none;
}

/* Transparent bridge: fills the gap between nav link and mega menu panel */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
  background: transparent;
}

/* Desktop hover handled entirely by JS (.mega-open class) */

/* Show via JS class (mobile toggle + keyboard) */
.nav-mega-wrap.mega-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

/* Inner layout */
.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 220px;
  align-items: stretch;
  padding: 0;
}

/* Columns */
.mega-col {
  padding: 1.6rem 2rem;
}
.mega-cta-col {
  background: #f4f7ff;
  border-radius: 0 0 14px 0;
  padding: 0;
}

/* Column label */
.mega-col-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #3db420;
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #e8ecf4;
  text-transform: uppercase;
}

/* Divider between columns */
.mega-divider {
  background: #e8ecf4;
  margin: 1.5rem 0;
  flex-shrink: 0;
  width: 1px;
}

/* Mega menu item */
.mega-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem .8rem;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background .15s;
  margin-bottom: .2rem;
}
.mega-item:hover { background: #f0fdf4; }

.mega-item-icon {
  width: 40px; height: 40px;
  background: #eef1fb;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  color: #162264;
  flex-shrink: 0;
  transition: all .15s;
}
.mega-item:hover .mega-item-icon {
  background: #3db420;
  color: #fff;
}
.mega-item-title {
  font-size: .9rem;
  font-weight: 700;
  color: #162264;
  line-height: 1.3;
  margin-bottom: .18rem;
}
.mega-item-desc {
  font-size: .76rem;
  color: #64748b;
  line-height: 1.45;
}

/* CTA box */
.mega-cta-box {
  padding: 2rem 1.6rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.mega-cta-icon {
  width: 54px; height: 54px;
  background: rgba(61,180,32,.13);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #3db420;
  margin: 0 auto .6rem;
}
.mega-cta-box h6 {
  font-size: .95rem;
  font-weight: 800;
  color: #162264;
  margin-bottom: .3rem;
  line-height: 1.3;
}
.mega-cta-box p {
  font-size: .76rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: .8rem;
}
.mega-cta-btn {
  display: block;
  background: #3db420;
  color: #fff !important;
  font-size: .82rem;
  font-weight: 700;
  padding: .6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none !important;
  width: 100%;
  transition: background .14s, transform .12s;
  box-shadow: 0 4px 12px rgba(61,180,32,.3);
}
.mega-cta-btn:hover { background: #35a01b; transform: translateY(-1px); }
.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  color: #162264 !important;
  font-weight: 600;
  text-decoration: none !important;
  margin-top: .25rem;
}
.mega-view-all:hover { color: #3db420 !important; }

/* ── Mobile: compact absolute dropdown ───────────────────────── */
@media (max-width: 991px) {
  .mega-menu {
    position: absolute !important;
    left: 0 !important; right: 0 !important;
    top: 100% !important;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 0 0 12px 12px !important;
  }
  .mega-inner {
    grid-template-columns: 1fr !important;
  }
  .mega-divider { display: none; }
  .mega-col { padding: 1rem 1.4rem; border-bottom: 1px solid #e8ecf4; }
  .mega-cta-col { border-radius: 0 0 12px 12px; }
  .nav-mega-wrap.mega-open > .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: all !important;
  }
}

/* Hero Burj full (no dashboard overlay) */
.hero-burj-full {
  position: relative !important;
  left: auto !important; top: auto !important;
  width: 100% !important;
  height: 420px !important;
  opacity: .55 !important;
  filter: saturate(.5) brightness(1.05) !important;
  border-radius: 20px !important;
  object-fit: cover !important;
  object-position: center top !important;
  box-shadow: 0 20px 60px rgba(22,34,100,.15) !important;
}
