/* ============================= TOKENS ============================= */
:root {
  --paper: #ffffff;
  --mist: #f6f9f9;
  --mist-2: #eef4f4;
  --navy: #1a4d68;
  --navy-deep: #123549;
  --teal: #028c8f;
  --teal-deep: #026f72;
  --teal-tint: #e3f2f1;
  --text: #2b3538;
  --muted: #6b7a7e;
  --border: #e3e9ea;
  --border-strong: #cbd8d9;

  --font-display: "Open Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-mono: "Open Sans", sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-s: 200ms;
  --dur-m: 450ms;
  --dur-l: 800ms;

  --container: 1180px;

  /* Fluid typography tokens based on screen width (scales between 320px and 1440px) */
  --text-xs: clamp(11px, 0.2vw + 10px, 13px);
  --text-sm: clamp(13px, 0.25vw + 12px, 15px);
  --text-base: clamp(15px, 0.3vw + 14px, 17px);
  --text-md: clamp(17px, 0.4vw + 15px, 20px);
  --text-lg: clamp(20px, 0.5vw + 18px, 24px);
  --text-xl: clamp(24px, 0.7vw + 21px, 30px);
  --text-2xl: clamp(28px, 1vw + 24px, 36px);
  --text-3xl: clamp(34px, 1.3vw + 29px, 46px);
  --text-4xl: clamp(40px, 1.8vw + 34px, 56px);
  --text-5xl: clamp(46px, 2.5vw + 38px, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden !important;
  height: 100dvh !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.wrap,
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0em;
  color: var(--navy);
  line-height: 1.2;
}

h1 {
  font-size: var(--text-4xl);
}
h2 {
  font-size: var(--text-3xl);
}
h3 {
  font-size: var(--text-xl);
}
h4 {
  font-size: var(--text-lg);
}
h5 {
  font-size: var(--text-md);
}
h6 {
  font-size: var(--text-sm);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--teal);
  display: inline-block;
}

/* chevron mark */
.chev {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(225deg);
  flex-shrink: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================= SCROLL REVEAL ============================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-l) var(--ease),
    transform var(--dur-l) var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-jump {
  opacity: 0;
  transform: scale(0.65) translateY(120px);
  transition:
    opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.reveal-jump.in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.industry-interactive-grid .reveal-jump:nth-child(1) {
  transition-delay: 0ms;
}
.industry-interactive-grid .reveal-jump:nth-child(2) {
  transition-delay: 150ms;
}
.industry-interactive-grid .reveal-jump:nth-child(3) {
  transition-delay: 300ms;
}

.stagger .reveal:nth-child(1) {
  transition-delay: 0ms;
}

.stagger .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.stagger .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.stagger .reveal:nth-child(4) {
  transition-delay: 240ms;
}

.stagger .reveal:nth-child(5) {
  transition-delay: 320ms;
}

.stagger .reveal:nth-child(6) {
  transition-delay: 400ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation: none !important;
  }
}

/* ============================= NAVBAR ============================= */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: var(--container);
  z-index: 200;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(26, 77, 104, 0.06);
  border-radius: 16px;
  box-shadow: 0 16px 36px -12px rgba(26, 77, 104, 0.08);
  transition:
    top var(--dur-m) var(--ease),
    width var(--dur-m) var(--ease),
    border-radius var(--dur-m) var(--ease),
    padding var(--dur-m) var(--ease),
    background-color var(--dur-m) var(--ease),
    box-shadow var(--dur-m) var(--ease);
}

.navbar .wrap,
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.navbar.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 30px rgba(26, 77, 104, 0.08);
}

.brand img {
  height: 34px;
  width: auto;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sidebar-close-wrap {
  display: none;
}

.sidebar-contact-info {
  display: none;
}

.navlinks a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .navlinks {
    gap: 12px;
  }
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.navlinks a:hover::after,
.navlinks a.active::after {
  width: 100%;
}

/* ============================= NAV DROPDOWN ============================= */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  /* gap: 4px; */
}

.dropdown-arrow {
  font-size: 20px;
  transition: transform var(--dur-s) var(--ease);
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(26, 77, 104, 0.08);
  padding: 8px 0;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--dur-s) var(--ease),
    transform var(--dur-s) var(--ease),
    visibility var(--dur-s);
  z-index: 100;
}

/* Nav dropdown only: block pointer events when hidden */
.nav-dropdown .dropdown-menu {
  pointer-events: none;
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 500;
  transition:
    background var(--dur-s),
    color var(--dur-s);
}

.dropdown-menu a:hover {
  background: var(--mist);
  color: var(--teal);
}

.dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.disabled-link {
  opacity: 0.6;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-soon {
  font-size: 9px;
  font-family: var(--font-mono);
  background: var(--mist-2);
  color: var(--muted);
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 3px;
  transition:
    background var(--dur-s) var(--ease),
    transform var(--dur-s) var(--ease),
    box-shadow var(--dur-s) var(--ease);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(2, 140, 143, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition:
    transform var(--dur-s),
    opacity var(--dur-s);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================= BUTTONS ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 3px;
  border: 1px solid transparent;
  transition:
    background var(--dur-s) var(--ease),
    color var(--dur-s) var(--ease),
    border-color var(--dur-s) var(--ease),
    transform var(--dur-s) var(--ease),
    box-shadow var(--dur-s) var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(2, 140, 143, 0.4);
}

.btn-outline {
  border-color: var(--border-strong);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ============================= HERO SLIDER ============================= */
.hero {
  margin-top: 0;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Slides (background images) */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 1s var(--ease),
    transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(76, 79, 80, 0.65) 0%,
    rgba(109, 112, 112, 0.411) 60%,
    rgba(29, 29, 29, 0.3) 100%
  );
}

/* Content — sits above navbar (padding-top) and above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 0 70px;
  width: 100%;
}

/* Text slides: fixed height, all absolutely positioned */
.hero-text-slides {
  position: relative;
  height: 260px;
  margin-bottom: 48px;
}

.hero-text-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.hero-text-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Staggered slide-in elements */
.hero-text-slide .hero-eyebrow,
.hero-text-slide h1,
.hero-text-slide h2,
.hero-text-slide .hero-title,
.hero-text-slide .trace-line,
.hero-text-slide .hero-ctas {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-text-slide .trace-line {
  transform: scaleX(0) translateX(24px);
}

.hero-text-slide.active .hero-eyebrow {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.05s;
}

.hero-text-slide.active h1,
.hero-text-slide.active h2,
.hero-text-slide.active .hero-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.15s;
}

.hero-text-slide.active .trace-line {
  opacity: 1;
  transform: scaleX(1) translateX(0);
  transition-delay: 0.25s;
}

.hero-text-slide.active .hero-ctas {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.35s;
}

.hero-eyebrow {
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  background: #ffffff;
}

.hero h1,
.hero h2.hero-title,
.hero .hero-title {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 .accent,
.hero h2.hero-title .accent,
.hero .hero-title .accent {
  color: #ffffff;
  font-style: italic;
}

.trace-line {
  width: 200px;
  height: 2px;
  background: var(--teal);
  margin: 0 0 32px;
  transform-origin: left;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  padding: 28px 36px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
  /* background: rgba(18, 53, 73, 0.55); */
  /* backdrop-filter: blur(10px); */
  max-width: 620px;
  border-radius: 3px;
}

.stat .num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat .num .suffix {
  color: #5fc9cb;
  font-size: 18px;
}

.stat .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 5px;
  letter-spacing: 0.02em;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition:
    background var(--dur-s),
    border-color var(--dur-s),
    transform var(--dur-s);
}

.hero-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  backdrop-filter: blur(6px);
  transition:
    background var(--dur-s),
    transform var(--dur-s);
}

.hero-arrow:hover {
  background: rgba(2, 140, 143, 0.6);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 32px;
}

.hero-next {
  right: 32px;
}

/* Section divider */
.divider {
  display: flex;
  justify-content: center;
  padding: 0;
}

.divider .chev {
  width: 14px;
  height: 14px;
  color: var(--teal);
  opacity: 0;
  transform: translateY(-8px) rotate(135deg);
  transition:
    opacity var(--dur-m) var(--ease),
    transform var(--dur-m) var(--ease);
}

.divider.in-view .chev {
  opacity: 1;
  transform: translateY(0) rotate(135deg);
}

/* ============================= GENERIC SECTION ============================= */
section {
  padding: 60px 0 30px 0;
  scroll-margin-top: 95px;
}

.bg-mist,
.infra-section,
.contact-section,
.clients-section {
  padding: 60px 0 50px 0;
}

.bg-mist {
  background: var(--mist);
}

.head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.head-row h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

.head-row p {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================= ABOUT ============================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-copy p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 28px;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(26, 77, 104, 0.25);
}

.about-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.about-image:hover img {
  transform: scale(1.04);
}

/* ============================= PRODUCT ============================= */
.product-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--dur-s) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tab-btn:hover {
  color: var(--teal);
}

