/* ===================================================
   DURGA FIRE & SAFETY CONSULTANTS — DESIGN SYSTEM
   =================================================== */

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

/* ─── CSS Custom Properties ─────────────────────── */
:root {
  --navy: #0B1B3D;
  --navy-dark: #070F25;
  --navy-mid: #112254;
  --red: #E0342A;
  --red-dark: #B8271E;
  --red-light: #FF4A3F;
  --white: #FFFFFF;
  --off-white: #F5F6FA;
  --gray-100: #EEF0F5;
  --gray-200: #D9DCE8;
  --gray-400: #8892A4;
  --gray-600: #4A5568;
  --gray-800: #1A202C;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(11, 27, 61, 0.10);
  --shadow-md: 0 8px 24px rgba(11, 27, 61, 0.14);
  --shadow-lg: 0 16px 48px rgba(11, 27, 61, 0.20);
  --shadow-xl: 0 24px 64px rgba(11, 27, 61, 0.28);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;
}

/* ─── Reset & Base ───────────────────────────────── */
*,
*::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(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── Utility Classes ────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(224, 52, 42, 0.10);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-heading.light {
  color: var(--white);
}

.section-heading::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 14px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered::after {
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  margin-top: 12px;
  max-width: 620px;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.75);
}

.section-sub.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(224, 52, 42, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 52, 42, 0.45);
}

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

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

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

.btn-white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ─── HEADER ─────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 15, 37, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: all var(--transition);
}

#header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 74px;
  max-width: 1400px;
  margin: 0 auto;
}

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

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, var(--white)0%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a,
.nav-menu .dropdown-trigger {
  font-size: 0.845rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a:hover,
.nav-menu .dropdown-trigger:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-menu a.active {
  color: var(--red);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.dropdown-trigger .chevron {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
}

.nav-item.open .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 8px;
  z-index: 100;
}

.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.845rem;
  color: var(--gray-800) !important;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--red) !important;
}

.dropdown-menu a .dm-icon {
  font-size: 1rem;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.82rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ─── HERO ───────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/images/bg.png');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.45) saturate(0.9);
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.10);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(7, 15, 37, 0.95) 0%,
      rgba(11, 27, 61, 0.80) 45%,
      rgba(11, 27, 61, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 5% 100px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 52, 42, 0.18);
  border: 1px solid rgba(224, 52, 42, 0.35);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: rgba(255, 255, 255, 0.90);
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease both;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.00;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 760px;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-headline .highlight {
  color: var(--red);
  display: inline-block;
  position: relative;
}

.hero-subline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 760px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 42px;
  animation: fadeInUp 0.8s 0.32s ease both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.8s 0.44s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeIn 1s 1.2s ease both;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  animation: bounce 2s ease infinite;
}

@keyframes bounce {

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

  50% {
    transform: translateY(6px);
  }
}

/* ─── TRUST BAR ──────────────────────────────────── */
#trust-bar {
  background: var(--navy);
  position: relative;
  z-index: 10;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 3px solid var(--red);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1;
}

.trust-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.01em;
}

.trust-value span {
  color: var(--red);
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 5px;
}

/* ─── BRAND STATEMENT ────────────────────────────── */
#brand-statement {
  background: var(--off-white);
  padding: 90px 0;
}

.brand-statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-statement-text .section-heading {
  margin-bottom: 24px;
}

.brand-statement-text p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.80;
  margin-bottom: 16px;
}

.brand-statement-text p strong {
  color: var(--navy);
  font-weight: 600;
}

.brand-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.brand-visual-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.brand-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--red);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(224, 52, 42, 0.45);
}

.brand-visual-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.brand-visual-badge .badge-txt {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ─── WHY CHOOSE US ──────────────────────────────── */
#why-choose {
  background: var(--white);
  padding: 90px 0;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(224, 52, 42, 0.10), rgba(224, 52, 42, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  border: 1px solid rgba(224, 52, 42, 0.15);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.70;
}

/* ─── CORE SERVICES ──────────────────────────────── */
#services {
  background: var(--off-white);
  padding: 90px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: height var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  height: 100%;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.70;
  flex: 1;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.845rem;
  font-weight: 600;
  margin-top: 20px;
  transition: gap var(--transition-fast);
}

