/* =========================================================
   SMA TECH — Premium redesign
   Palette (matched to the SMA TECH logo):
             ink #0A1220 · parchment #F3FAF6
             brand-green #00924B · brand-teal-green #3EBB83
             brand-blue #00AAFF
   Type:     Fraunces (display) / Inter (body) / IBM Plex Mono (utility)
   Signature: the "bridge" — a line-and-node motif standing in
              for the UK⇄Kochi delivery model, used as the divider
              system and as the hero diagram on the homepage.
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&display=swap');
:root {
  /* Logo-matched palette: deep green / teal-green / sky blue / ink */
  --ink: #0a1220;
  --ink-deep: #060b14;
  --thames: #00743c;
  --thames-soft: #00924b;
  --brass: #00aaff;
  --brass-light: #3ebb83;
  --brass-deep: #0089c9;
  --parchment: #f2faf6;
  --paper: #fffefb;
  --trent-green: #063724;
  --trent-green-soft: #0c5636;
  --slate: #5b6472;
  --line: rgba(0, 60, 35, 0.1);
  --gold-line: rgba(0, 170, 255, 0.35);
  --shadow-sm: 0 2px 12px rgba(6, 11, 20, 0.07);
  --shadow-md: 0 12px 32px rgba(6, 11, 20, 0.14);
  --shadow-lg: 0 28px 70px rgba(6, 11, 20, 0.24);
  --radius: 18px;

  /* mapped onto the site's existing design tokens */
  --navy-deep: var(--ink-deep);
  --paper-alt: var(--parchment);
  --white: #ffffff;
  --teal: var(--thames-soft);
  --teal-light: var(--brass-light);
  --teal-soft: rgba(0, 146, 75, 0.1);
  --gold: var(--brass);
  --gold-soft: var(--parchment);
  --line-dark: rgba(255, 255, 255, 0.16);
  --radius-sm: 10px;
  --radius-md: var(--radius);
  --radius-pill: 999px;
  --maxw: 1200px;
  --shadow-card: var(--shadow-md);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      ellipse 900px 500px at 85% -10%,
      rgba(0, 146, 75, 0.1),
      transparent 60%
    ),
    radial-gradient(
      ellipse 600px 400px at 8% 90%,
      rgba(0, 170, 255, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #fbfefc 0%, var(--parchment) 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  /* font-family:
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; */
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 1em;
  color: var(--slate);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  /* background: var(--teal); */
  display: inline-block;
}
.eyebrow.on-dark {
  color: var(--teal-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--thames);
}
.btn-gold {
  background: radial-gradient(circle at top left, rgb(0 116 60), #18a266);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--teal);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--ink);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--line-dark);
}
.btn-outline-light:hover {
  border-color: var(--white);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 18, 32, 0.7);
  z-index: 250;
}

.modal-backdrop.is-open {
  display: flex;
}

.modal-card {
  width: min(100%, 520px);
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  padding: 34px 32px;
  position: relative;
}

.modal-card h3 {
  margin-top: 0;
  font-size: 28px;
}

.modal-card p {
  margin: 0 0 22px;
  color: var(--slate);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 16px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.modal-form textarea {
  min-height: 140px;
  resize: vertical;
}

.modal-form .btn {
  width: 100%;
  justify-content: center;
}

.no-scroll {
  overflow: hidden;
}

/* ---------- Utility strip ---------- */
.utility-strip {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.utility-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2px;
  padding-bottom: 2px;
}
.utility-strip .clocks {
  display: flex;
  align-items: center;
  gap: 10px;
}
.utility-strip .node-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(62, 187, 131, 0.25);
}
.utility-strip .bridge-line {
  width: 46px;
  height: 1px;
  background: var(--line-dark);
  position: relative;
  overflow: hidden;
}
.utility-strip .bridge-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: var(--teal-light);
  animation: travel 3.4s linear infinite;
}
@keyframes travel {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}
.utility-strip .strip-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.utility-strip a:hover {
  color: #fff;
}

/* ---------- Header ---------- */
header.site-header {
  background: var(--paper);
  /* background-image:
    radial-gradient(
      120% 260% at 0% 0%,
      rgba(47, 168, 145, 0.1),
      transparent 55%
    ),
    radial-gradient(
      90% 220% at 100% 0%,
      rgba(185, 138, 50, 0.09),
      transparent 55%
    ),
    linear-gradient(rgba(11, 18, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.035) 1px, transparent 1px); */
  background-size:
    auto,
    auto,
    56px 56px,
    56px 56px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo img.logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.logo .wordmark {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo .wordmark span {
  color: var(--teal);
}
.logo .tagline {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
}
nav.main-nav ul {
  display: flex;
  gap: 36px;
}
nav.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
nav.main-nav a.active {
  color: var(--teal);
}
nav.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--teal);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.nav-phone svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* ---------- Divider / node motif ---------- */
.bridge-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.bridge-divider .ln {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.bridge-divider .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.bridge-divider.on-dark .ln {
  background: var(--line-dark);
}

/* ---------- Hero (generic inner pages) ---------- */
.page-hero {
  background: var(--ink);
  background-image:
    radial-gradient(
      60% 100% at 85% 0%,
      rgba(0, 146, 75, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, var(--ink), var(--navy-deep));
  color: var(--white);
  padding: 96px 0 74px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.7) 60%,
    transparent
  );
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: 52px;
  color: #fff;
  margin-bottom: 14px;
}
.page-hero p.lead {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  max-width: 560px;
}
.crumb {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 18px;
  display: block;
}

/* ---------- Home hero ---------- */
.home-hero {
  background: var(--ink) url("images/hero-bg.svg") center/cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
}
/* ---------- Hero photo layer (shared by home-hero & page-hero) ---------- */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      261deg,
      rgba(8, 9, 11, 0.25) 0%,
      rgb(8 9 11 / 76%) 70%,
      rgb(8 9 11 / 48%) 100%
    ),
    radial-gradient(55% 90% at 88% -10%, rgb(0 146 75 / 0%), transparent 60%),
    radial-gradient(40% 60% at 6% 105%, rgb(0 170 255 / 0%), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero-photo img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.8);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(70% 70% at 30% 30%, black, transparent 75%);
}
.home-hero .container {
  position: relative;
  z-index: 1;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 70px;
}
.home-hero h1 {
  font-size: 48px;
  color: #fff;
  max-width: 620px;
  margin-bottom: 22px;
}
.home-hero .lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* bridge diagram svg */
.bridge-diagram {
  position: relative;
}
.bridge-diagram .city-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: rgba(255, 255, 255, 0.55);
}
.bridge-diagram .city-name {
  font-family: "Fraunces", serif;
  font-size: 20px;
  fill: #fff;
  font-weight: 600;
}

.marquee-strip {
  background: var(--teal);
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.marquee-track {
  display: flex;
  gap: 52px;
  white-space: nowrap;
  width: max-content;
  animation: scrollmarquee 26s linear infinite;
}
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track span {
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
  background: #ffffff2b;
}
.marquee-track span:hover {
  color: var(--ink);
  background: var(--brass-light);
  transform: scale(1.06);
}
.marquee-track span:hover::before {
  color: var(--ink);
  opacity: 1;
}
.marquee-track span::before {
  content: "✳";
  color: var(--gold-soft);
  opacity: 0.85;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
@keyframes scrollmarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---------- Sections ---------- */
section {
  padding: 96px 0;
}
.section-tight {
  padding: 72px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: 38px;
}
.on-dark {
  color: #fff;
}
.on-dark h2 {
  color: #fff;
}
.on-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.bg-ink {
  background:
    radial-gradient(circle at top left, rgb(0 146 75 / 79%), transparent 38%),
    radial-gradient(circle at bottom right, rgb(5 162 95), transparent 34%),
    var(--ink);
  color: #fff;
  padding: 27px 0;
}
.section-pattern {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 146, 75, 0.2), transparent 34%),
    radial-gradient(
      circle at 100% 100%,
      rgba(176, 134, 43, 0.16),
      transparent 30%
    ),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    56px 56px,
    56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.section-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.section-pattern > .container {
  position: relative;
  z-index: 1;
}
.bg-alt {
  background: var(--paper-alt);
}
.bg-white {
  background: var(--white);
}

.bg-inks {
  background: var(--paper-alt);
  color: #fff;
}

/* welcome / split layout */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}
.split.reverse .visual {
  order: 2;
}

.visual-card {
  aspect-ratio: 9/10.1;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0f2a24, #0b1220 70%);
  border: 1px solid var(--line-dark);
}
.visual-card .grid-overlay {
  position: absolute;
  inset: 0;
  /* background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px); */
  background-size: 36px 36px;
}
.visual-card .plot {
  position: absolute;
  inset: 0;
}
.visual-card .frame-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.visual-card.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.95);
}
.visual-card.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.visual-card.has-photo .grid-overlay {
  z-index: 1;
  opacity: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 15px;
}
.check-list li:last-child {
  border-bottom: none;
}
.check-list .tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-list .tick svg {
  width: 11px;
  height: 11px;
}

.callout-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.callout-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}
.callout-phone .ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.callout-phone .ring svg {
  width: 18px;
  height: 18px;
}
.callout-phone .lbl {
  font-size: 12px;
  color: var(--slate);
}
.callout-phone .num {
  font-weight: 600;
  font-size: 15px;
}