.tab-btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.tab-btn .badge-soon {
  font-size: 9px;
  background: var(--mist-2);
  color: var(--muted);
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.product-tab-container {
  position: relative;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.product-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-media {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-main-image {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px -15px rgba(26, 77, 104, 0.15);
  border: 1px solid var(--border);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon-visual {
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
}

.aerogel-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.aerogel-placeholder span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.product-tag {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.product-name {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--navy);
  margin-bottom: 8px;
}

.product-formula {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

.coming-soon-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
}

.product-info-block h4,
.product-specs-block h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-details .feature-list li {
  color: var(--text);
  border-top: 1px solid var(--border);
}

.product-details .feature-list .chev {
  color: var(--teal);
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.specs-table th,
.specs-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
}

.specs-table th {
  background: var(--mist-2);
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid var(--border-strong);
}

.specs-table td {
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.specs-table tr:nth-child(even) td {
  background: var(--mist);
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  width: 35%;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #353535;
  font-size: 14.5px;
  padding: 11px 0;
  border-top: 1px solid rgba(26, 77, 104, 0.08);
}

.feature-list > li:first-child {
  border-top: none;
}

.feature-list > li > .chev {
  color: #028c8f;
  margin-top: 6px;
  flex-shrink: 0;
}

.feature-sublist {
  margin: 8px 0 0 0;
  padding-left: 22px;
  list-style-type: disc !important;
}

.feature-sublist li {
  display: list-item !important;
  color: var(--text);
  font-size: 14px;
  padding: 4px 0;
  border-top: none !important;
  line-height: 1.5;
}

/* ============================= MANUFACTURING PROCESS ============================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.process-num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--border-strong);
  margin-bottom: 24px;
  transition:
    color 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.process-content h3 {
  font-size: 19px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  color: var(--navy);
  transition: color 0.4s var(--ease);
}

.process-content p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Hover Animation */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(26, 77, 104, 0.15);
  border-color: var(--teal);
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover .process-num {
  color: var(--teal);
  transform: translateY(-2px);
}

.process-card:hover .process-content h3 {
  color: var(--teal);
}

/* ============================= INDUSTRIES ============================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--dur-m) var(--ease),
    box-shadow var(--dur-m) var(--ease);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -16px rgba(26, 77, 104, 0.35);
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 53, 73, 0.92) 0%,
    rgba(18, 53, 73, 0.4) 50%,
    rgba(18, 53, 73, 0.08) 100%
  );
  transition: background 0.4s;
}

.industry-card:hover .industry-card-overlay {
  background: linear-gradient(
    to top,
    rgba(2, 111, 114, 0.9) 0%,
    rgba(18, 53, 73, 0.5) 60%,
    rgba(18, 53, 73, 0.15) 100%
  );
}

.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px;
  z-index: 2;
}

.industry-card-content h3 {
  font-family: var(--font-body);
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

/* ============================= WHY SHIVANTA GRID ============================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 20px rgba(26, 77, 104, 0.02);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.why-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 53, 73, 0.95) 0%,
    rgba(18, 53, 73, 0.5) 60%,
    rgba(18, 53, 73, 0.1) 100%
  );
  transition: background 0.4s;
  z-index: 1;
}

.why-card:hover .why-card-overlay {
  background: linear-gradient(
    to top,
    rgba(2, 111, 114, 0.95) 0%,
    rgba(18, 53, 73, 0.6) 70%,
    rgba(18, 53, 73, 0.2) 100%
  );
}

.why-card-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #fff;
  transition: transform 0.4s var(--ease);
}

.why-card-content h3 {
  font-size: 19px;
  margin-bottom: 8px;
  font-family: var(--font-body);
  color: #fff;
  font-weight: 600;
}

.why-card-content p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(26, 77, 104, 0.12);
}

/* ============================= INFRASTRUCTURE ============================= */
.infra-section {
  position: relative;
  overflow: hidden;
}

.infra-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.infra-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 53, 73, 0.83) 0%,
    rgba(2, 111, 114, 0.65) 100%
  );
}

.infra-content {
  position: relative;
  z-index: 2;
}

.infra-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.infra-text h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 44px);
  margin: 16px 0 20px;
}

.infra-text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.infra-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.infra-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: #eaf3f3;
}

.infra-list .chev {
  margin-top: 5px;
  color: #5fc9cb;
}

/* ============================= CERTIFICATIONS ============================= */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.quality-item {
  padding: 26px 0 0;
  /* border-top: 2px solid var(--navy); */
  display: flex;
  flex-direction: column;
}

.cert-logo-wrap {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-s) var(--ease);
}

.cert-logo-wrap svg {
  width: 100%;
  height: 100%;
}

.quality-item:hover .cert-logo-wrap {
  transform: scale(1.08) rotate(2deg);
}

.quality-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.quality-item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

.quality-item .gstin {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal);
  margin-top: 10px;
}

/* ============================= CONTACT SECTION ============================= */
.contact-section {
  background: var(--teal-tint);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: start;
}

.contact-info-col {
  padding-top: 10px;
}

.contact-info-col h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 20px;
  color: var(--navy);
}

.contact-desc {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  box-shadow: 0 4px 10px rgba(2, 140, 143, 0.05);
  flex-shrink: 0;
}

.contact-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
}

.contact-detail-item strong {
  display: block;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.contact-detail-item p,
.contact-detail-item a {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.contact-detail-item a {
  font-weight: 500;
  transition: color var(--dur-s);
}

.contact-detail-item a:hover {
  color: var(--teal);
}

/* Form Card Container */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px;
  box-shadow: 0 15px 40px -15px rgba(26, 77, 104, 0.08);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 28px;
}

/* Form elements */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 11.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--navy);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border-strong);
  border-radius: 0;
  outline: none;
  transition: border-color var(--dur-s) var(--ease);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231a4d68' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 2px) center;
  background-size: 10px;
  padding-right: 20px;
  cursor: pointer;
}

.form-group select option {
  background-color: var(--paper);
  color: var(--navy);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--teal);
  background: transparent;
  box-shadow: none;
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

/* ============================= FOOTER ============================= */
footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 30px;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 34, 48, 0.96) 0%,
    rgba(2, 111, 114, 0.85) 100%
  );
}

.footer-inner {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo-wrap {
  /* background: rgba(255, 255, 255, 0.06); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  /* border-radius: 8px; */
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  margin-bottom: 20px;
}

.footer-logo-wrap img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 340px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5fc9cb;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--dur-s);
}

.footer-col a:hover {
  color: #5fc9cb;
}

.footer-col address {
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.footer-social-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 28px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
}

