/* ==========================================================
   SPECTRO INSPECTIONS AND MAINTENANCE
   Main Stylesheet  —  All Pages
   ========================================================== */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:      #0b2545;
  --primary-dk:   #071929;
  --accent:       #f7941d;
  --accent-dk:    #d97b0e;
  --accent-lt:    rgba(247,148,29,0.12);
  --white:        #ffffff;
  --light:        #f5f7fa;
  --border:       rgba(11,37,69,0.09);
  --text:         #1c2b3a;
  --muted:        #6b7a8d;
  --shadow-sm:    0 2px 12px rgba(11,37,69,0.07);
  --shadow-md:    0 6px 28px rgba(11,37,69,0.11);
  --shadow-lg:    0 16px 54px rgba(11,37,69,0.14);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   all 0.3s ease;
  --nav-h:        125px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }

/* ── Utility ── */
.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.bg-light-c     { background: var(--light); }
.bg-primary-c   { background: var(--primary); }
.text-accent    { color: var(--accent) !important; }
.text-accent-alt { color: rgba(247, 148, 29, 0.9) !important; }
.text-white-muted { color: rgba(255, 255, 255, 0.55) !important; }
.text-white-dim   { color: rgba(255, 255, 255, 0.72) !important; }

.max-w-500 { max-width: 500px; }
.max-w-520 { max-width: 520px; }
.max-w-540 { max-width: 540px; }
.max-w-560 { max-width: 560px; }
.h-60 { height: 60px; }
.h-w-36 { width: 36px; height: 36px; }

.icon-xl { font-size: 1.8rem; margin-bottom: 12px; }
.icon-lg { font-size: 1.6rem; margin-bottom: 10px; }
.stat-val-alt { font-size: 2.2rem; font-weight: 900; color: var(--accent); line-height: 1.2; }
.stat-lbl-alt { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.fs-sm-alt { font-size: 0.93rem; }
.fs-xs-alt { font-size: 0.82rem; }
.fs-9-alt  { font-size: 0.9rem; }
.fs-88     { font-size: 0.88rem; }
.fs-86     { font-size: 0.86rem; }
.fs-84     { font-size: 0.84rem; }
.fs-72-alt { font-size: 0.72rem; }
.fs-1-8    { font-size: 1.8rem; }
.fs-2rem   { font-size: 2rem; }
.fs-95     { font-size: 0.95rem; }

.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }

.ls-1 { letter-spacing: 1px !important; }

.m-0 { margin: 0 !important; }
.mb-1 { margin-bottom: 4px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 12px !important; }
.mt-4 { margin-top: 1.5rem !important; }

.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }

.border-light-c { border-color: var(--border) !important; }
.border-none { border: none !important; }
.border-top-light { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.pointer { cursor: pointer; }

/* ── Premium Card System ── */
.premium-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.premium-card > * {
  position: relative;
  z-index: 2;
}

.premium-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

/* Logo Watermark */
.premium-card::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
  transition: var(--transition);
}

.premium-card:hover::before {
  transform: scale(1.1) rotate(-5deg);
  opacity: 0.06;
}

.premium-card h3, .premium-card h4, .premium-card h5 {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
}

.premium-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.32) !important;
}

.is-invalid {
  border-color: #ef4444 !important;
}

