﻿/* ==========================================================================
   Riddhi Siddhi Impex â€” About Us page styles (swarangi.css)
   EXTRA stylesheet only. Loads AFTER style.css and adds new, page-scoped
   classes for the About page. Does NOT override existing home-page rules.
   Reuses the same design tokens, fonts (Barlow Condensed + Inter) & palette.
   ========================================================================== */

/* ---------- Page banner / hero ---------- */
.abt-hero {
  position: relative;
  min-height: clamp(320px, 46vw, 470px);
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  background: var(--indigo-deeper);
  overflow: hidden;
  isolation: isolate;
}
.abt-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.abt-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.abt-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    105deg,
    rgba(14, 17, 56, 0.94) 0%,
    rgba(23, 26, 77, 0.86) 45%,
    rgba(46, 49, 146, 0.62) 100%
  );
}
.abt-hero__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gut);
  padding-block: clamp(30px, 6vw, 54px);
  color: #fff;
}
.abt-hero .eyebrow {
  color: var(--red-2);
}
.abt-hero h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 66px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  max-width: 16ch;
}
.abt-crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
}
.abt-crumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s var(--ease);
}
.abt-crumb a:hover {
  color: #fff;
}
.abt-crumb span[aria-current] {
  color: var(--red-2);
}
.abt-crumb .sep {
  opacity: 0.5;
}

/* ---------- Intro: image + copy ---------- */
.abt-intro {
  padding-block: clamp(50px, 7vw, 84px);
}
.abt-intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.abt-figure {
  position: relative;
}
.abt-figure__main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
}
.abt-figure__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3.2;
}
.abt-figure__badge {
  position: absolute;
  right: clamp(-6px, -1vw, -22px);
  bottom: 22px;
  background: var(--grad);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 20px 26px;
  box-shadow: var(--sh-md);
  text-align: center;
  min-width: 150px;
}
.abt-figure__badge b {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.abt-figure__badge span {
  display: block;
  margin-top: 6px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
}
.abt-figure::before {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  z-index: -1;
  background: var(--paper-3);
}
.abt-copy .h-sec {
  text-transform: capitalize;
  font-size: clamp(30px, 3.6vw, 44px);
}
.abt-copy p {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 16px;
}
.abt-copy p strong {
  color: var(--ink);
}
.abt-copy .abt-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 26px;
}
.abt-copy .abt-materials span {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 15px;
  border-radius: var(--pill);
  background: var(--paper-2);
  color: var(--indigo);
  border: 1px solid var(--line);
}
.abt-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Mission / Vision / Values ---------- */
.abt-mvv {
  position: relative;
  padding-block: clamp(50px, 7vw, 80px);
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    url("../images/aboutus-bg-img.jpg") center/cover no-repeat fixed;
}
.abt-mvv > .container {
  position: relative;
  z-index: 1;
}
/* light section header so it stays readable over the dark overlay */
.abt-mvv .h-sec {
  color: #fff;
}
.abt-mvv .lead {
  color: rgba(255, 255, 255, 0.82);
}
.abt-mvv .eyebrow {
  color: var(--red-2);
}
.abt-mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.abt-mvv__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 34px 30px;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.abt-mvv__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.abt-mvv__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.abt-mvv__card:hover::before {
  transform: scaleX(1);
}
.abt-mvv__ic {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(46, 49, 146, 0.12),
    rgba(232, 37, 45, 0.12)
  );
  color: var(--indigo);
  margin-bottom: 20px;
}
.abt-mvv__ic svg {
  width: 30px;
  height: 30px;
}
.abt-mvv__card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--ink);
}
.abt-mvv__card p {
  color: var(--muted);
  font-size: 15.5px;
  margin: 0;
}