.footer-social-bar a {
  color: rgba(255, 255, 255, 0.45);
  transition:
    color var(--dur-s) var(--ease),
    transform var(--dur-s) var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-bar a:hover {
  color: #5fc9cb;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-credit strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.footer-col h4 {
  color: #7dd8da;
}

.footer-col a,
.footer-col address {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================= RESPONSIVE ============================= */
@media (max-width: 1200px) {
  .navlinks {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 80vw);
    background: var(--paper);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 26px;
    padding: 90px 40px 40px 40px;
    transform: translateX(100%);
    transition: transform var(--dur-m) var(--ease);
    box-shadow: -10px 0 40px -20px rgba(0, 0, 0, 0.2);
    z-index: 300;
    overflow: hidden;
  }

  .sidebar-close-wrap {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: absolute;
    top: 24px;
    right: 24px;
  }

  .sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
      transform 0.25s ease,
      color 0.25s ease;
  }

  .sidebar-close:hover {
    transform: rotate(90deg);
    color: var(--teal);
  }

  .sidebar-contact-info {
    display: block;
    width: 100%;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .sidebar-contact-info .info-title {
    font-size: 11px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
  }

  .sidebar-contact-info address {
    font-size: 13px;
    line-height: 1.5;
    color: var(--navy);
    font-style: normal;
  }

  .sidebar-contact-info .info-email {
    font-size: 13px;
    color: var(--teal) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .sidebar-contact-info .info-email:hover {
    color: var(--navy) !important;
  }

  .navlinks.open {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    row-gap: 26px;
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 44px);
  }

  .hero-content {
    padding: 90px 0 60px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-main-image {
    height: 300px;
  }

  .product-view-btn {
    align-self: center;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .infra-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .infra-section {
    padding: 80px 0;
  }

  .quality-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-card {
    padding: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }
}

@media (max-width: 600px) {
  .wrap,
  .container {
    padding: 0 20px;
  }

  section {
    padding: 80px 0;
    scroll-margin-top: 70px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-text-slides {
    height: 300px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-dots {
    right: 20px;
    bottom: 20px;
  }

  .about-image img {
    height: 260px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .infra-list {
    grid-template-columns: 1fr;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

/* ============================= PRODUCT PAGE SPECIFIC STYLES ============================= */

.product-hero {
  border-bottom: 1px solid var(--border);
}

.product-hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 48px);
  margin: 12px 0;
  font-family: var(--font-display);
}

.product-hero .overline {
  color: #8fc7c9;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
}

.product-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16.5px;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-hero .button {
  background: var(--teal);
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  display: inline-flex;
  font-weight: 600;
  font-size: 14.5px;
  transition: background var(--dur-s) var(--ease);
}

.product-hero .button:hover {
  background: var(--teal-deep);
}

.spec-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  padding: 80px 0;
  align-items: start;
}

.spec-layout h2 {
  font-size: clamp(24px, 4vw, 32px);
  color: var(--navy);
  margin-bottom: 20px;
}

.spec-layout p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.spec-layout h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-layout .feature-list li {
  color: var(--text);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.spec-layout .feature-list li:first-child {
  border-top: none;
}

.spec-layout .overline {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.spec-card {
  background: var(--mist);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px -15px rgba(26, 77, 104, 0.08);
}

.spec-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-strong);
  padding-bottom: 12px;
}

.spec-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.spec-card dl div:last-child {
  border-bottom: none;
}

.spec-card dl dt {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}

.spec-card dl dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 980px) {
  .spec-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0;
  }
}

/* ============================= CLIENT LOGOS TICKER ============================= */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.clients-section {
  background: var(--paper);
  overflow: hidden;
}

.clients-label {
  text-align: left;
  margin-bottom: 24px;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.client-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 64px;
  /* border: 1.5px solid var(--border-strong); */
  /* border-radius: 8px; */
  /* background: var(--paper); */
  /* transition:
    border-color var(--dur-s),
    background-color var(--dur-s),
    box-shadow var(--dur-s); */
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.client-badge:hover {
  border-color: var(--teal);
  background-color: var(--teal-tint);
  box-shadow: 0 8px 24px rgba(2, 140, 143, 0.12);
}

@media (max-width: 600px) {
  .marquee-track {
    animation-duration: 18s;
    gap: 14px;
  }

  .client-badge {
    padding: 8px 18px;
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ============================= HEADING SWIPE REVEAL ANIMATIONS ============================= */
.reveal-swipe .reveal-line {
  position: relative;
  display: block;
  width: fit-content;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 4px;
}

.reveal-swipe .reveal-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 10;
}

.reveal.in-view .reveal-line {
  animation: reveal-text 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.reveal.in-view .reveal-line::after {
  animation: reveal-swipe-block 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* Staggered delay for each line */
.reveal.in-view .reveal-line:nth-child(1),
.reveal.in-view .reveal-line:nth-child(1)::after {
  animation-delay: 0.1s !important;
}

.reveal.in-view .reveal-line:nth-child(2),
.reveal.in-view .reveal-line:nth-child(2)::after {
  animation-delay: 0.55s !important;
}

.reveal.in-view .reveal-line:nth-child(3),
.reveal.in-view .reveal-line:nth-child(3)::after {
  animation-delay: 1s !important;
}

@keyframes reveal-swipe-block {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  45% {
    transform: scaleX(1);
    transform-origin: left;
  }
  55% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

@keyframes reveal-text {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* ============================= CARDS HOVER SWIPE OVERLAY ============================= */
.industry-card::after,
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(95, 201, 203, 0.4),
    var(--teal),
    transparent
  );
  transform: translateX(-150%) skewX(-30deg);
  transition: none;
  z-index: 3;
  pointer-events: none;
}

.industry-card:hover::after,
.why-card:hover::after {
  transform: translateX(150%) skewX(-30deg);
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================= ABOUT CERTIFICATES TABLETOP LAYOUT ============================= */
.about-image-container {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: radial-gradient(circle, var(--mist-2) 0%, rgba(227, 233, 234, 0.5) 100%); */
  /* border-radius: 12px; */
  /* border: 1px solid var(--border); */
  overflow: hidden;
}

.about-certificates-table {
  position: relative;
  width: 85%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.certificate-card {
  position: absolute;
  width: 310px;
  background: #ffffff;
  border: 8px solid #ffffff;
  border-radius: 6px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12),
    0 1px 5px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
}

.certificate-card img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
}

.cert-card-tag {
  text-align: center;
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--teal);
  padding: 8px 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-iso {
  transform: rotate(-25deg) translate(-150px, 40px);
  z-index: 1;
  transition:
    transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.5s var(--ease);
}

.card-licence {
  transform: rotate(25deg) translate(150px, 40px);
  z-index: 2;
  transition:
    transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.5s var(--ease);
  transition-delay: 0.15s;
}

.about-image-container.in-view .card-iso {
  opacity: 1;
  transform: rotate(-6deg) translate(-30px, -15px);
}

.about-image-container.in-view .card-licence {
  opacity: 1;
  transform: rotate(5deg) translate(40px, 20px);
}

.about-image-container.in-view .certificate-card:hover {
  transform: rotate(0deg) scale(1.08) translateY(-15px);
  box-shadow:
    0 25px 50px rgba(26, 77, 104, 0.22),
    0 5px 15px rgba(26, 77, 104, 0.12);
  z-index: 10;
  transition:
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.5s var(--ease),
    opacity 0.1s;
  transition-delay: 0s !important;
}

/* ============================= PRODUCT IMAGE HOVER MAGNIFY OVERLAY ============================= */
.product-main-image {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-image-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 140, 143, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 5;
}

.product-main-image:hover .product-image-hover-overlay {
  opacity: 1;
}

.product-image-hover-overlay svg {
  width: 48px;
  height: 48px;
  color: #ffffff;
  stroke: #ffffff;
  transform: scale(0.8);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-main-image:hover .product-image-hover-overlay svg {
  transform: scale(1);
}

/* ============================= IMAGE LIGHTBOX MODAL ============================= */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(18, 53, 73, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.image-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-wrap {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 4px solid #ffffff;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.image-modal.open .modal-content-img {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition:
    color 0.2s,
    transform 0.2s,
    background-color 0.2s;
  z-index: 10000;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--teal);
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.2);
}

.modal-caption {
  margin-top: 15px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* ============================= CLIENT BADGE LOGO IMAGE ============================= */
.client-logo {
  max-height: 28px;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
  filter: brightness(0) invert(0.2) opacity(0.85);
  transition: filter 0.3s ease;
}

.client-badge:hover .client-logo {
  filter: none;
}

/* ============================= WHATSAPP FLOATING BUTTON ============================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(2, 140, 143, 0.35);
  z-index: 999;
  transition:
    transform var(--dur-s) var(--ease),
    box-shadow var(--dur-s) var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  background-color: var(--teal-deep);
  box-shadow: 0 8px 24px rgba(2, 140, 143, 0.45);
}

.whatsapp-float i {
  font-size: 26px;
}

/* Brochure Floating Button */
.brochure-float {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #028c8f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(26, 99, 104, 0.25);
  z-index: 999;
  transition:
    transform var(--dur-s) var(--ease),
    background-color var(--dur-s) var(--ease),
    box-shadow var(--dur-s) var(--ease);
}

.brochure-float:hover {
  transform: translateY(-4px) scale(1.05);
  background-color: #028c8f;
  box-shadow: 0 8px 24px rgba(26, 99, 104, 0.35);
}

.brochure-float i {
  font-size: 24px;
}

/* Product CTAs Layout */
.product-ctas {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.product-ctas .product-view-btn {
  margin-top: 0;
}

.product-brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Tooltips for Floating Action Buttons */
.float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: #028c8f;
  color: #fff;
  padding: 8px 14px;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  white-space: nowrap;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--dur-s) var(--ease),
    transform var(--dur-s) var(--ease),
    visibility var(--dur-s);
}

.float-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #028c8f;
}

.whatsapp-float:hover .float-tooltip,
.brochure-float:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ============================= SUBPAGE HERO ============================= */
.subpage-hero {
  background-image:
    linear-gradient(rgba(18, 53, 73, 0.82), rgba(26, 77, 104, 0.94)),
    url("../images/site/infra_bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 170px 0 80px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.subpage-hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 46px);
  margin: 8px 0;
}

.subpage-hero .overline {
  color: #8fc7c9;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-block;
}

.subpage-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 650px;
  line-height: 1.6;
  margin-top: 12px;
}

/* ============================= TABS SYSTEM ============================= */
.tabs-container {
  padding: 60px 0;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 16px;
}

.tab-btn {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--navy);
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  transition: all var(--dur-s) var(--ease);
}

.tab-btn:hover {
  background: var(--mist-2);
  border-color: var(--teal);
}

.tab-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 4px 15px rgba(2, 140, 143, 0.2);
}

.tab-pane {
  display: none;
  animation: fadeIn var(--dur-m) var(--ease);
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================= TIMELINE / PROCESS GRID ============================= */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.timeline-step {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 8px;
  position: relative;
  transition:
    transform var(--dur-s) var(--ease),
    box-shadow var(--dur-s) var(--ease);
}

.timeline-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--teal-tint);
}

.step-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--teal-tint);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.timeline-step h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 12px;
  padding-right: 40px;
}

.timeline-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================= PRODUCTS COMING SOON ============================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  padding: 60px 0;
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -15px rgba(26, 77, 104, 0.05);
  transition: all var(--dur-m) var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px -15px rgba(26, 77, 104, 0.12);
  border-color: var(--border-strong);
}