.follow-us-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.tag-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-heading {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.18;
  margin-bottom: 0;
}
.section-heading span { color: var(--accent); }
.section-heading.on-dark { color: var(--white); }
.divider {
  width: 48px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 26px;
}
.divider.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn-primary-c {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700; font-size: 0.88rem;
  border: 2px solid var(--accent);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary-c:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,148,29,0.35);
}
.btn-outline-w {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 700; font-size: 0.88rem;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-outline-w:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--primary);
  font-weight: 700; font-size: 0.88rem;
  border: 2px solid var(--primary);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--accent);
  font-weight: 700; font-size: 0.88rem;
  border: 2px solid var(--white);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.site-nav {
  background: var(--primary);
  height: var(--nav-h);
  min-height: var(--nav-h);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.22);
  transition: box-shadow 0.3s;
  overflow: visible;
}
.site-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  height: 100%;
}
.brand-logo {
  height: 95px !important;
  width: 95px !important;
  min-width: 95px !important;
  max-width: 95px !important;
  max-height: 95px !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: brightness(1.2) drop-shadow(0 0 1px rgba(255,255,255,0.4));
  transition: var(--transition);
  flex-shrink: 0;
  display: block;
}
.nav-brand:hover .brand-logo {
  filter: brightness(1.4) drop-shadow(0 0 3px rgba(255,255,255,0.8));
  transform: scale(1.05);
}
.brand-mark { display: none; }
.brand-text-wrap { line-height: 1.1; }
.brand-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
  display: block;
}
.brand-sub {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: block;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}
.site-nav .nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.site-nav .nav-link-c {
  color: rgba(255,255,255,0.8);
  font-size: 0.855rem;
  font-weight: 600;
  padding: 0 14px;
  height: 100%;
  display: flex; align-items: center; gap: 4px;
  position: relative;
  white-space: nowrap;
  transition: var(--transition);
}
.site-nav .nav-link-c::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: var(--transition);
}
.site-nav .nav-link-c:hover, .site-nav .nav-link-c.active { color: var(--white); }
.site-nav .nav-link-c:hover::after, .site-nav .nav-link-c.active::after { transform: scaleX(1); }
.site-nav .nav-link-c .caret {
  font-size: 0.6rem;
  opacity: 0.65;
  transition: var(--transition);
}
.site-nav .nav-item:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 20px 60px rgba(11,37,69,0.18);
  border-top: 3px solid var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}
.site-nav .nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  background: var(--accent-lt);
  color: var(--accent);
  padding-left: 26px;
}
.nav-dropdown a .dd-icon {
  width: 28px; height: 28px;
  background: var(--accent-lt);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-dropdown a:hover .dd-icon { background: var(--accent); }

/* Nav CTA */
.nav-cta-btn {
  background: var(--accent);
  color: var(--white) !important;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
  margin-left: 8px;
}
.nav-cta-btn:hover { background: var(--accent-dk) !important; transform: translateY(-1px); }
.nav-cta-btn::after { display: none !important; }

/* Mobile toggler */
.nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggler span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════
   HERO CAROUSEL
══════════════════════════════════════════ */
.hero-carousel { position: relative; overflow: hidden; }
.hero-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Slide backgrounds */
.slide-1 { background: linear-gradient(rgba(7, 25, 41, 0.62), rgba(7, 25, 41, 0.62)), url('../images/hero/rope-access-hero.webp'); }
.slide-2 { background: linear-gradient(rgba(7, 25, 41, 0.62), rgba(7, 25, 41, 0.62)), url('../images/hero/ndt-inspection-hero.webp'); }
.slide-3 { background: linear-gradient(rgba(7, 25, 41, 0.62), rgba(7, 25, 41, 0.62)), url('../images/hero/drone-inspection-hero.webp'); }
.slide-4 { background: linear-gradient(rgba(7, 25, 41, 0.62), rgba(7, 25, 41, 0.62)), url('../images/hero/industrial-site-hero.webp'); }
.slide-5 { background: linear-gradient(rgba(7, 25, 41, 0.62), rgba(7, 25, 41, 0.62)), url('../images/hero/misc-industrial-107.webp'); }
.slide-6 { background: linear-gradient(rgba(7, 25, 41, 0.62), rgba(7, 25, 41, 0.62)), url('../images/hero/WhatsApp Image 2026-05-07 at 2.18.49 PM.jpeg'); }
.slide-7 { background: linear-gradient(rgba(7, 25, 41, 0.62), rgba(7, 25, 41, 0.62)), url('../images/hero/WhatsApp Image 2026-05-07 at 2.18.49 PM (1).jpeg'); }
.slide-8 { background: linear-gradient(rgba(7, 25, 41, 0.62), rgba(7, 25, 41, 0.62)), url('../images/hero/WhatsApp Image 2026-05-07 at 2.18.49 PM (2).jpeg'); }
.slide-9 { background: linear-gradient(rgba(7, 25, 41, 0.62), rgba(7, 25, 41, 0.62)), url('../images/hero/WhatsApp Image 2026-05-07 at 2.18.49 PM (3).jpeg'); }
.slide-10 { background: linear-gradient(rgba(7, 25, 41, 0.62), rgba(7, 25, 41, 0.62)), url('../images/hero/WhatsApp Image 2026-05-07 at 2.18.49 PM (4).jpeg'); }

.slide-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.slide-glow {
  position: absolute;
  left: -10%; top: 20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.slide-content { position: relative; z-index: 2; }
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,148,29,0.12);
  border: 1px solid rgba(247,148,29,0.3);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.slide-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.35; transform:scale(0.6); }
}
.slide-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.slide-title span { color: var(--accent); }
.slide-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 400;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slide visual panel */
.slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.slide-icon-frame {
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

/* ══════════════════════════════════════════
   CEO PROFILE CLASSES
══════════════════════════════════════════ */
.nav-ceo-item { padding-left: 15px; }
.nav-ceo-img { width: 70px; height: 70px; object-fit: cover; border: 2px solid var(--white); }
.ceo-graphic-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); display: block; }
.ceo-card-img { width: 72px; height: 72px; object-fit: cover; border: 3px solid var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.12); }
.about-ceo-img { width: 150px; height: 150px; object-fit: cover; border: 3px solid var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.ceo-card-name { font-weight: 800; color: var(--primary); font-size: 1rem; margin-bottom: 2px; }
.ceo-card-title { font-size: 0.82rem; font-weight: 600; color: var(--accent); margin-bottom: 4px; }
.ceo-card-contact { font-size: 0.8rem; color: var(--muted); }
.ceo-quote { font-size: 0.88rem; font-style: italic; border-left: 3px solid var(--accent); padding-left: 12px; }

.slide-icon-frame::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.055);
}
.slide-icon-frame::after {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  background: rgba(247,148,29,0.08);
  border: 1px solid rgba(247,148,29,0.18);
}
.slide-main-icon {
  font-size: 7rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 30px rgba(247,148,29,0.25));
}

