/* =========================================================
   SUSHIL ZANWAR PORTFOLIO
   PROFESSIONAL CORPORATE STYLE
   Plain CSS - No Framework
   ========================================================= */

/* =========================================================
   ROOT
   ========================================================= */

:root {
  --navy: #071625;
  --navy-light: #0d2033;
  --deep-navy: #06111d;

  --blue: #173a59;
  --blue-light: #294d6b;

  --white: #ffffff;
  --off-white: #f4f7fa;

  --text: #1b2936;
  --muted: #687786;

  --red: #f3273d;
  --red-dark: #d91d32;

  --border: rgba(255, 255, 255, 0.18);
  --dark-border: rgba(8, 27, 45, 0.12);

  --max-width: 1380px;

  --font-main: "Segoe UI", Arial, Helvetica, sans-serif;
}

/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.page-loaded {
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--red);
  color: var(--white);
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  z-index: 1000;

  background: rgba(7, 22, 37, 0.9);

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    height 0.3s ease;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(5, 17, 29, 0.97);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.nav-container {
  width: min(calc(100% - 80px), var(--max-width));

  height: 100%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.logo {
  display: inline-flex;
  align-items: center;

  font-size: 31px;
  font-weight: 800;
  letter-spacing: -2px;

  color: var(--white);

  min-width: 100px;
}

.logo span {
  color: var(--red);
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-links a {
  position: relative;

  padding: 8px 0;

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

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

  letter-spacing: 1.1px;

  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--red);

  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* =========================================================
   RESUME BUTTON
   ========================================================= */

.nav-resume {
  min-width: 205px;

  height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  padding: 0 20px;

  border: 1px solid rgba(255, 255, 255, 0.75);

  color: var(--white);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.9px;

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

.nav-resume:hover {
  background: var(--white);
  border-color: var(--white);

  color: var(--navy);

  transform: translateY(-2px);
}

.resume-arrow {
  font-size: 19px;
  line-height: 1;
}

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

.menu-btn {
  display: none;

  width: 45px;
  height: 45px;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.3);

  cursor: pointer;

  padding: 10px;
}

.menu-btn span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  background: var(--white);

  transition: 0.3s ease;
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  position: relative;

  min-height: 900px;

  padding-top: 88px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;

  background-image: url("assets/hero-background.png");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  color: var(--white);
}

/* Dark overlay */

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(4, 16, 28, 0.88) 0%,
    rgba(5, 21, 36, 0.76) 43%,
    rgba(5, 20, 34, 0.55) 72%,
    rgba(4, 15, 27, 0.78) 100%
  );

  z-index: 1;
}

/* Subtle blue glow */

.hero-section::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: 3%;
  top: 17%;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(50, 111, 157, 0.18),
    transparent 70%
  );

  z-index: 1;

  pointer-events: none;
}

/* =========================================================
   HERO CONTAINER
   ========================================================= */

.hero-container {
  position: relative;

  z-index: 3;

  width: min(calc(100% - 120px), var(--max-width));

  margin: 0 auto;

  min-height: 650px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(420px, 0.75fr);

  align-items: center;

  gap: 30px;
}

/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
  max-width: 850px;

  padding-bottom: 40px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;

  margin-bottom: 28px;

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

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

  letter-spacing: 4px;
}

.hero-kicker i {
  width: 48px;
  height: 1px;

  background: rgba(255, 255, 255, 0.55);
}

.hero-content h1 {
  margin-bottom: 25px;

  font-size: clamp(58px, 6.3vw, 91px);

  line-height: 0.98;

  letter-spacing: -4px;

  font-weight: 800;

  color: var(--white);
}

.hero-content h1 strong {
  font-weight: 800;
}

.hero-role {
  margin-bottom: 25px;

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

  font-size: clamp(18px, 2vw, 26px);

  font-weight: 400;

  letter-spacing: 5px;

  line-height: 1.4;
}

.hero-description {
  max-width: 750px;

  margin-bottom: 30px;

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

  font-size: 17px;

  line-height: 1.8;

  letter-spacing: 0.2px;
}

/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-top: 25px;
}

.primary-button,
.secondary-button {
  min-height: 60px;

  padding: 0 30px;

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

  gap: 25px;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.5px;

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

.primary-button {
  background: var(--red);
  color: var(--white);

  border: 1px solid var(--red);
}

.primary-button:hover {
  background: var(--red-dark);

  transform: translateY(-3px);

  box-shadow: 0 12px 30px rgba(243, 39, 61, 0.3);
}

.primary-button span {
  font-size: 23px;
  line-height: 1;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.65);

  color: var(--white);

  background: rgba(255, 255, 255, 0.02);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.12);

  border-color: var(--white);

  transform: translateY(-3px);
}

.secondary-button span {
  font-size: 20px;
}

/* =========================================================
   PROFILE AREA
   ========================================================= */