/* ---------- Approach / Why us feature strip ---------- */
.abt-approach {
  padding-block: clamp(50px, 7vw, 84px);
}
.abt-approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.abt-feat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 30px 30px 28px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}
.abt-feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.abt-feat__ic {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad);
  box-shadow: var(--sh-sm);
}
.abt-feat__ic svg {
  width: 26px;
  height: 26px;
}
.abt-feat__num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  color: var(--paper-3);
  letter-spacing: -1px;
}
.abt-feat__body {
  position: relative;
  z-index: 1;
}
.abt-feat h3 {
  font-size: 22px;
  margin-bottom: 8px;
  text-transform: none;
  color: var(--ink);
}
.abt-feat p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ---------- Industries served ---------- */
.abt-industries {
  background: var(--indigo-deeper);
  color: #fff;
  padding-block: clamp(50px, 7vw, 84px);
  position: relative;
  overflow: hidden;
}
.abt-industries::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 37, 45, 0.22), transparent 66%);
}
.abt-industries .eyebrow {
  color: var(--red-2);
}
.abt-industries .h-sec {
  color: #fff;
}
.abt-industries .lead {
  color: rgba(255, 255, 255, 0.78);
}
.abt-ind__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}
.abt-ind__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r);
  padding: 18px 20px;
  transition: background 0.28s var(--ease), border-color 0.28s var(--ease),
    transform 0.28s var(--ease);
}
.abt-ind__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 81, 90, 0.5);
  transform: translateX(4px);
}
.abt-ind__item .dot {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
}
.abt-ind__item .dot svg {
  width: 20px;
  height: 20px;
}
.abt-ind__item span {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

/* ---------- Products we offer ---------- */
.abt-offer {
  padding-block: clamp(50px, 7vw, 84px);
}
.abt-offer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.abt-offer__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 18px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.abt-offer__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.abt-offer__thumb {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 30% 25%,
    var(--paper-2),
    var(--paper-3)
  );
  margin-bottom: 16px;
  overflow: hidden;
}
.abt-offer__thumb img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.abt-offer__card h3 {
  font-size: 20px;
  margin: 0;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- Reveal helper for non-.reveal blocks (About uses .reveal from main.js) ---------- */

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .abt-intro__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .abt-figure {
    max-width: 560px;
    margin-inline: auto;
  }
  .abt-mvv__grid {
    grid-template-columns: 1fr;
  }
  .abt-approach__grid {
    grid-template-columns: 1fr;
  }
  .abt-ind__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abt-offer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .abt-hero {
    margin-top: 0;
    padding-top: var(--header-h);
  }
  /* center Mission / Vision / Values cards on mobile */
  .abt-mvv__card {
    text-align: center;
  }
  .abt-mvv__ic {
    margin-inline: auto;
  }
  /* center "Why Work With Us" feature cards on mobile */
  .abt-feat {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .abt-ind__grid {
    grid-template-columns: 1fr;
  }
  .abt-offer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abt-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .abt-cta-row .btn {
    justify-content: center;
  }
  .abt-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .abt-figure__badge {
    position: static;
    margin-top: 16px;
    width: auto;
    display: inline-block;
  }
}

/* ==========================================================================
   ABOUT US — VISUAL ENHANCEMENT LAYER
   Adds animated hero, decorative section backgrounds and richer hover /
   motion for a more premium, professional finish. Appended AFTER the base
   .abt-* rules so these declarations win in the cascade. Non-destructive.
   ========================================================================== */

/* ---- shared keyframes ---- */
@keyframes abtFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes abtFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes abtDrift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -14px);
  }
}
@keyframes abtPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}
@keyframes abtSheen {
  0% {
    transform: translateX(-120%) skewX(-18deg);
  }
  60%,
  100% {
    transform: translateX(220%) skewX(-18deg);
  }
}

