/* ==========================================================================
   AIM INVESTIGATION AGENCY PRIVATE LIMITED
   Corporate Stylesheet — Medical Teal & Cyan Corporate Theme
   ========================================================================== */

:root {
  /* Medical Teal & Ocean Cyan Brand Palette (Reference Match) */
  --teal-primary:   #0A7E8C;
  --teal-dark:      #075E68;
  --teal-darker:    #05434B;
  --teal-light:     #EBF7F8;
  --teal-lighter:   #F3FAFA;
  --teal-border:    #BCE6EA;
  --teal-glow:      rgba(10, 126, 140, 0.22);
  --teal-gradient:  linear-gradient(135deg, #0A7E8C 0%, #0284C7 100%);
  --teal-soft-grad: linear-gradient(135deg, #F0F9FA 0%, #FFFFFF 100%);

  --cyan-accent:    #0284C7;
  --cyan-hover:     #0369A1;
  --cyan-light:     #E0F2FE;
  --cyan-border:    #BAE6FD;

  /* Deep Petrol Navy / Dark Contrast */
  --navy-950:       #071F2C;
  --navy-900:       #0B2B3D;
  --navy-850:       #0E384F;
  --navy-800:       #154660;
  --navy-700:       #205B7C;
  --navy-600:       #37779B;
  --navy-500:       #5897BD;
  --navy-100:       #DCEEF6;
  --navy-50:        #F0F7FB;

  /* Aliases for backwards compatibility */
  --orange-primary: #0A7E8C;
  --orange-hover:   #075E68;
  --orange-light:   #EBF7F8;
  --orange-border:  #BCE6EA;
  --orange-glow:    rgba(10, 126, 140, 0.22);

  /* Clean Medical Slates */
  --slate-50:  #F8FCFD;
  --slate-100: #EEF6F8;
  --slate-200: #DCE8EE;
  --slate-300: #B8CFDA;
  --slate-400: #85A3B3;
  --slate-500: #58798C;
  --slate-600: #3B5A6C;
  --slate-700: #234253;
  --slate-800: #132E3E;
  --slate-900: #0A1E2B;

  --emerald-500: #0D9488;
  --emerald-600: #0F766E;
  --emerald-50:  #F0FDFA;

  --white: #FFFFFF;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout & Spacing */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;

  /* Shadows */
  --shadow-subtle: 0 2px 10px rgba(7, 31, 44, 0.04);
  --shadow-card:   0 8px 24px -4px rgba(7, 31, 44, 0.07), 0 2px 6px -1px rgba(7, 31, 44, 0.03);
  --shadow-hover:  0 20px 35px -8px rgba(10, 126, 140, 0.16), 0 6px 16px -4px rgba(7, 31, 44, 0.06);
  --shadow-teal:   0 8px 24px -4px var(--teal-glow);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--navy-900);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

::selection {
  background-color: var(--teal-primary);
  color: var(--white);
}

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

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

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

/* ==========================================================================
   Utility Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.section-bg-slate {
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.section-bg-dark {
  background-color: var(--navy-950);
  color: var(--white);
  border-top: 1px solid var(--navy-800);
  border-bottom: 1px solid var(--navy-800);
}

/* Section Headings */
.section-header {
  max-width: 760px;
  margin: 0 auto 52px auto;
  text-align: center;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-badge, .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--teal-light);
  color: var(--teal-primary);
  border: 1px solid var(--teal-border);
  margin-bottom: 14px;
}

.section-badge.dark, .badge-pill.dark {
  background-color: rgba(10, 126, 140, 0.2);
  color: #38BDF8;
  border-color: rgba(56, 189, 248, 0.35);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--teal-primary);
  display: inline-block;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-title.text-white {
  color: var(--white);
}

.section-subtitle {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.65;
  font-weight: 400;
}

.section-subtitle.text-slate-300 {
  color: var(--slate-300);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--teal-primary);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  background-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(10, 126, 140, 0.4);
}

.btn-secondary {
  background-color: var(--teal-light);
  color: var(--teal-primary);
  border: 1px solid var(--teal-border);
}

.btn-secondary:hover {
  background-color: #DEF0F2;
  border-color: var(--teal-primary);
}

.btn-dark {
  background-color: var(--navy-950);
  color: var(--white);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--teal-primary);
  border: 1.5px solid var(--teal-primary);
}

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

.btn-white {
  background-color: var(--white);
  color: var(--navy-950);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
/* Top Utility Bar */
.top-bar {
  background-color: #FFFFFF;
  color: var(--slate-600);
  font-size: 12.5px;
  border-bottom: 1px solid var(--slate-200);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--slate-600);
  font-weight: 500;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--teal-primary);
}

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