.service-card:hover .learn-more {
  gap: 10px;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

.services-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all var(--transition-fast);
}

.services-cta a:hover {
  border-color: var(--red);
  gap: 14px;
}

/* ─── NUMBERS SECTION ────────────────────────────── */
#numbers {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

#numbers::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 100px solid rgba(224, 52, 42, 0.05);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

#numbers::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(255, 255, 255, 0.03);
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}

.numbers-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.number-item {
  text-align: center;
  padding: 48px 28px;
  background: rgba(255, 255, 255, 0.02);
  transition: background var(--transition);
  position: relative;
}

.number-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.number-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.number-val {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}

.number-val .accent {
  color: var(--red);
}

.number-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.45;
}

/* ─── INDUSTRIES SECTION (STRICTLY SCOPED TO #industries) ─── */
#industries {
  background: var(--navy, #0B1B3D);
  padding: 80px 0;
  position: relative;
}

#industries .industries-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Supports both class name variants safely */
#industries .industry-grid,
#industries .industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

#industries .industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 30px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md, 12px);
  transition: all var(--transition, 0.3s ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}

#industries .industry-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224, 52, 42, 0.10), transparent);
  opacity: 0;
  transition: opacity var(--transition, 0.3s ease);
}

#industries .industry-item:hover {
  border-color: rgba(224, 52, 42, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.30);
}

#industries .industry-item:hover::before {
  opacity: 1;
}

/* ─── CIRCULAR ICON CONTAINER & PHOTO MASKING ─── */
#industries .industry-icon {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: all var(--transition, 0.3s ease);
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* 👈 CRITICAL: Crops square JPEG photos directly into a clean circle */
  flex-shrink: 0;
}

/* Formats JPEG/PNG images inside the circular icon badge */
#industries .industry-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 👈 Fills 58px circle completely without gaps */
  border-radius: 50%;
  display: block;
}

#industries .industry-item:hover .industry-icon {
  background: rgba(224, 52, 42, 0.20);
  border-color: rgba(224, 52, 42, 0.40);
}

#industries .industry-name {
  font-size: 0.80rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

#industries .industry-item:hover .industry-name {
  color: var(--white, #FFFFFF);
}

/* ─── RESPONSIVE BREAKPOINTS (SCOPED) ───────────── */
@media (max-width: 1024px) {

  #industries .industry-grid,
  #industries .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {

  #industries .industry-grid,
  #industries .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  #industries .industry-item {
    padding: 20px 12px;
  }
}


/* ─── FEATURED PROJECTS ──────────────────────────── */
#projects {
  background: var(--white);
  padding: 90px 0;
}

.projects-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  background: var(--white);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.project-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.30);
  position: relative;
}

.project-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 15, 37, 0.75) 0%, transparent 60%);
}

.project-img-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 4px 12px;
}

.project-card-body {
  padding: 26px;
}

.project-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.project-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.project-card-footer {
  padding: 0 26px 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Coming soon card */
.project-coming-soon {
  background: var(--off-white);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
  padding: 40px;
  gap: 14px;
}

.project-coming-soon .cs-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

.project-coming-soon p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.project-coming-soon h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── LOCATIONS ──────────────────────────────────── */
#locations {
  background: var(--off-white);
  padding: 80px 0;
}

.locations-header {
  text-align: center;
  margin-bottom: 44px;
}

.locations-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
}

.location-pill:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224, 52, 42, 0.15);
}

.location-pill .pin {
  font-size: 0.95rem;
}

/* ─── SPLIT CTA BANNER ───────────────────────────── */
#cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.cta-left {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-left-bg {
  position: absolute;
  inset: 0;
  background-image: url('brand_visual.png');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.cta-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 15, 37, 0.92) 0%, rgba(11, 27, 61, 0.75) 100%);
}

.cta-left-content {
  position: relative;
  z-index: 2;
}

.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.cta-left p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}

.cta-right {
  background: var(--red);
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-right::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.07);
  bottom: -120px;
  right: -80px;
}

.cta-right::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.07);
  top: -60px;
  left: -40px;
}

