/* ==========================================================================
   AEROTECK MANPOWER - PREMIUM HANDCRAFTED CUSTOM STYLESHEET
   Matching Exact Logo Palette (Cyan #3ba9e2 + Royal Blue #2544a5)
   Custom Industry Tabs, Calculator Widget, Case Studies, Animations & Layouts
   ========================================================================== */

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

/* --- Root Color Tokens matching Aeroteck Logo.png --- */
:root {
  --primary: #3ba9e2;
  /* Bright Cyan from Logo Text */
  --primary-dark: #0284c7;
  /* Deep Cyan Accent */
  --primary-light: #e0f2fe;
  /* Light Blue Surface Tint */
  --secondary: #2544a5;
  /* Royal Blue from Logo Symbol & Tagline */
  --secondary-dark: #1b3280;
  /* Dark Royal Accent */
  --navy: #0b192c;
  /* Premium Deep Navy */
  --navy-light: #1e293b;
  /* Slate Surface */
  --accent: #00c4ef;
  /* Glowing Neon Cyan */
  --gold: #f59e0b;
  /* Accent Highlight Gold */
  --success: #10b981;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --border-color: #e2e8f0;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(37, 68, 165, 0.08), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 16px 36px -5px rgba(37, 68, 165, 0.14), 0 8px 16px -6px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(11, 25, 44, 0.25);
  --shadow-glow: 0 0 25px rgba(59, 169, 226, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(59, 169, 226, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(59, 169, 226, 0.8);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animate-float {
  animation: floatAnimation 4s ease-in-out infinite;
}

.animate-pulse {
  animation: pulseGlow 3s infinite;
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- Typography Helpers --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: linear-gradient(135deg, rgba(59, 169, 226, 0.12) 0%, rgba(37, 68, 165, 0.12) 100%);
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  border: 1px solid rgba(59, 169, 226, 0.25);
  margin-bottom: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 3rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e3a8a 50%, var(--primary) 100%);
  background-size: 200% 200%;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 68, 165, 0.35);
}

.btn-primary:hover {
  background-position: 100% 0%;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 68, 165, 0.45);
}

.btn-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(59, 169, 226, 0.35);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(59, 169, 226, 0.5);
  color: #ffffff;
}

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

.btn-secondary:hover {
  background-color: var(--navy-light);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(37, 68, 165, 0.25);
  color: var(--secondary);
}

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

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* --- TOP CONTACT BAR --- */
.top-bar {
  background: linear-gradient(90deg, #0b192c 0%, #172a45 100%);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #cbd5e1;
}

.top-info-item svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
}

.top-info-item a {
  color: #cbd5e1;
}

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