.top-bar-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  padding-left: 14px;
  border-left: 1px solid var(--slate-200);
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  color: var(--slate-500);
  background: var(--slate-100);
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  color: var(--white);
  background: var(--teal-primary);
  transform: translateY(-1px);
}

/* Sticky Main Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
  transition: all var(--transition-normal);
  padding: 10px 0;
}

.main-header.scrolled {
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(7, 31, 44, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1380px;
  width: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon-box {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 12px;
  background-color: var(--white);
  padding: 4px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-logo:hover .logo-icon-box {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(11, 140, 158, 0.2);
}

.logo-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy-950);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-badge {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--teal-primary);
  background-color: var(--teal-light);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--teal-border);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal-primary);
  line-height: 1.3;
  white-space: nowrap;
}

.brand-focus {
  font-size: 10px;
  color: var(--slate-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate-700);
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--teal-primary);
  background-color: var(--teal-light);
}

.nav-link.active {
  color: var(--teal-primary);
  background-color: var(--teal-light);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-950);
  background-color: var(--slate-100);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.nav-phone-pill svg {
  width: 14px;
  height: 14px;
  color: var(--teal-primary);
}

.nav-phone-pill:hover {
  background-color: var(--teal-light);
  color: var(--teal-primary);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--navy-950);
}

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

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 16px 20px 24px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--navy-950);
  font-size: 14px;
}

.mobile-nav-link.active {
  background-color: var(--teal-light);
  color: var(--teal-primary);
  font-weight: 700;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   Hero Section — Male Auditor Background Banner
   ========================================================================== */
.hero-section {
  position: relative;
  background-image: 
    linear-gradient(90deg, rgba(7, 31, 44, 0.96) 0%, rgba(7, 31, 44, 0.88) 45%, rgba(7, 31, 44, 0.45) 78%, rgba(7, 31, 44, 0.15) 100%),
    url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 86px 0 100px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--navy-800);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
  min-height: 440px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(10, 126, 140, 0.25);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 16px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #38BDF8;
  box-shadow: 0 0 8px #38BDF8;
}

.hero-headline {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.hero-headline span.highlight {
  color: #38BDF8;
  display: block;
  font-size: 32px;
  font-weight: 800;
  margin-top: 6px;
}

.hero-subheading {
  font-size: 16px;
  color: var(--slate-200);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-trust-pills {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-200);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-trust-item svg {
  width: 15px;
  height: 15px;
  color: #38BDF8;
}

/* Floating Quality Badge on Banner */
.hero-floating-glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(7, 31, 44, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  color: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  align-self: flex-end;
  justify-self: end;
  z-index: 2;
  margin-bottom: 6px;
}

.hero-floating-glass-pill .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.18);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-floating-glass-pill .badge-text-top {
  font-size: 10.5px;
  text-transform: uppercase;
  color: #38BDF8;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-floating-glass-pill .badge-text-main {
  font-size: 14.5px;
  font-weight: 800;
  color: #FFFFFF;
}

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

.service-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-primary);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--teal-light);
  border: 1px solid var(--teal-border);
  color: var(--teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--teal-gradient);
  color: var(--white);
  border-color: transparent;
}

.service-icon-box svg {
  width: 22px;
  height: 22px;
}

.service-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.service-card:hover .service-card-title {
  color: var(--teal-primary);
}

.service-card-desc {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 16px;
}

.service-card-bottom {
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
  margin-top: auto;
}

.service-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  color: var(--teal-dark);
}

/* ==========================================================================
   Dark Section: Why Choose AIM (Feature Grid)
   ========================================================================== */
.why-choose-section {
  background-color: var(--navy-950);
  color: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--navy-800);
  border-bottom: 1px solid var(--navy-800);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.why-choose-left h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-choose-left p {
  font-size: 15px;
  color: var(--slate-300);
  line-height: 1.65;
  margin-bottom: 28px;
}

.features-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-pill-item {
  background-color: rgba(14, 56, 79, 0.45);
  border: 1px solid rgba(188, 230, 234, 0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition-fast);
}

.feature-pill-item:hover {
  background-color: rgba(10, 126, 140, 0.2);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}

.feature-pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(10, 126, 140, 0.35);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-pill-icon svg {
  width: 18px;
  height: 18px;
}

.feature-pill-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}

.feature-pill-desc {
  font-size: 12px;
  color: var(--slate-300);
  line-height: 1.45;
}

/* ==========================================================================
   Process Roadmap (5 Steps)
   ========================================================================== */