/* ============================ HERO ============================ */
/* richer gradient overlay + red glow */
.abt-hero::after {
  background: radial-gradient(
      120% 95% at 88% 12%,
      rgba(232, 37, 45, 0.34) 0%,
      transparent 55%
    ),
    radial-gradient(
      90% 120% at 0% 100%,
      rgba(61, 67, 196, 0.42) 0%,
      transparent 52%
    ),
    linear-gradient(
      105deg,
      rgba(14, 17, 56, 0.95) 0%,
      rgba(23, 26, 77, 0.86) 46%,
      rgba(46, 49, 146, 0.6) 100%
    );
}
/* faint blueprint grid — a nod to precision engineering */
.abt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.5) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    120% 100% at 80% 0%,
    #000,
    transparent 75%
  );
  mask-image: radial-gradient(120% 100% at 80% 0%, #000, transparent 75%);
  animation: abtDrift 16s ease-in-out infinite;
}
/* subtle zoom-in of the background photo on load */
.abt-hero__bg img {
  animation: heroZoom 14s ease-out both;
}
@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
/* staggered entrance for hero content */
.abt-hero__inner .eyebrow {
  animation: abtFadeUp 0.7s 0.1s both var(--ease);
}
.abt-hero__inner h1 {
  animation: abtFadeUp 0.8s 0.24s both var(--ease);
}
.abt-hero__inner .abt-crumb {
  animation: abtFadeUp 0.8s 0.4s both var(--ease);
}

/* ============================ INTRO ============================ */
.abt-intro {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* soft decorative glow blobs behind the intro */
.abt-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 49, 146, 0.1), transparent 68%);
  animation: abtPulse 9s ease-in-out infinite;
}
.abt-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  bottom: -140px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 37, 45, 0.08), transparent 68%);
  animation: abtPulse 11s ease-in-out infinite reverse;
}
/* white mat + gradient hairline frame around the photo */
.abt-figure__main {
  isolation: isolate;
  border: 7px solid #fff;
  box-shadow: var(--sh-lg), 0 0 0 1px var(--line);
}
.abt-figure__main img {
  border-radius: calc(var(--r-xl) - 10px);
  transition: transform 0.7s var(--ease);
}
.abt-figure:hover .abt-figure__main img {
  transform: scale(1.06);
}
.abt-figure__main::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 45%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: translateX(-120%) skewX(-18deg);
}
.abt-figure:hover .abt-figure__main::after {
  animation: abtSheen 1.1s var(--ease);
}
/* turn the offset square into a floating gradient outline frame (bottom-right) */
.abt-figure::before {
  inset: 34px -22px -22px 34px;
  width: auto;
  height: auto;
  border-radius: var(--r-xl);
  background: none;
  border: 2px solid var(--indigo);
  opacity: 0.22;
}
/* soft gradient halo behind the top-left corner of the photo */
.abt-figure::after {
  content: "";
  position: absolute;
  z-index: -2;
  pointer-events: none;
  top: -26px;
  left: -26px;
  width: 150px;
  height: 150px;
  border-radius: 26px;
  background: var(--grad);
  opacity: 0.14;
  filter: blur(2px);
}
/* the years badge gently floats — now with ring, sheen highlight & sparkle */
.abt-figure__badge {
  animation: abtFloat 5.5s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--sh-md), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
.abt-figure__badge::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    120% 90% at 20% 0%,
    rgba(255, 255, 255, 0.28),
    transparent 60%
  );
}
.abt-figure__badge b {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}
.abt-figure:hover .abt-figure__badge {
  animation-play-state: paused;
}
/* accent bar under the section heading */
.abt-copy .h-sec {
  position: relative;
  padding-bottom: 14px;
}
.abt-copy .h-sec::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad);
}
/* credibility highlights row */
.abt-highlights {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 22px;
}
.abt-highlights li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.3;
}
.abt-highlights__ic {
  flex: none;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 6px 14px rgba(46, 49, 146, 0.26);
  transition: transform 0.3s var(--ease);
}
.abt-highlights__ic svg {
  width: 15px;
  height: 15px;
}
.abt-highlights li:hover .abt-highlights__ic {
  transform: scale(1.12) rotate(-6deg);
}

