/*
Theme Name: Dakshinkali Manpower Supplies
Theme URI: https://www.dakshinkalimanpower.com
Author: Dakshinkali Manpower Development Team
Author URI: https://www.dakshinkalimanpower.com
Description: Premier Corporate WordPress Theme for Dakshinkali Manpower Supplies Pvt. Ltd. (Govt Licence No. 877/067/068). Features dynamic Job Demands, Certificate Scans, Managing Director Spotlight, Candidate Application Form, and Enterprise Security Hardening.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dakshinkali-manpower
Tags: recruitment, manpower, corporate, nepalese, government-licensed, custom-menu, custom-post-types, responsive-layout
*/

/* ==========================================================================
   Dakshinkali Manpower Supplies Pvt. Ltd. — Premier Corporate Design System
   Color Palette: Vibrant Electric Orange (#F26522), Deep Navy (#0B132B / #070F22), Crisp White
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --orange: #F26522;
  --orange-hover: #E05300;
  --orange-light: #FFF4ED;
  --orange-border: rgba(242, 101, 34, 0.28);

  --navy: #0B132B;
  --navy-dark: #070F22;
  --navy-card: #0E1B38;
  --navy-light: #1C2A4A;

  --paper: #FAFAFA;
  --section-bg: #F8F9FA;
  --card: #FFFFFF;

  --text: #111827;
  --muted: #4B5563;
  --muted-light: #6B7280;
  --line: #EAECF0;
  --line-soft: #F3F4F6;
  --line-dark: rgba(255, 255, 255, 0.12);

  --display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --body: 'Inter', -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  --shadow-xs: 0 1px 3px rgba(16, 24, 40, 0.05);
  --shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.06);
  --shadow: 0 12px 32px -4px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 20px 48px -8px rgba(16, 24, 40, 0.14);
  --shadow-orange: 0 10px 28px -6px rgba(242, 101, 34, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #FFFFFF;
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--display);
  margin: 0;
  line-height: 1.15;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}

p {
  margin: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--orange-light);
  color: var(--orange-hover);
}

/* ---------- Layout Containers ---------- */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section--bg {
  background: var(--section-bg);
}

.section--navy {
  background: var(--navy);
  color: #E5E7EB;
}

.section--navy h2,
.section--navy h3 {
  color: #FFFFFF;
}

/* ---------- Eyebrows & Gradient Titles ---------- */
.eyebrow-badge {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--orange-border);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(242, 101, 34, 0.12);
}

.section--navy .eyebrow-badge,
.hero .eyebrow-badge {
  color: #FF9E66;
  background: rgba(255, 158, 102, 0.15);
  border-color: rgba(255, 158, 102, 0.3);
}

h2.title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.025em;
}

.lede {
  font-size: 16.5px;
  color: var(--muted);
  max-width: 640px;
  margin-top: 14px;
  line-height: 1.6;
}