/* ---------- Service cards ---------- */
.services-section {
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 146, 75, 0.16), transparent 30%),
    radial-gradient(
      circle at 90% 0%,
      rgba(176, 134, 43, 0.14),
      transparent 28%
    ),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    54px 54px,
    54px 54px;
  opacity: 0.9;
  pointer-events: none;
}
.services-section > .container {
  position: relative;
  z-index: 1;
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: transparent;
  border: 0;
  position: relative;
  overflow: visible;
  border-radius: 24px;
}
.grid-cards.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: linear-gradient(
    145deg,
    rgba(15, 20, 27, 0.96),
    rgba(10, 14, 20, 0.98)
  );
  padding: 38px 30px;
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.service-card::after {
  content: "Explore service";
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s ease;
  pointer-events: none;
}
.service-card:hover,
.service-card.is-active {
  background: var(--thames);
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 16px 36px rgba(0, 0, 0, 0.2);
}
.service-card:hover::after,
.service-card.is-active::after {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover .icon,
.service-card.is-active .icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.12);
}
.service-card .num {
  font-family: "IBM Plex Mono", monospace;
  color: rgb(255 255 255 / 40%);
  font-size: 34px;
  position: absolute;
  top: 26px;
  right: 28px;
}
.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgb(0 146 75 / 45%);
  color: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.service-card .icon svg {
  width: 22px;
  height: 22px;
}
.service-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.service-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-bottom: 0;
  max-width: 100%;
}
.service-card.empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card.empty span {
  font-family: "IBM Plex Mono", monospace;
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

/* ---------- Feature cards (light) ---------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: stretch;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  position: relative;
  box-shadow: var(--shadow-card);
  min-height: 220px;
  flex: 0 1 calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.feature-card:hover {
  background: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover .ficon {
  background: var(--teal);
  color: #fff;
}
.feature-card .fnum {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.feature-card .ficon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.feature-card .ficon svg {
  width: 22px;
  height: 22px;
}
.feature-card h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.45;
  margin-bottom: 0;
  color: var(--ink);
  text-align: left;
  display: flex;
  align-items: flex-start;
  min-height: 66px;
  width: 100%;
}

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.why-list li:last-child {
  border-bottom: none;
}
.why-list .wicon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-list .wicon svg {
  width: 18px;
  height: 18px;
}
.why-list .wtext {
  color: #fff;
  font-weight: 500;
  font-size: 15.5px;
}

/* ---------- Contact page ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.contact-info {
  background: var(--ink);
  color: #fff;
  padding: 50px 44px;
  position: relative;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
}
.contact-info h3 {
  color: #fff;
  font-size: 27px;
  max-width: 280px;
}
.contact-info .info-list {
  margin-top: 40px;
}
.contact-info .info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}
.contact-info .info-item:first-child {
  border-top: none;
}
.contact-info .iicon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info .iicon svg {
  width: 17px;
  height: 17px;
}
.contact-info .itext {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.contact-form {
  background: var(--white);
  padding: 50px 44px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.map-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.map-embed .map-label {
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
  filter: grayscale(0.15);
}
@media (max-width: 760px) {
  .map-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- About extras ---------- */
.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.mini-card:hover {
  background: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.mini-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent, var(--teal));
}
.mini-card .micon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.mini-card .micon svg {
  width: 20px;
  height: 20px;
}
.mini-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
footer.site-footer {
  position: relative;
  background: var(--navy-deep) url("images/footer-bg.svg") center/cover
    no-repeat;
  border-top: 1px solid var(--line-dark);
  padding-top: 76px;
}
footer.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 13, 22, 0.86) 0%,
    rgba(7, 13, 22, 0.93) 60%,
    rgba(7, 13, 22, 0.97) 100%
  );
  pointer-events: none;
}
footer.site-footer > * {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-grid .logo {
  margin-bottom: 18px;
}
.footer-grid .logo .wordmark {
  color: #fff;
}
.footer-grid .logo img.logo-img {
  height: 44px;
  width: 230px;
}
.footer-grid p {
  font-size: 14px;
  max-width: 290px;
  color: rgba(255, 255, 255, 0.62);
}
.footer-grid h5 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links li {
  padding: 6px 0;
}
.footer-links a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
}
.footer-links a:hover {
  color: var(--teal-light);
}
.footer-office {
  margin-bottom: 18px;
}
.footer-office .lbl {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}
.footer-office .lbl svg {
  width: 13px;
  height: 13px;
  color: var(--teal-light);
}
.footer-office .val {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  padding-left: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover {
  background: var(--teal-light);
}
.footer-social svg {
  width: 15px;
  height: 15px;
}
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .home-hero-grid,
  .split,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .split.reverse .visual {
    order: 0;
  }
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-cards.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid .feature-card {
    flex: 0 1 calc((100% - 20px) / 2);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .home-hero h1 {
    font-size: 42px;
  }
  .page-hero h1 {
    font-size: 38px;
  }
}
@media (max-width: 700px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 14px 32px 24px;
  }
  nav.main-nav.open {
    display: block;
  }
  nav.main-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  nav.main-nav li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  .menu-toggle {
    display: block;
  }
  .nav-phone {
    display: none;
  }
  .utility-strip .strip-right {
    gap: 12px;
  }
  .grid-cards,
  .grid-cards.cols-3 {
    grid-template-columns: 1fr;
  }
  .feature-grid .feature-card {
    flex: 0 1 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mini-cards {
    grid-template-columns: 1fr;
  }
  section {
    padding: 64px 0;
  }
  .home-hero h1 {
    font-size: 32px;
  }
  .section-head h2 {
    font-size: 28px;
  }
}

/* ---------- Scroll reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.9s cubic-bezier(0.16, 0.8, 0.24, 1),
    transform 0.9s cubic-bezier(0.16, 0.8, 0.24, 1);
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
  will-change: opacity, transform;
}
[data-reveal="up"] {
  transform: translateY(48px);
}
[data-reveal="down"] {
  transform: translateY(-48px);
}
[data-reveal="left"] {
  transform: translateX(-60px);
}
[data-reveal="right"] {
  transform: translateX(60px);
}
[data-reveal="zoom"] {
  transform: scale(0.92);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

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

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(255 255 255 / 6%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-socials a:hover {
  background: var(--teal-light);
}
.footer-socials svg {
  width: 15px;
  height: 15px;
}
/* .footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
} */
/* =========================================================
   PHASE 1 — PREMIUM HOVER EFFECTS
   ========================================================= */

/* ---------- Service Cards ---------- */

.service-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Soft animated glow */
.service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -90px;
  right: -90px;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.12);
  filter: blur(35px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
  pointer-events: none;
}

/* Bottom brand line */
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--teal),
    var(--brass),
    var(--teal-light)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* Main hover */
.service-card:hover,
.service-card.is-active {
  transform: translateY(-8px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 170, 255, 0.12);
}

/* Glow appears */
.service-card:hover::before,
.service-card.is-active::before {
  opacity: 1;
  transform: scale(1.25);
}

/* Bottom line appears */
.service-card:hover::after,
.service-card.is-active::after {
  transform: scaleX(1);
}

/* ---------- Service Icon ---------- */

.service-card .icon {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:hover .icon,
.service-card.is-active .icon {
  transform: translateY(-3px) scale(1.08) rotate(-3deg);
  background: linear-gradient(
    135deg,
    var(--teal),
    var(--brass)
  );
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 170, 255, 0.22);
}

/* Icon itself */
.service-card .icon svg {
  transition: transform 0.35s ease;
}

.service-card:hover .icon svg,
.service-card.is-active .icon svg {
  transform: scale(1.08);
}

/* ---------- Service Number ---------- */

.service-card .num {
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    opacity 0.35s ease;
}

.service-card:hover .num,
.service-card.is-active .num {
  transform: translateY(-3px);
  color: var(--brass);
}


/* =========================================================
   FEATURE CARDS — ABOUT PAGE
   ========================================================= */

.feature-card {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 170, 255, 0.12);
  border-color: rgba(0, 170, 255, 0.25);
}

/* Feature icon */
.feature-card .ficon {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-card:hover .ficon {
  transform: scale(1.12) rotate(5deg);
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 146, 75, 0.25);
}

/* Feature number */
.feature-card .fnum {
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.feature-card:hover .fnum {
  transform: translateY(-3px);
  color: var(--teal);
}


/* =========================================================
   IMAGE HOVER / ZOOM
   ========================================================= */

.visual-card.has-photo img {
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

.visual-card.has-photo:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) brightness(1);
}

/* Image overlay */
.visual-card.has-photo::after {
  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(6, 11, 20, 0.45) 100%
    );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.visual-card.has-photo:hover::after {
  opacity: 1;
}