/* ============================ MISSION / VISION / VALUES ============================ */
.abt-mvv {
  position: relative;
  overflow: hidden;
}
/* faint dot texture behind the cards */
.abt-mvv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(
    rgba(46, 49, 146, 0.1) 1.3px,
    transparent 1.3px
  );
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    100% 80% at 50% 0%,
    #000,
    transparent 80%
  );
  mask-image: radial-gradient(100% 80% at 50% 0%, #000, transparent 80%);
}
.abt-mvv > .container {
  position: relative;
  z-index: 1;
}
/* per-card accent hue */
.abt-mvv__grid {
  counter-reset: mvv;
}
.abt-mvv__card {
  --c: var(--indigo);
  counter-increment: mvv;
  padding-top: 38px;
  background: radial-gradient(
      130% 80% at 50% -10%,
      rgba(46, 49, 146, 0.045),
      transparent 62%
    ),
    var(--paper);
}
.abt-mvv__card:nth-child(2) {
  --c: var(--red);
}
.abt-mvv__card:nth-child(3) {
  --c: #5b3dbe;
}

/* always-on colored top accent — blooms to full gradient on hover */
.abt-mvv__card::before {
  background: linear-gradient(90deg, var(--c), transparent 85%);
  transform: scaleX(1);
  opacity: 0.55;
}
.abt-mvv__card:hover::before {
  opacity: 1;
  background: var(--grad);
}

/* big ghost index number watermark */
.abt-mvv__card::after {
  content: counter(mvv, decimal-leading-zero);
  position: absolute;
  top: 12px;
  right: 22px;
  z-index: 0;
  pointer-events: none;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 66px;
  line-height: 1;
  color: var(--c);
  opacity: 0.09;
  letter-spacing: -0.02em;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.abt-mvv__card:hover::after {
  opacity: 0.16;
  transform: translateY(-2px);
}
.abt-mvv__card > * {
  position: relative;
  z-index: 1;
}

/* gradient-filled icon tile with white glyph + colored glow */
.abt-mvv__ic {
  background: radial-gradient(
      120% 120% at 28% 18%,
      rgba(255, 255, 255, 0.28),
      transparent 55%
    ),
    var(--c);
  color: #fff;
  box-shadow: 0 12px 24px rgba(21, 23, 58, 0.16);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.abt-mvv__card h3 {
  transition: color 0.3s var(--ease);
}

/* richer card lift + energised icon on hover */
.abt-mvv__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.abt-mvv__card:hover .abt-mvv__ic {
  transform: rotate(-6deg) scale(1.1);
}
.abt-mvv__card:hover h3 {
  color: var(--c);
}

/* ============================ APPROACH / WHY US ============================ */
.abt-approach {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.abt-approach::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(61, 67, 196, 0.1), transparent 68%);
}
.abt-approach > .container {
  position: relative;
  z-index: 1;
}
/* icon chip + big ghost index number, gradient wash on hover */
.abt-feat {
  position: relative;
  overflow: hidden;
}
.abt-feat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.abt-feat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    120% 120% at 100% 0%,
    rgba(61, 67, 196, 0.07),
    transparent 60%
  );
  transition: opacity 0.4s var(--ease);
}
.abt-feat:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.abt-feat:hover::before {
  transform: scaleY(1);
}
.abt-feat:hover::after {
  opacity: 1;
}
.abt-feat__ic,
.abt-feat__num {
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}
.abt-feat:hover .abt-feat__ic {
  transform: rotate(-6deg) scale(1.08);
}
.abt-feat:hover .abt-feat__num {
  color: var(--paper-2);
  transform: scale(1.08);
}