/* Orbit badges */
.orbit-badge {
  position: absolute;
  background: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  z-index: 3;
}
.orbit-badge .ob-val {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.orbit-badge .ob-lbl {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.ob-1 { top: 10%; right: 5%; animation: float 5s ease-in-out infinite; }
.ob-2 { bottom: 15%; right: 2%; animation: float 7s ease-in-out infinite 1s; }
.ob-3 { bottom: 10%; left: 5%; animation: float 6s ease-in-out infinite 0.5s; }

/* Carousel controls */
.carousel-prev-btn,
.carousel-next-btn {
  position: absolute;
  bottom: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.carousel-prev-btn { right: 100px; }
.carousel-next-btn { right: 48px; }
.carousel-prev-btn:hover,
.carousel-next-btn:hover { background: var(--accent); border-color: var(--accent); }

.carousel-indicators-c {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.ci-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.ci-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════
   ABOUT SECTION (Home) — Dual Tab
══════════════════════════════════════════ */
.home-about { background: var(--white); }

.about-tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 36px;
  gap: 0;
}
.atab-btn {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: var(--transition);
}
.atab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.atab-btn:hover { color: var(--accent); }
.atab-panel { display: none; }
.atab-panel.active { display: block; }

.about-graphic {
  background: linear-gradient(rgba(11, 37, 69, 0.35), rgba(11, 37, 69, 0.35)), url('../images/CEO/WhatsApp Image 2026-05-15 at 1.49.02 PM.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-graphic::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 24px, rgba(255,255,255,0.022) 24px, rgba(255,255,255,0.022) 48px);
}
.about-graphic-icon { font-size: 8rem; opacity: 0.12; }
.about-float-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(247,148,29,0.4);
}
.about-float-badge .big { font-size: 2rem; font-weight: 900; line-height: 1; display: block; }
.about-float-badge .sm  { font-size: 0.7rem; opacity: 0.9; margin-top: 4px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.93rem;
}
.check-list li .ck {
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.6rem;
  color: white;
}
.advantage-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.advantage-item > * {
  position: relative;
  z-index: 2;
}
.advantage-item::before {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
}
.advantage-item:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.adv-icon {
  width: 48px; height: 48px;
  background: var(--accent-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.advantage-item:hover .adv-icon { background: var(--accent); color: white; }
.advantage-item h6 { font-weight: 800; color: var(--primary); margin-bottom: 4px; font-size: 0.95rem; }
.advantage-item p  { font-size: 0.86rem; color: var(--muted); margin: 0; }

/* ══════════════════════════════════════════
   SERVICES SECTION (Home)
══════════════════════════════════════════ */
.services-home { background: var(--light); }
.svc-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.svc-card > * {
  position: relative;
  z-index: 2;
}
.svc-card::before {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
  transition: var(--transition);
}
.svc-card::after {
  content: '';
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: var(--transition);
  z-index: 0;
  pointer-events: none;
}
/* Individual Hover Images for Services - Keep definitions but disable hover overlay */
.row > div:nth-child(1) .svc-card::after { background-image: linear-gradient(rgba(11, 37, 69, 0.94), rgba(11, 37, 69, 0.94)), url('../img/wind-maintenance.jpg'); }
.row > div:nth-child(2) .svc-card::after { background-image: linear-gradient(rgba(11, 37, 69, 0.94), rgba(11, 37, 69, 0.94)), url('../img/drone.png'); }
.row > div:nth-child(3) .svc-card::after { background-image: linear-gradient(rgba(11, 37, 69, 0.94), rgba(11, 37, 69, 0.94)), url('../img/ndt.png'); }
.row > div:nth-child(4) .svc-card::after { background-image: linear-gradient(rgba(11, 37, 69, 0.94), rgba(11, 37, 69, 0.94)), url('../img/wind-blade-close.jpg'); }

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
/* Removed color: white change to ensure text stays visible */
.svc-card:hover::before {
  opacity: 0.06;
  transform: scale(1.1) rotate(-5deg);
}

/* ══════════════════════════════════════════
   INDUSTRIES SECTION (Home)
══════════════════════════════════════════ */
.industries-home { 
  background: linear-gradient(rgba(11, 37, 69, 0.65), rgba(11, 37, 69, 0.65)), url('../img/logo.png'); 
  background-size: cover;
  background-position: center;
}
.ind-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.ind-card > * {
  position: relative;
  z-index: 2;
}
.ind-card::before {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
  transition: var(--transition);
}
.ind-card::after {
  content: '';
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: var(--transition);
  z-index: 0;
  pointer-events: none;
}
/* Individual Hover Images for Industries */
.industries-home .row > div:nth-child(1) .ind-card::after { background-image: linear-gradient(rgba(247, 148, 29, 0.94), rgba(247, 148, 29, 0.94)), url('../img/industry-1.jpg'); }
.industries-home .row > div:nth-child(6) .ind-card::after { background-image: linear-gradient(rgba(247, 148, 29, 0.94), rgba(247, 148, 29, 0.94)), url('../img/wind-blade-close.jpg'); }
.industries-home .row > div:nth-child(7) .ind-card::after { background-image: linear-gradient(rgba(247, 148, 29, 0.94), rgba(247, 148, 29, 0.94)), url('../img/wind-turbine-lattice.jpg'); }

.ind-card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
/* Removed overlay and white text hover to ensure stability */
.ind-card:hover::before {
  opacity: 0.06;
  transform: scale(1.1) rotate(-5deg);
}

.ind-card .ind-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.ind-card h5 { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; transition: var(--transition); }
.ind-card p  { font-size: 0.88rem; color: var(--muted); margin: 0; transition: var(--transition); }
.ind-card a  {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 0.8rem; font-weight: 700;
  color: var(--accent);
  transition: var(--transition);
}
.ind-card:hover a { gap: 10px; }

/* ══════════════════════════════════════════
   STATS COUNTER
══════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.stats-section::after {
  content: '';
  position: absolute; left: -40px; bottom: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.stat-item {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.stat-item > * {
  position: relative;
  z-index: 2;
}
.stat-item::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
}
.stat-item:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.stat-item:hover::before { transform: scale(1.1) rotate(-5deg); opacity: 0.08; }

.stat-num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: block;
  transition: var(--transition);
}
.stat-item:hover .stat-num { color: var(--accent); }
.stat-suffix { color: var(--accent); }
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 10px;
  font-weight: 700;
  transition: var(--transition);
}
.stat-item:hover .stat-label { color: var(--primary); }
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}

/* ══════════════════════════════════════════
   CLIENTS MARQUEE
══════════════════════════════════════════ */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.clients-section { background: var(--white); padding: 80px 0 60px; overflow: hidden; }
.clients-hdr { margin-bottom: 52px; }
.marquee-wrap {
  position: relative; overflow: hidden; width: 100%;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 100px;
  z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-set { display: flex; gap: 18px; padding: 10px 9px; }
.cl-card {
  width: 170px; flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 14px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cl-card > * {
  position: relative;
  z-index: 2;
}
.cl-card::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
}
.cl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(247,148,29,0.3); }
.cl-logo-wrap { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.cl-img {
  max-height: 50px; max-width: 120px; width: auto;
  object-fit: contain;
  opacity: 1;
  transition: var(--transition);
}
.cl-card:hover .cl-img { transform: scale(1.05); }
.cl-abbr {
  display: none;
  width: 56px; height: 56px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: var(--white);
  margin: 0 auto;
  transition: var(--transition);
}
.cl-card:hover .cl-abbr { transform: scale(1.06); }
.cl-name { font-size: 0.78rem; font-weight: 700; color: var(--primary); line-height: 1.3; margin-bottom: 4px; }
.cl-sector { font-size: 0.67rem; color: var(--accent); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.clients-note { font-size: 0.82rem; margin-top: 38px; }

/* ══════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════ */
.cta-strip {
  background: var(--primary);
  padding: 84px 0;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(247,148,29,0.06);
}
.cta-strip::after {
  content: '';
  position: absolute; left: -50px; bottom: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(247,148,29,0.04);
}
.cta-strip h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800; color: var(--white);
  position: relative; z-index: 1;
}
.cta-strip p { color: rgba(255,255,255,0.72); font-size: 1.02rem; position: relative; z-index: 1; }
.cta-actions { position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { background: #040f1d; color: rgba(255,255,255,0.65); }
.footer-top { padding: 72px 0 48px; }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-desc { font-size: 0.84rem; line-height: 1.75; color: rgba(255,255,255,0.42); max-width: 260px; }
.footer-heading {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 0.84rem; color: rgba(255,255,255,0.48);
  display: inline-flex; align-items: center; gap: 7px;
  transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--accent); font-weight: 700; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-row {
  display: flex; gap: 12px;
  margin-bottom: 13px;
  font-size: 0.84rem; color: rgba(255,255,255,0.48);
  align-items: flex-start;
}
.fci { color: var(--accent); flex-shrink: 0; margin-top: 2px; font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.055);
  padding: 20px 0;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.3);
}
.social-row { display: flex; gap: 8px; margin-top: 20px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,0.065);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-row a:hover { background: var(--accent); color: var(--white); }

/* ══════════════════════════════════════════
   INNER PAGE WATERMARK
══════════════════════════════════════════ */
body.inner-page {
  position: relative;
}
/* Fixed full-viewport watermark that punches through opaque section backgrounds
   using mix-blend-mode: multiply — renders above section backgrounds but
   composites visually below text, ensuring continuous visibility while scrolling. */
body.inner-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('../images/Logo/Logo.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60%;
  opacity: 0.13;
  mix-blend-mode: multiply;
  /* Radial mask: logo fades to transparent at edges — removes all hard borders/box appearance */
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 72%);
  mask-image:         radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 72%);
  z-index: 9999;
  pointer-events: none;
}

/* Homepage watermark — same technique as inner pages.
   mix-blend-mode: multiply means it's naturally hidden on dark hero slides
   and elegantly visible on white/light content sections below. */
body.home-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('../images/Logo/Logo.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60%;
  opacity: 0.13;
  mix-blend-mode: multiply;
  /* Radial mask: logo fades to transparent at edges — removes all hard borders/box appearance */
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 72%);
  mask-image:         radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 72%);
  z-index: 9999;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: rgba(11, 37, 69, 0.94); /* Semi-transparent to let watermark blend through naturally */
  background-size: cover;
  background-position: center;
  padding: 40px 0 30px; /* Further reduced padding for a more compact, professional look */
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 80px);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900; color: var(--white);
  margin-bottom: 12px; letter-spacing: -0.5px;
}
.page-hero p { color: rgba(255,255,255,0.62); max-width: 540px; font-size: 1rem; }
.breadcrumb-c { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.breadcrumb-c a { font-size: 0.8rem; color: var(--accent); font-weight: 600; }
.breadcrumb-c span { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); font-size: 0.75rem; }

/* ══════════════════════════════════════════
   ABOUT PAGE — Full
══════════════════════════════════════════ */
.about-tabs-full .nav-tabs {
  border-bottom: 2px solid var(--border);
  margin-bottom: 44px;
}
.about-tabs-full .nav-tabs .nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 14px 28px;
  background: none;
  border-radius: 0;
  transition: var(--transition);
}
.about-tabs-full .nav-tabs .nav-link.active,
.about-tabs-full .nav-tabs .nav-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