.process-5step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-step-box {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step-box:hover {
  transform: translateY(-4px);
  border-color: var(--teal-primary);
  box-shadow: var(--shadow-hover);
}

.process-step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(10, 126, 140, 0.25);
}

.process-step-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.process-step-num {
  font-size: 10px;
  font-weight: 800;
  color: var(--teal-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.process-step-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 8px;
}

.process-step-info {
  font-size: 12px;
  color: var(--slate-600);
  line-height: 1.45;
}

/* ==========================================================================
   Who We Serve (Industries / Clients)
   ========================================================================== */
.clients-section-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.clients-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.client-category-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.client-category-card:hover {
  border-color: var(--teal-primary);
  background-color: var(--teal-light);
  transform: translateY(-2px);
}

.client-category-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--teal-light);
  color: var(--teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.client-category-card:hover .client-category-icon {
  background: var(--teal-gradient);
  color: var(--white);
}

.client-category-icon svg {
  width: 22px;
  height: 22px;
}

.client-category-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.3;
}

/* ==========================================================================
   About Section & Mission / Vision
   ========================================================================== */
.about-preview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-photo-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--slate-200);
}

.about-photo-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 28px 0;
}

.mission-box {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 18px;
}

.mission-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--teal-primary);
  font-weight: 800;
  font-size: 14px;
}

.mission-box-header svg {
  width: 18px;
  height: 18px;
}

.mission-box p {
  font-size: 12.5px;
  color: var(--slate-600);
  line-height: 1.5;
}

/* ==========================================================================
   Case Studies Grid
   ========================================================================== */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.case-card-img {
  height: 160px;
  background-color: var(--slate-100);
  position: relative;
  overflow: hidden;
}

.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.case-card-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--teal-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.case-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 12px;
  line-height: 1.35;
}

.case-meta-list {
  font-size: 12px;
  color: var(--slate-600);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--slate-100);
}

.case-meta-list strong {
  color: var(--navy-950);
}

/* ==========================================================================
   Testimonial & FAQ Section
   ========================================================================== */
.testimonial-faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: flex-start;
}

.testimonial-card-box {
  background-color: var(--teal-light);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
}

.testimonial-quote-icon {
  width: 36px;
  height: 36px;
  color: var(--teal-primary);
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-950);
  line-height: 1.65;
  margin-bottom: 24px;
}

.testimonial-author-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy-950);
}

.testimonial-author-role {
  font-size: 12px;
  color: var(--teal-primary);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--teal-primary);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-950);
  text-align: left;
}

.faq-question svg {
  width: 16px;
  height: 16px;
  color: var(--teal-primary);
  transition: transform var(--transition-fast);
}

.faq-answer {
  padding: 0 20px 16px 20px;
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   Footer & Contact Banner (Dark Petrol Match)
   ========================================================================== */
.footer-contact-banner {
  background-color: var(--navy-950);
  color: var(--white);
  padding: 64px 0 40px 0;
  border-top: 1px solid var(--navy-800);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-channels-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.channel-card {
  background-color: rgba(14, 56, 79, 0.4);
  border: 1px solid rgba(188, 230, 234, 0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.channel-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(10, 126, 140, 0.3);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon svg {
  width: 16px;
  height: 16px;
}

.channel-label {
  font-size: 11px;
  color: var(--slate-400);
  text-transform: uppercase;
  font-weight: 700;
}

.channel-val {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  margin-top: 2px;
}

.channel-val a:hover {
  color: #38BDF8;
}

/* Quick Inquiry Card in Footer */
.quick-inquiry-box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--navy-950);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.quick-inquiry-box h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.quick-inquiry-box p {
  font-size: 12.5px;
  color: var(--slate-600);
  margin-bottom: 16px;
}

.quick-form-group {
  margin-bottom: 12px;
}

.quick-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  background-color: var(--slate-50);
  font-size: 13px;
  color: var(--navy-950);
  outline: none;
}

.quick-input:focus {
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px var(--teal-light);
}

.footer-bottom-bar {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--slate-400);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--slate-300);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--teal-primary);
  color: var(--white);
  border-color: var(--teal-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 126, 140, 0.4);
}

/* ==========================================================================
   Detailed Subpages (About, Services, Process, Contact)
   ========================================================================== */
.page-header {
  background: linear-gradient(145deg, #F0F9FA 0%, #FFFFFF 60%, #E6F5F7 100%);
  padding: 56px 0 64px 0;
  border-bottom: 1px solid var(--slate-200);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--slate-500);
  margin-bottom: 16px;
}