.product-card h3 {
  font-size: var(--text-lg);
  color: var(--navy);
  margin: 16px 0 8px 0;
}

.product-card .formula {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 16px;
}

.product-card p {
  font-size: var(--text-base);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-card .specs-snippet {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  margin-bottom: 24px;
}

.product-card .specs-snippet span {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-card .specs-snippet span:last-child {
  margin-bottom: 0;
}

.product-card .specs-snippet strong {
  color: var(--teal);
}

.product-card.coming-soon {
  opacity: 0.85;
  background: repeating-linear-gradient(
    45deg,
    var(--mist),
    var(--mist) 10px,
    var(--paper) 10px,
    var(--paper) 20px
  );
  border: 2px dashed var(--border-strong);
}

.product-card.coming-soon .lock-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mist-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.badge-tag {
  background: var(--teal-tint);
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
  border: 1px solid var(--teal);
  display: inline-block;
  letter-spacing: 0.05em;
}

.badge-tag-footer {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================= BLOG LAYOUTS ============================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  padding: 60px 0;
}

.blog-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -15px rgba(26, 77, 104, 0.06);
  transition: all var(--dur-m) var(--ease);
}

.blog-card-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px -15px rgba(26, 77, 104, 0.12);
  border-color: var(--border-strong);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-l) var(--ease);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-date {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}

.blog-card h3 {
  font-size: var(--text-md);
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color var(--dur-s) var(--ease);
}

.blog-card:hover h3 {
  color: var(--teal);
}

.blog-card p {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-readmore {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-readmore i {
  transition: transform var(--dur-s) var(--ease);
}

.blog-card:hover .blog-readmore i {
  transform: translateX(4px);
}

/* Blog details page layout */
.blog-details-layout {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 64px;
  padding: 80px 0;
  align-items: start;
}

@media (max-width: 980px) {
  .blog-details-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.blog-article {
  background: var(--paper);
}

.blog-meta-strip {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  flex-wrap: wrap;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-featured-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  height: 380px;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-body-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.blog-body-text p {
  margin-bottom: 24px;
}

.blog-body-text h2,
.blog-body-text h3 {
  color: var(--navy);
  margin: 36px 0 16px 0;
  font-size: 24px;
}

.blog-body-text ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 24px;
}

.blog-body-text li {
  margin-bottom: 8px;
}

.blog-body-text blockquote {
  border-left: 4px solid var(--teal);
  padding-left: 20px;
  margin: 32px 0;
  font-style: italic;
  color: var(--muted);
}

/* Sidebar styles */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--mist);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.sidebar-widget h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-strong);
  padding-bottom: 10px;
}

.recent-post-link {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.recent-post-link:last-child {
  margin-bottom: 0;
}

.recent-post-thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-info h4 {
  font-size: 14.5px;
  color: var(--navy);
  margin: 0 0 4px 0;
  line-height: 1.4;
  font-weight: 600;
  transition: color var(--dur-s) var(--ease);
}

.recent-post-link:hover h4 {
  color: var(--teal);
}

.recent-post-info span {
  font-size: 11.5px;
  color: var(--muted);
  font-family: var(--font-mono);
}

.sidebar-widget.sidebar-cta {
  background: var(--navy-deep);
  color: #fff;
  border: none;
}

.sidebar-widget.sidebar-cta h3 {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.sidebar-widget.sidebar-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.sidebar-widget.sidebar-cta .btn {
  width: 100%;
  text-align: center;
}

/* ============================= IMAGE BOX SCALING HOVER EFFECT ============================= */
.image-box {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px -15px rgba(26, 77, 104, 0.12);
  position: relative;
  line-height: 0;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-l) var(--ease);
}

.image-box:hover img {
  transform: scale(1.04);
}

/* ============================= TABS TWO-COLUMN LAYOUT ============================= */
.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 980px) {
  .tab-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.tab-image-col {
  height: 380px;
}

/* ============================= INTERACTIVE FULL-BLEED CARD ============================= */
.industry-interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
  justify-content: center;
  gap: 32px;
  padding: 40px 0;
}

.industry-interactive-card {
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px -15px rgba(26, 77, 104, 0.15);
  transition: all var(--dur-m) var(--ease);
}

.industry-interactive-card .card-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--dur-l) var(--ease);
}

.industry-interactive-card:hover .card-bg {
  transform: scale(1.05);
}

.industry-interactive-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 53, 73, 0.25) 0%,
    rgba(18, 53, 73, 0.85) 100%
  );
  z-index: 1;
  transition: background var(--dur-m) var(--ease);
}

.industry-interactive-card:hover .card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(18, 53, 73, 0.35) 0%,
    rgba(18, 53, 73, 0.92) 100%
  );
}

.industry-interactive-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  color: #fff;
  transform: translateY(220px);
  transition: transform var(--dur-m) var(--ease);
}

.industry-interactive-card:hover .card-content {
  transform: translateY(0);
}

.industry-interactive-card .card-content h2,
.industry-interactive-card .card-content h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
  margin-top: 0;
}

.industry-interactive-card .card-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity var(--dur-m) var(--ease);
}

.industry-interactive-card:hover .card-content p {
  opacity: 1;
}

.industry-interactive-card .card-content .app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--dur-m) var(--ease);
}

.industry-interactive-card:hover .card-content .app-tags {
  opacity: 1;
  transition-delay: 80ms;
}

.industry-interactive-card .card-content .app-tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.industry-interactive-card.coming-soon-card {
  opacity: 0.9;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 10px,
    transparent 10px,
    transparent 20px
  );
}

.industry-interactive-card.coming-soon-card .card-content {
  transform: translateY(0);
}

.industry-interactive-card.coming-soon-card .card-content p {
  opacity: 1;
}

.industry-interactive-card.coming-soon-card .card-content .app-tags {
  opacity: 1;
}

.industry-interactive-card.coming-soon-card .lock-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

/* ============================= ALTERNATING INDUSTRIES ROWS ============================= */
.industries-alternating-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 0;
}

.industry-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.industry-row.reverse {
  flex-direction: row-reverse;
}

.industry-img-col {
  flex: 1;
  width: 50%;
}

.industry-content-col {
  flex: 1;
  width: 50%;
}

.industry-content-col h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  color: var(--navy);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.industry-content-col p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .industry-row {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .industries-alternating-rows {
    gap: 48px;
  }
  .industry-row,
  .industry-row.reverse {
    flex-direction: column !important;
    gap: 24px;
  }
  .industry-img-col,
  .industry-content-col {
    width: 100% !important;
  }
  .industry-img-col .image-box {
    height: 280px !important;
  }
}

/* ============================= EDITORIAL TYPOGRAPHY ============================= */
.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 4.8rem;
  line-height: 0.85;
  float: left;
  margin-top: 0.35rem;
  margin-right: 0.75rem;
  font-weight: 700;
  color: var(--teal);
}