.hero-profile {
  position: relative;

  min-height: 580px;

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

.profile-ring {
  position: relative;

  z-index: 5;

  width: 355px;
  height: 355px;

  padding: 8px;

  border-radius: 50%;

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

  border: 1px solid rgba(255, 255, 255, 0.8);

  box-shadow:
    0 0 0 10px rgba(7, 22, 37, 0.65),
    0 0 0 11px rgba(255, 255, 255, 0.38),
    0 0 0 25px rgba(7, 22, 37, 0.3),
    0 25px 70px rgba(0, 0, 0, 0.45);

  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 25%;

  border-radius: 50%;

  background: var(--white);

  border: 3px solid rgba(7, 22, 37, 0.15);
}

/* =========================================================
   PROFILE ORBITS
   ========================================================= */

.profile-orbit {
  position: absolute;

  top: 50%;
  left: 50%;

  border-radius: 50%;

  transform: translate(-50%, -50%);

  pointer-events: none;
}

.orbit-one {
  width: 405px;
  height: 405px;

  border: 1px solid rgba(255, 255, 255, 0.3);

  z-index: 2;
}

.orbit-two {
  width: 450px;
  height: 450px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  z-index: 1;
}

.orbit-three {
  width: 510px;
  height: 510px;

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

  z-index: 1;
}

/* =========================================================
   PROFILE SIDE TEXT
   ========================================================= */

.profile-side-text {
  position: absolute;

  right: -65px;
  top: 50%;

  transform: translateY(-50%);

  z-index: 6;

  display: flex;
  flex-direction: column;

  gap: 23px;
}

.profile-side-text span {
  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 2px;
}

/* =========================================================
   HERO CREDENTIAL STRIP
   ========================================================= */

.hero-credentials {
  position: absolute;

  z-index: 5;

  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  width: min(calc(100% - 120px), var(--max-width));

  min-height: 105px;

  display: flex;
  align-items: center;

  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-credential {
  flex: 1;

  display: flex;
  align-items: center;

  gap: 18px;

  padding: 20px 25px;
}

.credential-icon {
  width: 36px;
  height: 36px;

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

  color: var(--white);

  font-size: 27px;
}

.hero-credential strong {
  display: block;

  color: var(--white);

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

  letter-spacing: 0.8px;
}

.hero-credential span {
  display: block;

  margin-top: 3px;

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

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 2px;
}

.credential-divider {
  width: 1px;
  height: 45px;

  background: rgba(255, 255, 255, 0.28);
}

/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.content-section {
  position: relative;

  padding: 125px 0;

  background: var(--off-white);
}

.section-container {
  width: min(calc(100% - 100px), var(--max-width));

  margin: 0 auto;
}

/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
  display: flex;
  align-items: flex-start;

  gap: 25px;

  margin-bottom: 70px;
}

.section-number {
  padding-top: 9px;

  color: var(--red);

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

  letter-spacing: 2px;
}

.section-label {
  display: block;

  margin-bottom: 13px;

  color: var(--muted);

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

  letter-spacing: 3px;
}

.section-heading h2 {
  color: var(--navy);

  font-size: clamp(38px, 4vw, 60px);

  line-height: 1.05;

  letter-spacing: -2px;

  font-weight: 700;
}

.section-heading h2 span {
  color: var(--red);
}

.light-heading .section-label {
  color: rgba(255, 255, 255, 0.58);
}

.light-heading h2 {
  color: var(--white);
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
  background: linear-gradient(180deg, #f5f8fa 0%, #ffffff 100%);
}

.about-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 90px;
}

.about-intro {
  max-width: 680px;
}

.large-text {
  margin-bottom: 28px;

  color: var(--navy);

  font-size: 23px;

  line-height: 1.7;

  font-weight: 400;
}

.about-intro p:not(.large-text) {
  color: var(--muted);

  font-size: 16px;

  line-height: 1.9;
}

.domain-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.domain-card {
  min-height: 210px;

  padding: 30px;

  background: var(--white);

  border: 1px solid var(--dark-border);

  position: relative;

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

.domain-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 20px 50px rgba(7, 22, 37, 0.1);
}

.domain-card > span {
  color: var(--red);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;
}

.domain-card h3 {
  margin-top: 28px;
  margin-bottom: 10px;

  color: var(--navy);

  font-size: 21px;
}

.domain-card p {
  color: var(--muted);

  font-size: 14px;

  line-height: 1.7;
}
/* =========================================================
   ABOUT NOTE CARDS
   ========================================================= */

.about-notes {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;

  margin-top: 42px;
}

/* =========================================================
   ENTERPRISE FOOTPRINT
   ========================================================= */

.enterprise-footprint {

  width: 100%;
  margin-top: 45px;
  padding-left: 0;
}

.footprint-label {
  display: block;

  margin-bottom: 10px;

  color: #168b7b;

  font-size: 45px;
  font-weight: 750;

  letter-spacing: 0.5px;
}

.footprint-enterprise {
  color: var(--navy);
}

.footprint-red {
  color: #ef233c;
}

.footprint-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 32px;
}

.footprint-list::after {
  content: "";

  height: 1px;

  flex: 1;

  margin-left: 12px;

  background: rgba(7, 22, 37, 0.16);
}

.footprint-item {
  display: inline-flex;

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

  min-width: 82px;
  height: 42px;

  padding: 0 15px;

  border-radius: 15px;

  background: var(--navy);

  color: var(--white);

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

  white-space: nowrap;

  cursor: default;

  border: 1px solid transparent;

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

.footprint-item:hover {
  background: #244968;

  border-color: #315b7b;

  transform: translateY(-3px);

  box-shadow: 0 8px 18px rgba(7, 22, 37, 0.18);
}

.about-note {
  position: relative;

  min-height: 245px;

  padding: 38px 32px 32px;

  background: #fffdf0;

  border: 1px solid rgba(7, 22, 37, 0.08);

  box-shadow: 0 12px 25px rgba(7, 22, 37, 0.1);

  transform: rotate(-0.6deg);

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

.about-note:nth-child(2) {
  background: #fff3f4;

  transform: rotate(0.6deg);
}

.about-note:hover {
  transform: translateY(-6px) rotate(0deg);

  box-shadow: 0 20px 35px rgba(7, 22, 37, 0.14);
}

/* Small pin at the top */

.note-pin {
  position: absolute;

  top: -9px;
  left: 50%;

  width: 16px;
  height: 16px;

  transform: translateX(-50%) rotate(45deg);

  background: var(--red);

  border-radius: 50% 50% 50% 0;

  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
}

/* Note number */

.note-number {
  display: block;

  margin-bottom: 22px;

  color: var(--red);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 2px;
}

/* Note heading */

.about-note h3 {
  margin-bottom: 15px;

  color: var(--navy);

  font-size: 19px;

  font-weight: 800;

  letter-spacing: 0.5px;
}

/* Note paragraph */

.about-note p {
  color: #536273;

  font-size: 14px;

  line-height: 1.8;
}

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

@media (max-width: 700px) {
  .about-notes {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-top: 35px;
  }

  .about-note {
    min-height: auto;

    padding: 35px 25px 28px;
  }
}

/* =========================================================
   EXPERTISE
   ========================================================= */

.expertise-section {
  background-image:
    linear-gradient(rgba(5, 18, 31, 0.92), rgba(5, 18, 31, 0.94)),
    url("assets/skills-background.png");

  background-size: cover;
  background-position: center;

  color: var(--white);
}

.expertise-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

.offering-card {
  min-height: 350px;

  padding: 38px 30px;

  position: relative;

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

  border: 1px solid rgba(255, 255, 255, 0.12);

  overflow: hidden;

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

.offering-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 3px;
  height: 0;

  background: var(--red);

  transition: height 0.4s ease;
}

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

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

  border-color: rgba(255, 255, 255, 0.25);
}

.offering-card:hover::before {
  height: 100%;
}

.card-number {
  display: block;

  margin-bottom: 65px;

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

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

  letter-spacing: 2px;
}

.offering-card h3 {
  margin-bottom: 18px;

  color: var(--white);

  font-size: 21px;

  line-height: 1.35;
}

.offering-card p {
  color: rgba(255, 255, 255, 0.65);

  font-size: 14px;

  line-height: 1.8;
}

.card-line {
  position: absolute;

  left: 30px;
  bottom: 28px;

  width: 45px;
  height: 2px;

  background: var(--red);
}

/* =========================================================
   WHY ENGAGE ME
   Scoped only to the Why Engage section
   ========================================================= */

.why-engage-section {
  background: #ffffff;
}

/* Section spacing */

.why-engage-section .section-heading {
  margin-bottom: 0;
}

/* Five-card grid */

.why-engage-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 16px;

  margin-top: 150px;
}

/* Individual card */