.breadcrumb a:hover {
  color: var(--teal-primary);
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
}

.page-title {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy-950);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 16px;
  color: var(--slate-600);
  max-width: 720px;
  line-height: 1.65;
}

/* Detailed Service Cards */
.service-detail-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-card);
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  transition: border-color var(--transition-fast);
}

.service-detail-card:hover {
  border-color: var(--teal-primary);
}

.service-detail-card.alternate {
  background-color: var(--slate-50);
}

.service-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: monospace;
  font-size: 11px;
  font-weight: 800;
  color: var(--teal-primary);
  background-color: var(--teal-light);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--teal-border);
  margin-bottom: 14px;
}

.service-detail-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 14px;
}

.service-detail-desc {
  font-size: 14.5px;
  color: var(--slate-700);
  line-height: 1.65;
  margin-bottom: 20px;
}

.checklist-title {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  margin-bottom: 10px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  color: var(--slate-700);
  font-weight: 500;
}

.checklist-item svg {
  width: 15px;
  height: 15px;
  color: var(--teal-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail-sidebar {
  background-color: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--navy-800);
}

.sidebar-heading {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #38BDF8;
  border-bottom: 1px solid var(--navy-800);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.sidebar-meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.sidebar-meta-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 6px;
}

.sidebar-meta-row span.label {
  color: var(--slate-400);
}

.sidebar-meta-row span.value {
  color: var(--white);
  font-weight: 600;
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--teal-primary);
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--teal-light);
  border: 1px solid var(--teal-border);
  color: var(--teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-950);
}

.contact-info-note {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 2px;
}

.contact-form-container {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.form-header {
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-primary);
  margin-bottom: 6px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  margin-bottom: 16px;
}

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

.form-label span.req {
  color: #EF4444;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  background-color: var(--slate-50);
  font-size: 13.5px;
  color: var(--navy-950);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal-primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px var(--teal-light);
}

.form-input.error, .form-textarea.error {
  border-color: #EF4444;
  background-color: #FEF2F2;
}

.error-msg {
  font-size: 12px;
  color: #EF4444;
  margin-top: 4px;
  display: none;
}

.error-msg.visible {
  display: block;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--slate-600);
  cursor: pointer;
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--teal-primary);
  width: 16px;
  height: 16px;
}

.form-success-box {
  display: none;
  text-align: center;
  padding: 36px 20px;
}

.form-success-box.visible {
  display: block;
}

.success-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--teal-light);
  color: var(--teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.success-icon-wrap svg {
  width: 30px;
  height: 30px;
}

/* ==========================================================================
   Floating Widgets & Modal
   ========================================================================== */
.floating-actions-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.btn-scroll-top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--navy-950);
  color: var(--white);
  border: 1px solid var(--navy-800);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-scroll-top.visible {
  display: flex;
}

.btn-scroll-top:hover {
  transform: translateY(-2px);
  background-color: var(--teal-primary);
}

.btn-whatsapp-float {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background-color: #25D366;
  color: var(--white);
  padding: 11px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-normal);
}

.btn-whatsapp-float:hover {
  transform: scale(1.04);
  background-color: #20BA56;
}

.btn-whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background-color: rgba(7, 31, 44, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--navy-800);
  padding: 10px 16px;
  gap: 10px;
}

/* Interactive Intake Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(7, 31, 44, 0.82);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-dialog {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.modal-header {
  background-color: var(--navy-950);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--slate-400);
  font-size: 24px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--white);
}

.modal-body {
  padding: 24px 28px 28px 28px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-5step-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .clients-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Risk Mitigation & Audits Stats Section (Reference Match)
   ========================================================================== */
.risk-stats-box {
  background: linear-gradient(135deg, #071F2C 0%, #0B2B3D 60%, #0A7E8C 100%);
  border-radius: var(--radius-2xl);
  padding: 52px 48px;
  color: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--navy-800);
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.risk-stats-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px auto;
}

.risk-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.risk-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.risk-stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  border-color: #38BDF8;
}

.risk-stat-num {
  font-size: 40px;
  font-weight: 900;
  color: #38BDF8;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.risk-stat-label {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-200);
}

/* ==========================================================================
   Careers Page Styles
   ========================================================================== */
.careers-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: flex-start;
}

.job-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

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

.job-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.job-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-950);
}

.job-tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.job-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  background-color: var(--slate-100);
  color: var(--slate-700);
}

.job-tag.urgent {
  background-color: #FEF2F2;
  color: #EF4444;
  border: 1px solid #FECACA;
}

.job-tag.teal {
  background-color: var(--teal-light);
  color: var(--teal-primary);
  border: 1px solid var(--teal-border);
}

