@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* ==========================================================================
   1. CSS VARIABLES & CORE RESETS
   ========================================================================== */
:root {
  --primary: #083199;
  --primary-dark: #051d5c;
  --primary-light: #1b4cd6;
  --accent: #ff6b35;
  --accent-hover: #e85924;
  --navy: #0f172a;
  --navy-dark: #090e1a;
  --text: #334155;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(8, 49, 153, 0.08);
  --shadow-hover: 0 20px 35px -5px rgba(8, 49, 153, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 85px 0;
}

/* ==========================================================================
   2. TYPOGRAPHY & COMMON UTILITIES
   ========================================================================== */
.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-sub {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 15px;
  line-height: 1.25;
}

.section-title p {
  color: var(--text-muted);
  font-size: 16px;
}

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

.section-tagline {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

/* ==========================================================================
   3. BUTTONS & ACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(8, 49, 153, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.3);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ==========================================================================
   4. TOP STRIP & PRIMARY NAVBAR
   ========================================================================== */
.top-strip {
  background: var(--navy);
  color: #94a3b8;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-strip a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 15px;
}

.top-strip a:hover {
  color: var(--accent);
}

.gov-license-tag {
  background: rgba(255, 107, 53, 0.15);
  color: #ffa382;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 85px;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a56e8 100%);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 6px 15px rgba(8, 49, 153, 0.3);
}

.logo-text h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-text span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   5. PAGE HERO BANNERS & BREADCRUMBS
   ========================================================================== */
.page-hero-banner {
  background: linear-gradient(135deg, rgba(5, 29, 92, 0.95) 0%, rgba(8, 49, 153, 0.88) 100%),
              url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 90px 0 80px;
  text-align: center;
}

.page-hero-banner h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--accent);
}

/* ==========================================================================
   6. HOMEPAGE SPECIFIC STYLES
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(5, 29, 92, 0.96) 0%, rgba(8, 49, 153, 0.88) 100%),
              url('https://images.unsplash.com/photo-1541888946425-d0fbb186156a?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 110px 0 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-badge-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #ffd2c2;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ff9b73;
}

.hero p {
  font-size: 17px;
  color: #cbd5e1;
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-glass-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-glass-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pool-highlight {
  background: rgba(255, 107, 53, 0.2);
  border-left: 4px solid var(--accent);
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
}

.pool-highlight strong {
  font-size: 24px;
  color: #ffffff;
  display: block;
}

.pool-highlight span {
  font-size: 13px;
  color: #fed7aa;
}

/* Metric / Counter Bar (Shared Across Home & Global Reach) */
.counter-bar,
.metrics-bar {
  margin-top: -55px;
  position: relative;
  z-index: 20;
}

.counter-wrapper,
.metrics-wrapper {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 35px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: 1px solid var(--border);
}

.counter-cell,
.metric-cell {
  text-align: center;
  position: relative;
}

.counter-cell:not(:last-child)::after,
.metric-cell:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}

.counter-cell strong,
.metric-cell strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.counter-cell span,
.metric-cell span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Planning Video Strip */
.video-banner {
  background: linear-gradient(rgba(8, 49, 153, 0.9), rgba(5, 29, 92, 0.9)),
              url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1920&q=80') center/cover fixed no-repeat;
  color: var(--white);
  padding: 100px 0;
  position: relative;
}

.video-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-banner h2 {
  font-size: 36px;
  font-weight: 800;
  max-width: 600px;
  line-height: 1.25;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--white);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.play-button:hover {
  transform: scale(1.1);
  color: var(--primary);
}

/* Quick Quote Strip (Crimson/Accent Inline Bar) */
.quote-strip {
  background: var(--accent);
  color: var(--white);
  padding: 45px 0;
}

.quote-form-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.quote-form-inline h3 {
  font-size: 24px;
  font-weight: 800;
}

.quote-inputs {
  display: flex;
  gap: 15px;
  flex: 1;
  max-width: 650px;
}

.quote-inputs input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.quote-inputs button {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.quote-inputs button:hover {
  background: var(--primary-dark);
}

/* ==========================================================================
   7. ABOUT US (`about.html`) STYLES
   ========================================================================== */
.about-grid,
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap,
.story-img-stack,
.about-images-box {
  position: relative;
}

.about-img-main,
.story-img-stack img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.about-float-badge,
.experience-card-floating {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--navy);
  color: var(--white);
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  border-left: 5px solid var(--accent);
  max-width: 250px;
}