.why-engage-card {
  min-height: 270px;

  padding: 26px 26px 30px;

  background: #f7f9fb;

  border: 1px solid #dce3e9;

  border-radius: 12px;

  box-shadow: none;

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

/* Card hover */

.why-engage-card:hover {
  transform: translateY(-5px);

  border-color: #cbd5df;

  box-shadow: 0 14px 30px rgba(7, 22, 37, 0.1);
}

/* Icon */

.why-engage-icon {
  width: 40px;
  height: 40px;

  display: flex;

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

  margin-bottom: 18px;

  border-radius: 8px;
}

/* 17+ statistic */

.why-engage-stat {
  width: auto;
  height: auto;

  justify-content: flex-start;

  margin-bottom: 12px;

  background: transparent;
}

.why-engage-stat strong {
  color: #159b8f;

  font-size: 30px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -1px;
}

/* Dark icon */

.why-engage-dark {
  background: var(--navy);

  color: var(--white);
}

/* Teal icon */

.why-engage-teal {
  background: #159b8f;

  color: var(--white);
}

/* SVG */

.why-engage-icon svg {
  width: 21px;
  height: 21px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}

/* Card heading */

.why-engage-card h3 {
  margin-bottom: 18px;

  color: var(--navy);

  font-size: 16px;

  line-height: 1.35;

  font-weight: 800;
}

/* Card paragraph */

.why-engage-card p {
  color: #536273;

  font-size: 14px;

  line-height: 1.7;
}

/* =========================================================
   WHY ENGAGE ME — RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .why-engage-grid {
    grid-template-columns: repeat(3, 1fr);

    margin-top: 100px;
  }
}

@media (max-width: 760px) {
  .why-engage-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-top: 70px;
  }

  .why-engage-card {
    min-height: 250px;

    padding: 24px 20px;
  }
}

@media (max-width: 520px) {
  .why-engage-grid {
    grid-template-columns: 1fr;

    margin-top: 55px;
  }

  .why-engage-card {
    min-height: auto;
  }
}

/* =========================================================
   EXPERIENCE
   ========================================================= */

.experience-section {
  background: #f7f9fb;
}

.experience-timeline {
  position: relative;

  max-width: 1000px;

  margin: 0 auto;
}

.experience-timeline::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  left: 9px;

  width: 1px;

  background: rgba(7, 22, 37, 0.15);
}

.experience-item {
  position: relative;

  display: grid;

  grid-template-columns:
    35px
    1fr;

  gap: 30px;

  padding-bottom: 55px;
}

.experience-marker {
  position: relative;

  z-index: 2;

  width: 20px;
  height: 20px;

  margin-top: 3px;

  border-radius: 50%;

  background: var(--off-white);

  border: 2px solid var(--navy);
}

.experience-marker span {
  display: block;

  width: 6px;
  height: 6px;

  margin: 5px auto;

  border-radius: 50%;

  background: var(--navy);
}

.experience-item.current .experience-marker {
  border-color: var(--red);
}

.experience-item.current .experience-marker span {
  background: var(--red);
}

.experience-content {
  padding-bottom: 35px;

  border-bottom: 1px solid rgba(7, 22, 37, 0.1);
}

.experience-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  margin-bottom: 13px;
}

.experience-period {
  color: var(--red);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;
}

.experience-company {
  color: var(--muted);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1.5px;

  text-align: right;
}

.experience-content h3 {
  margin-bottom: 12px;

  color: var(--navy);

  font-size: 25px;
}