/* ============================ INDUSTRIES ============================ */
/* faint grid layer over the dark band */
.abt-industries::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.6) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 52px 52px;
}
.abt-industries .container {
  position: relative;
  z-index: 1;
}
.abt-ind__item {
  position: relative;
  overflow: hidden;
}
.abt-ind__item:hover {
  transform: translateY(-4px);
}
.abt-ind__item .dot {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.abt-ind__item:hover .dot {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 10px 22px rgba(232, 37, 45, 0.4);
}

/* ============================ PRODUCTS WE OFFER ============================ */
.abt-offer {
  position: relative;
  overflow: hidden;
}
.abt-offer::before {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(232, 37, 45, 0.07), transparent 68%);
}
.abt-offer > .container {
  position: relative;
  z-index: 1;
}
.abt-offer__card {
  position: relative;
  overflow: hidden;
}
/* gradient wash rises from the bottom on hover */
.abt-offer__card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, transparent 40%, rgba(46, 49, 146, 0.06));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.abt-offer__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}
.abt-offer__card:hover::before {
  opacity: 1;
}
.abt-offer__thumb {
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.abt-offer__thumb img {
  transition: transform 0.5s var(--ease);
}
.abt-offer__card:hover .abt-offer__thumb {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 30px rgba(21, 23, 58, 0.16);
}
.abt-offer__card:hover .abt-offer__thumb img {
  transform: scale(1.1) rotate(-4deg);
}
.abt-offer__card h3 {
  transition: color 0.3s var(--ease);
}
.abt-offer__card:hover h3 {
  color: var(--indigo);
}

/* respect reduced motion — kill all decorative animation */
@media (prefers-reduced-motion: reduce) {
  .abt-hero::before,
  .abt-hero__bg img,
  .abt-hero__inner .eyebrow,
  .abt-hero__inner h1,
  .abt-hero__inner .abt-crumb,
  .abt-intro::before,
  .abt-intro::after,
  .abt-figure__badge {
    animation: none;
  }
}

/* ==========================================================================
   CERTIFICATE PAGE (riddi-siddhi-impex/https://vam.net/riddi-siddhi-impex/certificate.html) Ã¢â‚¬â€ unique "credentials vault" design.
   Page-scoped classes prefixed .crt-  so they never collide with the
   home-page .cert-* rules in style.css. Reuses the same tokens & palette.
   ========================================================================== */

/* ---------- Hero banner ---------- */
.crt-hero {
  position: relative;
  min-height: clamp(340px, 48vw, 500px);
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  background: var(--indigo-deeper);
  overflow: hidden;
  isolation: isolate;
}
.crt-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.crt-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.crt-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      120% 90% at 85% 15%,
      rgba(232, 37, 45, 0.3) 0%,
      transparent 55%
    ),
    linear-gradient(
      105deg,
      rgba(14, 17, 56, 0.95) 0%,
      rgba(23, 26, 77, 0.88) 48%,
      rgba(46, 49, 146, 0.66) 100%
    );
}
/* faint blueprint grid over the hero Ã¢â‚¬â€ a nod to precision engineering */
.crt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.5) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%);
  mask-image: linear-gradient(90deg, transparent, #000 60%);
}
.crt-hero__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gut);
  padding-block: clamp(30px, 6vw, 58px);
  color: #fff;
}
.crt-hero .eyebrow {
  color: var(--red-2);
}
.crt-hero h1 {
  color: #fff;
  font-size: clamp(40px, 6.4vw, 72px);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.98;
  margin: 0 0 14px;
  max-width: 14ch;
}
.crt-hero__lead {
  font-family: var(--f-body);
  max-width: 56ch;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
}
.crt-crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
}
.crt-crumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s var(--ease);
}
.crt-crumb a:hover {
  color: #fff;
}
.crt-crumb span[aria-current] {
  color: var(--red-2);
}
.crt-crumb .sep {
  opacity: 0.5;
}

/* ---------- Assurance strip (overlaps hero) ---------- */
.crt-assure {
  margin-top: clamp(-56px, -6vw, -44px);
  position: relative;
  z-index: 2;
}
.crt-assure__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.crt-assure__row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: clamp(20px, 2.6vw, 30px) 18px;
  border-inline-end: 1px solid var(--line);
}
.crt-assure__row li:last-child {
  border-inline-end: 0;
}
.crt-assure__ic {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 4px;
  border-radius: 14px;
  color: #fff;
  background: var(--grad);
}
.crt-assure__ic svg {
  width: 24px;
  height: 24px;
}
.crt-assure__row b {
  font-family: var(--f-head);
  font-weight: 800;
  line-height: 1;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.crt-assure__row span:not(.crt-assure__ic) {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ---------- Certificate gallery (framed, interactive cards) ---------- */
.crt-vault {
  padding-block: clamp(48px, 7vw, 94px);
}

/* centred intro above the grid */
.crt-vault__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(38px, 5vw, 60px);
}
.crt-vault__head .eyebrow {
  color: var(--red-2);
}
.crt-vault__head h2 {
  margin: 8px 0 14px;
}
.crt-vault__head p {
  font-family: var(--f-body);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.crt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 30px);
  margin-inline: auto;
}