.job-desc {
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.job-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.job-perk-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.job-perk-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
}

.job-perk-icon svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   Moving Companies / Our Clients Marquee (Moving Left to Right)
   ========================================================================== */
.clients-marquee-section {
  background-color: #FFFFFF;
  padding: 56px 0 60px 0;
  border-top: 1px solid #E6EEF2;
  border-bottom: 1px solid #E6EEF2;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.clients-marquee-title {
  font-size: 34px;
  font-weight: 700;
  color: #1E293B;
  letter-spacing: -0.02em;
  margin: 0 0 34px 0;
  text-align: center;
}

.clients-marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.clients-marquee-row {
  display: flex;
  user-select: none;
  overflow: hidden;
  gap: 32px;
  width: 100%;
}

.clients-marquee-row:hover .clients-marquee-track {
  animation-play-state: paused;
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  min-width: 100%;
  will-change: transform;
  animation: marqueeLeftToRight 40s linear infinite;
}

@keyframes marqueeLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  min-width: 210px;
  padding: 10px 24px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #EEF2F6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  flex-shrink: 0;
  cursor: default;
}

.client-logo-card:hover {
  transform: translateY(-3px);
  border-color: #CBD5E1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .clients-marquee-section {
    padding: 38px 0 42px 0;
  }
  .clients-marquee-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .client-logo-card {
    height: 66px;
    min-width: 180px;
    padding: 8px 18px;
  }
}

/* ==========================================================================
   Gallery Page Styles
   ========================================================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 9px 20px;
  border-radius: 9999px;
  border: 1px solid var(--slate-200);
  background-color: var(--white);
  color: var(--navy-950);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  border-color: var(--teal-primary);
  color: var(--teal-primary);
}

.gallery-filter-btn.active {
  background-color: var(--teal-primary);
  border-color: var(--teal-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 140, 158, 0.25);
}

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

.gallery-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--slate-100);
  cursor: pointer;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.06);
}

.gallery-overlay-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 31, 44, 0.85);
  backdrop-filter: blur(8px);
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(11, 140, 158, 0.3);
  z-index: 2;
}

.gallery-zoom-trigger {
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 44, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  color: var(--white);
}

.gallery-zoom-trigger svg {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(11, 140, 158, 0.95);
  border-radius: 50%;
  transform: scale(0.8);
  transition: transform var(--transition-normal);
}

.gallery-img-wrap:hover .gallery-zoom-trigger {
  opacity: 1;
}

.gallery-img-wrap:hover .gallery-zoom-trigger svg {
  transform: scale(1);
}

.gallery-info {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gallery-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 8px;
  line-height: 1.35;
}

.gallery-card-desc {
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.55;
  flex: 1;
}

.gallery-card-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--teal-primary);
  font-weight: 700;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 31, 44, 0.94);
  backdrop-filter: blur(16px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox-modal.open {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
  margin-top: 16px;
  text-align: center;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.lightbox-close-btn {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: var(--teal-primary);
}

@media (max-width: 1280px) {
  .nav-menu {
    gap: 2px;
  }
  .nav-link {
    font-size: 13px;
    padding: 6px 9px;
  }
  .nav-phone-pill {
    padding: 6px 10px;
    font-size: 12px;
  }
  .nav-actions .btn {
    padding: 7px 13px;
    font-size: 12.5px;
  }
}

@media (max-width: 1080px) {
  .top-bar {
    display: none;
  }
  .nav-menu, .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-icon-box {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .risk-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .job-perks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-grid, .why-choose-grid, .clients-section-grid, .about-preview-grid, .testimonial-faq-grid, .footer-contact-grid, .contact-grid, .service-detail-card, .careers-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
  .features-2col-grid {
    grid-template-columns: 1fr;
  }
  .hero-floating-glass-pill {
    justify-self: start;
    align-self: start;
    margin-top: 8px;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 34px;
  }
  .hero-headline span.highlight {
    font-size: 24px;
  }
  .section-title {
    font-size: 26px;
  }
  .services-grid, .process-5step-grid, .risk-stats-grid, .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-row, .checklist-grid, .contact-channels-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 60px;
  }
  .floating-actions-wrap {
    bottom: 70px;
    right: 16px;
  }
  .btn-whatsapp-float span {
    display: none;
  }
  .btn-whatsapp-float {
    padding: 12px;
    border-radius: 50%;
  }
  .contact-form-container, .service-detail-card {
    padding: 24px;
  }
  .risk-stats-box {
    padding: 32px 20px;
  }
}