.top-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* --- MAIN HEADER & NAVBAR --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 105px;
  padding: 0.5rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img {
  height: 85px;
  max-height: 85px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

/* Desktop Navigation Menu Items */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-item.active>.nav-link {
  color: var(--secondary);
  background: rgba(59, 169, 226, 0.08);
}

.nav-link svg.chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.nav-item:hover>.nav-link svg.chevron {
  transform: rotate(180deg);
}

/* --- DROPDOWN & MEGA MENU STYLING --- */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  padding: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-item:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  color: var(--text-main);
  font-size: 0.925rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-link:hover {
  background-color: var(--primary-light);
  color: var(--secondary);
  padding-left: 1.15rem;
}

.dropdown-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: rgba(59, 169, 226, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.dropdown-link:hover .dropdown-icon {
  background-color: var(--secondary);
  color: #ffffff;
}

/* Mega Menu Grid for Industries */
.mega-menu {
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 940px;
  max-width: 94vw;
  padding: 1.75rem;
}

.nav-item:hover>.mega-menu {
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.75rem;
}

.mega-menu-header {
  grid-column: span 2;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu-header h4 {
  font-size: 1.1rem;
  color: var(--secondary);
}

.mega-badge {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1200;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-drawer-header img {
  height: 60px;
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-item {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
}

.mobile-submenu {
  display: none;
  padding-left: 1rem;
  padding-bottom: 0.75rem;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu-link {
  display: block;
  padding: 0.55rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.mobile-submenu-link:hover {
  color: var(--secondary);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(11, 25, 44, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1150;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  background-color: #0b192c;
  background-image: linear-gradient(180deg, rgba(11, 25, 44, 0.82) 0%, rgba(15, 23, 42, 0.90) 100%),
    url('../images/hero_background.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 6rem 0 7rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 15%, rgba(59, 169, 226, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(15, 23, 42, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

/* IMAGE CARD UTILITIES */
.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .card-img,
.industry-card:hover .card-img,
.service-card:hover .card-img {
  transform: scale(1.06);
}

.section-showcase-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* HERO LEFT SIDE IMAGE SHOWCASE */
.hero-visual-frame {
  position: relative;
  height: 100%;
  min-height: 480px;
  max-height: 540px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 35px rgba(59, 169, 226, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-visual-frame:hover .hero-visual-img {
  transform: scale(1.05);
}

.hero-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 25, 44, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.hero-badge-info h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.hero-badge-info p {
  color: #3ba9e2;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4.2vw, 3.6rem);
  color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  font-weight: 800;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #3ba9e2, #00c4ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.18rem;
  color: #cbd5e1;
  margin-bottom: 2.25rem;
  max-width: 620px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  align-items: center;
}

.stat-item h3 {
  font-size: 2.25rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
}

.stat-item h3 span {
  color: var(--accent);
}

.stat-item p {
  font-size: 0.92rem;
  color: #94a3b8;
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.hero-card-wrapper {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.hero-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(59, 169, 226, 0.3);
}

.hero-card-header h3 {
  color: #ffffff;
  font-size: 1.4rem;
}

.hero-card-header p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}

/* Quick Search Box inside Hero */
.hero-search-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.input-group label {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}

.hero-card .input-group label {
  color: #cbd5e1;
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  background-color: #ffffff;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.form-control::placeholder {
  color: #94a3b8;
  opacity: 0.85;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59, 169, 226, 0.2);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%202544a5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  background-size: 1.25rem;
}

/* --- TRUST BADGES MARQUEE SECTION --- */
.trust-bar {
  background-color: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  opacity: 0.85;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  white-space: nowrap;
}

@media (max-width: 992px) {
  .trust-flex {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
  }
  .trust-item {
    white-space: normal;
    font-size: 0.95rem;
  }
}

/* --- HANDCRAFTED CUSTOM COMPONENTS --- */

/* 1. Industry Tab Switcher */
.industry-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.75rem;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--border-color);
  overflow: visible;
}

.industry-tabs-nav::-webkit-scrollbar {
  display: none;
}

.industry-tab-btn {
  padding: 0.65rem 1.2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--bg-light, #f8fafc);
  border: 1px solid var(--border-color, #cbd5e1);
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}

.industry-tab-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-light);
}

.industry-tab-btn.active {
  color: #ffffff;
  background: var(--primary, #0284c7);
  border-color: var(--primary, #0284c7);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.industry-tab-panel {
  display: none;
  animation: fadeInUp 0.4s ease forwards;
}

.industry-tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* 2. Custom Manpower Calculator Card */
.manpower-calc-card {
  background: linear-gradient(135deg, #0b192c 0%, #152c4a 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.form-control.dark-input {
  background-color: rgba(15, 23, 42, 0.7);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.form-control.dark-input:focus {
  background-color: rgba(15, 23, 42, 0.9);
  border-color: #3ba9e2;
  box-shadow: 0 0 0 4px rgba(59, 169, 226, 0.25);
  color: #ffffff;
}

.form-control.dark-input option {
  background-color: #0b192c;
  color: #ffffff;
}

.calc-result-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.calc-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.calc-metrics {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* 3. Case Studies / Impact Grid */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

@media (min-width: 992px) {
  .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-study-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.case-study-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.case-study-stat {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

/* --- SECTION GENERAL STYLES --- */
.section {
  padding: 6rem 0;
}

.section-alt {
  background-color: #ffffff;
}

/* --- SERVICES SECTION GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.service-card-media-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .service-card-media-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 169, 226, 0.4);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: var(--primary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(37, 68, 165, 0.3);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.service-link:hover svg {
  transform: translateX(6px);
}

/* --- INDUSTRIES GRID --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.industry-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.industry-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.industry-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.industry-card-header h3 {
  font-size: 1.15rem !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  color: var(--navy) !important;
  flex: 1;
}

.industry-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background-color: var(--primary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: var(--transition);
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #ffffff;
}

.industry-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.industry-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- WHY AEROTECK FEATURE HIGHLIGHTS --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateX(5px);
}

.feature-check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, #c7d2fe 100%);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.feature-text p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* --- JOB BOARD & FILTERS --- */
.job-search-bar {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 3rem;
}

.search-form-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
  gap: 1.25rem;
  align-items: flex-end;
}

.job-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.job-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.job-main h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.job-tags {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.job-tag {
  background-color: #f1f5f9;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.job-tag.urgent {
  background-color: #fef2f2;
  color: #ef4444;
}

/* --- MODAL DIALOGS --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(11, 25, 44, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  transform: translateY(25px);
  transition: var(--transition);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* --- FOOTER --- */
.footer {
  background: linear-gradient(180deg, #0b192c 0%, #060e1a 100%);
  color: #cbd5e1;
  padding: 5.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 80px;
  max-height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  background: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: inline-block;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.925rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.4rem;
}

.footer-website-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s ease, text-decoration 0.25s ease;
}

.footer-website-link:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: #64748b;
}

/* --- CUSTOM RESPONSIVE GRID LAYOUTS --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.contact-form-card,
.contact-info-card {
  padding: 2.5rem;
  box-sizing: border-box;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(59, 169, 226, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(59, 169, 226, 0.25);
  margin-top: 2px;
}

.contact-detail-content {
  flex: 1;
}

.contact-detail-content h4 {
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.contact-detail-content p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  word-break: break-word;
}

.contact-detail-content p a {
  color: #cbd5e1;
  text-decoration: none;
}

.contact-detail-content p a:hover {
  color: var(--accent);
}

.contact-detail-content p a.email-link {
  color: #38bdf8;
  font-weight: 600;
  word-break: break-all;
}

.contact-detail-content p a.email-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.assurance-banner-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
}

.fasttrack-cv-banner {
  display: grid;
  grid-template-columns: 1fr 340px;
}

.roi-case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .mega-menu {
    width: 100%;
    left: 0;
    transform: none;
  }

  .why-grid,
  .manpower-calc-card,
  .industry-tab-panel.active {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-card-media-grid,
  .assurance-banner-grid,
  .fasttrack-cv-banner,
  .roi-case-study-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 992px) {
  .navbar {
    min-height: 85px;
  }

  .brand-logo img {
    height: 70px;
    max-height: 70px;
  }

  .footer-brand img {
    height: 72px;
    max-height: 72px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero-content {
    order: 1;
  }

  /* Homepage Hero Visual frame transparent & clean image without dark container box */
  .hero-visual-frame {
    order: 2;
    position: relative !important;
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    padding: 0 !important;
    display: block !important;
  }

  .hero-visual-img {
    width: 100% !important;
    height: auto !important;
    max-height: 420px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: block !important;
  }

  .hero-badge-overlay {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin: -25px 12px 0 12px !important;
    z-index: 5 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    background: rgba(11, 25, 44, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 0.85rem 1rem !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .search-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-content .section-tag {
    white-space: normal !important;
    max-width: 100% !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.04em !important;
    padding: 0.4rem 0.85rem !important;
    line-height: 1.35 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 5.2vw, 2.2rem) !important;
    line-height: 1.2 !important;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .hero-content p {
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.75rem;
    max-width: 100% !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .hero-actions {
    width: 100% !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin-bottom: 2rem !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.95rem !important;
    padding: 0.85rem 1.25rem !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-stats .stat-item {
    text-align: center !important;
    padding: 0.6rem 0.25rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-sizing: border-box !important;
  }

  .hero-stats .stat-item h3 {
    font-size: 1.4rem !important;
    line-height: 1.1 !important;
    margin-bottom: 0.2rem !important;
  }

  .hero-stats .stat-item p {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    color: #94a3b8 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Fix Point 1: Display tabs one by one in wrap layout without cut-off horizontal scrolling */
  .industry-tabs-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    overflow: visible;
    margin-bottom: 1.75rem;
  }

  .industry-tab-btn {
    flex-shrink: 0;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }

  .form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .search-form-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .job-card .btn {
    width: 100%;
    text-align: center;
  }

  .modal-content {
    padding: 1.5rem;
    max-height: 90vh;
    width: 95%;
  }

  .trust-flex {
    justify-content: center;
  }

  .top-actions {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .navbar {
    min-height: 75px;
  }

  .brand-logo img {
    height: 60px;
    max-height: 60px;
  }

  .footer-brand img {
    height: 60px;
    max-height: 60px;
    padding: 0.5rem 1rem;
  }

  .top-bar-content {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Fix Point 3: Align Mail Icon & Call Icon with top-info text on mobile */
  .top-info {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    width: 100%;
  }

  .top-info-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    font-size: 0.85rem;
  }

  .top-info-item svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    flex-shrink: 0;
    color: var(--primary);
  }

  /* Fix Point 4: Align contact page cards & inquiry form on mobile */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .contact-grid>div {
    /* padding: 0 !important; */
    width: 100%;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem 1.15rem !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-badge-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin: -15px 8px 0 8px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.4rem !important;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .case-studies-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .mobile-drawer {
    width: 85%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-content h1 {
    font-size: clamp(1.55rem, 6.5vw, 1.85rem) !important;
    line-height: 1.25 !important;
  }

  .hero-content p {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-content .section-tag {
    font-size: 0.72rem !important;
    padding: 0.35rem 0.75rem !important;
    letter-spacing: 0.03em !important;
  }

  .hero-stats .stat-item {
    padding: 0.5rem 0.15rem !important;
  }

  .hero-stats .stat-item h3 {
    font-size: 1.2rem !important;
  }

  .hero-stats .stat-item p {
    font-size: 0.68rem !important;
    line-height: 1.15 !important;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .top-actions .btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 1.25rem 0.9rem !important;
  }
}

/* 3x2 Grid Layout for Recruitment Process */
.process-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

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

/* About Stats Mobile Responsive Grid */
.about-stats-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 1rem !important;
  margin-top: 1.5rem !important;
  width: 100% !important;
}

.about-stats-item {
  flex: 1 1 28% !important;
  min-width: 90px !important;
  text-align: left;
}

.about-stats-item h3 {
  font-size: 1.8rem !important;
  color: var(--primary) !important;
  font-weight: 800 !important;
  margin: 0 0 0.2rem 0 !important;
  line-height: 1.2 !important;
}

.about-stats-item p {
  font-size: 0.875rem !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

@media (max-width: 768px) {
  .about-stats-grid {
    gap: 0.75rem !important;
  }
  .about-stats-item h3 {
    font-size: 1.5rem !important;
  }
  .about-stats-item p {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .about-stats-grid {
    gap: 0.5rem !important;
  }
  .about-stats-item h3 {
    font-size: 1.25rem !important;
  }
  .about-stats-item p {
    font-size: 0.75rem !important;
  }
}

/* Accreditation Badges Grid & Card */
.accreditation-badge-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.accreditation-badge-card {
  background: #ffffff;
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  border: 2px solid #cbd5e1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 280px;
  max-width: 520px;
  min-width: 0;
  box-sizing: border-box;
}

.accreditation-badge-img {
  height: 100px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .accreditation-badge-grid {
    gap: 1rem;
  }
  .accreditation-badge-card {
    padding: 1rem 1.15rem;
    gap: 1rem;
    flex-direction: row;
  }
  .accreditation-badge-img {
    height: 75px;
    max-width: 140px;
  }
}

@media (max-width: 380px) {
  .accreditation-badge-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .accreditation-badge-card > div {
    text-align: center !important;
  }
  .accreditation-badge-img {
    height: 70px;
  }
}

/* Sourcing Steps Grid Responsive Rules */
.sourcing-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
  width: 100%;
}

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

@media (max-width: 768px) {
  .sourcing-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .sourcing-steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}