/* ========================================================================================
   industies.css — TechNeeqs Industries Page
   Merged & unified CSS matching TechNeeqs brand (custom.css tokens + industries styles)
======================================================================================== */

/* ─────────────────────────────────────────
   01. DESIGN TOKENS (matching custom.css)
───────────────────────────────────────── */
:root {
  --primary-color:          #FFFFFF;
  --secondary-color:        #0A0A0A;
  --text-color:             #A7AABB;
  --bg-color:               #060606;
  --accent-color:           #A93E17;
  --accent-secondary-color: #15399A;
  --divider-color:          #FFFFFF0F;
  --dark-divider-color:     #FFFFFF33;
  --error-color:            rgb(230, 87, 87);
  --default-font:           "Manrope", sans-serif;
  --gradient:               linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
  --gradient-bg-size:       200% auto;
}

/* ─────────────────────────────────────────
   02. RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--text-color);
  background: var(--bg-color);
  overflow-x: hidden;
}

html, body { width: 100%; overflow-x: clip; }

::-webkit-scrollbar-track { background-color: var(--secondary-color); }
::-webkit-scrollbar       { width: 7px; background-color: var(--secondary-color); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--accent-color) 0.26%, var(--accent-secondary-color) 99.99%); }

::selection { color: var(--primary-color); background-color: var(--accent-color); filter: invert(1); }

p  { line-height: 1.6em; margin-bottom: 1.6em; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.3em; color: var(--primary-color); }
a  { text-decoration: none; }
a:hover, a:focus { text-decoration: none; outline: 0; }
img { max-width: 100%; }
figure { margin: 0; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row > * { padding-right: 15px; padding-left: 15px; }

/* Bootstrap-style cols */
.col-lg-3  { width: 25%; }
.col-lg-5  { width: 41.666%; }
.col-lg-6  { width: 50%; }
.col-lg-7  { width: 58.333%; }
.col-lg-12 { width: 100%; }
.col-md-4  { width: 33.333%; }
.align-items-center { align-items: center; }

/* ─────────────────────────────────────────
   03. BUTTONS
───────────────────────────────────────── */
.btn-default {
  position: relative;
  display: inline-block;
  background: var(--gradient);
  background-size: var(--gradient-bg-size);
  border-radius: 100px;
  color: var(--primary-color);
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  border: none;
  outline: none;
  padding: 17px 30px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}
.btn-default:hover { background-position: right center; color: var(--primary-color); }

.btn-default.btn-highlighted {
  border: 1px solid var(--accent-color);
  background: var(--bg-color);
  padding: 16px 30px;
  color: var(--primary-color);
}
.btn-default.btn-highlighted::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; bottom: 0; left: -15%; right: 0;
  width: 0; height: 106%;
  background: var(--accent-color);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-default.btn-highlighted:hover::before {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}

/* ─────────────────────────────────────────
   04. SECTION TITLES
───────────────────────────────────────── */
.section-title { margin-bottom: 40px; }
.section-title.section-title-center {
  width: 100%;
  max-width: 700px;
  text-align: center;
  margin: 0 auto 40px;
}
.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-color);
  background: var(--divider-color);
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  padding: 10px 50px;
  margin-bottom: 20px;
}
.section-title h3::before {
  content: '';
  position: absolute;
  display: block;
  top: 50%; left: 24px;
  transform: translateY(-50%);
  background: url('../images/icon-sparkle.svg') no-repeat center / cover;
  width: 16px; height: 16px;
}
.section-title h3::after {
  content: '';
  position: absolute;
  display: block;
  top: 50%; right: 24px;
  transform: translateY(-50%);
  background: url('../images/icon-sparkle.svg') no-repeat center / cover;
  width: 16px; height: 16px;
}
.section-title h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 0;
  cursor: default;
}
.section-title h2 span {
  font-weight: 700;
  background: var(--gradient);
  background-size: var(--gradient-bg-size);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease-in-out;
}
.section-title h2:hover span { background-position: right center; }
.section-title p { margin-top: 20px; margin-bottom: 0; }

.section-row { margin-bottom: 80px; }
.section-row .section-title { margin-bottom: 0; }

.section-btn { text-align: right; }

/* ─────────────────────────────────────────
   05. NAVIGATION
───────────────────────────────────────── */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 80px;
  background: var(--bg-color);
  border-bottom: 1px solid var(--divider-color);
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 0.5rem;
  transition: background 0.4s;
}
.nav-logo {
  font-family: var(--default-font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.015em;
  flex-shrink: 0;
  margin-right: 1rem;
}
.nav-logo span {
  background: var(--gradient);
  background-size: var(--gradient-bg-size);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-color);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 100px;
  transition: color 0.3s, background 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-color); }