.about-float-badge strong,
.experience-card-floating strong {
  font-size: 34px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1.1;
}

.about-float-badge span,
.experience-card-floating span {
  font-size: 13px;
  color: #cbd5e1;
}

.about-content h3,
.story-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.cert-badges {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cert-pill {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-pill i {
  font-size: 24px;
  color: var(--primary);
}

.cert-pill strong {
  font-size: 14px;
  color: var(--navy);
  display: block;
}

.cert-pill span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Chairman's Message Desk */
.chairman-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.chairman-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 50px;
  box-shadow: var(--shadow-sm);
}

.chairman-photo-card {
  text-align: center;
}

.chairman-photo-card img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 6px solid var(--bg-light);
  box-shadow: var(--shadow-md);
}

.chairman-photo-card h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}

.chairman-photo-card p {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chairman-quote {
  position: relative;
}

.chairman-quote i.fa-quote-left {
  font-size: 40px;
  color: rgba(8, 49, 153, 0.1);
  margin-bottom: 15px;
  display: block;
}

.chairman-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Mission, Vision & Core Values */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mvv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 30px;
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--accent);
}

.mvv-icon {
  width: 55px;
  height: 55px;
  background: rgba(8, 49, 153, 0.08);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.mvv-card:hover .mvv-icon {
  background: var(--accent);
  color: var(--white);
}

.mvv-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.mvv-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Quality Infrastructure & Workshop Testing */
.infra-grid,
.testing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.infra-box-list,
.testing-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.infra-item,
.testing-item {
  display: flex;
  gap: 20px;
  background: var(--bg-light);
  padding: 22px 25px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.infra-item:hover,
.testing-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.infra-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.infra-text h4,
.testing-item-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.infra-text p,
.testing-item-text p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   8. OUR MANPOWER (`manpower.html`) STYLES
   ========================================================================== */
.filter-tabs-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.tab-btn {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 6px 15px rgba(8, 49, 153, 0.25);
}

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

.trade-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.trade-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(8, 49, 153, 0.2);
}

.trade-card-header {
  padding: 24px 24px 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.trade-icon {
  width: 50px;
  height: 50px;
  background: rgba(8, 49, 153, 0.1);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--transition);
}

.trade-card:hover .trade-icon {
  background: var(--accent);
  color: var(--white);
}

.trade-card-title h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}

.trade-card-title span {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trade-card-body {
  padding: 22px 24px;
  flex: 1;
}

.trade-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.trade-list {
  list-style: none;
  margin-bottom: 20px;
}

.trade-list li {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px dashed #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trade-list li span.role-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.trade-list li span.role-name i {
  color: var(--primary);
  font-size: 11px;
}

.trade-list li span.role-badge {
  font-size: 11px;
  background: #e2e8f0;
  color: var(--navy);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.trade-card-footer {
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trade-card-footer a {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.trade-card-footer a:hover {
  color: var(--accent);
}

/* Standby Candidate Roster Strip */
.standby-pool-strip,
.ready-pool-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
  margin-top: 70px;
}

.standby-pool-strip h2,
.ready-pool-strip h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.standby-pool-strip p,
.ready-pool-strip p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
}

.pool-callout-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.pool-callout-box strong {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.pool-callout-box span {
  font-size: 13px;
  color: #fed7aa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   9. RECRUITMENT FLOW (`recruitment-flow.html`) STYLES
   ========================================================================== */
.flow-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #e2e8f0;
  transform: translateX(-50%);
}

.timeline-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  position: relative;
}

.timeline-block:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 44%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(8, 49, 153, 0.2);
}

.timeline-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(8, 49, 153, 0.15);
  z-index: 2;
}

.timeline-block:hover .timeline-number {
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
}

.timeline-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.timeline-features {
  list-style: none;
  padding: 0;
}

.timeline-features li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.timeline-features li i {
  color: var(--primary);
  font-size: 11px;
}

/* Documentation Cards */
.docs-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 24px;
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--accent);
}

.doc-icon {
  width: 50px;
  height: 50px;
  background: rgba(8, 49, 153, 0.08);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: var(--transition);
}

.doc-card:hover .doc-icon {
  background: var(--accent);
  color: var(--white);
}

.doc-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.doc-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Turnaround SLA Matrix Table */
.sla-table-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sla-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.sla-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 700;
}

.sla-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.sla-table tr:hover td {
  background: var(--bg-light);
}

.sla-badge {
  background: rgba(255, 107, 53, 0.12);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
}