.text-gradient {
  background: linear-gradient(135deg, #F26522 0%, #FF7332 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: all .2s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-orange {
  background: linear-gradient(135deg, #F26522 0%, #E05300 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  background: linear-gradient(135deg, #FF7332 0%, #ED5A07 100%);
  box-shadow: 0 14px 34px -4px rgba(242, 101, 34, 0.52);
}

.btn-outline-dark {
  border-color: var(--line);
  color: var(--navy);
  background: #FFFFFF;
  box-shadow: var(--shadow-xs);
}

.btn-outline-dark:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #FFFFFF;
}

.hero .btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero .btn-outline-dark:hover {
  background: #FFFFFF;
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: #FFFFFF;
}

.btn-navy:hover {
  background: var(--navy-light);
}

.btn-white {
  background: #FFFFFF;
  color: var(--orange);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #FAFAFA;
  color: var(--orange-hover);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* Topbar & Header */
.topbar {
  background: #060D1E;
  color: #9CA3AF;
  font-size: 12.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  letter-spacing: .01em;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left {
  font-weight: 500;
  color: #D1D5DB;
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  display: inline-block;
  flex-shrink: 0;
}

.topbar-tagline {
  color: #F9FAFB;
  font-weight: 600;
  font-size: 12.5px;
}

.topbar-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

.topbar-location {
  color: #9CA3AF;
  font-size: 12px;
}

.topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.topbar-socials {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-social-link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #D1D5DB;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.topbar-social-link:hover {
  background: var(--orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-social-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #D1D5DB;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.footer-social-badge:hover {
  background: linear-gradient(135deg, #F26522 0%, #E05300 100%);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 101, 34, 0.35);
}

.topbar-item {

  color: #D1D5DB;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 12.5px;
  padding: 3px 8px;
  border-radius: 6px;
}

.topbar-item:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.topbar-icon {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

.topbar-phone {
  color: #FFFFFF;
  font-weight: 600;
  background: rgba(242, 101, 34, 0.12);
  border: 1px solid rgba(242, 101, 34, 0.3);
}

.topbar-phone:hover {
  background: var(--orange);
  color: #FFFFFF;
  border-color: var(--orange);
}

.topbar-phone .topbar-icon {
  color: #FF9E66;
}

.topbar-phone:hover .topbar-icon {
  color: #FFFFFF;
}


.topbar-right a:hover {
  color: var(--orange);
}

header.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}

header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap,
.footer-logo-wrap {
  display: flex;
  align-items: center;
}

.brand-logo-wrap img,
.custom-logo,
.custom-logo-link img,
.brand img {
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-wrap img,
.footer-logo-wrap .custom-logo {
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  background: #FFFFFF;
  padding: 4px 8px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .brand-logo-wrap img,
  .custom-logo,
  .custom-logo-link img,
  .brand img {
    max-height: 42px;
  }
}


.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(11, 19, 43, 0.25);
}

.brand-text strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17.5px;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}

.brand-text span {
  font-size: 11px;
  color: var(--muted-light);
  display: block;
  font-weight: 500;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav.main-nav a {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  border-radius: var(--radius-pill);
  transition: all .18s ease;
}

nav.main-nav a:hover {
  color: var(--navy);
  background: #F3F4F6;
}

nav.main-nav a.is-active {
  color: var(--orange);
  font-weight: 700;
  background: var(--orange-light);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .header-prospectus-btn {
    display: none !important;
  }

  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    display: none;
    box-shadow: var(--shadow-lg);
  }

  nav.main-nav.is-open {
    display: flex;
  }

  nav.main-nav a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .brand-icon {
    display: none !important;
  }

  .topbar-location,
  .topbar-divider {
    display: none !important;
  }
}


/* Page Banner */
.page-banner {
  position: relative;
  padding: 76px 0;
  color: #FFFFFF;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 15, 34, 0.94) 0%, rgba(7, 15, 34, 0.82) 55%, rgba(7, 15, 34, 0.5) 100%);
  z-index: 1;
}

.page-banner .wrap {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-banner h1.title {
  color: #FFFFFF;
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.page-banner p.lede {
  color: #E5E7EB;
  font-size: 17.5px;
  margin-top: 14px;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-banner .eyebrow-badge {
  color: #FF9E66;
}

/* ==========================================================================
   HOMEPAGE HERO SECTION WITH DARK OVERLAY & EXECUTIVE WHITE TYPOGRAPHY
   ========================================================================== */
.hero {
  position: relative;
  padding: 84px 0 76px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #FFFFFF;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 15, 34, 0.95) 0%, rgba(7, 15, 34, 0.86) 55%, rgba(7, 15, 34, 0.65) 100%);
  z-index: 1;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 4.8vw, 56px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.hero-sub {
  font-size: 17px;
  color: #E5E7EB;
  margin-top: 18px;
  line-height: 1.65;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(242, 101, 34, 0.18);
  color: #FF9E66;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 18px;
  border: 1px solid rgba(242, 101, 34, 0.35);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-stat-info b {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  display: block;
  line-height: 1;
}

.hero-stat-info span {
  font-size: 11.5px;
  color: #9CA3AF;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* Departure Board Card */
.featured-jobs-card {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: 0 20px 48px rgba(7, 15, 34, 0.5), 0 0 0 1.5px rgba(242, 101, 34, 0.35);
  color: #FFFFFF;
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(242, 101, 34, 0.35);
  margin-bottom: 14px;
}

.board-head b {
  color: #FFFFFF;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.board-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
  display: inline-block;
  margin-right: 10px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(0.88);
  }
}

.board-updated {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--orange);
  font-weight: 500;
}

.board-cols {
  display: grid;
  grid-template-columns: 1.4fr 2.1fr 1fr 1.1fr;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9CA3AF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  margin-bottom: 6px;
}

.board-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.board-row {
  display: grid;
  grid-template-columns: 1.4fr 2.1fr 1fr 1.1fr;
  align-items: center;
  padding: 12px;
  font-family: var(--mono);
  font-size: 13px;
  color: #F3F4F6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  transition: all .18s ease;
}

.board-row:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(3px);
}

.board-row:last-child {
  border-bottom: none;
}

.board-row .flap {
  display: inline-block;
  animation: flap .5s ease both;
}

@keyframes flap {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.tag-open {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.tag-closing {
  background: rgba(242, 101, 34, 0.2);
  color: #FF9E66;
  border: 1px solid rgba(242, 101, 34, 0.4);
}

.featured-jobs-foot {
  text-align: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-jobs-foot a {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange);
  transition: color .15s;
}

.featured-jobs-foot a:hover {
  color: #FF9E66;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .board-cols :nth-child(3),
  .board-row :nth-child(3) {
    display: none;
  }

  .board-cols,
  .board-row {
    grid-template-columns: 1.4fr 2.1fr 1.1fr;
  }
}

/* Floating Govt Strip */
.govt-strip {
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.govt-box {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--orange);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .govt-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .govt-box {
    grid-template-columns: 1fr;
  }
}

.govt-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.govt-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(11, 19, 43, 0.18);
}

.govt-info strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 750;
}

.govt-info span {
  display: block;
  font-size: 11.5px;
  color: var(--muted-light);
  margin-top: 2px;
}

/* Split About Section Layout */
.split-about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .split-about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  max-height: 880px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 18px;
  border: 1px solid var(--orange-border);
}

.feature-info b {
  font-size: 15px;
  color: var(--navy);
  display: block;
}

.feature-info p {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 3px;
}

/* ==========================================================================
   JOB OPENINGS & DEMAND CARDS (FULL-WIDTH 3-COLUMN GRID & SLEEK PILLS)
   ========================================================================== */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 36px;
}

.filter-pill {
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: all .2s ease;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
  transform: translateY(-1px);
}

.filter-pill.is-active {
  background: linear-gradient(135deg, #F26522 0%, #E05300 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.demand-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}

.demand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: var(--orange);
}

.demand-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--orange-border);
}

/* Document Checklist */
.doclist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.doclist li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.doclist li b {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--orange-border);
}

.doclist li span {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

/* 4-Step Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all .25s ease;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.process-card:nth-child(2)::before {
  background: #3B82F6;
}

.process-card:nth-child(3)::before {
  background: #10B981;
}

.process-card:nth-child(4)::before {
  background: #8B5CF6;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--orange-border);
}

.process-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  border: 1px solid var(--orange-border);
}

.process-card:nth-child(2) .process-icon-wrap {
  background: #EFF6FF;
  color: #3B82F6;
  border-color: rgba(59, 130, 246, 0.3);
}

.process-card:nth-child(3) .process-icon-wrap {
  background: #ECFDF5;
  color: #10B981;
  border-color: rgba(16, 185, 129, 0.3);
}

.process-card:nth-child(4) .process-icon-wrap {
  background: #F5F3FF;
  color: #8B5CF6;
  border-color: rgba(139, 92, 246, 0.3);
}

.process-step-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
}

.process-card h3 {
  font-size: 17.5px;
  color: var(--navy);
}

.process-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.55;
}

/* Sector Cards */
.grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .grid-8 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .grid-8 {
    grid-template-columns: 1fr;
  }
}

.sector-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all .2s ease;
  box-shadow: var(--shadow-xs);
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}

.sector-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 20px;
}

.sector-card:nth-child(1) .sector-icon {
  background: #FEF3C7;
  color: #D97706;
}

.sector-card:nth-child(2) .sector-icon {
  background: #E0F2FE;
  color: #0284C7;
}

.sector-card:nth-child(3) .sector-icon {
  background: #E0E7FF;
  color: #4338CA;
}

.sector-card:nth-child(4) .sector-icon {
  background: #FFEDD5;
  color: #EA580C;
}

.sector-card:nth-child(5) .sector-icon {
  background: #CCFBF1;
  color: #0D9488;
}

.sector-card:nth-child(6) .sector-icon {
  background: #FEF9C3;
  color: #CA8A04;
}

.sector-card:nth-child(7) .sector-icon {
  background: #DCFCE7;
  color: #16A34A;
}

.sector-card:nth-child(8) .sector-icon {
  background: #FFE4E6;
  color: #E11D48;
}

.sector-card b {
  font-size: 15px;
  color: var(--navy);
  display: block;
  font-weight: 700;
}

/* Certificate Grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cert-card-item {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
  transition: all .22s ease;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}

.cert-thumb-wrap {
  width: 100%;
  height: 160px;
  background: #F9FAFB;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.cert-thumb-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cert-card-item b {
  font-size: 13px;
  color: var(--navy);
  display: block;
  margin-top: 12px;
  font-weight: 750;
}

.cert-card-item span {
  font-size: 11px;
  color: var(--muted-light);
  display: block;
  margin-top: 2px;
}

/* ==========================================================================
   EXACT MANAGING DIRECTOR SPOTLIGHT SECTION (FORCED 2-COLUMN GRID)
   ========================================================================== */
.md-spotlight-section {
  background: #0B132B !important;
  padding: 68px 0 !important;
  color: #FFFFFF !important;
  display: block !important;
  width: 100% !important;
}

.md-spotlight-card {
  display: grid !important;
  grid-template-columns: 300px 1fr !important;
  gap: 48px !important;
  align-items: center !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.md-photo-box {
  width: 300px !important;
  height: 240px !important;
  border-radius: 20px !important;
  border: 3px solid #F26522 !important;
  box-shadow: 0 0 32px rgba(242, 101, 34, 0.45) !important;
  overflow: hidden !important;
  position: relative !important;
  background: #000000 !important;
}

.md-photo-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 20% !important;
  display: block !important;
}

.md-text-box {
  width: 100% !important;
  text-align: left !important;
}

.md-text-box .eyebrow-badge {
  font-family: var(--mono) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: #FF9E66 !important;
  background: rgba(255, 158, 102, 0.12) !important;
  border: 1px solid rgba(255, 158, 102, 0.3) !important;
  padding: 5px 14px !important;
  border-radius: var(--radius-pill) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 12px !important;
}

.md-text-box h2 {
  font-family: var(--display) !important;
  font-size: 34px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.15 !important;
  margin-top: 0 !important;
  margin-bottom: 22px !important;
  letter-spacing: -.02em !important;
}

.md-quote-wrap {
  border-left: 3.5px solid #F26522 !important;
  padding-left: 20px !important;
  margin-bottom: 20px !important;
}

.md-quote-wrap p {
  font-family: var(--display) !important;
  font-size: 17.5px !important;
  line-height: 1.65 !important;
  color: #E5E7EB !important;
  font-style: italic !important;
  font-weight: 400 !important;
  margin: 0 !important;
}

.md-author-meta {
  padding-left: 20px !important;
}

.md-author-meta b {
  font-size: 16.5px !important;
  color: #F26522 !important;
  display: block !important;
  font-weight: 700 !important;
  margin-top: 14px !important;
}

.md-author-meta span {
  font-size: 13px !important;
  color: #9CA3AF !important;
  font-family: var(--mono) !important;
  display: block !important;
  margin-top: 4px !important;
}

@media (max-width: 820px) {
  .md-spotlight-card {
    grid-template-columns: 1fr !important;
    text-align: left !important;
    gap: 32px !important;
  }

  .md-photo-box {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }
}

/* Forms */
.form-card-white,
.form-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-field,
.field {
  margin-bottom: 18px;
}

.form-field label,
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: #FAFAFA;
  transition: all .18s;
}