/* Frame label animation */
.visual-card.has-photo .frame-label {
  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.visual-card.has-photo:hover .frame-label {
  transform: translateY(-5px);
  color: #fff;
}


/* =========================================================
   BUTTON HOVER
   ========================================================= */

.btn {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.btn-primary:hover {
  box-shadow:
    0 10px 28px rgba(0, 146, 75, 0.28);
}


/* =========================================================
   NAVBAR HOVER
   ========================================================= */

nav.main-nav a {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--teal),
    var(--brass)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

nav.main-nav a:hover {
  color: var(--teal);
}

nav.main-nav a:hover::after,
nav.main-nav a.active::after {
  transform: scaleX(1);
}

nav.main-nav a.active::after {
  background: var(--teal);
}


/* =========================================================
   LOGO HOVER
   ========================================================= */

.logo-img {
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.logo:hover .logo-img {
  transform: scale(1.04);
}
/* =========================================================
   PHASE 1 — STEP 2
   PREMIUM MICRO-INTERACTIONS
   ========================================================= */

/* ---------- Button Shine ---------- */

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn:hover::before {
  left: 140%;
}


/* ---------- Button Text ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


/* ---------- Animated Arrow ---------- */

.btn-arrow {
  display: inline-block;
  transition:
    transform 0.3s ease,
    margin-left 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}


/* =========================================================
   SERVICE CARD CONTENT MOVEMENT
   ========================================================= */

.service-card h3,
.service-card p {
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.service-card:hover h3 {
  transform: translateX(3px);
}

.service-card:hover p {
  transform: translateX(3px);
}


/* =========================================================
   FEATURE CARD PREMIUM GLOW
   ========================================================= */

.feature-card {
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -100px;
  right: -100px;
  border-radius: 50%;
  background: rgba(0, 146, 75, 0.10);
  filter: blur(35px);
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.5s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
  transform: scale(1.3);
}


/* =========================================================
   SOCIAL ICON HOVER
   ========================================================= */

.footer-social a,
.footer-socials a {
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.footer-social a:hover,
.footer-socials a:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.2);
}

.footer-social a svg,
.footer-socials a svg {
  transition: transform 0.3s ease;
}

.footer-social a:hover svg,
.footer-socials a:hover svg {
  transform: scale(1.1);
}


/* =========================================================
   PHONE / CONTACT HOVER
   ========================================================= */

.nav-phone {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.nav-phone:hover {
  color: var(--teal);
  transform: translateY(-2px);
}

.nav-phone svg {
  transition:
    transform 0.3s ease;
}

.nav-phone:hover svg {
  transform: rotate(-8deg) scale(1.08);
}


/* Callout phone */

.callout-phone {
  transition:
    transform 0.3s ease;
}

.callout-phone:hover {
  transform: translateX(4px);
}

.callout-phone .ring {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.callout-phone:hover .ring {
  transform: scale(1.08);
  box-shadow:
    0 0 0 6px rgba(0, 146, 75, 0.08);
}


/* =========================================================
   CHECK LIST HOVER
   ========================================================= */

.check-list li {
  transition:
    transform 0.25s ease,
    padding-left 0.25s ease;
}

.check-list li:hover {
  transform: translateX(4px);
}

.check-list .tick {
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.check-list li:hover .tick {
  transform: scale(1.12);
  background: var(--teal);
  color: #fff;
}


/* =========================================================
   REDUCE MOTION — ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .btn,
  .service-card,
  .feature-card,
  .visual-card.has-photo img,
  .footer-social a,
  .footer-socials a,
  .nav-phone,
  .callout-phone,
  .check-list li {
    transition: none !important;
  }

  .btn::before,
  .service-card::before,
  .feature-card::before {
    display: none !important;
  }
}

/* =========================================================
   PHASE 1 — STEP 3
   PREMIUM IMAGE EFFECTS
   ========================================================= */

/* Image card */
.visual-card.has-photo {
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

/* Lift the complete image card */
.visual-card.has-photo:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.20);
  border-color: rgba(0, 146, 75, 0.35);
}


/* ---------- Image Zoom ---------- */

.visual-card.has-photo img {
  transform: scale(1);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

.visual-card.has-photo:hover img {
  transform: scale(1.07);
  filter:
    saturate(1.08)
    brightness(1.02);
}


/* ---------- Elegant Dark Overlay ---------- */

.visual-card.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(5, 12, 18, 0.10) 65%,
      rgba(5, 12, 18, 0.60) 100%
    );

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.5s ease;
}

.visual-card.has-photo:hover::after {
  opacity: 1;
}


/* ---------- Image Grid Overlay ---------- */

.visual-card.has-photo .grid-overlay {
  opacity: 0;
  transition:
    opacity 0.5s ease;
  pointer-events: none;
}

.visual-card.has-photo:hover .grid-overlay {
  opacity: 0.18;
}


/* ---------- Frame Label ---------- */

.visual-card.has-photo .frame-label {
  z-index: 3;

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.4s ease,
    opacity 0.4s ease;
}

.visual-card.has-photo:hover .frame-label {
  transform: translateY(-6px);
  color: #fff;
}


/* =========================================================
   IMAGE CORNER ACCENT
   ========================================================= */

.visual-card.has-photo .frame-label::before {
  content: "";
  display: inline-block;

  width: 18px;
  height: 1px;

  margin-right: 8px;
  vertical-align: middle;

  background: var(--teal-light);

  transform: scaleX(0);
  transform-origin: left;

  transition:
    transform 0.4s ease;
}

.visual-card.has-photo:hover .frame-label::before {
  transform: scaleX(1);
}


/* =========================================================
   HERO IMAGE EFFECT
   ========================================================= */

.hero-photo {
  overflow: hidden;
}

.hero-photo img {
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
}

.page-hero:hover .hero-photo img {
  transform: scale(1.025);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .visual-card.has-photo:hover {
    transform: translateY(-3px);
  }

  .visual-card.has-photo:hover img {
    transform: scale(1.035);
  }

  .page-hero:hover .hero-photo img {
    transform: none;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .visual-card.has-photo,
  .visual-card.has-photo img,
  .hero-photo img {
    transition: none !important;
  }

  .visual-card.has-photo:hover,
  .visual-card.has-photo:hover img,
  .page-hero:hover .hero-photo img {
    transform: none !important;
  }
}
/* =========================================================
   PHASE 1 — STEP 4
   NAVBAR + MOBILE MENU POLISH
   ========================================================= */

/* ---------- Navbar links ---------- */

nav.main-nav a {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

nav.main-nav a:hover {
  transform: translateY(-2px);
}


/* ---------- Logo ---------- */

.logo {
  transition:
    transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-img {
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}


/* ---------- Header phone ---------- */

.nav-phone {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.nav-phone:hover {
  transform: translateY(-2px);
  color: var(--teal);
}

.nav-phone svg {
  transition:
    transform 0.35s ease;
}

.nav-phone:hover svg {
  transform: rotate(-10deg) scale(1.08);
}


/* =========================================================
   MOBILE HAMBURGER
   ========================================================= */

.menu-toggle {
  width: 42px;
  height: 42px;

  display: none;

  position: relative;

  align-items: center;
  justify-content: center;

  flex-direction: column;
  gap: 5px;

  border: 1px solid var(--line);
  border-radius: 8px;

  background: var(--white);
  cursor: pointer;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.menu-toggle:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  transform: translateY(-2px);
}


/* Hamburger lines */

.menu-toggle span {
  display: block;

  width: 20px;
  height: 2px;

  background: var(--ink);
  border-radius: 2px;

  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    width 0.35s ease;
}


/* =========================================================
   HAMBURGER → X
   ========================================================= */

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

@media (max-width: 700px) {

  .menu-toggle {
    display: flex;
  }

  nav.main-nav {
    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;

    display: block;
  }

  nav.main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav.main-nav li {
    opacity: 0;
    transform: translateX(-12px);

    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  nav.main-nav.open li {
    opacity: 1;
    transform: translateX(0);
  }

  nav.main-nav.open li:nth-child(1) {
    transition-delay: 0.05s;
  }

  nav.main-nav.open li:nth-child(2) {
    transition-delay: 0.10s;
  }

  nav.main-nav.open li:nth-child(3) {
    transition-delay: 0.15s;
  }

  nav.main-nav.open li:nth-child(4) {
    transition-delay: 0.20s;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .logo,
  .logo-img,
  .nav-phone,
  .nav-phone svg,
  .menu-toggle,
  .menu-toggle span,
  nav.main-nav,
  nav.main-nav li {
    transition: none !important;
  }

}
/* =========================================================
   PHASE 2 — STEP 1
   PREMIUM SCROLL REVEAL
   ========================================================= */

/* Initial hidden state */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Direction variations */
[data-reveal="left"] {
  transform: translateX(-35px);
}

[data-reveal="right"] {
  transform: translateX(35px);
}

[data-reveal="up"] {
  transform: translateY(30px);
}

[data-reveal="down"] {
  transform: translateY(-30px);
}

/* Visible state */
[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}


/* =========================================================
   STAGGER EXISTING CARDS
   ========================================================= */

[data-reveal-group] > [data-reveal]:nth-child(1) {
  transition-delay: 0.05s;
}

[data-reveal-group] > [data-reveal]:nth-child(2) {
  transition-delay: 0.12s;
}

[data-reveal-group] > [data-reveal]:nth-child(3) {
  transition-delay: 0.19s;
}

[data-reveal-group] > [data-reveal]:nth-child(4) {
  transition-delay: 0.26s;
}

[data-reveal-group] > [data-reveal]:nth-child(5) {
  transition-delay: 0.33s;
}

[data-reveal-group] > [data-reveal]:nth-child(6) {
  transition-delay: 0.40s;
}

[data-reveal-group] > [data-reveal]:nth-child(7) {
  transition-delay: 0.47s;
}

[data-reveal-group] > [data-reveal]:nth-child(8) {
  transition-delay: 0.54s;
}


/* =========================================================
   MOBILE — SMALLER MOVEMENT
   ========================================================= */

@media (max-width: 700px) {

  [data-reveal] {
    transform: translateY(20px);
  }

  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translateY(20px);
  }

  [data-reveal].is-visible {
    transform: translateY(0);
  }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  [data-reveal] {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }

}
/* =========================================================
   PHASE 2 — STEP 2
   PREMIUM CARD REVEAL + HOVER COMBINATION
   ========================================================= */

/* Cards start slightly smaller */
[data-reveal].service-card,
[data-reveal].feature-card {
  transform: translateY(30px) scale(0.97);
}

/* Once visible */
[data-reveal].service-card.is-visible,
[data-reveal].feature-card.is-visible {
  transform: translateY(0) scale(1);
}


/* =========================================================
   SERVICE CARD — EXTRA DEPTH
   ========================================================= */

.service-card {
  will-change: transform;
}

.service-card.is-visible {
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* Don't let the scroll animation interfere with hover */
.service-card.is-visible:hover {
  transform: translateY(-8px) scale(1);
}


/* =========================================================
   FEATURE CARD — EXTRA DEPTH
   ========================================================= */

.feature-card {
  will-change: transform;
}

.feature-card.is-visible {
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.feature-card.is-visible:hover {
  transform: translateY(-8px) scale(1);
}


/* =========================================================
   STAGGER — SERVICE CARDS
   ========================================================= */

[data-reveal-group] .service-card:nth-child(1) {
  transition-delay: 0.05s;
}

[data-reveal-group] .service-card:nth-child(2) {
  transition-delay: 0.12s;
}

[data-reveal-group] .service-card:nth-child(3) {
  transition-delay: 0.19s;
}

[data-reveal-group] .service-card:nth-child(4) {
  transition-delay: 0.26s;
}

[data-reveal-group] .service-card:nth-child(5) {
  transition-delay: 0.33s;
}

[data-reveal-group] .service-card:nth-child(6) {
  transition-delay: 0.40s;
}

[data-reveal-group] .service-card:nth-child(7) {
  transition-delay: 0.47s;
}

[data-reveal-group] .service-card:nth-child(8) {
  transition-delay: 0.54s;
}


/* =========================================================
   MOBILE — LESS MOVEMENT
   ========================================================= */

@media (max-width: 700px) {

  [data-reveal].service-card,
  [data-reveal].feature-card {
    transform: translateY(20px) scale(0.985);
  }

  [data-reveal].service-card.is-visible,
  [data-reveal].feature-card.is-visible {
    transform: translateY(0) scale(1);
  }

  .service-card.is-visible:hover,
  .feature-card.is-visible:hover {
    transform: translateY(-4px) scale(1);
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  [data-reveal].service-card,
  [data-reveal].feature-card {
    transform: none !important;
    transition: none !important;
  }

}
/* =========================================================
   PHASE 2 — STEP 3
   PREMIUM IMAGE LOADING
   ========================================================= */

/* Existing images */
img {
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 0.7s ease,
    filter 0.8s ease;
}

/* Loaded image */
img[src] {
  opacity: 1;
}

/* Images that are fully loaded */
img.loaded {
  opacity: 1;
  filter: blur(0);
}


/* =========================================================
   IMAGE CARDS
   ========================================================= */

.visual-card img,
.hero-photo img {
  transform: scale(1.01);
  transition:
    opacity 0.7s ease,
    filter 0.8s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-card:hover img,
.hero-photo:hover img {
  transform: scale(1.06);
}


/* =========================================================
   LOGO — DON'T BLUR
   ========================================================= */

.logo-img {
  opacity: 1 !important;
  filter: none !important;
}


/* =========================================================
   SVG ICONS — DON'T AFFECT
   ========================================================= */

svg {
  opacity: 1;
  filter: none;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  img {
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }

  .visual-card img,
  .hero-photo img {
    transform: none !important;
  }

}
/* =========================================================
   PHASE 2 — STEP 4
   FLOATING WHATSAPP BUTTON
   ========================================================= */

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 94px;

  z-index: 9999;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25d366;
  color: #fff;

  text-decoration: none;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.20);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  animation: whatsappPulse 2.8s infinite;
}


/* WhatsApp icon */

.floating-whatsapp svg {
  width: 28px;
  height: 28px;

  flex-shrink: 0;

  opacity: 1 !important;
  filter: none !important;

  transition:
    transform 0.3s ease;
}


/* Text hidden initially */

.whatsapp-text {
  max-width: 0;

  overflow: hidden;

  white-space: nowrap;

  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.05em;

  opacity: 0;

  transition:
    max-width 0.35s ease,
    opacity 0.25s ease;
}


/* ---------- Hover ---------- */

.floating-whatsapp:hover {
  width: 58px;
  height: 58px;
  border-radius: 50%;

  transform: translateY(-4px);

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.25);

  animation: none;
}

.floating-whatsapp:hover svg {
  transform: scale(1.08);
}

/* Never show "Chat with us" */
.floating-whatsapp .whatsapp-text {
  display: none !important;
}


/* ---------- Pulse ---------- */

@keyframes whatsappPulse {

  0% {
    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.20),
      0 0 0 0 rgba(37, 211, 102, 0.35);
  }

  70% {
    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.20),
      0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.20),
      0 0 0 0 rgba(37, 211, 102, 0);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .floating-whatsapp {
    right: 16px;
    bottom: 78px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp:hover {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    transform: translateY(-3px);
  }

  .whatsapp-text {
    display: none !important;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .floating-whatsapp {
    animation: none !important;
    transition: none !important;
  }

}
/* =========================================================
   PHASE 2 — STEP 5
   BACK TO TOP BUTTON
   ========================================================= */

.back-to-top {
  position: fixed;

  right: 24px;
  bottom: 24px;

  z-index: 9998;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);
  border-radius: 50%;

  background: var(--white);
  color: var(--ink);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.15);

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* Visible state */

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Icon */

.back-to-top svg {
  width: 19px;
  height: 19px;

  transition:
    transform 0.3s ease;
}


/* Hover */

.back-to-top:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);

  transform: translateY(-4px);

  box-shadow:
    0 12px 28px rgba(0, 146, 75, 0.25);
}

.back-to-top:hover svg {
  transform: translateY(-3px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .back-to-top {
    right: 16px;
    bottom: 18px;

    width: 42px;
    height: 42px;
  }

  .back-to-top svg {
    width: 17px;
    height: 17px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .back-to-top {
    transition: none !important;
  }

}
/* =========================================================
   PHASE 2 — STEP 6
   PREMIUM CONTACT FORM
   ========================================================= */

/* Form field container */
.form-field {
  position: relative;
}

/* Inputs, select and textarea */
.form-field input,
.form-field select,
.form-field textarea {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    transform 0.25s ease;
}

/* Focus */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);

  background: #fff;

  box-shadow:
    0 0 0 3px rgba(0, 146, 75, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.05);

  transform: translateY(-1px);

  outline: none;
}


/* Label */
.form-field label {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.form-field:focus-within label {
  color: var(--teal);
  transform: translateY(-2px);
}


/* Textarea */
.form-field textarea {
  min-height: 150px;
  resize: vertical;
}


/* Select */
.form-field select {
  cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.contact-form .btn-primary {
  position: relative;
  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 28px rgba(0, 146, 75, 0.25);
}

.contact-form .btn-primary:active {
  transform: translateY(0);
}


/* =========================================================
   INVALID FIELD
   ========================================================= */

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(190, 60, 60, 0.6);
}

.form-field input:invalid:not(:placeholder-shown):focus,
.form-field textarea:invalid:not(:placeholder-shown):focus {
  box-shadow:
    0 0 0 3px rgba(190, 60, 60, 0.08);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    transform: none;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .form-field input,
  .form-field select,
  .form-field textarea,
  .form-field label,
  .contact-form .btn-primary {
    transition: none !important;
  }

}
/* =========================================================
   FIX SERVICE CARD EXPLORE LINK
   ========================================================= */

/* Disable old pseudo-element */
.service-card::after {
  content: none !important;
}


/* Real clickable Explore Service link */
.service-card .service-link {
  position: absolute;

  right: 24px;
  bottom: 24px;

  z-index: 10;

  display: inline-flex;
  align-items: center;

  padding: 7px 11px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.82);

  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  text-decoration: none;

  opacity: 0;
  transform: translateY(8px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}


/* Show on hover */
.service-card:hover .service-link,
.service-card.is-active .service-link {
  opacity: 1;
  transform: translateY(0);
}


/* Link hover */
.service-card .service-link:hover {
  background: var(--teal);
  border-color: var(--teal);

  color: #fff;

  transform: translateY(-2px);
}
/* =========================================================
   SERVICE LINK — FIXED BOTTOM RIGHT
   ========================================================= */

.service-card .service-link {
  position: absolute !important;

  right: 24px !important;
  bottom: 20px !important;

  top: auto !important;
  left: auto !important;

  z-index: 20;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 12px;

  margin: 0 !important;

  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.85);

  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  text-decoration: none;

  opacity: 0;
  visibility: hidden;

  transform: translateY(8px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}


/* Show only when card is hovered/active */

.service-card:hover .service-link,
.service-card.is-active .service-link {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Button hover */

.service-card .service-link:hover {
  background: var(--teal);
  border-color: var(--teal);

  color: #fff;

  transform: translateY(-2px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .service-card .service-link {
    right: 18px !important;
    bottom: 18px !important;
  }

}
.service-card::after {
  content: none !important;
}
/* =========================================
   FINAL SERVICE CARD LINK
   ========================================= */

.service-card {
    position: relative;
}

/* Remove old "Explore service" generated text */
.service-card::after {
    content: none !important;
}

/* Explore Service button */
.service-card .service-link {
    position: absolute !important;
    right: 22px !important;
    bottom: 20px !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    padding: 7px 12px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);
    color: #fff;

    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    text-decoration: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    z-index: 100;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

/* Show button on hover */
.service-card:hover .service-link,
.service-card.is-active .service-link {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Button hover */
.service-card .service-link:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

/* Make sure link can be clicked */
.service-card .service-link {
    pointer-events: auto !important;
}
/* =========================================================
   PREMIUM POPULAR FEATURES SECTION
   ========================================================= */

.bg-alt {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(0, 146, 75, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(0, 170, 255, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f5fcf8 0%,
            #eef8f4 50%,
            #f8fcfa 100%
        );
}

/* Section heading */
.bg-alt .section-head {
    margin-bottom: 60px;
}

.bg-alt .section-head .eyebrow {
    color: var(--teal);
    font-weight: 600;
}

.bg-alt .section-head h2 {
    font-size: 42px;
    letter-spacing: -0.025em;
}

/* Feature layout */
.feature-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    align-items: stretch;
}

/* Cards */
.feature-card {
    grid-column: span 2;

    min-height: 245px;
    padding: 30px 28px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.98),
            rgba(247,252,249,0.95)
        ) !important;

    border: 1px solid rgba(0, 146, 75, 0.10) !important;
    border-radius: 24px !important;

    position: relative;
    overflow: hidden;

    box-shadow:
        0 12px 30px rgba(10, 50, 30, 0.07),
        0 2px 6px rgba(10, 50, 30, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Make the last two cards centered */
.feature-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.feature-card:nth-child(5) {
    grid-column: 4 / span 2;
}

/* Decorative glow */
.feature-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -70px;

    background: rgba(0, 146, 75, 0.08);
    border-radius: 50%;

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

/* Small top accent */
.feature-card::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;

    width: 45px;
    height: 3px;

    background: linear-gradient(
        90deg,
        var(--teal),
        var(--brass)
    );

    border-radius: 0 0 5px 5px;

    opacity: 0.8;
}

/* Hover */
.feature-card:hover {
    transform: translateY(-8px) !important;

    border-color: rgba(0, 146, 75, 0.25) !important;

    box-shadow:
        0 22px 45px rgba(10, 50, 30, 0.13),
        0 5px 12px rgba(10, 50, 30, 0.06) !important;
}

.feature-card:hover::before {
    transform: scale(1.5);
    background: rgba(0, 146, 75, 0.12);
}

/* Icon */
.feature-card .ficon {
    width: 54px !important;
    height: 54px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px !important;

    background:
        linear-gradient(
            135deg,
            rgba(0, 146, 75, 0.12),
            rgba(62, 187, 131, 0.20)
        ) !important;

    color: var(--teal) !important;

    margin-bottom: 30px !important;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.feature-card .ficon svg {
    width: 24px;
    height: 24px;
}

.feature-card:hover .ficon {
    transform: translateY(-3px) scale(1.08) !important;

    background: linear-gradient(
        135deg,
        var(--teal),
        #16a765
    ) !important;

    color: #fff !important;

    box-shadow:
        0 10px 22px rgba(0, 146, 75, 0.25);
}

/* Number */
.feature-card .fnum {
    top: 27px !important;
    right: 28px !important;

    font-size: 11px !important;
    font-weight: 600;

    color: var(--brass) !important;

    opacity: 0.9;
}

/* Heading */
.feature-card h4 {
    position: relative;
    z-index: 2;

    font-family: "Inter", sans-serif !important;

    font-size: 17px !important;
    line-height: 1.55 !important;

    font-weight: 650 !important;

    max-width: 330px;

    color: var(--ink) !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

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

    .feature-card,
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        grid-column: span 1;
    }

    .bg-alt .section-head h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {

    .bg-alt .section-head {
        margin-bottom: 40px;
    }

    .bg-alt .section-head h2 {
        font-size: 30px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card,
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        grid-column: span 1;
    }

    .feature-card {
        min-height: 210px;
        padding: 26px 24px !important;
    }
}
/* =========================================================
   POPULAR FEATURES — PREMIUM OUTER FRAME
   ========================================================= */

.bg-alt {
    position: relative;
    background: #f4f9f7;
    overflow: hidden;
}

/* Main rounded frame */
.bg-alt > .container {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 252, 250, 0.96)
        );

    border: 1px solid rgba(0, 146, 75, 0.12);

    border-radius: 30px;

    box-shadow:
        0 20px 60px rgba(10, 50, 30, 0.08),
        0 4px 18px rgba(10, 50, 30, 0.04);

    overflow: hidden;
}


/* =========================================================
   SOFT DECORATIVE GLOW
   ========================================================= */

.bg-alt > .container::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -150px;
    right: -120px;

    background:
        radial-gradient(
            circle,
            rgba(0, 146, 75, 0.10),
            transparent 68%
        );

    border-radius: 50%;

    pointer-events: none;
}


/* Bottom-left soft glow */
.bg-alt > .container::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -220px;
    left: -160px;

    background:
        radial-gradient(
            circle,
            rgba(0, 170, 255, 0.06),
            transparent 68%
        );

    border-radius: 50%;

    pointer-events: none;
}


/* Keep content above decorative effects */
.bg-alt > .container > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING AREA
   ========================================================= */

.bg-alt .section-head {
    padding-top: 20px;
}


/* Small elegant line under eyebrow */
.bg-alt .eyebrow {
    position: relative;
}

.bg-alt .eyebrow::before {
    content: "";

    display: inline-block;

    width: 32px;
    height: 1px;

    margin-right: 10px;

    vertical-align: middle;

    background: var(--teal);

    opacity: 0.8;
}


/* =========================================================
   FEATURE GRID
   ========================================================= */

.bg-alt .feature-grid {
    position: relative;

    padding-top: 10px;
    padding-bottom: 20px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .bg-alt > .container {
        border-radius: 22px;

        margin-left: 14px;
        margin-right: 14px;

        width: auto;
    }

    .bg-alt .section-head {
        padding-top: 10px;
    }

}
/* =========================================================
   POPULAR FEATURES — WIDTH & BOTTOM SPACING
   ========================================================= */

.bg-alt > .container {
    width: calc(100% - 80px);
    max-width: 1500px;

    padding-bottom: 40px;
}


/* Give the feature grid a little more breathing room */
.bg-alt .feature-grid {
    margin-bottom: 5px;
}


/* Desktop */
@media (min-width: 1200px) {
    .bg-alt > .container {
        width: calc(100% - 60px);
        max-width: 1550px;
        padding-bottom: 25px;
    }
}


/* Tablet */
@media (max-width: 1000px) {
    .bg-alt > .container {
        width: calc(100% - 40px);
        padding-bottom: 60px;
    }
}


/* Mobile */
@media (max-width: 700px) {
    .bg-alt > .container {
        width: calc(100% - 28px);
        padding-bottom: 45px;
    }
}
.bg-alt {
    padding-bottom: 55px !important;
}
/* Reduce top space before Popular Features */
.bg-alt {
    padding-top: 55px !important;
}

/* =========================================================
   FEATURE CARD — SUBTLE GREEN LIGHT SWEEP
   ========================================================= */

.feature-card {
    position: relative;
    overflow: hidden;
}

/* Green light */
.feature-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: -80px;

    width: 55px;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 190, 100, 0.16),
        transparent
    );

    filter: blur(8px);

    opacity: 0;

    transform: skewX(-12deg);

    pointer-events: none;

    z-index: 1;
}


/* Light passes when hovering */
.feature-card:hover::before {
    opacity: 1;

    animation: featureLightSweep 1s ease-out forwards;
}


/* Light movement */
@keyframes featureLightSweep {

    0% {
        left: -80px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    100% {
        left: 45%;
        opacity: 0;
    }
}


/* Keep card content above the light */
.feature-card > * {
    position: relative;
    z-index: 2;
}

/* =========================================================
   WHY CHOOSE US - SUBTLE GREEN LIGHT HOVER
   ========================================================= */

.why-list li {
    position: relative;
    overflow: hidden;
}


/* Small green light */
.why-list li::before {
    content: "";

    position: absolute;
    left: -60px;
    top: 0;

    width: 45px;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 190, 100, 0.35),
        transparent
    );

    filter: blur(5px);

    opacity: 0;

    transform: skewX(-12deg);

    pointer-events: none;
    z-index: 1;
}


/* Start the light when hovering */
.why-list li:hover::before {
    opacity: 1;
    animation: whyGreenLight 0.8s ease-out;
}


/* Light moves from left to right */
@keyframes whyGreenLight {
    0% {
        left: -60px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    100% {
        left: 45%;
        opacity: 0;
    }
}


/* Keep icon and text above the light */
.why-list .wicon,
.why-list .wtext {
    position: relative;
    z-index: 2;
}

/* Smooth movement */
.why-list .wicon,
.why-list .wtext {
    transition: transform 0.25s ease;
}

/* Move slightly upward on hover */
.why-list li:hover .wicon,
.why-list li:hover .wtext {
    transform: translateY(-3px);
}
/* =========================================================
   BACK TO TOP — THIN CIRCLE STYLE
   ========================================================= */

.back-to-top {
    width: 60px !important;
    height: 60px !important;

    right: 28px !important;
    bottom: 28px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #009fe3 !important;
    border-radius: 50% !important;

    background: transparent !important;

    color: #009fe3 !important;

    box-shadow: none !important;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


/* Visible */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Arrow */
.back-to-top svg {
    width: 20px !important;
    height: 20px !important;

    stroke-width: 1.5 !important;

    transition:
        transform 0.3s ease;
}


/* Remove the long vertical arrow line */
.back-to-top svg path:first-child {
    display: none;
}


/* Keep only the chevron */
.back-to-top svg path:last-child {
    display: block;
}


/* Hover */
.back-to-top:hover {
    background: rgba(0, 159, 227, 0.05) !important;

    color: #009fe3 !important;

    border-color: #009fe3 !important;

    transform: translateY(-3px) !important;

    box-shadow:
        0 8px 22px rgba(0, 159, 227, 0.12) !important;
}


.back-to-top:hover svg {
    transform: translateY(-2px);
}


/* Mobile */
@media (max-width: 700px) {

    .back-to-top {
        width: 52px !important;
        height: 52px !important;

        right: 18px !important;
        bottom: 18px !important;
    }

    .back-to-top svg {
        width: 18px !important;
        height: 18px !important;
    }
}
/* =========================================================
   MOBILE HAMBURGER — FIX VISIBILITY
   ========================================================= */

@media (max-width: 700px) {

    .menu-toggle {
        width: 42px !important;
        height: 38px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;

        gap: 5px !important;

        padding: 0 !important;
        margin: 0 !important;

        background: #ffffff !important;
        border: 1px solid #62c99b !important;
        border-radius: 7px !important;

        box-sizing: border-box !important;
    }

    .menu-toggle span {
        width: 19px !important;
        height: 2px !important;

        display: block !important;

        background: #263238 !important;
        border-radius: 2px !important;

        opacity: 1 !important;
        visibility: visible !important;
    }
}
@media (max-width: 700px) {

    .menu-toggle {
        width: 38px !important;
        height: 38px !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;

        gap: 5px !important;

        padding: 0 !important;
        margin: 0 !important;

        background: #ffffff !important;
        border: 1px solid #59c995 !important;
        border-radius: 6px !important;

        box-sizing: border-box !important;
    }

    .menu-toggle span {
        display: block !important;

        width: 18px !important;
        height: 2px !important;

        min-width: 18px !important;
        min-height: 2px !important;

        margin: 0 !important;
        padding: 0 !important;

        background-color: #18212b !important;

        border: none !important;
        border-radius: 2px !important;

        opacity: 1 !important;
        visibility: visible !important;
    }
}
/* Expanded Feature Card Content */
.feature-card h4 {
  margin-bottom: 16px;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #667085;
  max-width: 520px;
}
.feature-card p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0 0;
  max-width: 95%;
}
/* Reduce vertical spacing inside About Us feature cards */
.feature-card {
    padding: 34px !important;
}

/* Expanded Feature Card Content */
.feature-card h4 {
    min-height: auto !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

.feature-card p {
    margin: 0 !important;
    font-size: 15px;
    line-height: 1.6;
    color: #667085;
    max-width: 520px;
}
/* =========================================================
   SERVICE IMAGE HOVER CARDS
   ========================================================= */

.service-card {
    position: relative;
    height: 430px;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 14px;
    background: #111820;
    cursor: pointer;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* IMAGE */

.service-card .service-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: none !important;

    transition:
        transform 0.6s ease,
        filter 0.5s ease;
}


/* DARK OVERLAY */

.service-card .service-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(5, 10, 18, 0.95) 0%,
        rgba(5, 10, 18, 0.20) 65%,
        rgba(5, 10, 18, 0.05) 100%
    );

    transition: background 0.5s ease;
}


/* NUMBER */

.service-card .num {
    position: absolute;

    top: 20px;
    right: 22px;

    z-index: 5;

    color: #ffffff;
    font-size: 14px;
}


/* CONTENT */

.service-card .service-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5;

    padding: 28px;

    transition:
        transform 0.5s ease;
}


/* ICON */

.service-card .icon {
    width: 52px;
    height: 52px;

    margin-bottom: 18px;

    background: #ffffff;
    color: #00924b;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}

.service-card .icon svg {
    width: 25px;
    height: 25px;
}


/* SERVICE NAME */

.service-card h3 {
    margin: 0;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.2;

    transition:
        transform 0.4s ease;
}


/* DESCRIPTION HIDDEN */

.service-card p {
    max-height: 0;

    opacity: 0;

    overflow: hidden;

    margin: 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 15px;
    line-height: 1.7;

    transform: translateY(20px);

    transition:
        max-height 0.5s ease,
        opacity 0.4s ease,
        transform 0.5s ease,
        margin-top 0.5s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.35);
}


/* IMAGE ZOOM */

.service-card:hover .service-image {
    transform: scale(1.08);

    filter: blur(4px) brightness(0.45) !important;
}


/* DARKER OVERLAY */

.service-card:hover .service-overlay {
    background: linear-gradient(
        to top,
        rgba(3, 10, 18, 0.98) 0%,
        rgba(3, 10, 18, 0.78) 55%,
        rgba(3, 10, 18, 0.35) 100%
    );
}


/* MOVE CONTENT UP */

.service-card:hover .service-content {
    transform: translateY(-15px);
}


/* ICON */

.service-card:hover .icon {
    background: #ffffff;
    color: #00924b;

    transform: translateY(-5px);
}


/* DESCRIPTION APPEARS */

.service-card:hover p {
    max-height: 180px;

    opacity: 1;

    transform: translateY(0);

    margin-top: 16px;
}


/* MOBILE */

@media (max-width: 768px) {

    .service-card {
        height: 380px;
    }

    .service-card p {
        max-height: none;
        opacity: 1;
        transform: none;
        margin-top: 12px;
    }

    .service-card .service-content {
        transform: none;
    }

}
/* =========================================================
   HOME PAGE SERVICE CARDS
   Image normal → Blur on hover → Content appears
   ========================================================= */

.home-service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* CARD */

.home-service-card {
    position: relative;
    height: 390px;
    min-height: 390px;

    overflow: hidden;
    border-radius: 20px;

    background: #101720;
    border: 1px solid rgba(255, 255, 255, 0.08);

    isolation: isolate;

    cursor: pointer;
}


/* BACKGROUND IMAGE */

.home-service-card .service-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    filter: none;

    transform: scale(1);

    transition:
        transform 0.6s ease,
        filter 0.5s ease;
    
    z-index: -2;
}


/* DARK GRADIENT */

.home-service-card .service-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(4, 9, 15, 0.95) 0%,
            rgba(4, 9, 15, 0.55) 45%,
            rgba(4, 9, 15, 0.10) 100%
        );

    z-index: -1;

    transition:
        background 0.5s ease;
}