/* clickable certificate card */
.crt-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  text-align: left;
  padding: 14px 14px 6px;
  background: linear-gradient(160deg, #ffffff 0%, #f4f5fc 55%, #eef0fa 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform 0.34s var(--ease), box-shadow 0.34s var(--ease),
    border-color 0.34s var(--ease), background 0.34s var(--ease);
}
.crt-card:hover,
.crt-card:focus-visible {
  background: linear-gradient(160deg, #ffffff 0%, #eef0fa 55%, #e4e7f7 100%);
}
/* gradient accent bar that draws in on hover/focus */
.crt-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 3;
}
.crt-card:hover,
.crt-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.crt-card:hover::before,
.crt-card:focus-visible::before {
  transform: scaleX(1);
}
.crt-card:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
}

/* framed certificate image â€” static border + layered shadow */
.crt-card__mat {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 605/819;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 22px rgba(21, 23, 58, 0.16),
    0 2px 6px rgba(21, 23, 58, 0.1);
}
.crt-card__mat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.crt-card:hover .crt-card__mat img {
  transform: scale(1.05);
}

/* "click to enlarge" overlay revealed on hover/focus */
.crt-card__zoom {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 17, 56, 0) 45%,
    rgba(14, 17, 56, 0.55) 100%
  );
  transition: opacity 0.34s var(--ease);
}
.crt-card:hover .crt-card__zoom,
.crt-card:focus-visible .crt-card__zoom {
  opacity: 1;
}
.crt-card__zoom span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(14, 17, 56, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 8px 14px;
  border-radius: var(--pill);
  transform: translateY(10px);
  transition: transform 0.34s var(--ease);
}
.crt-card:hover .crt-card__zoom span,
.crt-card:focus-visible .crt-card__zoom span {
  transform: none;
}
.crt-card__zoom svg {
  width: 16px;
  height: 16px;
}

/* caption block below the frame */
.crt-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 16px 4px 12px;
}
.crt-card__badge {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(46, 49, 146, 0.08);
  border-radius: var(--pill);
  padding: 5px 11px;
}
.crt-card__title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
}

/* ---------- Certificate modal / lightbox ---------- */
.crt-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 54px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.crt-modal[hidden] {
  display: none;
}
.crt-modal.is-open {
  opacity: 1;
}
.crt-modal__backdrop {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
  background: rgba(8, 10, 32, 0.82);
  backdrop-filter: blur(6px);
}
.crt-modal__dialog {
  position: relative;
  margin: 0;
  z-index: 1;
  max-width: min(90vw, 540px);
  max-height: 90vh;
  transform: scale(0.9) translateY(16px);
  transition: transform 0.42s var(--ease);
}
.crt-modal.is-open .crt-modal__dialog {
  transform: none;
}
.crt-modal__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
.crt-modal__close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease);
}
.crt-modal__close svg {
  width: 20px;
  height: 20px;
}
.crt-modal__close:hover {
  transform: rotate(90deg) scale(1.06);
}

/* ---------- Standards band ---------- */
.crt-standards {
  padding-block: clamp(52px, 7vw, 88px);
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}
.crt-standards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.crt-standards__copy h2 {
  margin: 6px 0 14px;
}
.crt-standards__copy p {
  font-family: var(--f-body);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 52ch;
}
.crt-standards__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.crt-standards__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}
.crt-standards__points svg {
  flex: none;
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 7px;
  color: #fff;
  background: var(--grad);
}