.form-field input:focus,
.form-field select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px var(--orange-border);
}

.form-grid-2,
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {

  .form-grid-2,
  .field-row {
    grid-template-columns: 1fr;
  }
}

/* Stats Bar */
.stats-strip-white {
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}

.stats-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-box-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-box-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid var(--orange-border);
  box-shadow: 0 4px 10px rgba(242, 101, 34, 0.12);
}

.stat-box-info b {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.stat-box-info span {
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 4px;
  display: block;
}

/* CTA Banner */
.cta-banner-orange {
  background: linear-gradient(135deg, #F26522 0%, #FF7332 50%, #D84E0C 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-orange);
}

.cta-banner-orange h3 {
  color: #FFFFFF;
  font-size: 24px;
}

.cta-banner-orange p {
  color: rgba(255, 255, 255, 0.92);
  margin-top: 6px;
  font-size: 15px;
}

/* Executive Footer Styling */
footer.site-footer {
  background: #060D1E;
  color: #9CA3AF;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-accent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #D1D5DB;
}

.footer-top-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.footer-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  display: inline-block;
  flex-shrink: 0;
}

.footer-top-contact a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-top: 56px;
  padding-bottom: 56px;
}

@media (max-width: 900px) {
  .footer-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid-4 {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  font-size: 13.5px;
  color: #9CA3AF;
  margin-top: 14px;
  max-width: 320px;
  line-height: 1.65;
}

.footer-license-pill {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #6B7280;
  font-family: var(--mono);
}

.footer-col h5 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: #FFFFFF;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .01em;
}