/* Dropdown */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  padding: 8px 0;
  list-style: none;
  min-width: 220px;
  z-index: 100;
  transform: translateY(8px);
  transition: all 0.25s ease;
}
.nav-links .has-sub:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.nav-links .has-sub .sub-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--text-color);
  border-radius: 0;
  transition: color 0.2s;
}
.nav-links .has-sub .sub-menu li a:hover { color: var(--accent-color); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* Theme toggle */
.theme-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--divider-color);
  border: 1px solid var(--divider-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
.theme-btn:hover { background: var(--dark-divider-color); border-color: var(--accent-color); }
.theme-btn .sun  { display: block; }
.theme-btn .moon { display: none; }
[data-theme="light"] .theme-btn .sun  { display: none; }
[data-theme="light"] .theme-btn .moon { display: block; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 3px; flex-shrink: 0; }
.burger span { display: block; width: 22px; height: 2px; background: var(--primary-color); border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--bg-color);
  z-index: 190;
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 0.2rem;
  overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--divider-color);
  transition: color 0.2s;
}
.mob-menu a:hover { color: var(--accent-color); }
.mob-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--divider-color);
}
.mob-theme-label { font-size: 0.95rem; color: var(--text-color); font-weight: 500; }

/* ─────────────────────────────────────────
   06. PAGE HEADER / HERO
───────────────────────────────────────── */
/* .page-header {
  position: relative;
  background: url('../images/page-header-bg.png') no-repeat center center / cover;
  padding: 180px 0 80px;
  z-index: 1;
  margin-top: 80px;
}
.page-header::before {
  content: '';
  display: block;
  position: absolute;
  left: 160px; bottom: 20%;
  background: url('../images/section-bg-shape-1.png') no-repeat center / cover;
  width: 113px; height: 110px;
  animation: floatShape 20s infinite linear alternate;
  z-index: 0;
  opacity: 0.4;
}
.page-header::after {
  content: '';
  display: block;
  position: absolute;
  right: 220px; top: 30%;
  background: url('../images/section-bg-shape-2.png') no-repeat center / cover;
  width: 82px; height: 110px;
  animation: floatShape 20s infinite linear alternate;
  z-index: 0;
  opacity: 0.4;
} */
/* @keyframes floatShape {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(50px) rotate(360deg); }
} */

/* .page-header-box {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
} */

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: var(--divider-color);
  border: 1px solid var(--divider-color);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
}

.eyebrow-tag::before { content: '//'; opacity: 0.5; }

.page-header-box h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  margin-bottom: 1.4rem;
}
.page-header-box h1 span {
  background: var(--gradient);
  background-size: var(--gradient-bg-size);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-sub {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--text-color);
  max-width: 1080px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.trust-row {
  display: flex;
  overflow-x: auto;
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  background: var(--secondary-color);
  max-width: 780px;
  margin: 0 auto;
}
.trust-cell {
  flex: 1;
  min-width: 110px;
  padding: 1.1rem 1rem;
  text-align: center;
  border-right: 1px solid var(--divider-color);
}
.trust-cell:last-child { border-right: none; }
.trust-cell .n {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--gradient);
  background-size: var(--gradient-bg-size);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-cell .l {
  font-size: 0.66rem;
  color: var(--text-color);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   07. INDUSTRIES SECTION
───────────────────────────────────────── */
.ind-section { padding: 80px 0; }

/* Desktop tabs */
.ind-sidebar { display: flex; gap: 4px; min-height: 650px; }

.ind-tabs {
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ind-tab {
  padding: 0.75rem 1rem;
  background: var(--secondary-color);
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: all 0.22s;
}
.ind-tab:hover { background: #111; border-color: var(--divider-color); }
.ind-tab.active {
  background: #0d0d0d;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 1px var(--accent-color);
}
.t-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: var(--divider-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.22s;
}
.ind-tab.active .t-icon { background: rgba(169,62,23,0.18); }
.t-label {
  font-family: var(--default-font);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.3;
  flex: 1;
  transition: color 0.22s;
}
.ind-tab.active .t-label { color: var(--primary-color); font-weight: 600; }
.t-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.22s;
}
.ind-tab.active .t-dot { opacity: 1; }

/* Panels */
.ind-panels { flex: 1; }
.ind-panel {
  display: none;
  height: 100%;
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
}
.ind-panel.active { display: flex; flex-direction: column; }
.p-inner { padding: 2.2rem; flex: 1; overflow-y: auto; }

.p-tag {
  font-family: var(--default-font);
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(169,62,23,0.08);
  border: 1px solid rgba(169,62,23,0.2);
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.p-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--primary-color);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}
.p-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1.6rem;
  font-weight: 400;
}
.p-feats {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.p-feat {
  background: #0a0a0a;
  border: 1px solid #252420;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.22s;
  cursor: pointer;
}
.p-feat.open { border-color: rgba(212,106,56,0.4); }

.p-feat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1rem;
}

.fd {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: #d46a38;
  flex-shrink: 0;
}

.p-feat-label {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  flex: 1;
  line-height: 1.4;
}

.p-feat-arrow {
  width: 16px;
  height: 16px;
  min-width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease;
}
.p-feat.open .p-feat-arrow { transform: rotate(180deg); }

.p-feat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.22s ease;
  padding: 0 1rem 0 1.5rem;
}
.p-feat.open .p-feat-body {
  max-height: 300px;
  padding: 0 1rem 0.85rem 1.5rem;
}