.mv-card {
  background: linear-gradient(rgba(244, 247, 250, 0.94), rgba(244, 247, 250, 0.94)), url('../images/hero/ndt-inspection-hero.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  padding: 34px 28px;
  height: 100%;
  border-left: 5px solid var(--accent);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mv-card > * {
  position: relative;
  z-index: 2;
}
.mv-card::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
}
.mv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mv-card h4 { font-weight: 800; color: var(--primary); margin-bottom: 12px; font-size: 1.1rem; }
.mv-card p  { color: var(--muted); margin: 0; font-size: 0.92rem; }
.mv-card.alt { border-left-color: var(--primary); }

.adv-full-item {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.adv-full-item > * {
  position: relative;
  z-index: 2;
}
.adv-full-item::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
}
.adv-full-item:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.adv-full-item h5 { font-weight: 800; color: var(--primary); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.adv-full-item h5 .icon-tag {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: white; flex-shrink: 0;
}
.adv-full-item p { color: var(--muted); font-size: 0.9rem; margin-bottom: 12px; }
.adv-full-item ul li {
  font-size: 0.87rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 8px;
}
.adv-full-item ul li::before { content: '›'; color: var(--accent); font-weight: 700; font-size: 1.1rem; }

.cert-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cert-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.8rem; font-weight: 700; color: var(--primary);
  transition: var(--transition);
}
.cert-chip:hover { background: var(--accent); color: white; border-color: var(--accent); }

/* ══════════════════════════════════════════
   SERVICES PAGE — Full
══════════════════════════════════════════ */
.svc-full-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.svc-full-card > * {
  position: relative;
  z-index: 2;
}
.svc-full-card::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
  transition: var(--transition);
}
.svc-full-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.svc-full-card:hover::before { transform: scale(1.1) rotate(-5deg); opacity: 0.08; }
.svc-full-card .sf-icon {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a5fa8 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: white;
  margin-bottom: 22px;
}
.svc-full-card h4 { font-weight: 800; color: var(--primary); margin-bottom: 10px; font-size: 1.12rem; }
.svc-full-card > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.svc-full-card ul li {
  font-size: 0.86rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px;
  padding: 5px 0;
}
.svc-full-card ul li::before { content: '›'; color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.svc-tag {
  position: absolute; top: 22px; right: 22px;
  background: var(--accent-lt);
  color: var(--accent);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(247,148,29,0.22);
}
.process-step { text-align: center; padding: 28px 18px; }
.ps-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: white;
  font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.process-step h5 { font-weight: 700; color: var(--primary); font-size: 0.97rem; }
.process-step p  { font-size: 0.85rem; color: var(--muted); }

/* ══════════════════════════════════════════
   INDUSTRIES PAGE
══════════════════════════════════════════ */
.ind-full-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ind-full-card > * {
  position: relative;
  z-index: 2;
}
.ind-full-card::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
  transition: var(--transition);
}
.ind-full-card::after {
  content: attr(data-icon);
  position: absolute;
  right: 20px; bottom: 14px;
  font-size: 5rem;
  opacity: 0.05;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}