.cta-right-content {
  position: relative;
  z-index: 1;
}

.cta-right .emergency-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.cta-right h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.cta-right p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.70;
  margin-bottom: 32px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  width: fit-content;
}

.cta-phone:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────── */
#footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light), var(--red));
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(280px, 1.5fr) minmax(170px, .9fr) minmax(240px, 1.2fr) minmax(340px, 1.8fr);

  gap: 48px;
  align-items: start;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.60);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.footer-social:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

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

.footer-col ul li a {
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.52);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition-fast);
}

.footer-col ul li a::before {
  content: '›';
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(224, 52, 42, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.60;
}

.footer-contact-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.footer-copy {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.38);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}


/* ─── SCROLL REVEAL ANIMATION ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.10s;
}

.reveal-delay-2 {
  transition-delay: 0.20s;
}

.reveal-delay-3 {
  transition-delay: 0.30s;
}

.reveal-delay-4 {
  transition-delay: 0.40s;
}

.reveal-delay-5 {
  transition-delay: 0.50s;
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ─── COUNTER ANIMATION ──────────────────────────── */
.counter {
  transition: all 0.1s;
}

/* ─── MOBILE NAV OVERLAY ─────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy-dark);
  flex-direction: column;
  padding: 90px 5% 40px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 5%;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--red);
}

.mobile-nav .btn {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {

  .nav-menu,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .brand-statement-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brand-visual {
    display: none;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-bar-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item:nth-child(3) {
    border-right: none;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-left,
  .cta-right {
    padding: 60px 40px;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 64px 0;
  }

  .why-choose-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: fit-content;
  }

  .cta-left,
  .cta-right {
    padding: 48px 24px;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ─── CONSULTATION FORM MODAL ────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7, 15, 37, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: scale(0.94) translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  background: var(--navy);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.20);
}

.modal-body {
  padding: 32px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 27, 61, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 15px;
}

/* ─── SUB-PAGE HERO ──────────────────────────────── */
#page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/bg.png');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.30) saturate(0.85);
}

.page-hero-bg {
  background-image: url("assets/images/bg.png");
}

@media (max-width:768px) {

  .page-hero-bg {
    background-image: url("assets/images/bg.png");
    background-position: center;
  }

}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(7, 15, 37, 0.96) 0%,
      rgba(11, 27, 61, 0.88) 50%,
      rgba(11, 27, 61, 0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 5% 70px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.60);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--red-light);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.30);
}

.breadcrumb-current {
  color: rgba(255, 255, 255, 0.90);
}

.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 820px;
  margin-bottom: 14px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.page-hero-heading .highlight {
  color: var(--red);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  line-height: 1.65;
  animation: fadeInUp 0.7s 0.2s ease both;
}

/* ─── ABOUT INTRO ────────────────────────────────── */
#about-intro {
  background: var(--white);
  padding: 90px 0;
}

.about-intro-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-inner .section-tag {
  display: inline-block;
}

.about-intro-text {
  margin-top: 28px;
}

.about-intro-text p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

.about-intro-text p strong {
  color: var(--navy);
  font-weight: 600;
}

/* ─── LEADERSHIP SECTION ─────────────────────────── */
#leadership {
  background: var(--off-white, #F8FAFC);
  padding: 90px 0;
}

/* Header & Badge Centering */
.leadership-header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

/* 3D Perspective Card Container */
.leader-card-wrapper {
  background-color: transparent;
  perspective: 1000px;
  height: 520px;
  /* Fixed height so front and back stay identical */
}

/* Rotating Inner Board */
.leader-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: var(--radius-md, 8px);
}

/* Trigger flip on hover */
.leader-card-wrapper:hover .leader-card-inner {
  transform: rotateY(180deg);
}

/* Shared Face Properties */
.leader-card-front,
.leader-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Prevents mirror glitch on iOS/Safari */
  backface-visibility: hidden;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  border: 1px solid var(--gray-100, #E2E8F0);
}