.p-feat-text {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.65;
  margin: 0;
  border-top: 1px solid #1f1e1c;
  padding-top: 0.65rem;
}

@media (max-width: 768px) {
  .p-feat-head {
    padding: 0.75rem 0.85rem;
    gap: 8px;
  }

  .p-feat-label {
    font-size: 14px;
  }

  .p-feat-body {
    padding: 0 0.85rem 0 1.25rem;
  }
  .p-feat.open .p-feat-body {
    max-height: 400px;
    padding: 0 0.85rem 0.75rem 1.25rem;
  }

  .p-feat-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .p-feat-head {
    padding: 0.7rem 0.75rem;
    gap: 8px;
    align-items: flex-start;
  }

  .fd {
    margin-top: 5px;
  }

  .p-feat-label {
    font-size: 13px;
  }

  .p-feat-body {
    padding: 0 0.75rem 0 1.1rem;
  }
  .p-feat.open .p-feat-body {
    max-height: 500px;
    padding: 0 0.75rem 0.7rem 1.1rem;
  }

  .p-feat-text {
    font-size: 12.5px;
    line-height: 1.6;
  }
}

/* Mobile accordion */
.mob-inds { display: none; flex-direction: column; gap: 0.4rem; }
.mc {
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.4s, border-color 0.3s;
}
.mc.open { border-color: var(--accent-color); }
.mc-head {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.mc-ico {
  width: 36px; height: 36px;
  border-radius: 7px;
  background: var(--divider-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.mc-ttl {
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-color);
  flex: 1;
}
.mc-chev { color: var(--text-color); font-size: 1.05rem; transition: transform 0.3s, color 0.3s; }
.mc.open .mc-chev { transform: rotate(90deg); color: var(--accent-color); }
.mc-body { display: none; padding: 0 1.2rem 1.2rem; }
.mc.open .mc-body { display: block; }
.mc-div { height: 1px; background: var(--divider-color); margin-bottom: 1rem; }

/* ─────────────────────────────────────────
   08. WHY SECTION
───────────────────────────────────────── */
.why-wrap {
  background: #0a0a0a;
  border-top: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
  padding: 80px 0;
}
.why-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider-color);
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 40px;
}
.why-item {
  background: var(--secondary-color);
  padding: 2.2rem 1.8rem;
  transition: background 0.3s;
}
.why-item:hover { background: #111; }
.why-n {
  font-family: var(--default-font);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--divider-color);
  line-height: 1;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}
.why-e { font-size: 1.4rem; margin-bottom: 0.75rem; display: block; }
.why-t {
  font-family: var(--default-font);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.55rem;
}
.why-d { font-size: 0.82rem; line-height: 1.72; color: var(--text-color); }

/* ─────────────────────────────────────────
   09. PROCESS SECTION
───────────────────────────────────────── */
.sec-pad { padding: 80px 0; }
.proc-header {
  display: flex;
  /* gap: 3rem; */
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.proc-desc {
  flex: 2;
  min-width: 220px;
  color: var(--text-color);
  line-height: 1.8;
  font-size: 0.91rem;
  margin-top: 1rem;
}
.proc-g {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--divider-color);
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  overflow: hidden;
}
.proc-item {
  background: var(--secondary-color);
  padding: 1.9rem 1.8rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: background 0.3s;
}
.proc-item:hover { background: #111; }
.proc-n {
  font-family: var(--default-font);
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--gradient);
  background-size: var(--gradient-bg-size);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
}
.proc-t {
  font-family: var(--default-font);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.42rem;
}
.proc-d { font-size: 0.82rem; line-height: 1.72; color: var(--text-color); }