/* ============================= PRODUCT WIDE CARDS ============================= */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 0;
}

.product-wide-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(26, 77, 104, 0.08);
  transition: all var(--dur-m) var(--ease);
}

.product-wide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px -15px rgba(26, 77, 104, 0.15);
  border-color: var(--border-strong);
}

.product-wide-card .card-img-col {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

.product-wide-card .card-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-l) var(--ease);
}

.product-wide-card:hover .card-img-col img {
  transform: scale(1.04);
}

.product-wide-card .card-details-col {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-wide-card.coming-soon {
  opacity: 0.85;
  background: repeating-linear-gradient(
    45deg,
    var(--mist),
    var(--mist) 10px,
    var(--paper) 10px,
    var(--paper) 20px
  );
  border: 2px dashed var(--border-strong);
}

.product-wide-card.coming-soon .lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 53, 73, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.product-wide-card.coming-soon .lock-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 820px) {
  .product-wide-card {
    grid-template-columns: 1fr;
  }
  .product-wide-card .card-img-col {
    height: 260px;
    min-height: auto;
  }
  .product-wide-card .card-details-col {
    padding: 32px;
  }
}

/* ============================= GENERIC 2-COLUMN GRID ============================= */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 980px) {
  .grid-2-col {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .grid-2-col {
    grid-template-columns: 1fr;
  }
}

/* ============================= CUSTOM SELECT DROPDOWN ============================= */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.custom-dropdown .dropdown-trigger {
  width: 100%;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--navy);
  background: transparent;
  border-bottom: 1.5px solid var(--border-strong);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color var(--dur-s) var(--ease);
  user-select: none;
}

.custom-dropdown .dropdown-trigger:hover {
  border-bottom-color: var(--teal);
}

.custom-dropdown.active .dropdown-trigger {
  border-bottom-color: var(--teal);
}

.trigger-arrow {
  font-size: 11px;
  color: var(--navy);
  transition: transform var(--dur-s) var(--ease);
}

.custom-dropdown.active .trigger-arrow {
  transform: rotate(180deg);
  color: var(--teal);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 80px;
  right: 0;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 10px 30px -10px rgba(18, 53, 73, 0.15);
  margin: 8px 0 0 0;
  padding: 8px 0;
  list-style: none;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur-s) var(--ease);
}

.custom-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--dur-s) var(--ease);
  text-align: left;
}

.dropdown-item:hover {
  background: var(--mist);
  color: var(--teal);
}

.dropdown-item.active {
  background: var(--mist);
  color: var(--teal);
  font-weight: 600;
}

/* ============================= SIDE IMAGE SLIDING REVEALS ============================= */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity var(--dur-l) var(--ease),
    transform var(--dur-l) var(--ease);
}
.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity var(--dur-l) var(--ease),
    transform var(--dur-l) var(--ease);
}
.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Image Scale Transition Inside reveal */
.reveal-left .image-box img,
.reveal-right .image-box img {
  transform: scale(1.12);
  transition: transform var(--dur-l) var(--ease) !important;
}
.reveal-left.in-view .image-box img,
.reveal-right.in-view .image-box img {
  transform: scale(1);
}

/* ============================= PREMIUM CERTIFICATE CARDS ============================= */
.cert-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform var(--dur-m) var(--ease),
    border-color var(--dur-m) var(--ease),
    box-shadow var(--dur-m) var(--ease);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-m) var(--ease);
}

.cert-card:hover {
  transform: translateY(-8px);
  border-color: var(--teal-deep);
  box-shadow: 0 16px 40px -10px rgba(2, 140, 143, 0.18);
}

.cert-card:hover::before {
  transform: scaleX(1);
}

.cert-card .cert-logo-wrap {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-s) var(--ease);
}

.cert-card .cert-logo-wrap svg {
  width: 100%;
  height: 100%;
}

.cert-card:hover .cert-logo-wrap {
  transform: scale(1.08) rotate(2deg);
}

.cert-card h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}

.cert-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.cert-card .gstin {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--teal);
  display: block;
}

/* ============================= VISION & MISSION REDESIGN ============================= */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.strategic-card {
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-m) var(--ease),
    box-shadow var(--dur-m) var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.strategic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(18, 53, 73, 0.08);
}

.strategic-card.vision-style {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.strategic-card.vision-style h3 {
  color: #ffffff;
}

.strategic-card.vision-style p {
  color: rgba(255, 255, 255, 0.85);
}

.strategic-card.mission-style {
  background: var(--paper);
  border: 1px solid var(--border);
}

.strategic-card.mission-style h3 {
  color: var(--navy);
}

.strategic-card.mission-style p {
  color: var(--text);
}

.strategic-card .card-icon {
  font-size: 28px;
  margin-bottom: 24px;
  display: inline-block;
  line-height: 1;
}

.strategic-card.vision-style .card-icon {
  color: var(--teal-tint);
  background: rgba(95, 201, 203, 0.15);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.strategic-card.mission-style .card-icon {
  color: var(--teal);
  background: var(--teal-tint);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.strategic-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.strategic-card p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.strategic-card .bullet-list {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.strategic-card.mission-style .bullet-list {
  border-top: 1px solid var(--border);
}

.strategic-card .bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  margin-bottom: 10px;
}

.strategic-card .bullet-item:last-child {
  margin-bottom: 0;
}

.strategic-card .bullet-item i {
  font-size: 12px;
}

.strategic-card.vision-style .bullet-item i {
  color: var(--teal);
}

.strategic-card.mission-style .bullet-item i {
  color: var(--teal);
}

.strategic-card.vision-style .bullet-item {
  color: rgba(255, 255, 255, 0.9);
}

.strategic-card.mission-style .bullet-item {
  color: var(--text);
}

/* Background decorations */
.strategic-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.15;
  transition: transform var(--dur-l) var(--ease);
  pointer-events: none;
}

.strategic-card:hover::after {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .strategic-card {
    padding: 32px;
  }
}

/* ============================= WHY CHOOSE US GRID ============================= */
.why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.choose-card {
  background: var(--paper);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 4px 12px rgba(26, 77, 104, 0.04);
  transition:
    transform var(--dur-m) var(--ease),
    box-shadow var(--dur-m) var(--ease),
    border-color var(--dur-m) var(--ease);
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(26, 77, 104, 0.08);
  border-color: var(--teal);
}

.choose-icon {
  color: var(--teal);
  font-size: 28px;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
  margin-top: 0;
}

.choose-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* ============================= STICKY HORIZONTAL PROCESS SCROLL ============================= */
.sticky-process-wrapper {
  position: relative;
  height: 400vh; /* Scroll length */
  background: #0b1a24;
}

.sticky-process-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 0;
  overflow: hidden;
  box-sizing: border-box;
}

.sticky-process-header {
  padding: 0 32px;
  flex-shrink: 0;
}

.sticky-process-track-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.process-cards-track {
  display: flex;
  gap: 32px;
  padding: 0 10vw;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.sticky-process-card {
  position: relative;
  width: 320px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* Hover effect: card itself slides/shifts left and scale slightly */
.sticky-process-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--teal);
  box-shadow: 0 30px 50px rgba(0, 140, 143, 0.25);
}

.sticky-process-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.sticky-process-card:hover .sticky-process-card-bg {
  transform: scale(1.08);
}

.sticky-process-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(11, 26, 36, 0.2) 0%,
    rgba(11, 26, 36, 0.95) 100%
  );
  z-index: 1;
  transition: background 0.3s ease;
}

.sticky-process-card:hover .sticky-process-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(11, 26, 36, 0.1) 0%,
    rgba(11, 26, 36, 0.98) 100%
  );
}

.sticky-process-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  box-sizing: border-box;
  color: #fff;
  transition: transform 0.4s ease;
}

/* On hover, slide card content elements slightly left/up to reveal extra details */
.sticky-process-card-content h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  transition:
    color 0.3s ease,
    transform 0.4s ease;
}

.sticky-process-card:hover .sticky-process-card-content h3 {
  color: #a5dfdf;
  transform: translateX(-5px);
}

.sticky-process-card-num {
  font-size: 54px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.884);
  position: absolute;
  top: -40px;
  right: 30px;
  font-family: var(--font-display);
  transition:
    color 0.3s ease,
    transform 0.4s ease;
}

.sticky-process-card:hover .sticky-process-card-num {
  color: rgba(255, 255, 255, 0.781);
  transform: scale(1.1) translateX(-5px);
}

.sticky-process-card-content p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 15px 0;
  transition:
    transform 0.4s ease,
    opacity 0.3s ease;
}