.crt-standards__chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.crt-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 18px;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.crt-chip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.crt-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.crt-chip:hover::before {
  transform: scaleY(1);
}
.crt-chip b {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.24rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.crt-chip span,
.crt-chip {
  font-family: var(--f-body);
}
.crt-chip {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- CTA band ---------- */
.crt-cta-band {
  padding-block: clamp(52px, 7vw, 86px);
}
.crt-cta-band__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--indigo-deep);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(30px, 5vw, 52px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.crt-cta-band__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.9;
  background: radial-gradient(
      90% 140% at 100% 0%,
      rgba(232, 37, 45, 0.45) 0%,
      transparent 55%
    ),
    radial-gradient(
      90% 140% at 0% 100%,
      rgba(61, 67, 196, 0.5) 0%,
      transparent 55%
    );
}
.crt-cta-band__inner .eyebrow {
  color: var(--red-2);
}
.crt-cta-band__inner h2 {
  font-family: var(--f-head);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.06;
  margin: 6px 0 12px;
  color: #fff;
}
.crt-cta-band__inner p {
  font-family: var(--f-body);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 48ch;
}
.crt-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}
.crt-cta-band__actions .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.crt-cta-band__actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .crt-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
  }
}
@media (max-width: 520px) {
  .crt-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .crt-modal,
  .crt-modal__dialog,
  .crt-modal__close,
  .crt-card,
  .crt-card__mat img,
  .crt-card__zoom,
  .crt-card__zoom span,
  .crt-card::before {
    transition: none;
  }
  .crt-card:hover {
    transform: none;
  }
}

/* ==========================================================================
   PRODUCTS PAGE (https://vam.net/riddi-siddhi-impex/product.html) — precision product cards.
   Page-scoped classes prefixed .prd-  so they never collide with existing
   home/about rules. Reuses the same tokens, fonts & palette.
   ========================================================================== */

/* ---------- Intro copy above the cards ---------- */
.prd-range {
  padding-block: clamp(50px, 7vw, 84px);
}
.prd-range .container {
  position: relative;
  z-index: 1;
}
.prd-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Card grid: 2 cards per row ---------- */
.prd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.6vw, 30px);
  margin-top: clamp(38px, 5vw, 54px);
}

/* ---------- Product card: horizontal (media left, content right) ---------- */
.prd-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease),
    border-color 0.32s var(--ease);
}
.prd-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

/* media panel with gradient + floating category tag */
.prd-card__media {
  position: relative;
  overflow: hidden;
  background: var(--indigo-deeper);
  min-height: 100%;
}
.prd-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.prd-card:hover .prd-card__media img {
  transform: scale(1.07);
}
.prd-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14, 17, 56, 0.2) 0%,
    rgba(14, 17, 56, 0.34) 50%,
    rgba(14, 17, 56, 0.62) 100%
  );
}
.prd-card__tag {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border-radius: var(--pill);
  padding: 7px 14px;
  box-shadow: 0 6px 18px rgba(23, 26, 77, 0.28);
}
/* product cutout badge centered in the media panel */
.prd-card__thumb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  overflow: hidden;
}
.prd-card__thumb img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

/* body */
.prd-card__body {
  display: flex;
  flex-direction: column;
  padding: 26px 26px 24px;
}
.prd-card__body h3 {
  font-size: 26px;
  margin: 0 0 16px;
  color: var(--ink);
  text-transform: capitalize;
}
.prd-card__body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 18px;
}

/* spec pills */
.prd-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.prd-specs span {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.76rem;
  padding: 6px 12px;
  border-radius: var(--pill);
  background: var(--paper-2);
  color: var(--indigo);
  border: 1px solid var(--line);
}

/* grade / type sub-links inside a card */
.prd-types {
  margin: 0 0 22px;
}
.prd-types__label {
  display: block;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 11px;
}
.prd-types__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.prd-types__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 11px 12px;
  border-radius: var(--pill);
  background: var(--paper-2);
  color: var(--indigo);
  border: 1px solid var(--line);
  transition: color 0.22s var(--ease), background 0.22s var(--ease),
    border-color 0.22s var(--ease);
}
.prd-types__list a:hover {
  color: #fff;
  background: var(--grad);
  border-color: transparent;
}