/* NUMBER */

.home-service-card .service-num {
    position: absolute;

    top: 20px;
    right: 20px;

    font-family: "IBM Plex Mono", monospace;
    font-size: 14px;

    color: #ffffff;

    opacity: 0.9;

    z-index: 3;

    transition: color 0.4s ease;
}


/* CONTENT */

.home-service-card .service-content {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    z-index: 3;

    transition:
        transform 0.5s ease;
}


/* ICON */

.home-service-card .icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #009c55;

    border-radius: 12px;

    margin-bottom: 20px;

    transition:
        transform 0.45s ease,
        background 0.4s ease,
        color 0.4s ease;
}

.home-service-card .icon svg {
    width: 25px;
    height: 25px;
}


/* SERVICE TITLE */

.home-service-card h3 {
    margin: 0;

    color: #ffffff;

    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;

    transition:
        transform 0.45s ease;
}


/* DESCRIPTION */

.home-service-card p {
    margin: 0;

    margin-top: 14px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 16px;
    line-height: 1.6;

    max-width: 440px;

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}


/* EXPLORE LINK */

.home-service-card .service-link {
    display: inline-block;

    margin-top: 16px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    text-decoration: none;

    opacity: 0;
    transform: translateY(15px);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.home-service-card:hover .service-bg {
    transform: scale(1.08);

    /* IMAGE SHARP NORMAL → BLUR ON HOVER */
    filter: blur(5px) brightness(0.42);
}


.home-service-card:hover .service-overlay {
    background:
        linear-gradient(
            to top,
            rgba(2, 8, 13, 0.97) 0%,
            rgba(2, 8, 13, 0.75) 55%,
            rgba(2, 8, 13, 0.45) 100%
        );
}


.home-service-card:hover .service-content {
    transform: translateY(-5px);
}


.home-service-card:hover .icon {
    transform: translateY(-3px);

    background: #ffffff;
    color: #00a85a;
}


.home-service-card:hover h3 {
    transform: translateY(-2px);
}


.home-service-card:hover p {
    opacity: 1;

    transform: translateY(0);
}


.home-service-card:hover .service-link {
    opacity: 1;

    transform: translateY(0);
}


.home-service-card:hover .service-num {
    color: #00a85a;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

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

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .home-service-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-service-card {
        height: 360px;
        min-height: 360px;
    }

    .home-service-card h3 {
        font-size: 23px;
    }

    .home-service-card p {
        font-size: 15px;
    }

}
/* =========================================================
   HOME SERVICES - FINAL ADJUSTMENTS
   ========================================================= */

/* 1. Make the cards area wider */
.services-section > .container {
    max-width: 1500px;
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
}


/* Keep the heading centered properly */
.services-section .section-head {
    width: 100%;
}


/* 2. Make cards slightly wider */
.home-service-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* 3. Prevent hover content from overlapping */
.home-service-card .service-content {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    transition: transform 0.5s ease;
}


/* Icon spacing */
.home-service-card .icon {
    flex-shrink: 0;
    margin-bottom: 16px;
}


/* Service title */
.home-service-card h3 {
    margin: 0;
    line-height: 1.15;
}


/* Description */
.home-service-card p {
    margin: 12px 0 0 0;

    line-height: 1.5;

    max-width: 100%;

    opacity: 0;
    transform: translateY(15px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* Explore button */
.home-service-card .service-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 18px;

    padding: 10px 18px;

    background: #00a85a;
    color: #ffffff;

    border-radius: 22px;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;

    text-decoration: none;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease;

    z-index: 10;
}


/* SHOW BUTTON ONLY AFTER DESCRIPTION APPEARS */

.home-service-card:hover .service-link {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* DESCRIPTION */

.home-service-card p {
    position: relative;

    margin-top: 12px;
    margin-bottom: 0;

    line-height: 1.5;

    max-width: 100%;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease;

    z-index: 5;
}


/* SHOW DESCRIPTION */

.home-service-card:hover p {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}




/* Hover Explore button */



/* Button hover */
.home-service-card .service-link:hover {
    background: #00c267;
}


/* =========================================================
   DESKTOP - EXTRA WIDE
   ========================================================= */

@media (min-width: 1400px) {

    .services-section > .container {
        max-width: 1500px;
        width: calc(100% - 70px);
    }

    .home-service-card {
        height: 420px;
        min-height: 420px;
    }

}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .services-section > .container {
        width: calc(100% - 40px);
    }

    .home-service-card {
        height: 400px;
        min-height: 400px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .services-section > .container {
        width: calc(100% - 30px);
    }

    .home-service-cards {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        height: 360px;
        min-height: 360px;
    }

}
/* =========================================================
   FINAL FIX - HOME PAGE SERVICE CARD EXPLORE BUTTON
   ========================================================= */

/* Keep the whole hover content in normal flow */
.home-service-card .service-content {
    position: absolute !important;

    left: 28px !important;
    right: 28px !important;
    bottom: 28px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    z-index: 50 !important;
}


/* Description */
.home-service-card .service-content p {
    position: relative !important;

    margin: 12px 0 0 0 !important;

    max-width: 100% !important;

    line-height: 1.5 !important;

    opacity: 0 !important;
    visibility: hidden !important;

    transform: translateY(12px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease;
}


/* Description appears first */
.home-service-card:hover .service-content p {
    opacity: 1 !important;
    visibility: visible !important;

    transform: translateY(0);
}


/* =========================================================
   EXPLORE BUTTON
   IMPORTANT: override old position:absolute !important
   ========================================================= */

.home-service-card .service-link {
    position: relative !important;

    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    margin-top: 16px !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 9px 16px !important;

    background: #00a85a !important;
    border: none !important;
    border-radius: 22px !important;

    color: #ffffff !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    line-height: 1 !important;
    letter-spacing: 0.08em !important;

    white-space: nowrap !important;

    text-decoration: none !important;

    opacity: 0 !important;
    visibility: hidden !important;

    transform: translateY(12px) !important;

    z-index: 100 !important;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease,
        background 0.25s ease !important;
}


/* Button appears underneath description */
.home-service-card:hover .service-link {
    opacity: 1 !important;
    visibility: visible !important;

    transform: translateY(0) !important;
}


/* Button hover */
.home-service-card .service-link:hover {
    background: #00c267 !important;

    transform: translateY(-2px) !important;
}


/* =========================================================
   MAKE SURE THE TITLE DOESN'T COLLIDE
   ========================================================= */

.home-service-card .service-content h3 {
    position: relative !important;

    margin: 0 !important;

    line-height: 1.15 !important;
}


/* Icon spacing */
.home-service-card .service-content .icon {
    margin-bottom: 16px !important;
}


/* =========================================================
   GIVE HOVER CONTENT ENOUGH ROOM
   ========================================================= */

.home-service-card {
    height: 420px !important;
    min-height: 420px !important;
}
/* =========================================================
   MOBILE HEADER ONLY
   ========================================================= */

@media (max-width: 700px) {

    /* REMOVE BLACK SOCIAL / EMAIL BAR */
    .utility-strip {
        display: none !important;
    }

    /* MOBILE HEADER CONTAINER */
    .site-header .container.nav-row {
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    /* REDUCE LOGO SIZE */
    .site-header .logo-img {
        height: 34px !important;
        width: auto !important;
        max-width: 160px !important;
    }

    /* REMOVE GET IN TOUCH BUTTON */
    .site-header .nav-actions .btn-sm {
        display: none !important;
    }

    /* KEEP HAMBURGER ON RIGHT */
    .site-header .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0 !important;
        margin-right: 0 !important;
    }

    /* HAMBURGER */
    .site-header .menu-toggle {
        display: flex !important;
        width: 42px !important;
        height: 42px !important;
        padding: 6px !important;
        margin-right: 0 !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* LOGO LEFT SPACE */
    .site-header .logo {
        margin-left: 2px !important;
    }

}
.home-hero h1 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-weight: 600 !important;
    font-size: 52px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.025em !important;
    color: #ffffff !important;
}
@media (max-width: 700px) {
    .home-hero h1 {
        font-size: 32px !important;
        line-height: 1.12 !important;
    }
}
.amp {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
}
/* Hero text - slow one-by-one fade in */

.hero-content .eyebrow {
    opacity: 0;
    animation: heroFadeIn 1.5s ease-out 0.5s forwards;
}

.hero-content h1 {
    opacity: 0;
    animation: heroFadeIn 1.8s ease-out 1.8s forwards;
}

.hero-content .lead {
    opacity: 0;
    animation: heroFadeIn 1.5s ease-out 3.5s forwards;
}

.hero-content .hero-buttons {
    opacity: 0;
    animation: heroFadeIn 1.5s ease-out 5s forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================
   HERO TEXT - SLOW ONE BY ONE ANIMATION
   ========================================= */

.home-hero-grid > div[data-reveal="up"] .eyebrow {
    opacity: 0;
    animation: heroTextFade 1.5s ease-out 0.5s forwards;
}

.home-hero-grid > div[data-reveal="up"] h1 {
    opacity: 0;
    animation: heroTextFade 1.7s ease-out 2s forwards;
}

.home-hero-grid > div[data-reveal="up"] .lead {
    opacity: 0;
    animation: heroTextFade 1.5s ease-out 3.8s forwards;
}

.home-hero-grid > div[data-reveal="up"] .hero-ctas {
    opacity: 0;
    animation: heroTextFade 1.5s ease-out 5.4s forwards;
}

@keyframes heroTextFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Hero text animation - faster */

.home-hero-grid > div[data-reveal="up"] .eyebrow {
    opacity: 0;
    animation: heroFade 0.7s ease-out 0.2s forwards;
}

.home-hero-grid > div[data-reveal="up"] h1 {
    opacity: 0;
    animation: heroFade 0.8s ease-out 0.8s forwards;
}

.home-hero-grid > div[data-reveal="up"] .lead {
    opacity: 0;
    animation: heroFade 0.7s ease-out 1.5s forwards;
}

.home-hero-grid > div[data-reveal="up"] .hero-ctas {
    opacity: 0;
    animation: heroFade 0.7s ease-out 2.1s forwards;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Reduce back-to-top arrow button */
/* Smaller Back to Top button */
.back-to-top {
    width: 50px !important;
    height: 50px !important;
    padding: 0 !important;
}

.back-to-top svg {
    width: 16px !important;
    height: 16px !important;
}
/* =========================================
   DEVELOPMENT PROCESS - MOBILE FIX
   ========================================= */

@media (max-width: 768px) {

    /* Make the whole section one column on mobile */
    .container.split.reverse {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    /* Text/content area */
    .container.split.reverse > * {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Process cards */
    .container.split.reverse .mini-cards {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    /* Individual process cards */
    .container.split.reverse .mini-card {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}
/* =========================================
   CONTACT PAGE - MOBILE FIX
   ========================================= */

@media (max-width: 768px) {

    /* Contact section */
    .contact-wrap {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 35px !important;
    }

    /* Contact information */
    .contact-info {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Contact form */
    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Form fields */
    .contact-form .form-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        width: 100% !important;
    }

    .contact-form .form-field {
        width: 100% !important;
        min-width: 0 !important;
    }

    .contact-form .form-field.full {
        grid-column: auto !important;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Heading */
    .contact-info h3 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    /* Contact paragraph */
    .contact-info > p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    /* Keep the contact section inside the screen */
    .bg-alt .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
}
/* Increase About & Services headings */
.service-card:hover .service-overlay {
    background: rgba(3, 12, 22, 0.20)!important;
}
/* =========================================
   MOBILE - FIX LEFT & RIGHT SPACING
   ========================================= */
@media (max-width: 700px) {

    /* Main sections */
    .bg-alt > .container {
        width: calc(100% - 28px) !important;
        max-width: none !important;
        margin-left: 14px !important;
        margin-right: 14px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    /* Contact information + form */
    .contact-wrap {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-info,
    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Maps */
    .map-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .map-embed {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
/* =========================================
   FOOTER ADDRESS BOX
========================================= */

.footer-grid {
  grid-template-columns: 1.5fr 0.8fr 1.3fr 1fr 0.9fr;
  gap: 45px;
  align-items: start;
}

.footer-address-box {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-address {
  margin-bottom: 24px;
}

.footer-address strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-address p {
  margin: 0;
  color: #aab3c2;
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom-inner > span {
  color: #8f9aaa;
  font-size: 14px;
}

.powered-by {
  text-align: right;
}

.powered-by strong {
  color: #ffffff;
  font-weight: 700;
}


/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 900px) {

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

  .footer-address-box {
    padding-left: 0;
    border-left: none;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .powered-by {
    text-align: center;
  }

}


@media (max-width: 600px) {

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

  .footer-address-box {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 25px;
  }

  .footer-bottom-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

}
/* Reduce footer height */
.site-footer {
  padding-top: 45px !important;
  padding-bottom: 0 !important;
}

.footer-grid {
  padding-top: 0 !important;
  padding-bottom: 35px !important;
  align-items: start;
}

/* Make office addresses more compact */
.footer-address {
  margin-bottom: 12px !important;
}

.footer-address strong {
  margin-bottom: 4px !important;
}

.footer-address p {
  line-height: 1.45 !important;
  font-size: 13px !important;
  margin: 0 !important;
}

/* Reduce spacing in other footer columns */
.site-footer h5 {
  margin-bottom: 18px !important;
}

.site-footer p {
  line-height: 1.45;
}

.footer-links li {
  margin-bottom: 10px !important;
}

/* Bottom copyright area */
.footer-bottom {
  padding: 15px 0 !important;
}
.footer-email {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-email .footer-contact-number {
  padding-left: 30px;
}
/* =========================================
   FOOTER CONTACT US - FIX
========================================= */

.footer-contact {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact h5 {
  color: #ffffff !important;
  margin-bottom: 20px !important;
}

.footer-contact-office {
  margin-bottom: 20px;
}

.footer-contact-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.footer-contact-title strong {
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
}

.contact-icon {
  color: var(--teal-light);
  font-size: 16px;
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-number {
  color: #aab3c2 !important;
  font-size: 13.5px;
  line-height: 1.6;
  padding-left: 26px;
}

/* Email */
.footer-email {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-email .footer-contact-number {
  padding-left: 26px;
}
/* =========================================
   WHY INDIA + UK
========================================= */

.india-uk-section {
  padding: 90px 0;
  background: #f6f8f9;
}

.india-uk-section .section-head {
  max-width: 720px;
  margin: 0 auto 50px;
}

.india-uk-section .section-head p {
  max-width: 650px;
  margin: 15px auto 0;
  color: #687386;
}

.india-uk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.india-uk-card {
  position: relative;
  padding: 42px 40px;
  background: #ffffff;
  border: 1px solid rgba(7, 13, 22, 0.08);
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(7, 13, 22, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.india-uk-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(7, 13, 22, 0.12);
}

.india-uk-icon {
  font-size: 42px;
  margin-bottom: 22px;
}

.india-uk-label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 10px;
}

.india-uk-card h3 {
  font-size: 25px;
  margin-bottom: 14px;
}

.india-uk-card p {
  color: #687386;
  line-height: 1.7;
  margin-bottom: 20px;
}

.india-uk-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.india-uk-card li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: #303b4c;
  font-size: 14px;
}

.india-uk-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.india-uk-tagline {
  margin: 50px auto 0;
  text-align: center;
  font-size: 22px;
  color: #303b4c;
}

.india-uk-tagline strong {
  color: var(--teal);
}


/* Mobile */
@media (max-width: 700px) {

  .india-uk-section {
    padding: 65px 0;
  }

  .india-uk-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .india-uk-card {
    padding: 30px 25px;
  }

  .india-uk-tagline {
    font-size: 18px;
    line-height: 1.5;
  }
}
/* =========================================
   STRONG CTA
========================================= */

.strong-cta {
  padding: 90px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.strong-cta::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -180px;
  top: -200px;
  border-radius: 50%;
  background: rgba(0, 146, 75, 0.14);
  filter: blur(10px);
}

.strong-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.strong-cta h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 50px);
  margin: 12px 0 18px;
}

.strong-cta p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.7;
}

.strong-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

@media (max-width: 600px) {

  .strong-cta {
    padding: 65px 20px;
  }

  .strong-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .strong-cta-buttons .btn {
    width: 100%;
  }
}
/* =========================================
   PREMIUM TESTIMONIALS SECTION
========================================= */

.testimonials-section {
  position: relative;
  padding: 105px 0 115px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 170, 100, 0.06), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(0, 170, 100, 0.05), transparent 30%),
    #ffffff;
  overflow: hidden;
}

/* subtle background grid */
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 30, 50, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 30, 50, 0.025) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}


/* ---------- Heading ---------- */

.testimonials-section .section-head {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.testimonials-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #009f5b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.testimonials-section .eyebrow::before,
.testimonials-section .eyebrow::after {
  content: "";
  width: 25px;
  height: 2px;
  background: #00a866;
  border-radius: 10px;
}

.testimonials-section .section-head h2 {
  margin: 0;
  color: #101827;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.testimonials-section .section-head p {
  max-width: 680px;
  margin: 20px auto 0;
  color: #687386;
  font-size: 17px;
  line-height: 1.75;
}


/* ---------- Cards ---------- */

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


/* ---------- Individual Card ---------- */

.testimonial-card {
  position: relative;
  padding: 34px 32px 30px;
  min-height: 365px;

  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(10, 30, 50, 0.08);
  border-radius: 22px;

  box-shadow:
    0 10px 35px rgba(10, 30, 50, 0.06);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


/* green top line */

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  background: linear-gradient(
    90deg,
    #00a866,
    #48c98b,
    transparent
  );
  border-radius: 0 0 10px 10px;
}


/* quotation decoration */

.testimonial-card::after {
  content: "“";
  position: absolute;
  top: 15px;
  right: 25px;

  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;

  color: rgba(0, 166, 101, 0.08);
  pointer-events: none;
}


/* hover */

.testimonial-card:hover {
  transform: translateY(-8px);

  border-color: rgba(0, 166, 101, 0.28);

  box-shadow:
    0 22px 55px rgba(10, 30, 50, 0.12);
}


/* ---------- Stars ---------- */

.testimonial-stars {
  display: inline-flex;
  align-items: center;

  padding: 7px 12px;
  margin-bottom: 25px;

  background: rgba(211, 155, 40, 0.09);
  border-radius: 30px;

  color: #d39b28;
  font-size: 15px;
  letter-spacing: 3px;
}


/* ---------- Quote ---------- */

.testimonial-card blockquote {
  position: relative;
  z-index: 1;

  margin: 0;
  padding: 0;

  color: #344054;

  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}


/* ---------- Client ---------- */

.testimonial-client {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;

  display: flex;
  align-items: center;
  gap: 13px;

  padding-top: 18px;

  border-top: 1px solid rgba(10, 30, 50, 0.09);
}


/* client circle */

.testimonial-client::before {
  content: "";
  width: 40px;
  height: 40px;
  flex-shrink: 0;

  border-radius: 50%;

  background:
    linear-gradient(135deg, #00a866, #007f4c);

  box-shadow: 0 5px 15px rgba(0, 166, 101, 0.18);
}


/* client information */

.testimonial-client strong {
  display: block;

  color: #17202d;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-client span {
  display: block;

  margin-top: 3px;

  color: #7b8594;
  font-size: 13px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

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

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .testimonials-section {
    padding: 70px 0 80px;
  }

  .testimonials-section .section-head {
    margin-bottom: 38px;
    padding: 0 18px;
  }

  .testimonials-section .section-head h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .testimonials-section .section-head p {
    font-size: 15px;
    line-height: 1.65;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 14px;
  }

  .testimonial-card {
    min-height: 340px;
    padding: 28px 24px;
    border-radius: 19px;
  }

  .testimonial-card::before {
    left: 24px;
    right: 24px;
  }

  .testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.65;
  }

  .testimonial-client {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

}
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    box-sizing: border-box;
}


/* Second row */
.testimonial-card:nth-child(4),
.testimonial-card:nth-child(5) {
    flex: 0 0 calc((100% - 48px) / 3);
}


/* Mobile */
@media (max-width: 1000px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        flex-direction: column;
        gap: 18px;
        padding: 0 16px;
    }

    .testimonial-card,
    .testimonial-card:nth-child(4),
    .testimonial-card:nth-child(5) {
        flex: 0 0 100%;
        width: 100%;
    }
}
.india-uk-icon {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 30px;
}

.india-uk-tagline {
    text-align: center;
    margin: 40px auto 0;
    font-size: 22px;
    font-weight: 700;
    color: #071426;
}

@media (max-width: 600px) {
    .india-uk-icon {
        font-size: 34px;
        margin-bottom: 22px;
    }

    .india-uk-tagline {
        font-size: 18px;
        line-height: 1.5;
        padding: 0 20px;
        margin-top: 30px;
    }
}
/* =========================================
   WHY INDIA + UK - PREMIUM CONTAINER
========================================= */

.india-uk-section {
    padding: 70px 35px 65px;
    background: #f4f8f7;
}

.india-uk-section .container {
    max-width: 1450px;
    margin: 0 auto;

    padding: 65px 70px 55px;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(0, 166, 81, 0.08),
            transparent 35%
        ),
        radial-gradient(
            circle at 100% 50%,
            rgba(0, 166, 81, 0.06),
            transparent 35%
        ),
        #ffffff;

    border: 1px solid rgba(0, 166, 81, 0.10);

    box-shadow:
        0 25px 70px rgba(15, 30, 45, 0.08);

    position: relative;
    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.india-uk-section .section-label,
.india-uk-section .eyebrow {
    color: #009f58;
}


/* =========================================
   CARDS
========================================= */

.india-uk-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;

    margin-top: 45px;
}

.india-uk-card {
    position: relative;

    padding: 42px 40px 38px;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(0, 159, 88, 0.13);

    border-radius: 24px;

    box-shadow:
        0 15px 35px rgba(20, 35, 45, 0.07);

    overflow: hidden;

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease;
}


/* Green line on top */

.india-uk-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 35px;

    width: 190px;
    height: 4px;

    border-radius: 0 0 10px 10px;

    background: linear-gradient(
        90deg,
        #009f58,
        #45c98a,
        transparent
    );

    transition:
        width 0.45s ease,
        left 0.45s ease;
}


/* =========================================
   HOVER ANIMATION
========================================= */

.india-uk-card:hover {
    transform: translateY(-10px);

    border-color: rgba(0, 159, 88, 0.28);

    background: #ffffff;

    box-shadow:
        0 25px 55px rgba(0, 120, 75, 0.14);
}

.india-uk-card:hover::before {
    width: 280px;
    left: 30px;
}


/* =========================================
   LABEL
========================================= */

.india-uk-label {
    display: block;

    margin-bottom: 14px;

    color: #009f58;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
}


/* =========================================
   HEADING
========================================= */

.india-uk-card h3 {
    margin: 0 0 18px;

    font-size: 30px;
    line-height: 1.2;

    color: #111827;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.india-uk-card:hover h3 {
    color: #009f58;
    transform: translateX(4px);
}


/* =========================================
   DESCRIPTION
========================================= */

.india-uk-card p {
    margin: 0 0 28px;

    color: #687588;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================
   DIVIDER
========================================= */

.india-uk-card ul {
    margin: 0;
    padding: 22px 0 0;

    border-top: 1px solid #e6ece9;

    list-style: none;
}

.india-uk-card li {
    position: relative;

    padding-left: 32px;
    margin-bottom: 18px;

    color: #3f4b5b;

    font-size: 16px;
    line-height: 1.5;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.india-uk-card li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e4f7ed;

    color: #009f58;

    font-size: 13px;
    font-weight: 700;
}

.india-uk-card li:hover {
    color: #009f58;
    transform: translateX(5px);
}


/* =========================================
   SUBTLE CARD GLOW
========================================= */

.india-uk-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    background: rgba(0, 159, 88, 0.08);

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;

    opacity: 0;
}

.india-uk-card:hover::after {
    transform: scale(1.5);
    opacity: 1;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .india-uk-section {
        padding: 35px 15px;
    }

    .india-uk-section .container {
        padding: 45px 20px 40px;
        border-radius: 24px;
    }

    .india-uk-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .india-uk-card {
        padding: 32px 25px;
        border-radius: 20px;
    }

    .india-uk-card h3 {
        font-size: 25px;
    }

    .india-uk-card p {
        font-size: 16px;
    }

    .india-uk-card li {
        font-size: 15px;
    }

    /* Disable large movement on mobile */
    .india-uk-card:hover {
        transform: translateY(-4px);
    }
}
.india-uk-section .section-head .eyebrow {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #009f58;
}
/* =========================================================
   SMA ADVERTISING & CREATIVE STUDIO
   ========================================================= */

.ad-studio-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(0, 159, 88, 0.10),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 85%,
      rgba(0, 174, 239, 0.08),
      transparent 30%
    ),
    #f5f9f8;
}


/* HEADER */

.ad-studio-head {
  max-width: 900px;
  margin: 0 auto 65px;
  text-align: center;
}

.ad-eyebrow {
  display: inline-block;
  margin-bottom: 18px;

  color: #009f58;

  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;
}

.ad-studio-head h2 {
  max-width: 850px;
  margin: 0 auto 22px;

  color: #081120;

  font-family: "Fraunces", serif;
  font-size: clamp(38px, 5vw, 62px);

  line-height: 1.08;
}

.ad-studio-head p {
  max-width: 760px;
  margin: 0 auto;

  color: #66758a;

  font-size: 18px;
  line-height: 1.75;
}


/* GRID */

.ad-studio-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 25px;
}


/* CARD */

.ad-studio-card {
  position: relative;

  min-height: 100%;

  padding: 38px 32px;

  overflow: hidden;

  border: 1px solid rgba(0, 159, 88, 0.14);

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 18px 45px rgba(9, 31, 50, 0.07);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


/* GREEN TOP LINE */

.ad-studio-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 34px;

  width: 100px;
  height: 5px;

  border-radius: 0 0 8px 8px;

  background: linear-gradient(
    90deg,
    #009f58,
    #36c98b
  );

  transition: width 0.4s ease;
}


/* DECORATIVE CIRCLE */

.ad-studio-card::after {
  content: "";

  position: absolute;

  right: -80px;
  bottom: -80px;

  width: 200px;
  height: 200px;

  border-radius: 50%;

  background: rgba(0, 159, 88, 0.05);

  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}


/* HOVER */

.ad-studio-card:hover {
  transform: translateY(-10px);

  border-color: rgba(0, 159, 88, 0.35);

  box-shadow:
    0 30px 65px rgba(9, 31, 50, 0.13);
}

.ad-studio-card:hover::before {
  width: 170px;
}

.ad-studio-card:hover::after {
  transform: scale(1.4);
}


/* NUMBER */

.ad-studio-number {
  position: absolute;

  top: 28px;
  right: 30px;

  color: #00a9ef;

  font-family: "IBM Plex Mono", monospace;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;
}


/* ICON */

.ad-studio-icon {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  margin-bottom: 25px;

  border-radius: 18px;

  background: #e0f5eb;

  font-size: 28px;

  box-shadow:
    0 8px 20px rgba(0, 159, 88, 0.08);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.ad-studio-card:hover .ad-studio-icon {
  transform:
    translateY(-4px)
    rotate(-4deg)
    scale(1.08);

  box-shadow:
    0 14px 30px rgba(0, 159, 88, 0.16);
}


/* LABEL */

.ad-card-label {
  position: relative;
  z-index: 2;

  display: block;

  margin-bottom: 10px;

  color: #009f58;

  font-family: "IBM Plex Mono", monospace;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}


/* TITLE */

.ad-studio-card h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 18px;

  color: #0a1424;

  font-family: "Fraunces", serif;

  font-size: 26px;

  line-height: 1.2;
}


/* DESCRIPTION */

.ad-studio-card p {
  position: relative;
  z-index: 2;

  margin: 0 0 20px;

  color: #69788c;

  font-size: 15px;

  line-height: 1.7;
}


/* LIST */

.ad-studio-card ul {
  position: relative;
  z-index: 2;

  display: grid;

  gap: 10px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.ad-studio-card li {
  position: relative;

  padding-left: 22px;

  color: #4f5e71;

  font-size: 14px;

  line-height: 1.5;
}

.ad-studio-card li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 0;

  color: #009f58;

  font-weight: 800;
}


/* SUITABLE FOR */

.ad-suitable {
  position: relative;
  z-index: 2;

  margin-bottom: 12px;

  color: #253247;

  font-size: 14px;
}


/* NOTE */

.ad-studio-note {
  position: relative;
  z-index: 2;

  margin-top: 18px;
  padding-top: 15px;

  border-top: 1px solid #e6ece9;

  color: #7a8797;

  font-size: 12px;

  font-style: italic;

  line-height: 1.5;
}


/* WIDE FINAL CARD */

.ad-studio-card-wide {
  grid-column: span 2;
}


/* PRODUCTION TAGS */

.ad-production-list {
  position: relative;
  z-index: 2;

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 22px;
}

.ad-production-list span {
  display: inline-flex;

  align-items: center;

  padding: 9px 14px;

  border: 1px solid rgba(0, 159, 88, 0.14);

  border-radius: 50px;

  background: #f2faf6;

  color: #526174;

  font-size: 13px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.ad-production-list span:hover {
  transform: translateY(-2px);

  background: #009f58;

  color: white;
}


/* TABLET */

@media (max-width: 1050px) {

  .ad-studio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ad-studio-card-wide {
    grid-column: span 2;
  }

}


/* MOBILE */

@media (max-width: 680px) {

  .ad-studio-section {
    padding: 75px 0 85px;
  }

  .ad-studio-head {
    margin-bottom: 42px;
  }

  .ad-studio-head h2 {
    font-size: 36px;
  }

  .ad-studio-head p {
    font-size: 16px;
  }

  .ad-studio-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .ad-studio-card,
  .ad-studio-card-wide {
    grid-column: span 1;

    padding: 30px 25px;
  }

  .ad-studio-card h3 {
    font-size: 23px;
  }

  .ad-studio-icon {
    width: 54px;
    height: 54px;

    font-size: 24px;
  }

}
/* =========================================
   COMPANY CREDIBILITY
========================================= */

.credibility-section {
    position: relative;
    padding: 110px 0;
    background: #f5f8f7;
    overflow: hidden;
}

.credibility-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(0, 166, 91, 0.08);
    border-radius: 50%;
    filter: blur(80px);
    top: -150px;
    left: -150px;
    pointer-events: none;
}

.credibility-section .section-head {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto 60px;
}

.credibility-section .eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: #009e5a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.credibility-section .section-head h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    color: #0b1424;
}

.credibility-section .section-head h2 span {
    color: #009e5a;
}

.credibility-section .section-head p {
    max-width: 720px;
    margin: 25px auto 0;
    color: #68788d;
    font-size: 17px;
    line-height: 1.8;
}


/* CARDS */

.credibility-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.credibility-card {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 22px;

    padding: 32px;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(0, 158, 90, 0.12);
    border-radius: 22px;

    box-shadow: 0 15px 40px rgba(10, 30, 50, 0.06);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.credibility-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;

    width: 70px;
    height: 4px;

    background: linear-gradient(
        90deg,
        #009e5a,
        #20c997
    );

    border-radius: 0 0 10px 10px;
}

.credibility-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 158, 90, 0.3);

    box-shadow:
        0 25px 55px rgba(10, 30, 50, 0.11);
}

.credibility-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #e2f5ec;

    font-size: 27px;
    color: #009e5a;
}

.credibility-icon span {
    font-size: 20px;
    font-weight: 800;
}

.credibility-card h3 {
    margin: 0 0 10px;

    font-size: 21px;
    color: #0b1424;
}

.credibility-card p {
    margin: 0;

    color: #718096;
    font-size: 15px;
    line-height: 1.7;
}


/* STATS */

/* =========================================
   VERIFIED STATS
========================================= */

.credibility-stats {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    width: 100%;

    margin-top: 55px;
    padding: 28px 20px;

    background: #081321;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(5, 20, 35, 0.15);

    overflow: hidden;
}


/* Individual stat */

.credibility-stat {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 90px;

    padding: 8px 15px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.12);

    cursor: default;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


/* Remove divider from last item */

.credibility-stat:last-child {
    border-right: none;
}


/* Hover background */

.credibility-stat::before {
    content: "";

    position: absolute;

    inset: 8px;

    border-radius: 14px;

    background: rgba(0, 158, 90, 0.08);

    opacity: 0;

    transform: scale(0.85);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;

    z-index: -1;
}


/* Hover animation */

.credibility-stat:hover {
    transform: translateY(-5px);
}

.credibility-stat:hover::before {
    opacity: 1;

    transform: scale(1);
}


/* Number / main text */

.credibility-stat strong {
    display: block;

    margin-bottom: 8px;

    color: #19c77a;

    font-size: 26px;

    font-weight: 800;

    line-height: 1;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}


/* Number hover */

.credibility-stat:hover strong {
    transform: scale(1.12);

    color: #35e894;
}


/* Description */

.credibility-stat span {
    color: #aebaca;

    font-size: 12px;

    line-height: 1.4;

    white-space: nowrap;

    transition:
        color 0.35s ease;
}


/* Description hover */

.credibility-stat:hover span {
    color: #ffffff;
}
/* =========================================
   STATS RESPONSIVE
========================================= */

@media (max-width: 1100px) {

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

    .credibility-stat:nth-child(3) {
        border-right: none;
    }

    .credibility-stat:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}


@media (max-width: 650px) {

    .credibility-stats {
        grid-template-columns: repeat(2, 1fr);

        padding: 20px 10px;

        gap: 5px;
    }

    .credibility-stat {
        min-height: 85px;

        padding: 10px 5px;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .credibility-stat:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    .credibility-stat strong {
        font-size: 23px;
    }

    .credibility-stat span {
        font-size: 11px;
        white-space: normal;
    }
}


/* MOBILE */

@media (max-width: 768px) {

    .credibility-section {
        padding: 75px 0;
    }

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

    .credibility-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .credibility-stat {
        border-right: none;
    }
}

@media (max-width: 480px) {

    .credibility-card {
        padding: 25px;
    }

    .credibility-stats {
        grid-template-columns: 1fr 1fr;
        padding: 20px 10px;
    }

    .credibility-stat strong {
        font-size: 22px;
    }
}
/* =========================================================
   TECHNOLOGY SECTION - LARGE OUTER CONTAINER
========================================================= */

.technology-section {
    position: relative;
    overflow: hidden;

    width: calc(100% - 70px);
    max-width: 1700px;

    margin: 35px auto;

    padding: 90px 0 80px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 0% 45%,
            rgba(0, 174, 102, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 100% 55%,
            rgba(0, 174, 102, 0.07),
            transparent 30%
        ),
        #f8fbfa;

    border: 1px solid rgba(0, 158, 90, 0.10);

    box-shadow:
        0 20px 60px rgba(20, 40, 50, 0.08);
}


/* subtle background grid */

.technology-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(0, 158, 90, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 158, 90, 0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.technology-section .section-head {
    position: relative;
    z-index: 2;

    width: min(850px, 90%);

    margin: 0 auto 55px;

    text-align: center;
}


/* Technology Stack */

.technology-section .eyebrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #009e5a;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.technology-section .eyebrow::before,
.technology-section .eyebrow::after {
    content: "";

    width: 35px;
    height: 2px;

    border-radius: 10px;

    background: #00a361;
}


/* Main heading */

.technology-section .section-head h2 {
    margin: 0;

    color: #101827;

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -1.8px;
}


/* Green heading word */

.technology-section .section-head h2 span {
    color: #009e5a;
}


/* Description */

.technology-section .section-head p {
    max-width: 720px;

    margin: 24px auto 0;

    color: #68788d;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   TECHNOLOGY MARQUEE
========================================================= */

.tech-marquee {
    position: relative;
    z-index: 3;

    width: 100%;

    padding: 24px 0;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.78);

    border-top: 1px solid rgba(0, 158, 90, 0.08);
    border-bottom: 1px solid rgba(0, 158, 90, 0.08);

    box-shadow:
        0 12px 35px rgba(20, 40, 50, 0.05);
}


/* moving track */

.tech-track {
    display: flex;

    align-items: center;

    width: max-content;

    gap: 18px;

    animation: techMove 32s linear infinite;

    will-change: transform;
}


/* pause when mouse is over technologies */

.tech-marquee:hover .tech-track {
    animation-play-state: paused;
}


/* =========================================================
   TECHNOLOGY CARD
========================================================= */

.tech-item {
    position: relative;

    display: flex;

    align-items: center;

    gap: 14px;

    flex-shrink: 0;

    width: 190px;
    height: 76px;

    padding: 12px 18px;

    background: #ffffff;

    border: 1px solid #e3eee9;

    border-radius: 16px;

    color: #162033;

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 8px 24px rgba(20, 40, 50, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* green top line */

.tech-item::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 22px;

    width: 45px;
    height: 3px;

    border-radius: 0 0 8px 8px;

    background: linear-gradient(
        90deg,
        #009e5a,
        #35c98b
    );

    transition:
        width 0.35s ease;
}


/* hover effect */

.tech-item:hover {
    transform: translateY(-8px) scale(1.02);

    border-color: rgba(0, 158, 90, 0.30);

    box-shadow:
        0 18px 40px rgba(0, 158, 90, 0.15);
}


.tech-item:hover::before {
    width: 85px;
}


/* =========================================================
   TECHNOLOGY LOGO
========================================================= */

.tech-logo {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    border-radius: 12px;

    background: #edf8f3;

    color: #009e5a;

    font-size: 16px;
    font-weight: 800;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}


.tech-item:hover .tech-logo {
    transform: scale(1.12) rotate(-4deg);

    background: #009e5a;

    color: white;

    box-shadow:
        0 8px 20px rgba(0, 158, 90, 0.25);
}


/* =========================================================
   SIDE FADE
========================================================= */

.tech-marquee::before,
.tech-marquee::after {
    content: "";

    position: absolute;

    z-index: 5;

    top: 0;
    bottom: 0;

    width: 120px;

    pointer-events: none;
}


.tech-marquee::before {
    left: 0;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0)
    );
}


.tech-marquee::after {
    right: 0;

    background: linear-gradient(
        270deg,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0)
    );
}


/* =========================================================
   AUTO SCROLL
========================================================= */

@keyframes techMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .technology-section {
        width: calc(100% - 24px);

        margin: 20px auto;

        padding: 65px 0 60px;

        border-radius: 22px;
    }

    .technology-section .section-head {
        margin-bottom: 40px;
    }

    .technology-section .section-head h2 {
        font-size: 40px;

        letter-spacing: -1px;
    }

    .technology-section .section-head p {
        padding: 0 20px;

        font-size: 15px;
    }

    .tech-marquee {
        padding: 20px 0;
    }

    .tech-track {
        gap: 12px;

        animation-duration: 25s;
    }

    .tech-item {
        width: 165px;
        height: 68px;

        padding: 10px 14px;

        border-radius: 14px;

        font-size: 13px;
    }

    .tech-logo {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        border-radius: 10px;
    }

    .tech-marquee::before,
    .tech-marquee::after {
        width: 55px;
    }
}
/* ===== TECHNOLOGY SCROLL CURVED ENDS - QUICK FIX ===== */

.tech-marquee {
    border-radius: 22px !important;
    overflow: hidden !important;
    position: relative !important;
}

/* Left curved/faded end */
.tech-marquee::before {
    content: "" !important;
    position: absolute !important;
    z-index: 20 !important;

    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;

    width: 90px !important;

    pointer-events: none !important;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255,255,255,0.85) 40%,
        transparent 100%
    ) !important;

    border-radius: 22px 0 0 22px !important;
}

/* Right curved/faded end */
.tech-marquee::after {
    content: "" !important;
    position: absolute !important;
    z-index: 20 !important;

    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;

    width: 90px !important;

    pointer-events: none !important;

    background: linear-gradient(
        270deg,
        #ffffff 0%,
        rgba(255,255,255,0.85) 40%,
        transparent 100%
    ) !important;

    border-radius: 0 22px 22px 0 !important;
}



/* Align About the Company label with the heading */
.split > div:last-child .eyebrow {
    justify-content: flex-start;
}

.split > div:last-child .eyebrow::before {
    display: none;
}
/* Center Our Delivery Advantage */
.india-uk-section .section-head.center .eyebrow {
    justify-content: center;
}

.india-uk-section .section-head.center .eyebrow::before {
    display: none;
}
/* Center Let's Build Something Great */
.strong-cta-inner .eyebrow {
    justify-content: center;
}

.strong-cta-inner .eyebrow::before {
    display: none;
}
/* Align Why Choose Us with the heading */
.why-grid > div:last-child .eyebrow {
    justify-content: flex-start;
}

.why-grid > div:last-child .eyebrow::before {
    display: none;
}
/* Hide Request a Quote button */
.strong-cta-buttons a:last-child {
    display: none;
}
/* Add top padding above Development Process cards */
.mini-cards {
    padding-top: 25px;
}
/* Center Why Choose Us section heading */
.section-head.center {
    text-align: center;
}

.section-head.center .eyebrow {
    justify-content: center !important;
    text-align: center;
}

.section-head.center h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
/* Center Get Started section */
.section-head.center {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.section-head.center .eyebrow {
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
}

.section-head.center h2 {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.section-head.center p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-head.center .btn {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}