.sticky-process-card:hover .sticky-process-card-content p {
  transform: translateX(-5px);
}

/* Details list inside card (slides in on hover from the right/bottom) */
.sticky-process-card-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
  transform: translateX(10px);
}

.sticky-process-card:hover .sticky-process-card-details {
  max-height: 120px;
  opacity: 1;
  transform: translateX(0);
}

.sticky-process-card-details ul {
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
}

.sticky-process-card-details li {
  font-size: 12px;
  color: rgba(165, 223, 223, 0.9);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-process-card-details li i {
  font-size: 10px;
  color: var(--teal);
}

/* Exploration Progress styling */
.process-progress-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0 32px;
  flex-shrink: 0;
}

.process-progress-steps {
  display: flex;
  gap: 12px;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.step-dot.active {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 0 15px rgba(2, 140, 143, 0.5);
  border-color: var(--teal);
}

.step-dot.hovered {
  background: #175269;
  color: #fff;
  border-color: #3b88a8;
}

.process-progress-text {
  font-size: 13px;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .sticky-process-container {
    padding: 30px 0 !important;
  }
  .process-cards-track {
    gap: 20px !important;
  }
  .sticky-process-card {
    width: 280px !important;
    height: 360px !important;
  }
  .process-progress-steps {
    gap: 8px !important;
  }
  .step-dot {
    width: 22px !important;
    height: 22px !important;
    font-size: 9px !important;
  }
}

/* ============================= INFRASTRUCTURE & OPERATIONS CARDS ============================= */
.operations-section {
  padding: 80px 0;
  background: var(--paper);
}
.operations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.operation-card {
  background: var(--mist);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(26, 77, 104, 0.03);
  transition:
    transform var(--dur-m) var(--ease),
    box-shadow var(--dur-m) var(--ease),
    border-color var(--dur-m) var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.operation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(26, 77, 104, 0.08);
  border-color: var(--teal);
  background: var(--paper);
}
.op-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--teal-tint);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 20px;
  margin-bottom: 20px;
  transition:
    background var(--dur-s) var(--ease),
    color var(--dur-s) var(--ease);
}
.operation-card:hover .op-icon-wrap {
  background: var(--teal);
  color: #fff;
}
.operation-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
  margin-top: 0;
}
.operation-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .operations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .operations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .operation-card {
    padding: 24px;
  }
}

.location-card {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(26, 77, 104, 0.15);
  transition:
    transform var(--dur-m) var(--ease),
    box-shadow var(--dur-m) var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(26, 77, 104, 0.3);
}

.location-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 53, 73, 0.95) 0%,
    rgba(18, 53, 73, 0.75) 50%,
    rgba(18, 53, 73, 0.3) 100%
  );
  z-index: 1;
  transition: background var(--dur-m) var(--ease);
}

.location-card:hover .location-card-overlay {
  background: linear-gradient(
    to top,
    rgba(2, 111, 114, 0.95) 0%,
    rgba(18, 53, 73, 0.8) 60%,
    rgba(18, 53, 73, 0.4) 100%
  );
}

.location-card-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  color: var(--paper);
}

.location-icon {
  font-size: 28px;
  color: var(--teal-tint);
  margin-bottom: 12px;
  display: inline-block;
  transition:
    transform var(--dur-m) var(--ease),
    color var(--dur-m) var(--ease);
}

.location-card:hover .location-icon {
  transform: translateY(-2px);
  color: #fff;
}

.location-card h3 {
  font-size: var(--text-md) !important;
  color: #fff !important;
  margin-bottom: 10px !important;
  font-weight: 600;
}

.location-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ============================= BREADCRUMBS ============================= */
.breadcrumbs {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--dur-s) var(--ease);
}

.breadcrumbs a:hover {
  color: var(--teal-tint);
  text-decoration: none;
}

.breadcrumbs .divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.breadcrumbs .active {
  color: #fff;
  font-weight: 500;
}

/* ============================= MOBILE NAVBAR STABILITY OVERRIDES ============================= */
@media (max-width: 1200px) {
  .navbar {
    top: 12px !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 12px !important;
    padding: 10px 16px !important;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 10px 30px rgba(26, 77, 104, 0.08) !important;
    border: 1px solid rgba(26, 77, 104, 0.06) !important;
    /* Transition coordinate parameters smoothly to animate the floating pill shape collapsing on scroll */
    transition:
      top var(--dur-m) var(--ease),
      left var(--dur-m) var(--ease),
      right var(--dur-m) var(--ease),
      border-radius var(--dur-m) var(--ease),
      padding var(--dur-m) var(--ease),
      background-color var(--dur-m) var(--ease),
      box-shadow var(--dur-m) var(--ease) !important;
  }

  .navbar.scrolled {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    padding: 10px 20px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(26, 77, 104, 0.06) !important;
  }
}

/* ============================= MOBILE RESPONSIVENESS FIXES ============================= */
@media (max-width: 768px) {
  /* Stack the homepage industry cards in a single column on mobile viewports */
  .industry-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  /* Scale down and adjust the home page certificates tabletop layout */
  .about-image-container {
    height: 380px !important;
  }

  .about-certificates-table {
    transform: scale(0.85) !important;
    width: 100% !important;
    height: 100% !important;
  }

  .certificate-card {
    width: 260px !important;
  }

  .about-image-container.in-view .card-iso {
    transform: rotate(-6deg) translate(-15px, -10px) !important;
  }

  .about-image-container.in-view .card-licence {
    transform: rotate(5deg) translate(20px, 15px) !important;
  }

  /* Make product specification key-value list stack vertically on mobile */
  .spec-card {
    padding: 24px !important;
  }

  .spec-card dl div {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    padding: 10px 0 !important;
  }

  .spec-card dl dd {
    text-align: left !important;
  }
}

@media (max-width: 400px) {
  /* Further scale down for very small screen widths (like 360px and smaller) */
  .about-image-container {
    height: 300px !important;
  }

  .about-certificates-table {
    transform: scale(0.72) !important;
  }
}

/* Ensure the subpage navbar always has a solid white background and visible dark links even at the top of the page */
.navbar-subpage {
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 8px 30px rgba(26, 77, 104, 0.08) !important;
  border-bottom: 1px solid var(--border) !important;
}

.navbar-subpage a {
  color: var(--navy) !important;
}

.navbar-subpage .nav-cta,
.navbar-subpage .nav-cta:hover {
  color: #fff !important;
}

.navbar-subpage .hamburger span {
  background-color: var(--navy) !important;
}

.navbar-subpage .brand img {
  filter: none !important;
}

/* ============================= BLOG DETAILS RESPONSIVENESS OVERRIDES ============================= */

/* --- Tablet (≤980px): layout already stacks to 1-col at this breakpoint --- */
@media (max-width: 980px) {
  .blog-details-layout {
    padding: 48px 0 !important;
    gap: 40px !important;
  }
}

/* --- Phablet / large phone (≤768px) --- */
@media (max-width: 768px) {
  .blog-details-layout {
    padding: 32px 0 !important;
    gap: 32px !important;
  }

  /* Hero title for blog detail pages — long title needs tighter line-height */
  .hero-blog h1 {
    font-size: clamp(22px, 5.5vw, 32px) !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }

  /* Subpage hero padding — bring navbar gap down on mobile */
  .subpage-hero {
    padding: 120px 0 50px 0 !important;
  }

  /* Breadcrumbs wrap cleanly */
  .breadcrumbs {
    font-size: 13px !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
  }

  /* Featured image — comfortable on tablet */
  .blog-featured-img {
    height: 260px !important;
    margin-bottom: 24px !important;
    border-radius: 6px !important;
  }

  /* Meta strip — allow wrap */
  .blog-meta-strip {
    gap: 12px !important;
    font-size: 13px !important;
    margin-top: 16px !important;
    padding-bottom: 12px !important;
    margin-bottom: 16px !important;
  }

  /* Body text */
  .blog-body-text {
    font-size: 15.5px !important;
    line-height: 1.78 !important;
  }

  .blog-body-text h2,
  .blog-body-text h3 {
    font-size: 20px !important;
    margin: 28px 0 12px 0 !important;
  }

  .blog-body-text p {
    margin-bottom: 18px !important;
  }

  .blog-body-text blockquote {
    margin: 20px 0 !important;
    padding-left: 14px !important;
    font-size: 14.5px !important;
  }

  .blog-body-text ul {
    margin-left: 16px !important;
  }

  /* Drop cap — too large on mobile, disable it */
  .drop-cap::first-letter {
    font-size: 3.2rem !important;
    margin-right: 0.5rem !important;
    margin-top: 0.2rem !important;
  }

  /* Sidebar — unstick on mobile */
  .blog-sidebar {
    position: static !important;
    top: auto !important;
  }

  .sidebar-widget {
    padding: 24px !important;
    margin-bottom: 20px !important;
  }

  .sidebar-widget h3 {
    font-size: 16px !important;
    margin-bottom: 14px !important;
  }
}