/* footer link */
.prd-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--indigo);
  transition: gap 0.28s var(--ease), color 0.28s var(--ease);
}
.prd-card__cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.28s var(--ease);
}
.prd-card:hover .prd-card__cta {
  color: var(--red);
  gap: 13px;
}
.prd-card:hover .prd-card__cta svg {
  transform: translateX(3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .prd-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  /* stack each card vertically: media on top, content below */
  .prd-card {
    grid-template-columns: 1fr;
  }
  .prd-card__media {
    min-height: 200px;
    aspect-ratio: 16/10;
  }
  .prd-types__list {
    grid-template-columns: 1fr;
  }
}

/* ============================ CONTACT PAGE ============================ */
.ct-section-form {
  padding-top: 50px;
}
.ct-section {
  position: relative;
  overflow: hidden;
}
.ct-section > .container {
  position: relative;
  z-index: 1;
}

.ct-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}
.ct-intro .h-sec {
  margin: 6px 0 12px;
  color: var(--ink);
}
.ct-intro p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

/* Split card */
.ct-card2 {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  background: var(--paper);
  border-radius: 26px;
  box-shadow: 0 34px 80px rgba(23, 26, 77, 0.16);
  position: relative;
}

/* Media side with floating info panel */
.ct-card2__media {
  position: relative;
  min-height: 560px;
  border-radius: 26px 0 0 26px;
  overflow: hidden;
}
.ct-card2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ct-card2__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(23, 26, 77, 0.1),
    rgba(23, 26, 77, 0.42)
  );
}

.ct-float {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  z-index: 4;
  width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 12px 26px;
  box-shadow: 0 26px 60px rgba(23, 26, 77, 0.22);
}
.ct-float__item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.ct-float__item:last-child {
  border-bottom: 0;
}
.ct-float__ic {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo));
  color: #fff;
}
.ct-float__ic svg {
  width: 20px;
  height: 20px;
}
.ct-float__body h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 5px;
}
.ct-float__body p,
.ct-float__body a {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
  display: block;
}
.ct-float__body a:hover {
  color: var(--red);
}

/* Form side */
.ct-card2__form {
  padding: 48px 46px 50px;
}
.ct-card2__form .h-sec {
  font-size: 34px;
  margin-bottom: 6px;
}
.ct-card2__form .ct-sub {
  color: var(--muted);
  margin: 0 0 26px;
  font-size: 15.5px;
}
.ct-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ct-field.full {
  grid-column: 1 / -1;
}
.ct-field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--ink);
}
.ct-field input,
.ct-field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #f5f6fb;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: #9aa0bd;
}
.ct-field input:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46, 49, 146, 0.12);
}
.ct-field textarea {
  resize: vertical;
  min-height: 132px;
}
.ct-form .btn {
  grid-column: 1 / -1;
  justify-self: stretch;
  text-align: center;
  justify-content: center;
  margin-top: 6px;
}

/* Map — full width / edge to edge */
.ct-map {
  margin-top: 80px;
  width: 100%;
}
.ct-map iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: saturate(1.05);
}

@media (max-width: 960px) {
  .ct-card2 {
    grid-template-columns: 1fr;
  }
  .ct-card2__media {
    min-height: 340px;
    border-radius: 26px 26px 0 0;
  }
  .ct-float {
    position: static;
    transform: none;
    width: auto;
    margin: -70px 22px 0;
    padding: 6px 24px;
  }
  .ct-map iframe {
    height: 380px;
  }
}
@media (max-width: 560px) {
  .ct-section {
    padding-block: 48px;
  }
  .ct-form {
    grid-template-columns: 1fr;
  }
  .ct-card2__form {
    padding: 34px 22px 36px;
  }
  .ct-map {
    margin-top: 44px;
  }
  .ct-map iframe {
    height: 320px;
  }
}
@media (min-width: 1270px) and (max-width: 1380px) {
    .ct-float {
        width: 415px;
    }
}