.ind-full-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(247,148,29,0.25); }
.ind-full-card .ind-icon-lg {
  width: 62px; height: 62px;
  background: var(--accent-lt);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.ind-full-card:hover .ind-icon-lg { background: var(--accent); }
.ind-full-card h4 { font-weight: 800; color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
.ind-full-card p  { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
.ind-full-card ul li {
  font-size: 0.84rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px; padding: 3px 0;
}
.ind-full-card ul li::before { content: '›'; color: var(--accent); font-weight: 700; font-size: 1.05rem; }

/* ── Industry card: split Inspection / Maintenance labels ── */
.ind-section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.ind-section-label.inspection { color: var(--primary); }
.ind-section-label.maintenance { color: var(--accent); }
.ind-section-label .lbl-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ind-section-label.inspection  .lbl-dot { background: var(--primary); }
.ind-section-label.maintenance .lbl-dot { background: var(--accent); }
.ind-section-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0 14px;
  border-radius: 1px;
}

/* ══════════════════════════════════════════
   CLIENTS PAGE
══════════════════════════════════════════ */
.clients-grid-page { background: var(--light); }
.client-logo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.client-logo-card > * {
  position: relative;
  z-index: 2;
}
.client-logo-card::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
}
.client-logo-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(247,148,29,0.3); }
.clc-logo-wrap {
  height: 72px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.clc-img {
  max-height: 56px; max-width: 130px; width: auto;
  object-fit: contain;
  opacity: 1;
  transition: var(--transition);
}
.client-logo-card:hover .clc-img { transform: scale(1.05); }
.clc-abbr {
  display: none;
  width: 64px; height: 64px;
  border-radius: 12px;
  align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  color: white; margin: 0 auto;
  transition: var(--transition);
}
.client-logo-card:hover .clc-abbr { transform: scale(1.06); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.clc-name { font-size: 0.88rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; line-height: 1.3; }
.clc-sector { font-size: 0.72rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 46px 42px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/* No watermark for contact cards as per user preference for clean style */
.form-label { font-weight: 600; font-size: 0.86rem; color: var(--primary); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid rgba(11,37,69,0.12);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--text);
  background: #fdfdfe;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247,148,29,0.1);
  outline: none; background: white;
}
.contact-info-panel {
  background: linear-gradient(rgba(11, 37, 69, 0.68), rgba(11, 37, 69, 0.68)), url('../img/logo.png');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  padding: 46px 34px;
  height: 100%; color: white;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact-info-panel h3 { font-weight: 800; margin-bottom: 8px; }
.contact-info-panel .sub { color: rgba(255,255,255,0.52); margin-bottom: 32px; font-size: 0.9rem; }
.ci-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px;
  background: rgba(247,148,29,0.13);
  border: 1px solid rgba(247,148,29,0.28);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem;
  flex-shrink: 0;
}
.ci-item h6 { font-weight: 700; font-size: 0.76rem; color: rgba(255,255,255,0.48); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.ci-item p  { margin: 0; font-size: 0.91rem; color: white; }
.company-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.company-card > * {
  position: relative;
  z-index: 2;
}
.company-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.form-msg {
  padding: 13px 16px; border-radius: var(--radius-sm);
  font-size: 0.87rem; font-weight: 600; display: none; margin-top: 10px;
}
.form-msg.success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.form-msg.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ══════════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════════ */
#scrollTop {
  position: fixed; bottom: 26px; right: 26px;
  width: 42px; height: 42px;
  background: var(--accent); color: white;
  border: none; border-radius: var(--radius-sm);
  font-size: 1rem; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  z-index: 990;
  box-shadow: 0 4px 18px rgba(247,148,29,0.45);
  transition: var(--transition);
}
#scrollTop:hover { background: var(--accent-dk); transform: translateY(-3px); }
#scrollTop.show  { display: flex; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════ */
@media (max-width: 991px) {
  .nav-toggler { display: flex; }
  .nav-menu-wrap {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--primary);
    padding: 12px 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-menu-wrap.open { display: block; }
  .nav-menu { flex-direction: column; height: auto; align-items: flex-start; padding: 0 20px; }
  .site-nav .nav-item { height: auto; width: 100%; flex-direction: column; align-items: flex-start; }
  .site-nav .nav-link-c { padding: 12px 0; height: auto; width: 100%; }
  .nav-link-c::after { display: none; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    border: none; border-radius: 0;
    background: rgba(255,255,255,0.05);
    display: none; width: 100%;
    border-top: none;
  }
  .nav-dropdown.open { display: block; }
  .nav-dropdown a { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.06); }
  .nav-dropdown a:hover { background: rgba(247,148,29,0.12); color: var(--accent); }
  .nav-cta-btn { margin: 10px 0 0; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-slide { padding: 100px 0 70px; min-height: 0; }
  .slide-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .slide-icon-frame { width: 280px; height: 280px; }
  .slide-main-icon { font-size: 5rem; }
}
@media (max-width: 767px) {
  .section-pad  { padding: 64px 0; }
  .stats-section { padding: 52px 0; }
  .stat-divider { display: none; }
  .contact-form-card { padding: 28px 20px; }
  .contact-info-panel { margin-top: 20px; }
  .about-graphic { min-height: 440px; }
  .about-float-badge { bottom: 16px; right: 16px; }
  .slide-icon-frame { width: 220px; height: 220px; margin-top: 30px; }
  .slide-main-icon { font-size: 4rem; }
  .ob-1,.ob-2,.ob-3 { display: none; }
}
@media (max-width: 480px) {
  .slide-title { letter-spacing: -0.5px; }
  .cl-card { width: 150px; }
}

/* ── Carousel Slide ── */
.carousel-slide {
  display: none;
  animation: slideFadeIn 0.7s ease forwards;
}
.carousel-slide.active {
  display: flex;
}
@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ══════════════════════════════════════════
   PROJECTS & WORK GALLERY
══════════════════════════════════════════ */
.gallery-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.filter-btn {
  background: white;
  border: 1px solid var(--border);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Lightbox Simple */
.lb-modal {
  display: none; position: fixed; z-index: 9999;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(11, 37, 69, 0.95);
  align-items: center; justify-content: center;
  padding: 40px;
}
.lb-content { max-width: 90%; max-height: 90%; border-radius: 8px; box-shadow: 0 0 50px rgba(0,0,0,0.5); }
.lb-close { position: absolute; top: 30px; right: 40px; color: white; font-size: 2.5rem; cursor: pointer; }

/* ══════════════════════════════════════════
   VIDEO SHOWCASE
══════════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.video-card > * {
  position: relative;
  z-index: 2;
}
.video-card::before {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
}
.video-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.video-thumb-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.play-trigger {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--accent);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer;
  box-shadow: 0 0 0 0 rgba(247,148,29,0.4);
  animation: pulse-play 2s infinite;
  transition: var(--transition);
}
.video-card:hover .play-trigger { transform: translate(-50%, -50%) scale(1.1); background: var(--white); color: var(--accent); }

@keyframes pulse-play {
  0% { box-shadow: 0 0 0 0 rgba(247,148,29,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(247,148,29,0); }
  100% { box-shadow: 0 0 0 0 rgba(247,148,29,0); }
}

.video-info { padding: 18px 22px; }
.video-info p { color: var(--primary); font-weight: 700; font-size: 0.98rem; margin: 0; }

/* ══════════════════════════════════════════
   SAFETY & COMPLIANCE
══════════════════════════════════════════ */
.safety-intro { max-width: 750px; margin: 0 auto 50px; }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.safety-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.safety-card > * {
  position: relative;
  z-index: 2;
}
.safety-card::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
}
.safety-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.safety-icon-box {
  width: 60px; height: 60px;
  background: var(--accent-lt);
  color: var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.safety-card:hover .safety-icon-box {
  background: var(--accent);
  color: white;
  transform: rotate(10deg);
}
.safety-card h5 { font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.safety-card p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.6; }

@media (max-width: 767px) {
  .video-grid, .gallery-grid, .safety-grid { grid-template-columns: 1fr; }
}

/* Modal for Video (basic) */
.video-modal {
  display: none; position: fixed; z-index: 10000;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #000;
}
.v-modal-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 2rem; cursor: pointer; }
.v-modal-content { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.v-modal-content video { max-width: 95%; max-height: 90%; }
/* ══════════════ TEAM PAGE STYLING ══════════════ */
.team-work-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.team-work-card > * {
  position: relative;
  z-index: 2;
}
.team-work-card::before {
  content: '';
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.035;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
}

.team-work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

.tw-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.tw-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-work-card:hover .tw-img-wrap img {
  transform: scale(1.1);
}

.tw-info {
  padding: 1.5rem;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
  position: absolute;
  bottom: 0;
  width: 100%;
}

.tw-tag {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ── Industrial Showcase Section ── */
.industrial-showcase {
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.showcase-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--primary-dk);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.showcase-item:hover img {
  transform: scale(1.12);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 25, 41, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.showcase-overlay i {
  color: var(--white);
  font-size: 2.2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-overlay i {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .showcase-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .showcase-item {
    aspect-ratio: 1/1;
  }
}