/* --- Small mobile (≤480px) --- */
@media (max-width: 480px) {
  .subpage-hero {
    padding: 100px 0 40px 0 !important;
  }

  .hero-blog h1 {
    font-size: clamp(20px, 5.5vw, 26px) !important;
    line-height: 1.3 !important;
  }

  .blog-details-layout {
    padding: 24px 0 !important;
    gap: 24px !important;
  }

  .blog-featured-img {
    height: 200px !important;
    margin-bottom: 16px !important;
  }

  /* Fully disable drop-cap on small phones */
  .drop-cap::first-letter {
    font-size: 1em !important;
    float: none !important;
    margin: 0 !important;
    color: inherit !important;
    font-weight: inherit !important;
  }

  /* Meta items stack vertically */
  .blog-meta-strip {
    flex-direction: column !important;
    gap: 6px !important;
    align-items: flex-start !important;
    font-size: 12.5px !important;
  }

  .blog-body-text {
    font-size: 15px !important;
  }

  .blog-body-text h2,
  .blog-body-text h3 {
    font-size: 18px !important;
    margin: 22px 0 10px 0 !important;
  }

  .sidebar-widget {
    padding: 18px !important;
  }

  /* Blog listing card tweaks */
  .blog-card-content {
    padding: 20px !important;
  }

  .blog-card h3 {
    font-size: 16px !important;
  }
}

/* ============================= GLOBAL MOBILE LAYOUT ============================= */
@media (max-width: 768px) {
  /* Hide hero slider arrows on mobile */
  .hero-arrow {
    display: none !important;
  }

  /* Container padding */
  .wrap,
  .container {
    padding: 0 18px !important;
  }

  /* Subpage hero */
  .subpage-hero h1 {
    font-size: clamp(22px, 6vw, 34px) !important;
  }

  /* Section general padding — exclude subpage-hero which manages its own spacing */
  section:not(.subpage-hero) {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Operations cards: single column */
  .operations-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Operation card inner padding */
  .operation-card {
    padding: 24px !important;
  }

  /* Industry rows */
  .industry-row {
    flex-direction: column !important;
  }

  .industry-row.reverse {
    flex-direction: column !important;
  }

  .industry-img-col,
  .industry-content-col {
    width: 100% !important;
    max-width: 100% !important;
  }

  .industry-img-col .image-box {
    height: 240px !important;
  }

  /* Infrastructure strength chips */
  .infra-strength-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Footer columns stack */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Contact form */
  .contact-form-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 480px) {
  .wrap,
  .container {
    padding: 0 14px !important;
  }

  h2 {
    font-size: clamp(22px, 6vw, 30px) !important;
  }

  /* Image boxes */
  .image-box {
    height: 220px !important;
  }

  /* App tags wrap nicely */
  .app-tags {
    gap: 8px !important;
  }

  .app-tag {
    font-size: 12px !important;
    padding: 5px 12px !important;
  }
}

/* ============================= LARGE SCREEN ENHANCEMENTS (1440px+) ============================= */
@media (min-width: 1440px) {
  :root {
    --container: 1300px;
  }

  .wrap,
  .container {
    padding: 0 48px;
  }

  /* Larger section vertical breathing room */
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* Hero text bigger on large screens */
  .hero-headline {
    font-size: clamp(48px, 4vw, 72px);
  }

  /* Operations grid: up to 4 columns */
  .operations-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Blog layout wider content */
  .blog-details-layout {
    grid-template-columns: 9fr 3.5fr;
    gap: 80px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container: 1500px;
  }

  .blog-details-layout {
    gap: 100px;
  }
}

/* ============================= SEMANTIC UTILITIES & COMPONENTS ============================= */
.section-py-60 {
  padding: 60px 0;
}

.section-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.subpage-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px auto;
}

.subpage-section-header .eyebrow {
  justify-content: center;
}

.subpage-section-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--navy);
  margin-bottom: 16px;
}

.subpage-section-header p {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.op-icon-teal {
  background: var(--teal-tint);
  color: var(--teal);
}

.blog-detail-hero-title {
  max-width: 850px;
  font-size: clamp(24px, 4.5vw, 40px);
  color: #fff;
}

.infra-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 30px -15px rgba(26, 77, 104, 0.06);
}

.infra-card .op-icon-wrap {
  margin-bottom: 20px;
}

.infra-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infra-card .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.infra-card .feature-list li i {
  color: var(--teal);
  font-size: 12px;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.strength-card {
  background: var(--paper);
  border-left: 3px solid var(--teal);
  padding: 18px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(26, 77, 104, 0.04);
}

.strength-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}

.rd-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.rd-focus-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(26, 77, 104, 0.04);
}

.rd-focus-card .rd-icon {
  font-size: 26px;
  color: var(--teal);
  margin-bottom: 14px;
}

.rd-focus-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.rd-focus-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.product-overview-text {
  margin: 16px 0;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.6;
}

.infra-section .eyebrow {
  color: #5fc9cb;
}

.infra-section .reveal-line {
  color: #fff;
}

.infra-list li i {
  color: #5fc9cb;
  font-size: 14px;
  margin-top: 4px;
}

.infra-btn-wrap {
  margin-top: 40px;
  text-align: center;
}

.infra-btn-wrap .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.process-header-overline {
  color: #a5dfdf;
  display: block;
  text-align: center;
  margin-bottom: 8px;
}

.process-header-title {
  text-align: center;
  color: #fff;
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 18px;
}

.grid-2-col-gap-40 {
  gap: 40px;
}

.grid-2-col-gap-48 {
  align-items: center;
  gap: 48px;
}

.image-box-h320 {
  height: 320px;
}