/* ==========================================================================
   10. GLOBAL REACH (`global-reach.html`) STYLES
   ========================================================================== */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.country-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.country-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(8, 49, 153, 0.2);
}

.country-header {
  padding: 24px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.country-title-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flag-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(8, 49, 153, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.country-card:hover .flag-icon-box {
  background: var(--accent);
  color: var(--white);
}

.country-title-box h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.country-title-box span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.region-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(255, 107, 53, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.country-body {
  padding: 22px 24px;
  flex: 1;
}

.country-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.sector-tags span {
  background: #f1f5f9;
  color: var(--navy);
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 600;
}

.country-specs {
  list-style: none;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}

.country-specs li {
  font-size: 12.5px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.country-specs li strong {
  color: var(--navy);
}

.country-footer {
  padding: 15px 24px;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.country-footer a {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.country-footer a:hover {
  color: var(--accent);
}

.compliance-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
  margin-top: 70px;
}

.compliance-strip h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.compliance-strip p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
}

.compliance-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.compliance-box strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.compliance-box span {
  font-size: 13px;
  color: #fed7aa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   11. SERVICES (`services.html`) STYLES
   ========================================================================== */
.spectrum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.spectrum-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 22px;
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.spectrum-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--accent);
}

.spectrum-badge {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.spectrum-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.spectrum-card ul {
  list-style: none;
  padding: 0;
}

.spectrum-card ul li {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.spectrum-card ul li i {
  color: var(--primary);
  font-size: 12px;
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.industry-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 35px;
  display: flex;
  gap: 25px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-detail-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(8, 49, 153, 0.15);
  transform: translateY(-4px);
}

.ind-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(8, 49, 153, 0.08);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  transition: var(--transition);
}

.industry-detail-card:hover .ind-icon-box {
  background: var(--primary);
  color: var(--white);
}

.ind-info h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.ind-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
}

.ind-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ind-tags span {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

/* ==========================================================================
   12. CAREERS & RESUME UPLOAD (`career.html`) STYLES
   ========================================================================== */
.career-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.career-info-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.career-info-panel h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.career-info-panel p.intro {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.benefit-text strong {
  font-size: 15px;
  display: block;
  color: var(--white);
  margin-bottom: 3px;
}

.benefit-text span {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
  display: block;
}

.career-form-panel {
  padding: 50px 45px;
}

.career-form-panel h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.career-form-panel p.form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* File Upload Component */
.file-upload-box {
  border: 2px dashed #cbd5e1;
  background: var(--bg-light);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.file-upload-box:hover {
  border-color: var(--primary);
  background: #f1f5f9;
}

.file-upload-box input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 10px;
}

.upload-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.upload-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.selected-filename {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: none;
}

/* ==========================================================================
   13. CONTACT US (`contact.html`) STYLES
   ========================================================================== */
.desk-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 70px;
}

.desk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.desk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--accent);
}

.desk-icon {
  width: 55px;
  height: 55px;
  background: rgba(8, 49, 153, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.desk-card:hover .desk-icon {
  background: var(--accent);
  color: var(--white);
}

.desk-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.desk-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.desk-card a {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

.desk-card a:hover {
  color: var(--accent);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-details-side {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details-side h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-details-side p.intro {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-block-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-block-text strong {
  font-size: 15px;
  display: block;
  color: var(--white);
  margin-bottom: 3px;
}

.contact-block-text span, 
.contact-block-text a {
  font-size: 13px;
  color: #cbd5e1;
  text-decoration: none;
  line-height: 1.6;
  display: inline-block;
}

.contact-block-text a:hover {
  color: var(--accent);
}

.contact-form-side {
  padding: 50px 45px;
}

.contact-form-side h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-form-side p.form-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.map-section {
  margin-top: 70px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 420px;
}

/* ==========================================================================
   14. SHARED FORMS, INPUTS & SUBMISSION ALERTS
   ========================================================================== */
.demand-box-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 50px;
  box-shadow: var(--shadow-md);
  max-width: 980px;
  margin: 0 auto;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 18px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-light);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 49, 153, 0.12);
}

.alert-banner {
  display: none;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.alert-success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.alert-error {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* ==========================================================================
   15. FLOATING WHATSAPP BUTTON & PULSE ANIMATION
   ========================================================================== */
.wa-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  text-decoration: none;
  transition: var(--transition);
}

.wa-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  animation: waPulse 2s infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   16. FOOTER COMPONENT
   ========================================================================== */
footer {
  background: var(--navy-dark);
  color: #94a3b8;
  padding: 80px 0 25px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ==========================================================================
   17. RESPONSIVE MEDIA QUERIES (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .story-grid,
  .chairman-grid,
  .infra-grid,
  .testing-grid,
  .career-wrapper,
  .contact-main-grid,
  .standby-pool-strip,
  .ready-pool-strip,
  .compliance-strip {
    grid-template-columns: 1fr;
  }
  .manpower-grid,
  .country-grid,
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .desk-cards-grid,
  .spectrum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-detail-grid {
    grid-template-columns: 1fr;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-strip {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
  }
  .nav-links.active {
    left: 0;
  }
  .hero h1 {
    font-size: 34px;
  }
  .page-hero-banner h1 {
    font-size: 30px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .counter-wrapper,
  .metrics-wrapper {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }
  .counter-cell:nth-child(2)::after,
  .metric-cell:nth-child(2)::after {
    display: none;
  }
  .flow-timeline::before {
    left: 20px;
  }
  .timeline-block,
  .timeline-block:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 45px;
  }
  .timeline-content {
    width: 100%;
  }
  .timeline-number {
    left: -25px;
    top: 25px;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .manpower-grid,
  .country-grid,
  .docs-grid,
  .desk-cards-grid,
  .spectrum-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
  }
  .career-info-panel,
  .career-form-panel,
  .contact-details-side,
  .contact-form-side,
  .demand-box-container,
  .standby-pool-strip,
  .compliance-strip,
  .chairman-grid {
    padding: 30px 20px;
  }
  .experience-card-floating,
  .about-float-badge {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

    /* Industries / Services Section */
    .services-bg {
      background: var(--bg-light);
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .industry-card {
      background: var(--white);
      border-radius: 10px;
      padding: 35px 25px;
      border: 1px solid var(--border);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .industry-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--primary);
      opacity: 0;
      transition: var(--transition);
    }

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

    .industry-card:hover::before {
      opacity: 1;
    }

    .industry-icon {
      width: 60px;
      height: 60px;
      border-radius: 10px;
      background: rgba(8, 49, 153, 0.08);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 20px;
      transition: var(--transition);
    }

    .industry-card:hover .industry-icon {
      background: var(--primary);
      color: var(--white);
    }

    .industry-card h3 {
      font-size: 19px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .industry-card p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    /* Global Countries Strip */
    .global-destinations {
      background: var(--navy);
      color: var(--white);
      padding: 70px 0;
      text-align: center;
    }

    .dest-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 35px;
      max-width: 950px;
      margin-left: auto;
      margin-right: auto;
    }

    .dest-badge {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 10px 22px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .dest-badge:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-2px);
    }

    /* 4-Step Recruitment Process */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .process-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 30px 20px;
      text-align: center;
      position: relative;
    }

    .step-number {
      width: 45px;
      height: 45px;
      background: var(--accent);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 800;
      margin: 0 auto 20px;
    }

    .process-card h4 {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .process-card p {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* Contact & Form Section */
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 50px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .contact-info-panel {
      background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
      color: var(--white);
      padding: 45px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .contact-info-panel h3 {
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .contact-info-panel p {
      color: #cbd5e1;
      font-size: 14px;
      margin-bottom: 30px;
    }

    .info-item {
      display: flex;
      gap: 16px;
      margin-bottom: 22px;
    }

    .info-item i {
      font-size: 18px;
      color: var(--accent);
      margin-top: 3px;
    }

    .info-item strong {
      font-size: 15px;
      display: block;
      color: var(--white);
    }

    .info-item span, .info-item a {
      font-size: 13px;
      color: #cbd5e1;
      text-decoration: none;
    }

    .info-item a:hover {
      color: var(--accent);
    }

    .contact-form-panel {
      padding: 45px;
    }

    .form-group-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .form-group {
      margin-bottom: 18px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      background: var(--bg-light);
      border-radius: 6px;
      font-family: inherit;
      font-size: 14px;
      outline: none;
      transition: var(--transition);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      background: var(--white);
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(8, 49, 153, 0.12);
    }

    /* Footer */
    footer {
      background: #090e1a;
      color: #94a3b8;
      padding: 80px 0 25px;
      font-size: 14px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 8px;
    }

    .footer-col h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30px;
      height: 2px;
      background: var(--accent);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-links a:hover {
      color: var(--accent);
      transform: translateX(4px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    /* Floating WhatsApp */
    .wa-floating-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #25d366;
      color: #ffffff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 0 5px 20px rgba(37, 211, 102, 0.45);
      z-index: 9999;
      text-decoration: none;
      transition: var(--transition);
    }

    .wa-floating-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
      color: #ffffff;
    }

    .wa-pulse {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: inherit;
      opacity: 0.6;
      animation: waPulse 2s infinite;
      z-index: -1;
    }

    @keyframes waPulse {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(1.6); opacity: 0; }
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-grid, .about-grid, .contact-container {
        grid-template-columns: 1fr;
      }
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .top-strip {
        display: none;
      }
      .mobile-menu-btn {
        display: block;
      }
      .nav-links {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
      }
      .nav-links.active {
        left: 0;
      }
      .counter-wrapper {
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
      }
      .counter-cell:nth-child(2)::after {
        display: none;
      }
      .hero h1 {
        font-size: 34px;
      }
      .form-group-2 {
        grid-template-columns: 1fr;
      }
      .process-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
    }
	/* ==========================================================================
   SHRAMADHAN CALL CENTER OFFICIAL HELPLINE NOTICE (HOME PAGE WIDGET)
   ========================================================================== */
.shramadhan-notice-wrapper {
  background: #f1f5f9;
  padding: 40px 0;
}

.shramadhan-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 32, 128, 0.15);
  overflow: hidden;
  border: 1px solid #dbeafe;
  max-width: 1050px;
  margin: 0 auto;
}

/* Top Dark Blue Section */
.shramadhan-top {
  background: #001f7a;
  color: #ffffff;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  position: relative;
  gap: 30px;
}

.shram-ribbon {
  position: absolute;
  top: 0;
  left: 40px;
  background: #d90429;
  color: #ffffff;
  width: 50px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.shramadhan-main-info {
  margin-left: 65px;
  flex: 1;
}

.shramadhan-subheading {
  font-size: 16px;
  font-weight: 500;
  color: #e0e7ff;
  line-height: 1.5;
  margin-bottom: 8px;
}

.shramadhan-title {
  font-size: 38px;
  font-weight: 900;
  color: #ffea00;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.shramadhan-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

/* Toll Free Box */
.tollfree-box-wrap span.label-text {
  font-size: 13px;
  color: #cbd5e1;
  display: block;
  margin-bottom: 4px;
}

.tollfree-number-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tollfree-number-box a {
  font-size: 48px;
  font-weight: 900;
  color: #ffea00;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.2s;
}

.tollfree-number-box a:hover {
  transform: scale(1.05);
}

.hours-24-badge {
  border: 2px solid #ffea00;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #ffea00;
  line-height: 1;
}

.hours-24-badge i {
  font-size: 12px;
  margin-top: 2px;
}

/* Online Support Box */
.online-support-wrap span.label-text {
  font-size: 13px;
  color: #cbd5e1;
  display: block;
  margin-bottom: 6px;
}

.social-chat-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.social-chat-icons a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-chat-icons a:hover {
  transform: translateY(-2px);
}

.icon-wa { background: #25d366; }
.icon-viber { background: #7360f2; }
.icon-chat { background: #0084ff; }

.mobile-support-strip {
  background: #d90429;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 800;
  display: inline-block;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.mobile-support-strip:hover {
  background: #b90322;
  color: #ffffff;
}

/* QR Code Section */
.qr-box-wrap {
  text-align: center;
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.qr-box-wrap img {
  width: 75px;
  height: 75px;
  display: block;
}

.qr-box-wrap span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #001f7a;
  margin-top: 4px;
}

/* Bottom White Ministry Section */
.shramadhan-bottom {
  background: #ffffff;
  padding: 22px 30px;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.ministry-emblem {
  width: 58px;
  height: auto;
  margin-bottom: 8px;
}

.nepal-gov-title {
  font-size: 18px;
  font-weight: 800;
  color: #d90429;
  margin-bottom: 2px;
}

.ministry-name-np {
  font-size: 16px;
  font-weight: 800;
  color: #001f7a;
  margin-bottom: 2px;
}

.ministry-name-en {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
  .shramadhan-top {
    padding: 30px 20px;
  }
  .shram-ribbon {
    left: 20px;
    top: -10px;
    height: 55px;
    width: 44px;
    font-size: 22px;
  }
  .shramadhan-main-info {
    margin-left: 0;
    margin-top: 25px;
  }
  .shramadhan-title {
    font-size: 28px;
  }
  .shramadhan-action-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .qr-box-wrap {
    align-self: center;
    margin-top: 10px;
  }
}