.experience-content p {
  max-width: 820px;

  margin-bottom: 7px;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================================
   EXPERIENCE — PROFESSIONAL TIMELINE
   Scoped only to the Experience section.
   ========================================================= */

.experience-section .content-wrapper {
  width: min(calc(100% - 100px), var(--max-width));
  margin: 0 auto;
}

.experience-section .section-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.experience-section .section-heading-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.experience-section .section-heading-row .red-line {
  width: 48px;
  height: 3px;
  margin-top: 15px;
  background: var(--red);
}

.experience-section .experience-wrapper {
  position: relative;
  width: min(100%, 1000px);
  margin: 55px auto 0;
  padding-left: 45px;
}

.experience-section .timeline-line {
  position: absolute;
  top: 8px;
  bottom: 35px;
  left: 10px;
  width: 1px;
  background: rgba(7, 22, 37, 0.18);
}

.experience-section .experience-item {
  position: relative;
  display: block;
  padding: 0 0 55px;
  margin: 0;
}

.experience-section .timeline-dot {
  position: absolute;
  z-index: 2;
  top: 3px;
  left: -45px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1.5px solid var(--navy);
  box-shadow: 0 0 0 5px var(--off-white);
}

.experience-section .experience-item:first-child .timeline-dot {
  border-color: var(--red);
}

.experience-section .experience-date {
  display: block;
  margin: 0 0 12px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.2;
}

.experience-section .experience-content {
  position: relative;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(7, 22, 37, 0.12);
}

.experience-section .experience-content h3 {
  margin: 0 220px 13px 0;
  color: var(--navy);
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.3;
  letter-spacing: -0.3px;
  font-weight: 800;
}

.experience-section .experience-content h4 {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-align: right;
  text-transform: uppercase;
}

.experience-section .experience-content p {
  max-width: 820px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.experience-section .experience-content p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   EXPERIENCE — EARLIER PROFESSIONAL EXPERIENCE
   ========================================================= */

.experience-section .experience-summary {
  position: relative;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 10px;
  margin: 0;
  padding: 0 0 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.experience-section .experience-summary-number {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.experience-section .experience-summary-label {
  display: block;
  margin: 0 0 10px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.experience-section .experience-summary-content {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(7, 22, 37, 0.12);
}

.experience-section .experience-summary-content h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 800;
}

.experience-section .experience-summary-content p {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.experience-section .experience-companies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.experience-section .experience-companies span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 4px;
}

.experience-section .experience-companies span:hover {
  background: var(--blue-light);
  transform: none;
}

/* =========================================================
   EXPERIENCE — RESPONSIVE
   ========================================================= */

@media (max-width: 760px) {
  .experience-section .content-wrapper {
    width: calc(100% - 30px);
  }

  .experience-section .section-heading-row {
    display: block;
  }

  .experience-section .section-heading-row .outline-button {
    display: none;
  }

  .experience-section .experience-wrapper {
    width: 100%;
    margin-top: 45px;
    padding-left: 32px;
  }

  .experience-section .timeline-line {
    left: 7px;
  }

  .experience-section .timeline-dot {
    left: -32px;
  }

  .experience-section .experience-content h3 {
    margin-right: 0;
    padding-top: 2px;
    font-size: 20px;
  }

  .experience-section .experience-content h4 {
    position: static;
    margin: 0 0 18px;
    text-align: left;
  }

  .experience-section .experience-content p,
  .experience-section .experience-summary-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .experience-section .experience-summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* =========================================================
   EXPERTISE - FOUR CAPABILITY CARDS
   Scoped only to the Expertise cards
   ========================================================= */

.expertise-section .expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.expertise-section .offering-card {
  position: relative;

  min-height: 320px;

  padding: 25px 25px 22px;

  background: #f7f9fb;

  border: 1px solid #dce3e9;

  border-top: 3px solid #159b8f;

  box-shadow: none;

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

/* Alternate top border */
.expertise-section .offering-card:nth-child(2),
.expertise-section .offering-card:nth-child(4) {
  border-top-color: #10182b;
}

/* Hover */
.expertise-section .offering-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 12px 28px rgba(7, 22, 37, 0.1);

  border-color: #cbd5df;
}

/* Icon box */
.expertise-section .expertise-icon {
  width: 43px;
  height: 43px;

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

  margin-bottom: 17px;

  border-radius: 8px;

  background: #e0f2f3;

  color: #159b8f;
}

/* Dark icon boxes */
.expertise-section .expertise-icon.dark-icon {
  background: #e9edf1;
  color: #10182b;
}

/* SVG */
.expertise-section .expertise-icon svg {
  width: 23px;
  height: 23px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card title */
.expertise-section .offering-card h3 {
  margin: 0 0 18px;

  color: #111a2d;

  font-size: 18px;

  line-height: 1.3;

  font-weight: 800;
}

/* Points */
.expertise-section .expertise-points {
  display: flex;

  flex-direction: column;

  gap: 13px;
}

/* Point text */
.expertise-section .expertise-points p {
  margin: 0;

  color: #506078;

  font-size: 14px;

  line-height: 1.45;
}

/* Bold labels */
.expertise-section .expertise-points strong {
  color: #172137;

  font-weight: 800;
}

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

@media (max-width: 1100px) {
  .expertise-section .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .expertise-section .expertise-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .expertise-section .offering-card {
    min-height: auto;

    padding: 25px;
  }
}

/* =========================================================
   CREDENTIALS
   ========================================================= */

.credentials-section {
  background: var(--white);
}

.credentials-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 0;
}

.credential-item {
  min-height: 145px;

  padding: 30px;

  display: flex;

  gap: 25px;

  border-top: 1px solid rgba(7, 22, 37, 0.12);

  transition: background 0.3s ease;
}

.credential-item:nth-child(odd) {
  border-right: 1px solid rgba(7, 22, 37, 0.12);
}

.credential-item:hover {
  background: #f6f8fa;
}

.credential-index {
  color: var(--red);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;
}

.credential-item h3 {
  margin-bottom: 7px;

  color: var(--navy);

  font-size: 18px;

  line-height: 1.4;
}

.credential-item p {
  color: var(--muted);

  font-size: 13px;
}


/* =========================================================
   CERTIFICATIONS — MODERN CREDENTIAL CARDS
   Scoped only to the Credentials section
   ========================================================= */

.credentials-section {
  background: var(--white);
}

/* =========================================================
   CERTIFICATION CARD GRID
   ========================================================= */

.credentials-section .certification-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 55px;
}
.section-label-achievements {
    color: red;
}

/* =========================================================
   CERTIFICATION CARD
   ========================================================= */

.credentials-section .certification-card {
  min-height: 150px;

  padding: 22px 18px 20px;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  background: #f7f9fb;

  border: 1px solid #dce3e9;

  border-radius: 12px;

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

.credentials-section .certification-card:hover {
  transform: translateY(-5px);

  border-color: #cbd5df;

  box-shadow: 0 12px 28px rgba(7, 22, 37, 0.1);
}

/* =========================================================
   CERTIFICATION ICON
   ========================================================= */

.credentials-section .certification-icon {
  width: 42px;

  height: 42px;

  margin-bottom: 13px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 8px;
}

.credentials-section .certification-icon-teal {
  background: transparent;

  color: #159b8f;
}

.credentials-section .certification-icon svg {
  width: 28px;

  height: 28px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}

/* =========================================================
   CERTIFICATION TITLE
   ========================================================= */

.credentials-section .certification-card h3 {
  margin: 0 0 7px;

  color: var(--navy);

  font-size: 16px;

  line-height: 1.35;

  font-weight: 800;
}

/* =========================================================
   CERTIFICATION SUBTITLE
   ========================================================= */

.credentials-section .certification-card p {
  margin: 0;

  color: #65758a;

  font-size: 13px;

  line-height: 1.5;
}

/* =========================================================
   INDUSTRY AWARD
   ========================================================= */

.credentials-section .industry-award {
  min-height: 150px;

  margin-top: 24px;

  padding: 22px 30px;

  display: flex;

  align-items: center;

  gap: 30px;

  background: var(--navy);

  border-radius: 15px;

  overflow: hidden;

  box-shadow: 0 12px 30px rgba(7, 22, 37, 0.12);
}

/* Award image */

.credentials-section .industry-award-image {
  width: 128px;

  height: 106px;

  flex: 0 0 128px;

  overflow: hidden;

  border-radius: 9px;
}

.credentials-section .industry-award-image img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;
}

/* Award content */

.credentials-section .industry-award-content {
  flex: 1;
}

.credentials-section .industry-award-label {
  display: block;

  margin-bottom: 9px;

  color: #159b8f;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.8px;
}

.credentials-section .industry-award-content h3 {
  margin: 0 0 7px;

  color: var(--white);

  font-size: 20px;

  line-height: 1.4;

  font-weight: 800;
}

.credentials-section .industry-award-content p {
  margin: 0;

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

  font-size: 14px;

  line-height: 1.6;
}

/* =========================================================
   RESPONSIVE — 1100px
   ========================================================= */

@media (max-width: 1100px) {
  .credentials-section .certification-cards {
    grid-template-columns: repeat(3, 1fr);

    margin-top: 100px;
  }
}

/* =========================================================
   RESPONSIVE — 760px
   ========================================================= */

@media (max-width: 760px) {
  .credentials-section .certification-cards {
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-top: 70px;
  }

  .credentials-section .certification-card {
    min-height: 150px;

    padding: 22px 15px;
  }

  .credentials-section .industry-award {
    padding: 20px;

    gap: 20px;
  }

  .credentials-section .industry-award-image {
    width: 105px;

    height: 90px;

    flex-basis: 105px;
  }
}

/* =========================================================
   RESPONSIVE — 520px
   ========================================================= */

@media (max-width: 520px) {
  .credentials-section .certification-cards {
    grid-template-columns: 1fr;

    margin-top: 55px;
  }

  .credentials-section .certification-card {
    min-height: auto;

    padding: 25px 20px;
  }

  .credentials-section .industry-award {
    flex-direction: column;

    align-items: flex-start;

    padding: 20px;
  }

  .credentials-section .industry-award-image {
    width: 115px;

    height: 95px;

    flex-basis: auto;
  }
}

/* =========================================================
   LEADERSHIP
   ========================================================= */

.leadership-section {
  background-image:
    linear-gradient(rgba(6, 18, 31, 0.92), rgba(6, 18, 31, 0.94)),
    url("assets/section-background.png");

  background-size: cover;
  background-position: center;

  color: var(--white);
}

.leadership-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

.leadership-card {
  min-height: 300px;

  padding: 35px 30px;

  border: 1px solid rgba(255, 255, 255, 0.13);

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

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

.leadership-card:hover {
  transform: translateY(-7px);

  background: rgba(255, 255, 255, 0.075);
}

.leadership-number {
  display: block;

  margin-bottom: 75px;

  color: var(--red);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;
}

.leadership-card h3 {
  margin-bottom: 15px;

  color: var(--white);

  font-size: 21px;
}

.leadership-card p {
  color: rgba(255, 255, 255, 0.62);

  font-size: 14px;

  line-height: 1.8;
}

/* =========================================================
   SECTORS
   ========================================================= */

.sectors-section {
  background: #f6f8fa;
}

.sectors-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 15px;
}

.sector-card {
  min-height: 180px;

  padding: 30px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: var(--white);

  border: 1px solid rgba(7, 22, 37, 0.1);

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

.sector-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(7, 22, 37, 0.08);
}

.sector-card span {
  color: var(--red);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;
}

.sector-card h3 {
  color: var(--navy);

  font-size: 20px;
}

/* =========================================================
   VALUE SECTION
   ========================================================= */

.value-section {
  position: relative;

  padding: 120px 0;

  background: linear-gradient(120deg, #071625, #102d45);

  color: var(--white);

  overflow: hidden;
}

.value-overlay {
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 80% 50%,
    rgba(243, 39, 61, 0.12),
    transparent 35%
  );
}

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

.value-heading > span {
  display: block;

  margin-bottom: 18px;

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

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

  letter-spacing: 3px;
}

.value-heading h2 {
  margin-bottom: 65px;

  font-size: clamp(42px, 5vw, 70px);

  line-height: 1.05;

  letter-spacing: -2px;
}

.value-heading h2 strong {
  color: var(--red);
}

.value-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.value-card {
  padding: 35px;

  border: 1px solid rgba(255, 255, 255, 0.13);

  background: rgba(255, 255, 255, 0.035);
}

.value-card span {
  color: var(--red);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;
}

.value-card h3 {
  margin-top: 45px;
  margin-bottom: 15px;

  font-size: 23px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.62);

  font-size: 14px;

  line-height: 1.8;
}

/* =========================================================
   AI GOVERNANCE
   ========================================================= */

.ai-section {
  background: var(--white);
}

.ai-grid {
  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  gap: 100px;

  align-items: center;
}

.ai-grid h2 {
  margin-top: 12px;

  color: var(--navy);

  font-size: clamp(40px, 4.5vw, 64px);

  line-height: 1.05;

  letter-spacing: -2px;
}

.ai-grid h2 span {
  color: var(--red);
}

.ai-grid p {
  max-width: 680px;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.9;
}

.ai-large-text {
  margin-bottom: 20px;

  color: var(--navy) !important;

  font-size: 24px !important;

  line-height: 1.65 !important;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  background: linear-gradient(180deg, #f5f8fa, #ffffff);
}

.contact-grid {
  display: grid;

  grid-template-columns:
    0.7fr
    1.3fr;

  gap: 60px;

  align-items: stretch;
}

/* =========================================================
   AI GOVERNANCE & RISK ASSURANCE
   NEW SECTION - FULLY SCOPED
   Does not modify existing AI / Experience / other styles
   ========================================================= */

.ai-assurance-section {
  background: #f4f7fa;
  padding: 125px 0;
}

.ai-assurance-section .section-container {
  width: min(calc(100% - 100px), var(--max-width));
  margin: 0 auto;
}

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

.ai-assurance-heading {
  margin-bottom: 70px;
}

.ai-assurance-label {
  display: block;

  margin-bottom: 14px;

  color: #168f82;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.5px;
}

.risk-assurance{
    color: red;
}

.ai-assurance-heading h2 {
  margin: 0;

  color: var(--navy);

  font-size: clamp(38px, 4vw, 60px);

  line-height: 1.08;

  letter-spacing: -2px;

  font-weight: 700;
}

/* =========================================================
   MAIN TWO-COLUMN LAYOUT
   ========================================================= */

.ai-assurance-grid {
  display: grid;

  grid-template-columns:
    1.15fr
    1fr;

  gap: 34px;

  align-items: stretch;
}

/* =========================================================
   LEFT SIDE
   ========================================================= */

.ai-assurance-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 14px;
}

/* =========================================================
   ASSURANCE CARDS
   ========================================================= */

.ai-assurance-card {
  position: relative;

  min-height: 94px;

  padding: 22px 28px 20px 30px;

  background: #ffffff;

  border: 1px solid #dce3e9;

  display: flex;

  flex-direction: column;

  justify-content: center;

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

.ai-assurance-card:hover {
  transform: translateX(5px);

  box-shadow: 0 12px 28px rgba(7, 22, 37, 0.08);
}

/* Left accent line */

.ai-card-teal {
  border-left: 5px solid #169b8b;
}

.ai-card-navy {
  border-left: 5px solid var(--navy);
}

/* Card heading */

.ai-assurance-card h3 {
  margin: 0 0 5px;

  color: var(--navy);

  font-size: 17px;

  line-height: 1.4;

  font-weight: 700;
}

/* Card paragraph */

.ai-assurance-card p {
  margin: 0;

  color: #536273;

  font-size: 14px;

  line-height: 1.6;
}

/* =========================================================
   RIGHT SIDE VISUAL
   ========================================================= */

.ai-assurance-visual {
  display: flex;

  flex-direction: column;

  min-height: 550px;

  overflow: hidden;

  border-radius: 15px;

  background: var(--navy);

  border: 1px solid rgba(7, 22, 37, 0.15);

  box-shadow: 0 18px 40px rgba(7, 22, 37, 0.12);
}

/* =========================================================
   AI IMAGE
   ========================================================= */

.ai-assurance-image {
  position: relative;

  width: 100%;

  height: 420px;

  overflow: hidden;

  background: #061b35;
}

.ai-assurance-image img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transition: transform 0.5s ease;
}

.ai-assurance-visual:hover .ai-assurance-image img {
  transform: scale(1.025);
}

/* =========================================================
   CLIENT VALUE PROPOSITION
   ========================================================= */

.ai-client-value {
  flex: 1;

  min-height: 130px;

  padding: 28px 26px 30px;

  background: #071625;

  color: var(--white);
}

.ai-client-value span {
  display: block;

  margin-bottom: 8px;

  color: #169b8b;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;
}

.ai-client-value p {
  max-width: 570px;

  margin: 0;

  color: var(--white);

  font-size: 16px;

  line-height: 1.6;

  font-weight: 700;
}

/* =========================================================
   RESPONSIVE - 900px
   ========================================================= */

@media (max-width: 900px) {
  .ai-assurance-section {
    padding: 100px 0;
  }

  .ai-assurance-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .ai-assurance-visual {
    min-height: 500px;
  }

  .ai-assurance-image {
    height: 390px;
  }
}

/* =========================================================
   RESPONSIVE - 650px
   ========================================================= */

@media (max-width: 650px) {
  .ai-assurance-section {
    padding: 80px 0;
  }

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

  .ai-assurance-heading {
    margin-bottom: 45px;
  }

  .ai-assurance-heading h2 {
    font-size: 38px;

    letter-spacing: -1.5px;
  }

  .ai-assurance-grid {
    gap: 30px;
  }

  .ai-assurance-card {
    min-height: auto;

    padding: 22px 20px 22px 24px;
  }

  .ai-assurance-card h3 {
    font-size: 16px;
  }

  .ai-assurance-card p {
    font-size: 13px;
  }

  .ai-assurance-visual {
    min-height: 420px;

    border-radius: 10px;
  }

  .ai-assurance-image {
    height: 300px;
  }

  .ai-client-value {
    min-height: 120px;

    padding: 22px 20px 24px;
  }

  .ai-client-value p {
    font-size: 14px;
  }
}

/* =========================================================
   RESPONSIVE - 480px
   ========================================================= */

@media (max-width: 480px) {
  .ai-assurance-heading h2 {
    font-size: 32px;
  }

  .ai-assurance-image {
    height: 260px;
  }

  .ai-client-value {
    padding: 20px;
  }

  .ai-client-value p {
    font-size: 13px;
  }
}

/* =========================================================
   CLIENT FEEDBACK — WHAT CLIENTS APPRECIATE
   NEW STANDALONE SECTION
   ========================================================= */

.client-feedback-section {
  background: #f4f7fa;
}

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

.client-feedback-heading {
  margin-bottom: 0;
}

.client-feedback-label {
  display: block;

  margin-bottom: 14px;

  color: #159b8f;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.5px;
}

.client-feedback-heading h2 {
  margin: 0;

  color: var(--navy);

  font-size: clamp(38px, 4vw, 56px);

  line-height: 1.1;

  letter-spacing: -1.5px;

  font-weight: 700;
}

/* =========================================================
   THREE-CARD GRID
   ========================================================= */

.client-feedback-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  margin-top: 70px;
}

/* =========================================================
   FEEDBACK CARD
   ========================================================= */

.client-feedback-card {
  min-height: 292px;

  padding: 32px 30px 28px;

  display: flex;

  flex-direction: column;

  background: #ffffff;

  border: 1px solid #dce3e9;

  border-radius: 14px;

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

.client-feedback-card:hover {
  transform: translateY(-5px);

  border-color: #cbd5df;

  box-shadow: 0 14px 30px rgba(7, 22, 37, 0.09);
}

.client-feedback-section {
  padding-top: 20px;
  padding-bottom: 90px;
}

/* =========================================================
   QUOTE
   ========================================================= */

.client-feedback-quote {
  flex: 1;
}

.client-feedback-quote p {
  margin: 0;

  color: #34465d;

  font-size: 14px;

  line-height: 1.8;

  font-style: italic;
}

/* =========================================================
   DIVIDER
   ========================================================= */

.client-feedback-divider {
  width: 100%;

  height: 1px;

  margin: 26px 0 17px;

  background: #e3e8ed;
}

/* =========================================================
   AUTHOR
   ========================================================= */

.client-feedback-author {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.client-feedback-author strong {
  color: var(--navy);

  font-size: 14px;

  line-height: 1.4;

  font-weight: 800;
}

.client-feedback-author span {
  color: #159b8f;

  font-size: 12px;

  line-height: 1.5;
}

/* =========================================================
   RESPONSIVE — 900px
   ========================================================= */

@media (max-width: 900px) {
  .client-feedback-grid {
    grid-template-columns: 1fr;

    gap: 18px;

    margin-top: 90px;
  }

  .client-feedback-card {
    min-height: 250px;
  }
}

/* =========================================================
   RESPONSIVE — 600px
   ========================================================= */

@media (max-width: 600px) {
  .client-feedback-section {
    padding-top: 80px;

    padding-bottom: 80px;
  }

  .client-feedback-heading h2 {
    font-size: 36px;
  }

  .client-feedback-grid {
    margin-top: 60px;
  }

  .client-feedback-card {
    min-height: auto;

    padding: 26px 22px;
  }

  .client-feedback-quote p {
    font-size: 13px;

    line-height: 1.75;
  }
}

/* =========================================================
   COLLABORATION — ENGAGEMENT MODELS
   ========================================================= */

.engagement-models-section {
  background: #ffffff;
}

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

.engagement-heading {
  margin-bottom: 0;
}

.engagement-label {
  display: block;

  margin-bottom: 14px;

  color: #159b8f;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.5px;
}

.engagemene-offerings{
    color: red;
}

.engagement-heading h2 {
  margin: 0;

  color: var(--navy);

  font-size: clamp(38px, 4vw, 56px);

  line-height: 1.1;

  letter-spacing: -1.5px;

  font-weight: 700;
}

/* =========================================================
   TWO COLUMN LAYOUT
   ========================================================= */

.engagement-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 36px;

  margin-top: 70px;
}

/* =========================================================
   MAIN PANELS
   ========================================================= */

.engagement-panel {
  min-height: 550px;

  padding: 36px 34px 34px;

  display: flex;

  flex-direction: column;

  background: #f7f9fb;

  border: 1px solid #dce3e9;

  border-radius: 15px;
}

.engagement-panel > h3 {
  margin: 0;

  color: var(--navy);

  font-size: 21px;

  line-height: 1.4;

  font-weight: 800;
}

/* =========================================================
   LEFT — CONSULTING MODELS
   ========================================================= */

.engagement-model-list {
  display: flex;

  flex-direction: column;

  gap: 16px;

  margin-top: 75px;
}

.engagement-model-item {
  min-height: 80px;

  padding: 20px;

  display: flex;

  align-items: center;

  background: #ffffff;

  border: 1px solid #dce3e9;

  border-radius: 11px;

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

.engagement-model-item:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 22px rgba(7, 22, 37, 0.08);
}

.engagement-model-item p {
  margin: 0;

  color: #536273;

  font-size: 14px;

  line-height: 1.55;
}

.engagement-model-item strong {
  color: #159b8f;

  font-weight: 800;
}

/* =========================================================
   RIGHT — SAMPLE ENGAGEMENT MENU
   ========================================================= */

.engagement-menu-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;

  margin-top: 75px;
}

.engagement-menu-item {
  min-height: 102px;

  padding: 18px;

  background: #ffffff;

  border: 1px solid #dce3e9;

  border-radius: 11px;

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

.engagement-menu-item:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 22px rgba(7, 22, 37, 0.08);
}

.engagement-menu-item h4 {
  margin: 0 0 8px;

  color: var(--navy);

  font-size: 15px;

  line-height: 1.4;

  font-weight: 800;
}

.engagement-menu-item p {
  margin: 0;

  color: #536273;

  font-size: 13px;

  line-height: 1.55;
}

/* =========================================================
   PANEL FOOTERS
   ========================================================= */

.engagement-panel-footer {
  min-height: 50px;

  margin-top: auto;

  border-radius: 10px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 13px 18px;

  font-size: 14px;

  font-weight: 800;
}

/* Dark footer */

.engagement-footer-dark {
  gap: 12px;

  background: var(--navy);

  color: var(--white);
}

.engagement-footer-icon {
  color: #159b8f;

  font-size: 15px;
}

/* Teal footer */

.engagement-footer-teal {
  background: #159b8f;

  color: var(--white);
}

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

@media (max-width: 900px) {
  .engagement-grid {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .engagement-panel {
    min-height: 500px;
  }
}

@media (max-width: 600px) {
  .engagement-models-section {
    padding-top: 80px;

    padding-bottom: 80px;
  }

  .engagement-heading h2 {
    font-size: 36px;
  }

  .engagement-grid {
    margin-top: 50px;
  }

  .engagement-panel {
    min-height: auto;

    padding: 26px 20px;
  }

  .engagement-model-list,
  .engagement-menu-grid {
    margin-top: 40px;
  }

  .engagement-menu-grid {
    grid-template-columns: 1fr;
  }

  .engagement-panel-footer {
    margin-top: 35px;
  }
}

/* =========================================================
   QUICK ID
   ========================================================= */

.quick-id {
  padding: 40px;

  background: var(--navy);

  color: var(--white);
}

.quick-id h3 {
  font-size: 13px;

  letter-spacing: 3px;
}

.quick-line {
  width: 50px;
  height: 2px;

  margin: 18px 0 45px;

  background: var(--red);
}

.contact-detail {
  padding: 20px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail span {
  display: block;

  margin-bottom: 7px;

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

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

  letter-spacing: 2px;
}

.contact-detail strong,
.contact-detail a {
  color: var(--white);

  font-size: 14px;

  line-height: 1.6;

  word-break: break-word;
}

.contact-detail a {
  transition: color 0.25s ease;
}

.contact-detail a:hover {
  color: var(--red);
}

/* =========================================================
   CONNECT PANEL
   ========================================================= */

.connect-panel {
  padding: 45px;

  background: var(--white);

  border: 1px solid rgba(7, 22, 37, 0.1);

  box-shadow: 0 20px 60px rgba(7, 22, 37, 0.07);
}

.connect-label {
  display: block;

  margin-bottom: 15px;

  color: var(--red);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;
}

.connect-panel h3 {
  max-width: 760px;

  margin-bottom: 17px;

  color: var(--navy);

  font-size: 28px;

  line-height: 1.35;
}

.connect-panel > p {
  max-width: 760px;

  margin-bottom: 30px;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================================
   STRATEGIC ASSURANCE & RISK ADVISORY
   CONTACT RIGHT SIDE
   ========================================================= */

.contact-section .connect-panel {
  padding: 0;

  display: flex;

  align-items: stretch;

  justify-content: stretch;

  background: var(--navy);

  border: none;

  box-shadow: none;
}

/* =========================================================
   STRATEGIC CONNECT CARD
   ========================================================= */

.strategic-connect-card {
  width: 100%;

  min-height: 295px;

  padding: 42px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background:
    linear-gradient(
      90deg,
      rgba(4, 15, 27, 0.96) 0%,
      rgba(4, 15, 27, 0.88) 38%,
      rgba(4, 15, 27, 0.58) 62%,
      rgba(4, 15, 27, 0.28) 100%
    ),
    url("assets/contact-background-image.png");

  background-size: cover;

  background-position: 65% center;

  background-repeat: no-repeat;

  border: 1px solid rgba(148, 163, 184, 0.28);

  border-radius: 22px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);

  overflow: hidden;
}

/* =========================================================
   STRATEGIC ADVISORY HEADING
   ========================================================= */

.strategic-connect-heading {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 28px;
}

.strategic-connect-icon {
  width: 44px;

  height: 44px;

  flex: 0 0 44px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  background: rgba(21, 155, 143, 0.18);

  color: #159b8f;
}

.strategic-connect-icon svg {
  width: 25px;

  height: 25px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}

.strategic-connect-heading > span {
  color: #94a3b8;

  font-size: 14px;

  line-height: 1.5;

  font-weight: 700;
}

/* =========================================================
   STRATEGIC MESSAGE
   ========================================================= */

.strategic-connect-message {
  max-width: 620px;
}

.strategic-connect-message p {
  margin: 0;

  color: #ffffff;

  font-size: 21px;

  line-height: 1.65;

  font-weight: 700;
}

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

@media (max-width: 900px) {
  .contact-section .connect-panel {
    padding: 0;
  }

  .strategic-connect-card {
    min-height: 270px;

    padding: 36px;
  }
}

@media (max-width: 600px) {
  .contact-section .connect-panel {
    padding: 0;
  }

  .strategic-connect-card {
    min-height: auto;

    padding: 30px 24px;

    border-radius: 16px;
  }

  .strategic-connect-heading {
    gap: 13px;

    margin-bottom: 22px;
  }

  .strategic-connect-icon {
    width: 40px;

    height: 40px;

    flex-basis: 40px;
  }

  .strategic-connect-heading > span {
    font-size: 12px;
  }

  .strategic-connect-message p {
    font-size: 17px;

    line-height: 1.6;
  }
}

/* =========================================================
   SERVICES
   ========================================================= */

.service-list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 10px;

  margin-bottom: 30px;
}

.service-card {
  min-height: 65px;

  padding: 15px 18px;

  display: flex;
  align-items: center;

  gap: 15px;

  background: #f5f7f9;

  border: 1px solid rgba(7, 22, 37, 0.07);

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

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

  background: #edf1f4;
}

.service-card span {
  color: var(--red);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1px;
}

.service-card strong {
  color: var(--navy);

  font-size: 12px;

  line-height: 1.4;
}

/* =========================================================
   CONNECT BUTTONS
   ========================================================= */

.connect-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.whatsapp-button,
.linkedin-button {
  min-height: 53px;

  padding: 0 22px;

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

  gap: 12px;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1px;

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

.whatsapp-button {
  background: #1fca65;

  color: var(--white);
}

.whatsapp-button:hover {
  background: #18ae56;

  transform: translateY(-3px);
}

.linkedin-button {
  background: var(--navy);

  color: var(--white);
}

.linkedin-button:hover {
  background: var(--blue);

  transform: translateY(-3px);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;

  display: inline-flex;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;

  fill: currentColor;
}

.linkedin-button span {
  font-size: 18px;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp {
  position: fixed;

  right: 20px;
  bottom: 20px;

  z-index: 999;

  width: 64px;
  height: 64px;

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

  border-radius: 50%;

  background: #20d66b;

  color: var(--white);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);

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

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

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

  fill: currentColor;
}

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

.site-footer {
  background: var(--deep-navy);

  color: var(--white);
}

.footer-container {
  width: min(calc(100% - 100px), var(--max-width));

  margin: auto;

  padding: 65px 0;

  display: grid;

  grid-template-columns:
    1.3fr
    0.7fr
    1fr;

  gap: 60px;
}

.footer-logo {
  margin-bottom: 12px;

  font-size: 30px;
  font-weight: 800;

  letter-spacing: -2px;
}

.footer-logo span {
  color: var(--red);
}

.footer-brand p {
  margin-bottom: 4px;

  color: var(--white);

  font-size: 15px;
}

.footer-brand > span {
  color: rgba(255, 255, 255, 0.45);

  font-size: 11px;

  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;

  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);

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

  letter-spacing: 1.5px;

  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-contact {
  display: flex;
  flex-direction: column;

  align-items: flex-end;

  gap: 12px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);

  font-size: 13px;

  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(calc(100% - 100px), var(--max-width));

  margin: auto;

  padding: 20px 0;

  display: flex;
  justify-content: space-between;

  gap: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

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

  font-size: 9px;

  letter-spacing: 1px;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(25px);

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

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   PAGE LOADING
   ========================================================= */

body {
  opacity: 0;

  transition: opacity 0.35s ease;
}

/* =========================================================
   RESPONSIVE - 1200px
   ========================================================= */

@media (max-width: 1200px) {
  .nav-container {
    width: min(calc(100% - 50px), var(--max-width));
  }

  .nav-links {
    gap: 19px;
  }

  .nav-resume {
    min-width: 175px;
  }

  .hero-container {
    width: min(calc(100% - 70px), var(--max-width));

    grid-template-columns:
      1.1fr
      0.9fr;
  }

  .hero-content h1 {
    font-size: 70px;
  }

  .profile-ring {
    width: 315px;
    height: 315px;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
  }

  .orbit-two {
    width: 400px;
    height: 400px;
  }

  .orbit-three {
    width: 455px;
    height: 455px;
  }

  .hero-credentials {
    width: calc(100% - 70px);
  }

  .hero-credential {
    padding: 15px;
  }

  .hero-credential strong {
    font-size: 14px;
  }

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

  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================
   RESPONSIVE - 900px
   ========================================================= */

@media (max-width: 900px) {
  .site-header {
    height: 75px;
  }

  .site-header.scrolled {
    height: 70px;
  }

  .nav-container {
    width: calc(100% - 35px);
  }

  .nav-links {
    position: absolute;

    top: 75px;
    left: 0;

    width: 100%;

    padding: 20px 30px 30px;

    display: none;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    background: rgba(5, 17, 29, 0.98);

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-resume {
    margin-left: auto;

    min-width: 160px;
    height: 43px;

    font-size: 10px;
  }

  .menu-btn {
    display: block;
  }

  .hero-section {
    min-height: 1050px;
  }

  .hero-container {
    width: calc(100% - 50px);

    padding-top: 50px;

    grid-template-columns: 1fr;

    text-align: center;

    gap: 0;
  }

  .hero-content {
    margin: auto;

    padding-bottom: 10px;
  }

  .hero-kicker {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: clamp(50px, 9vw, 75px);
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-profile {
    min-height: 400px;
  }

  .profile-side-text {
    right: 8%;
  }

  .hero-credentials {
    width: calc(100% - 50px);

    overflow-x: auto;
  }

  .hero-credential {
    min-width: 170px;
  }

  .about-grid,
  .ai-grid,
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

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

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* =========================================================
   RESPONSIVE - 650px
   ========================================================= */

@media (max-width: 650px) {
  .nav-container {
    width: calc(100% - 25px);

    gap: 10px;
  }

  .logo {
    min-width: auto;

    font-size: 28px;
  }

  .nav-resume {
    display: none;
  }

  .hero-section {
    min-height: 980px;
  }

  .hero-container {
    width: calc(100% - 30px);

    padding-top: 30px;
  }

  .hero-kicker {
    flex-wrap: wrap;

    gap: 7px;

    font-size: 10px;

    letter-spacing: 2.5px;
  }

  .hero-kicker i {
    width: 22px;
  }

  .hero-content h1 {
    font-size: 48px;

    letter-spacing: -2.5px;
  }

  .hero-role {
    font-size: 15px;

    letter-spacing: 3px;
  }

  .hero-description {
    font-size: 14px;

    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;

    width: 100%;

    gap: 10px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;

    min-height: 54px;
  }

  .hero-profile {
    min-height: 330px;
  }

  .profile-ring {
    width: 245px;
    height: 245px;
  }

  .orbit-one {
    width: 280px;
    height: 280px;
  }

  .orbit-two {
    width: 315px;
    height: 315px;
  }

  .orbit-three {
    width: 355px;
    height: 355px;
  }

  .profile-side-text {
    right: 0;

    gap: 13px;
  }

  .profile-side-text span {
    font-size: 8px;

    letter-spacing: 1.3px;
  }

  .hero-credentials {
    width: 100%;

    padding-left: 15px;

    justify-content: flex-start;
  }

  .hero-credential {
    min-width: 145px;

    padding: 10px;
  }

  .credential-divider {
    height: 35px;
  }

  .hero-credential strong {
    font-size: 12px;
  }

  .hero-credential span {
    font-size: 8px;
  }

  .credential-icon {
    display: none;
  }

  .content-section {
    padding: 85px 0;
  }

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

  .section-heading {
    gap: 14px;

    margin-bottom: 45px;
  }

  .section-heading h2 {
    font-size: 39px;
  }

  .large-text {
    font-size: 19px;
  }

  .domain-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid,
  .leadership-grid,
  .value-grid,
  .credentials-grid,
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .offering-card {
    min-height: 290px;
  }

  .leadership-card {
    min-height: 260px;
  }

  .credential-item {
    min-height: auto;

    padding: 25px 10px;
  }

  .credential-item:nth-child(odd) {
    border-right: none;
  }

  .experience-top {
    flex-direction: column;

    align-items: flex-start;
  }

  .experience-company {
    text-align: left;
  }

  .connect-panel {
    padding: 28px 22px;
  }

  .connect-panel h3 {
    font-size: 22px;
  }

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

  .connect-buttons {
    flex-direction: column;
  }

  .whatsapp-button,
  .linkedin-button {
    width: 100%;
  }

  .quick-id {
    padding: 30px 25px;
  }

  .footer-container {
    width: calc(100% - 30px);

    padding: 50px 0;

    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-bottom {
    width: calc(100% - 30px);

    padding: 18px 0;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;

    width: 58px;
    height: 58px;
  }

  .floating-whatsapp svg {
    width: 29px;
    height: 29px;
  }
}

/* =========================================================
   RESPONSIVE - 430px
   ========================================================= */

@media (max-width: 430px) {
  .hero-section {
    min-height: 930px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-role {
    font-size: 13px;

    letter-spacing: 2px;
  }

  .hero-profile {
    min-height: 300px;
  }

  .profile-ring {
    width: 220px;
    height: 220px;
  }

  .orbit-one {
    width: 250px;
    height: 250px;
  }

  .orbit-two {
    width: 285px;
    height: 285px;
  }

  .orbit-three {
    width: 320px;
    height: 320px;
  }

  .profile-side-text {
    right: -3px;
  }

  .profile-side-text span {
    font-size: 7px;
  }

  .hero-credentials {
    min-height: 90px;
  }

  .hero-credential {
    min-width: 125px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-number {
    font-size: 10px;
  }

  .section-label {
    font-size: 9px;

    letter-spacing: 2px;
  }
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);

  outline-offset: 4px;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