.image-cover-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-text-muted {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.lead-text-normal {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

.subpage-block-heading {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--navy);
  margin-bottom: 20px;
}

.section-divider-top {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.section-subheading-mono {
  font-size: var(--text-sm);
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}

.italic-note-muted {
  margin-top: 28px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}

.products-catalog-list {
  margin-top: 30px;
}

.product-tag-active {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-catalog-desc {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-catalog-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-catalog-btn {
  padding: 10px 20px;
  font-size: var(--text-sm);
}

.qa-doc-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.qa-doc-title {
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: 12px;
}

.qa-doc-actions {
  text-align: right;
}

.qa-doc-actions .btn-outline {
  margin-right: 12px;
  margin-bottom: 10px;
}

.why-card-icon {
  font-size: 24px;
  margin-bottom: 16px;
}

.leadership-quote-card {
  background: var(--paper);
  border-top: 4px solid var(--navy);
  padding: 40px;
}

.leadership-quote-card h3 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 16px;
  font-size: var(--text-xl);
}

.leadership-designation {
  font-size: var(--text-xs);
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}

.leadership-quote-text {
  font-style: italic;
  color: var(--text);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: 0;
}

.subpage-cta-band {
  text-align: center;
  margin-top: 60px;
  padding: 48px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(18, 53, 73, 0.3);
  position: relative;
  overflow: hidden;
}

.subpage-cta-band h3 {
  color: #fff;
  font-size: var(--text-lg);
  margin-bottom: 12px;
}

.subpage-cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 28px auto;
  font-size: var(--text-base);
  line-height: 1.6;
}

.subpage-cta-band .btn {
  display: inline-block;
}

.image-box-h420 {
  height: 420px;
}

.image-box-h380 {
  height: 380px;
  max-width: 440px;
  margin: 0 auto;
}

.mt-30 {
  margin-top: 30px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}

.about-grid-aligned {
  align-items: center;
  gap: 64px;
}

.image-box-h280 {
  height: 280px;
}

.why-choose-us-reset {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.why-choose-us-title {
  font-size: var(--text-md);
  color: var(--navy);
  margin-bottom: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.industry-content-col h2,
.industry-content-col h3 {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.contact-col-title {
  font-size: clamp(22px, 4vw, 30px);
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-col-desc {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: var(--text-base);
  line-height: 1.6;
}

.map-section-wrap {
  padding: 0;
  line-height: 0;
}

.map-container-styled {
  position: relative;
  height: 450px;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-40 {
  margin-bottom: 40px;
}

.map-container-styled iframe {
  border: 0;
}

.blog-featured-img-box {
  height: 420px;
  overflow: hidden;
  border-radius: 8px;
}

.blog-meta-strip-styled {
  color: rgba(94, 94, 94, 0.77);
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 20px;
}

.link-teal-bold {
  color: var(--teal);
  font-weight: 600;
}

.choose-card h3,
.choose-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.bg-mist-border-top {
  background: var(--mist);
  border-top: 1px solid var(--border);
}

.grid-2-col-gap-64 {
  gap: 64px;
}

.product-storage-box {
  margin-top: 32px;
  padding: 20px;
  background: var(--mist);
  border-radius: 6px;
  border: 1px solid var(--border-strong);
}

.product-storage-box strong {
  color: var(--navy);
  display: block;
  font-size: var(--text-sm);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-storage-box p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
}

.packaging-supply-wrap {
  margin-top: 32px;
}

.packaging-supply-wrap h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
}

.packaging-supply-wrap .feature-list {
  margin-top: 10px;
  font-size: var(--text-sm);
}

.packaging-supply-wrap .feature-list li {
  padding: 8px 0;
}

.packaging-supply-wrap .feature-list li:first-child {
  border-top: none;
}

/* ============================= SUBPAGE BREADCRUMBS ============================= */
.subpage-hero .breadcrumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.subpage-hero .breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--dur-s) var(--ease);
}

.subpage-hero .breadcrumbs a:hover {
  color: var(--teal);
}

.subpage-hero .breadcrumbs .divider {
  color: rgba(255, 255, 255, 0.4);
}

.subpage-hero .breadcrumbs .active {
  color: #8fc7c9;
  font-weight: 600;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 168, 150, 0.2);
  color: var(--teal-light, #00b4d8);
  border: 1px solid rgba(0, 168, 150, 0.4);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ============================= BLOG DETAILS SECTION ============================= */
.blog-detail-section {
  padding: 60px 0 80px;
  background: var(--light-bg, #f4f8f9);
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
}

.blog-main-col {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border, #e2ecec);
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.05);
}

.blog-meta-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border, #e2ecec);
  font-size: 13.5px;
  color: var(--muted, #64748b);
}

.blog-meta-strip .meta-item i {
  color: var(--teal);
  margin-right: 6px;
}

.blog-detail-featured-img {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.blog-detail-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text, #1e293b);
}

.blog-detail-body h3 {
  font-size: 21px;
  color: var(--navy, #0a2540);
  margin: 30px 0 14px;
}

.blog-detail-body p {
  margin-bottom: 20px;
}

.blog-detail-body ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.blog-detail-body ul li {
  margin-bottom: 10px;
}

.blog-detail-body blockquote {
  background: var(--mist, #f0f7f7);
  border-left: 4px solid var(--teal);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--navy);
  margin: 25px 0;
}

.blog-detail-footer {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid var(--border, #e2ecec);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-right: 5px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition:
    transform 0.2s,
    opacity 0.2s;
  font-size: 15px;
}

.share-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
  opacity: 0.9;
}

.share-wa {
  background: #25d366;
}
.share-li {
  background: #0a66c2;
}
.share-tw {
  background: #000000;
}
.share-fb {
  background: #1877f2;
}

/* Sidebar widgets */
.sidebar-widget {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border, #e2ecec);
  box-shadow: 0 4px 15px rgba(10, 37, 64, 0.04);
  margin-bottom: 25px;
}

.widget-title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--mist);
}

.sidebar-articles-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-article-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.sidebar-thumb-link {
  width: 70px;
  height: 55px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-article-info {
  display: flex;
  flex-direction: column;
}

.sidebar-date {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 3px;
}

.sidebar-title-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  transition: color 0.2s;
}

.sidebar-title-link:hover {
  color: var(--teal);
}

.sidebar-cta-widget {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-surface, #133959) 100%
  );
  color: #ffffff;
}

.sidebar-cta-widget h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}

.sidebar-cta-widget p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ============================= CAREERS PAGE STYLES ============================= */
.openings-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.opening-card {
  background: #ffffff;
  border: 1px solid var(--border, #e2ecec);
  border-radius: 12px;
  padding: 30px 35px;
  box-shadow: 0 4px 15px rgba(10, 37, 64, 0.04);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.opening-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 37, 64, 0.08);
}

.opening-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 12px;
}

.job-tag {
  display: inline-block;
  background: rgba(0, 168, 150, 0.1);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.opening-header h3 {
  font-size: 20px;
  color: var(--navy);
  margin: 0;
}

.job-location {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}

.job-location i {
  color: var(--teal);
  margin-right: 4px;
}

.job-desc {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
}

.job-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.job-meta span strong {
  color: var(--navy);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.value-card {
  background: var(--mist, #f0f7f7);
  padding: 30px 25px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(0, 168, 150, 0.15);
}

.value-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================= ARTICLE CONTENT TYPOGRAPHY ============================= */
.article-body-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color, #1e293b);
}

.article-body-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.article-body-content .drop-cap {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-color, #1e293b);
}

.article-body-content h2,
.article-body-content h3 {
  color: var(--navy, #0a2540);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px 0;
  line-height: 1.35;
}

.article-body-content h3 {
  font-size: 20px;
  margin: 26px 0 14px 0;
}

.article-body-content ul,
.article-body-content ol {
  padding-left: 24px;
  margin-bottom: 25px;
}

.article-body-content ul li,
.article-body-content ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.article-body-content blockquote {
  background: var(--mist, #f0f7f7);
  border-left: 4px solid var(--teal, #00a896);
  padding: 18px 24px;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--navy, #0a2540);
  margin: 25px 0;
  font-size: 15.5px;
  line-height: 1.75;
}

.article-body-content strong {
  color: var(--navy, #0a2540);
}

/* ============================= BLOG GRID & CARDS ============================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(10, 37, 64, 0.04);
  transition:
    transform var(--dur-s) var(--ease),
    box-shadow var(--dur-s) var(--ease);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.09);
}

.blog-card-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.blog-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--mist);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-date {
  font-size: 12.5px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.blog-card-content h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 700;
  transition: color var(--dur-s) var(--ease);
}

.blog-card:hover .blog-card-content h3 {
  color: var(--teal);
}

.blog-card-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-readmore {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--dur-s) var(--ease);
}

.blog-card:hover .blog-readmore {
  gap: 10px;
}

/* ============================= BLOG DETAILS PAGE (EXACT ORIGINAL DESIGN) ============================= */
.blog-details-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  padding: 80px 0;
  align-items: start;
}

@media (max-width: 980px) {
  .blog-details-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.blog-article {
  background: var(--paper, #ffffff);
}

.blog-meta-strip {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  flex-wrap: wrap;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-featured-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  height: 380px;
  background: var(--mist);
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-body-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text, #1e293b);
}

.blog-body-text p {
  margin-bottom: 24px;
}

.blog-body-text .drop-cap {
  font-size: 17px;
  line-height: 1.8;
  color: var(--navy);
  font-weight: 500;
}

.blog-body-text h2,
.blog-body-text h3 {
  color: var(--navy);
  margin: 36px 0 16px 0;
  font-size: 24px;
  font-weight: 700;
}

.blog-body-text ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 24px;
}

.blog-body-text li {
  margin-bottom: 8px;
}

.blog-body-text blockquote {
  border-left: 4px solid var(--teal);
  padding-left: 20px;
  margin: 32px 0;
  font-style: italic;
  color: var(--muted);
  background: var(--mist);
  padding: 18px 24px;
  border-radius: 0 8px 8px 0;
}

/* Sidebar styles */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--mist);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.sidebar-widget h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-strong);
  padding-bottom: 10px;
}

.recent-post-link {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
  text-decoration: none;
}

.recent-post-link:last-child {
  margin-bottom: 0;
}

.recent-post-thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: #ffffff;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-info h4 {
  font-size: 14.5px;
  color: var(--navy);
  margin: 0 0 4px 0;
  line-height: 1.4;
  font-weight: 600;
  transition: color var(--dur-s) var(--ease);
}

.recent-post-link:hover h4 {
  color: var(--teal);
}

.recent-post-info span {
  font-size: 11.5px;
  color: var(--muted);
  font-family: var(--font-mono);
}

.sidebar-widget.sidebar-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border: none;
}

.sidebar-widget.sidebar-cta h3 {
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.sidebar-widget.sidebar-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