/* ─── FRONT FACE ─────────────────────────────────── */
.leader-card-front {
  background-color: var(--white, #FFFFFF);
  box-shadow: var(--shadow-sm, 0 4px 6px -1px rgba(0, 0, 0, 0.05));
  display: flex;
  flex-direction: column;
}

.leader-img-wrapper {
  width: 100%;
  height: 430px;
  overflow: hidden;
  background-color: var(--gray-100, #F1F5F9);
}

.leader-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.leader-info {
  padding: 16px;
  border-top: 3px solid var(--red, #D32F2F);
  background: var(--white, #FFFFFF);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.leader-info h3 {
  font-family: var(--font-display, inherit);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy, #0B1B3D);
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.leader-role {
  display: inline-block;
  color: var(--red, #D32F2F);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── BACK FACE ──────────────────────────────────── */
.leader-card-back {
  background: var(--navy, #0B1B3D);
  color: var(--white, #FFFFFF);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  box-shadow: var(--shadow-lg, 0 10px 25px -5px rgba(0, 0, 0, 0.2));
}

.leader-card-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red, #D32F2F);
}

.leader-back-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.leader-back-content h3 {
  font-family: var(--font-display, inherit);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white, #FFFFFF);
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.leader-back-content .leader-role {
  color: rgba(255, 255, 255, 0.8);
}

.leader-divider {
  width: 40px;
  height: 2px;
  background: var(--red, #D32F2F);
  margin: 12px 0 16px 0;
}

.leader-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* ─── RESPONSIVE BREAKPOINTS ────────────────────── */
@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}


/* ─── OUR TEAM / STAFF SECTION ───────────────────── */
#our-team {
  background: var(--white);
  padding: 90px 0;
}

.team-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  margin-bottom: 36px;
}

.team-photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  background-color: var(--off-white);
}

.team-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-description {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: var(--off-white);
  padding: 36px 40px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
}

.team-description p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0;
}

.team-description p strong {
  color: var(--navy);
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .team-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .team-description {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .team-photos-grid {
    grid-template-columns: 1fr;
  }
}

/*----------About section image-----------*/

#about-intro {
  background: var(--white, #FFFFFF);
  padding: 90px 0;
}

.about-intro-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* 2-Photo Grid Layout */
.about-intro-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 36px 0 40px 0;
}

.intro-photo-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  box-shadow: var(--shadow-md, 0 8px 20px rgba(0, 0, 0, 0.08));
  border: 1px solid var(--gray-100, #E2E8F0);
  background-color: var(--off-white, #F8FAFC);
}

.intro-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.intro-photo-wrapper:hover img {
  transform: scale(1.04);
}

/* Overview Paragraph Text */
.about-intro-text {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-text p {
  color: var(--gray-600, #475569);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

.about-intro-text p strong {
  color: var(--navy, #0B1B3D);
  font-weight: 700;
}

/* ─── SECTION HEADER & TAG ALIGNMENT FIXES ───────── */
.text-center {
  text-align: center;
}

.text-center .section-tag {
  display: inline-block;
  margin: 0 auto 14px auto;
  text-align: center;
}

/* Base style for section tag badges */
.section-tag {
  background: rgba(211, 47, 47, 0.1);
  /* Subtle red tint */
  color: var(--red, #D32F2F);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(211, 47, 47, 0.2);
}

/* Fix for centered section headings */
.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Fix for subtitle text wrapping & alignment */
.section-subtitle.centered {
  text-align: center;
  max-width: 640px;
  margin: 12px auto 0 auto;
  color: var(--gray-600, #64748B);
  font-size: 1.02rem;
  line-height: 1.6;
}

.leadership-header,
.team-header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── MISSION & VISION ───────────────────────────── */
#mission-vision {
  background: var(--off-white);
  padding: 90px 0;
}

.mv-header {
  text-align: center;
  margin-bottom: 48px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  border-radius: var(--radius-md);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mv-card-navy {
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

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

.mv-card-white {
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.mv-card-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
}

.mv-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(224, 52, 42, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 22px;
  border: 1px solid rgba(224, 52, 42, 0.20);
}

.mv-card-white .mv-card-icon {
  background: linear-gradient(135deg, rgba(224, 52, 42, 0.10), rgba(224, 52, 42, 0.05));
  border-color: rgba(224, 52, 42, 0.15);
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.mv-card-navy h3 {
  color: var(--white);
}

.mv-card-white h3 {
  color: var(--navy);
}

.mv-card p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.mv-card-navy p {
  color: rgba(255, 255, 255, 0.72);
}

.mv-card-white p {
  color: var(--gray-600);
}

/* ─── OUR STRENGTHS ──────────────────────────────── */
#our-strengths {
  background: var(--white);
  padding: 90px 0;
}

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

.strength-tile {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.strength-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.strength-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.strength-tile:hover::before {
  transform: scaleX(1);
}

.strength-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(224, 52, 42, 0.10), rgba(224, 52, 42, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  border: 1px solid rgba(224, 52, 42, 0.15);
}

.strength-tile h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

/* ─── ABOUT CTA STRIP ────────────────────────────── */
#about-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: var(--navy);
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/bg.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
  opacity: 0.5;
}

.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 15, 37, 0.94) 0%, rgba(11, 27, 61, 0.88) 100%);
}

.about-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.about-cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ─── ABOUT PAGE RESPONSIVE ──────────────────────── */
@media (max-width: 900px) {
  #page-hero {
    min-height: 36vh;
  }

  .page-hero-content {
    padding: 120px 5% 56px;
  }

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

  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  #page-hero {
    min-height: 32vh;
  }

  .page-hero-heading {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

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

  .mv-card {
    padding: 32px 26px;
  }

  .about-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .about-cta-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ==========================================================================
   DURGA FIRE CONTACT PAGE STYLE ADDITIONS
   ========================================================================== */

/* Design Tokens (If not already declared in your global CSS) */
:root {
  --contact-navy: #0B1B3D;
  /* Deep Navy Blue from your CTA banner */
  --contact-red: #D32F2F;
  /* Fire Red */
  --contact-red-hover: #B71C1C;
  /* Dark Red */
  --contact-light-bg: #F4F6F9;
  /* Clean Off-White */
  --contact-border: #E2E8F0;
  /* Slate border */
  --contact-text-primary: #1E293B;
  /* Dark Slate */
  --contact-text-muted: #64748B;
  /* Muted Gray */
  --contact-card-shadow: 0 10px 30px -10px rgba(11, 27, 61, 0.08);
}

/* 1. Contact Page Hero Banner */
.page-hero {
  background-color: var(--contact-navy);
  background-image: linear-gradient(rgba(11, 27, 61, 0.92), rgba(11, 27, 61, 0.95));
  color: #ffffff;
  padding: 60px 0 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--contact-red);
}

.breadcrumb .active-crumb {
  color: #ffffff;
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--contact-red);
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-supporting {
  max-width: 800px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1.05rem;
}

/* 2. 24/7 Emergency Callout Strip */
.emergency-strip {
  background-color: var(--contact-navy);
  border-top: 4px solid var(--contact-red);
  border-bottom: 4px solid var(--contact-red);
  padding: 24px 0;
  margin-top: -30px;
  position: relative;
  z-index: 10;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.emergency-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.emergency-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.emergency-badge {
  background-color: var(--contact-red);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  animation: contact-pulse-red 2s infinite;
}

.emergency-text h2 {
  color: #ffffff;
  margin: 0 0 4px 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.emergency-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
}

.emergency-cta-btn {
  background-color: var(--contact-red);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 14px 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
  transition: transform 0.2s, background-color 0.2s;
}

.emergency-cta-btn:hover {
  background-color: var(--contact-red-hover);
  transform: translateY(-2px);
  color: #ffffff;
}

/* 3. Section Headers (Red Underline system for pages) */
.section-header {
  font-size: 1.85rem;
  color: var(--contact-navy);
  position: relative;
  padding-bottom: 14px;
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 700;
}

.section-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 4px;
  background-color: var(--contact-red);
}

.text-center.section-header::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: var(--contact-text-muted);
  margin-top: -15px;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* 4. Two-Column Layout Grid */
.contact-layout-section {
  padding: 80px 0;
  background-color: var(--contact-light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

/* White Form Panel Box */
.contact-card-wrapper {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--contact-card-shadow);
  border: 1px solid var(--contact-border);
}

/* Contact Form Styles */
.durga-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--contact-navy);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--contact-red);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--contact-text-primary);
  background-color: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--contact-red);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* Mobile input with locked styling */
.prefix-input-container {
  display: flex;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.prefix-input-container:focus-within {
  border-color: var(--contact-red);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.input-prefix {
  background-color: #f1f5f9;
  color: var(--contact-text-primary);
  font-weight: 600;
  padding: 12px 16px;
  border-right: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  user-select: none;
}

.prefix-input-container input {
  border: none;
  border-radius: 0;
  flex-grow: 1;
}

.prefix-input-container input:focus {
  box-shadow: none;
}

/* Submit Button */
.btn-primary-red {
  background-color: var(--contact-red);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
}

.btn-primary-red:hover {
  background-color: var(--contact-red-hover);
}

.btn-primary-red:active {
  transform: translateY(1px);
}

.form-micro-copy {
  margin: 15px 0 0 0;
  font-size: 0.85rem;
  color: var(--contact-text-muted);
  line-height: 1.5;
}

/* 5. Quick Contact Interactive Tiles */
.contact-tiles-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-tile {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--contact-border);
  box-shadow: var(--contact-card-shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.contact-tile:hover {
  transform: translateY(-4px);
  border-color: var(--contact-red);
  box-shadow: 0 15px 35px -5px rgba(211, 47, 47, 0.08);
}

.tile-icon-wrapper {
  background-color: var(--contact-light-bg);
  color: var(--contact-red);
  font-size: 1.6rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s, color 0.2s;
}

.contact-tile:hover .tile-icon-wrapper {
  background-color: var(--contact-red);
  color: #ffffff;
}

/* WhatsApp Tile custom green accent */
.whatsapp-tile:hover .tile-icon-wrapper {
  background-color: #25D366;
  color: #ffffff;
}

.whatsapp-tile:hover {
  border-color: #25D366;
}

.tile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tile-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--contact-navy);
}

.tile-detail {
  margin: 0;
  color: var(--contact-text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.tile-action {
  font-size: 0.8rem;
  color: var(--contact-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.whatsapp-tile .tile-action {
  color: #25D366;
}

/* 6. Offices & Map Grid */
.offices-map-section {
  background-color: #ffffff;
  padding: 80px 0;
  border-top: 1px solid var(--contact-border);
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.office-card {
  background: var(--contact-light-bg);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid var(--contact-border);
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.office-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: var(--contact-navy);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.office-badge.secondary {
  background-color: var(--contact-red);
}

.office-card h3 {
  margin: 0 0 15px 0;
  color: var(--contact-navy);
  font-size: 1.3rem;
  font-weight: 700;
}

.office-address {
  line-height: 1.6;
  color: var(--contact-text-primary);
  margin: 0 0 15px 0;
  font-size: 0.95rem;
}

.office-phone {
  margin: 0 0 15px 0;
  font-size: 0.95rem;
}

.text-link {
  color: var(--contact-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.text-link:hover {
  color: var(--contact-red-hover);
  text-decoration: underline;
}

/* Map Shell */
.map-embed-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--contact-card-shadow);
  border: 1px solid var(--contact-border);
  line-height: 0;
}

/* Pulse Animation for Emergency Button */
@keyframes contact-pulse-red {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
  }

  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(211, 47, 47, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
  }
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact-column {
    order: -1;
    /* Display direct tap cards above form on tablet/mobile */
  }

  .contact-tiles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .emergency-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .emergency-content {
    flex-direction: column;
    gap: 12px;
  }

  .emergency-cta-btn {
    width: 100%;
    justify-content: center;
  }

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

  .contact-tiles-grid {
    grid-template-columns: 1fr;
  }

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

  .office-card {
    padding-top: 50px;
  }

  .office-badge {
    left: 30px;
    right: auto;
  }
}

/* 1. Contact Page Hero Banner (Fixed Overlap) */
.page-hero {
  background-color: var(--contact-navy);
  background-image: linear-gradient(rgba(11, 27, 61, 0.92), rgba(11, 27, 61, 0.95));
  color: #ffffff;

  /* 
       INCREASED TOP PADDING:
       We increased this from 60px to 140px. This leaves plenty of room 
       for your fixed header to sit on top without overlapping the text.
    */
  padding: 140px 0 80px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   DURGA FIRE SERVICES PAGE STYLE ADDITIONS
   ========================================================================== */

/* 1. Adjusted Hero for Fixed Header Overlap & Alignment */
.page-hero {
  background-color: var(--contact-navy, #0B1B3D);
  background-image: linear-gradient(rgba(11, 27, 61, 0.92), rgba(11, 27, 61, 0.95));
  color: #ffffff;
  padding: 140px 0 80px 0;
  /* High top padding avoids fixed header overlap */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-btn {
  margin-top: 25px;
}

/* 2. Sticky Sub-Navigation Bar */
.sticky-subnav {
  background-color: #ffffff;
  border-bottom: 1px solid var(--contact-border, #E2E8F0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: sticky;

  /* 
       Adjust this 'top' value based on the exact height of your fixed global header! 
       Assuming header is ~70-80px tall. This ensures it sticks just below the header.
    */
  top: 70px;

  z-index: 99;
}

.subnav-container {
  padding: 0;
}

.subnav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  overflow-x: auto;
  /* Allows horizontal scrolling on mobile */
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.subnav-list li a {
  display: block;
  padding: 18px 24px;
  color: var(--contact-text-muted, #64748B);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s, background-color 0.2s;
  border-bottom: 3px solid transparent;
}

.subnav-list li a:hover {
  color: var(--contact-red, #D32F2F);
  background-color: rgba(211, 47, 47, 0.03);
  border-bottom: 3px solid var(--contact-red, #D32F2F);
}

/* 3. Service Repeating Sections */
.service-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--contact-border, #E2E8F0);
}

.bg-white {
  background-color: #ffffff;
}

.bg-light {
  background-color: var(--contact-light-bg, #F4F6F9);
}

/* Smooth anchor scrolling offset to account for sticky headers */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
  /* Accounts for fixed main header + sticky subnav */
}

/* 4. Section Headers & Intro Text */
.service-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.service-icon {
  font-size: 2.2rem;
  background-color: rgba(211, 47, 47, 0.1);
  color: var(--contact-red, #D32F2F);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.service-section .section-header {
  margin: 0;
  padding-bottom: 0;
}

.service-section .section-header::after {
  display: none;
  /* Removed red underline here since icon replaces it stylistically */
}

.service-intro-tag {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--contact-red, #D32F2F);
  margin: 0 0 12px 0;
}

.service-overview {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--contact-text-primary, #1E293B);
  max-width: 800px;
  margin: 0 0 40px 0;
}

/* 5. Split Lists Grid System */
.service-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.service-grid h3 {
  font-size: 1.1rem;
  color: var(--contact-navy, #0B1B3D);
  margin: 0 0 20px 0;
  border-bottom: 2px solid var(--contact-red, #D32F2F);
  display: inline-block;
  padding-bottom: 6px;
}

/* Bullet list overrides */
.service-grid ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.two-col-list li {
  position: relative;
  padding-left: 20px;
  color: var(--contact-text-primary, #1E293B);
  font-size: 0.95rem;
}

.two-col-list li::before {
  content: "•";
  color: var(--contact-red, #D32F2F);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.check-list li {
  margin-bottom: 12px;
  color: #059669;
  /* Trust/Success Green for benefits */
  font-weight: 600;
  font-size: 0.95rem;
}

/* 6. Mini CTA */
.mini-cta {
  display: inline-block;
  margin-top: 20px;
  color: var(--contact-red, #D32F2F);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
}

.mini-cta:hover {
  color: var(--contact-red-hover, #B71C1C);
  transform: translateX(4px);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {

  /* Mobile Subnav adjustment */
  .subnav-list {
    justify-content: flex-start;
    /* Allows natural scrolling on mobile */
  }

  .subnav-list li a {
    padding: 14px 16px;
    font-size: 0.85rem;
  }

  .two-col-list {
    grid-template-columns: 1fr;
    /* Stack main list on phones */
  }

  .service-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-section {
    padding: 60px 0;
  }
}