.footer-heading-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}

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

.footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col a {
  color: #9CA3AF;
  transition: all .2s ease;
  text-decoration: none;
  display: inline-block;
}

.footer-col a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-pdf-pill {
  background: rgba(242, 101, 34, 0.12) !important;
  border: 1px solid rgba(242, 101, 34, 0.3) !important;
  border-radius: 8px !important;
  color: #F26522 !important;
  padding: 8px 14px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all .25s ease !important;
}

.footer-pdf-pill:hover {
  background: var(--orange) !important;
  color: #FFFFFF !important;
  border-color: var(--orange) !important;
  transform: translateY(-2px) !important;
}

.footer-contact-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
}

.footer-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-icon-box svg {
  width: 14px;
  height: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: #6B7280;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color .15s;
}

.footer-bottom a:hover {
  color: var(--orange);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.2);
}


/* Modal Overlay & Popup Window Styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 34, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.modal-overlay.is-active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  animation: modalPop .25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 34, 0.94);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}

.lightbox-modal.is-active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  color: #FFFFFF;
  font-family: var(--mono);
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
}

.toast-msg {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--navy);
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--orange);
  z-index: 10001;
  font-size: 13.5px;
  transform: translateY(100px);
  opacity: 0;
  transition: all .35s ease;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Page Preloader — Spinning Arc Ring with Centered Logo Seal
   ========================================================================== */
.page-preloader {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 30, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s ease;
}

.page-preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-spinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.08);
  border-top-color: #F26522;
  border-right-color: rgba(242, 101, 34, 0.4);
  animation: preloaderSpin 0.95s linear infinite;
  box-shadow: 0 0 24px rgba(242, 101, 34, 0.25);
}

@keyframes preloaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.preloader-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #FFFFFF;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 2;
  overflow: hidden;
}

.preloader-logo img,
.preloader-logo .custom-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.preloader-fallback-badge {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  color: var(--orange);
}