/* ─────────────────────────────────────────
   10. CTA SECTION
───────────────────────────────────────── */
.cta-wrap { padding: 80px 0; }
.cta-box-box {
  position: relative;
  background: var(--secondary-color) url('../images/cta-box-bg.svg') no-repeat center center / cover;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-box-box::before {
  content: '';
  position: absolute;
  left: 60px; top: 60px;
  background: url('../images/section-bg-shape-1.png') no-repeat left top / cover;
  width: 113px; height: 110px;
  animation: floatShape 20s infinite linear alternate;
  z-index: 0;
  opacity: 0.3;
}
.cta-box-box::after {
  content: '';
  position: absolute;
  right: 60px; bottom: 80px;
  background: url('../images/section-bg-shape-2.png') no-repeat right bottom / cover;
  width: 82px; height: 110px;
  animation: floatShape 20s infinite linear alternate;
  z-index: 0;
  opacity: 0.3;
}
.cta-box-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-box-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

/* ─────────────────────────────────────────
   12. ANIMATIONS
───────────────────────────────────────── */
.wow { opacity: 0; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wow.fadeInUp { animation: fadeInUp 0.65s ease both; }
.wow.fadeInUp[data-wow-delay="0.1s"] { animation-delay: 0.1s; }
.wow.fadeInUp[data-wow-delay="0.2s"] { animation-delay: 0.2s; }
.wow.fadeInUp[data-wow-delay="0.3s"] { animation-delay: 0.3s; }
.wow.fadeInUp[data-wow-delay="0.4s"] { animation-delay: 0.4s; }

/* ─────────────────────────────────────────
   13. RESPONSIVE
───────────────────────────────────────── */

/* Tablet (≤1024px) */
@media only screen and (max-width: 1024px) {
  .main-nav { padding: 0 20px; }
  .ind-tabs { width: 220px; }
  .why-g  { grid-template-columns: repeat(2, 1fr); }
  .proc-g { grid-template-columns: 1fr; }

  .col-lg-3, .col-lg-5, .col-lg-6, .col-lg-7 { width: 50%; }
  .col-lg-12 { width: 100%; }
  .col-md-4 { width: 50%; }

  .section-btn { text-align: left; margin-top: 16px; }
}

/* Mobile (≤768px) */
@media only screen and (max-width: 768px) {
  .main-nav { height: 68px; padding: 0 16px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .mob-menu { top: 68px; }

  /* .page-header { padding: 120px 0 50px; margin-top: 68px; } */
  /* .page-header::before, .page-header::after { display: none; }
  .page-header-box h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .header-sub { font-size: 0.86rem; } */
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-default { width: 100%; text-align: center; }

  .trust-row { flex-wrap: wrap; }
  .trust-cell { min-width: 130px; }

  .ind-sidebar { display: none; }
  .mob-inds { display: flex; }

  .why-wrap { padding: 50px 0; }
  .why-g { grid-template-columns: 1fr; }

  .sec-pad { padding: 50px 0; }
  .proc-header { flex-direction: column; gap: 1rem; }
  .proc-g { grid-template-columns: 1fr; }

  .cta-wrap { padding: 50px 0; }
  .cta-box-box { padding: 60px 20px; border-radius: 14px; }
  .cta-box-box::before, .cta-box-box::after { display: none; }

  /* .main-footer { padding: 50px 0 0; }
  .main-footer .section-row { padding-bottom: 36px; margin-bottom: 36px; flex-direction: column; } */
  .section-btn { text-align: left; margin-top: 16px; }

  .col-lg-3, .col-lg-5, .col-lg-6, .col-lg-7 { width: 100%; }
  .col-md-4 { width: 50%; }

  .p-feats { grid-template-columns: 1fr; }
  .p-title { font-size: 1.3rem; }
  .ind-section { padding: 50px 0; }

  .section-title h2 { font-size: 28px; }
  .section-title h3 { font-size: 12px; padding: 8px 30px; }
  .section-title h3::before { left: 10px; }
  .section-title h3::after  { right: 10px; }
  .section-row { margin-bottom: 40px; }

  /* .footer-contact-box { flex-direction: column; gap: 0; }
  .footer-copyright-text { margin-top: 30px; padding: 24px 0; } */
}

/* Small mobile (≤480px) */
@media only screen and (max-width: 480px) {
  .col-md-4 { width: 100%; }
  .trust-cell { min-width: 100px; }
  /* .page-header-box h1 { font-size: 1.7rem; } */
  .cta-box-body { flex-direction: column; align-items: center; }
  .cta-box-body .btn-default { width: 100%; text-align: center; }
  .socialmedia-new li a { width: 42px; height: 42px; font-size: 16px; }
}
