/* =========================================
   SHRESTHA DIGITAL WEBSITE
   Complete updated stylesheet
   ========================================= */

:root {
  --navy: #0b3152;
  --navy-dark: #071f35;
  --teal: #4ed8c3;
  --cyan: #59c0df;
  --blue: #719cf5;
  --text-dark: #0a2d4e;
  --text-muted: #587086;
  --line: #d8e4eb;
  --border-color: #d5e2ea;
  --background: #f6fafc;
  --background-light: #f7fbfd;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1360px;
}

/* =========================================
   TOP BAR
   ========================================= */

.top-bar {
  position: relative;
  z-index: 30;
  padding: 9px 0;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
}

.top-bar i {
  margin-right: 7px;
  color: var(--teal);
}

.top-contact a {
  color: var(--white);
  transition: color 0.2s ease;
}

.top-contact a:hover {
  color: var(--teal);
}

/* =========================================
   NAVIGATION BAR
   ========================================= */

.main-navbar {
  position: sticky;
  top: 0;
  z-index: 25;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(10, 45, 73, 0.04);
  backdrop-filter: blur(14px);
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-circle {
  width: 46px;
  height: 46px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  font-size: 22px;
  font-weight: 800;
}

.brand-text h1 {
  margin: 0;
  color: var(--text-dark);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-text p {
  margin: 4px 0 0;
  color: #73869a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
}

.navbar-nav {
  gap: 20px;
}

.nav-link {
  position: relative;
  padding: 13px 4px !important;
  color: #102a43 !important;
  font-weight: 700;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #69a3ee !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.quote-button {
  padding: 14px 27px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(13, 49, 80, 0.18);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.quote-button:hover {
  border-color: #15476e;
  background: #15476e;
  color: var(--white);
  box-shadow: 0 20px 38px rgba(13, 49, 80, 0.23);
  transform: translateY(-2px);
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero-section {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 35%,
      rgba(74, 185, 221, 0.1),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #f8fbfd 0%,
      #f3f9fc 100%
    );
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(25, 78, 107, 0.075) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(25, 78, 107, 0.075) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 55px;
  padding-bottom: 82px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-eyebrow,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: #03748f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  white-space: nowrap;
}

.hero-eyebrow-line,
.eyebrow span {
  width: 36px;
  height: 3px;
  flex-shrink: 0;
  background: var(--teal);
}

.coordinate-pill,
.location-pill {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid #d2dfe7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #567087;
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 1.4px;
}

.hero-title {
  max-width: 700px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(53px, 4.5vw, 75px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -4px;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--teal) 0%,
    var(--cyan) 50%,
    var(--blue) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 670px;
  margin: 32px 0 28px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-buttons {
  margin-bottom: 36px;
}

.hero-primary-button,
.hero-secondary-button,
.btn-primary-custom,
.btn-outline-custom {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 29px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.hero-primary-button,
.btn-primary-custom {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(11, 49, 82, 0.18);
}

.hero-primary-button:hover,
.btn-primary-custom:hover {
  border-color: #174b72;
  background: #174b72;
  color: var(--white);
  transform: translateY(-2px);
}

.hero-secondary-button,
.btn-outline-custom {
  border: 1px solid var(--navy);
  background: rgba(255, 255, 255, 0.5);
  color: var(--navy);
}

.hero-secondary-button:hover,
.btn-outline-custom:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================
   HERO STATISTICS
   ========================================= */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 710px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 54px rgba(10, 44, 72, 0.1);
}

.hero-stat-item {
  position: relative;
  min-width: 0;
  padding: 27px 22px 25px;
}

.hero-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 0;
  bottom: 27px;
  width: 1px;
  background: #e0e9ef;
}

.hero-stat-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.hero-stat-item span {
  display: block;
  color: #60768a;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

/* =========================================
   HERO IMAGE
   ========================================= */

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  padding: 18px 0 0 18px;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(73, 135, 170, 0.38);
  border-radius: 30px;
  background: #061726;
  box-shadow:
    0 32px 76px rgba(6, 33, 54, 0.24),
    0 8px 20px rgba(6, 33, 54, 0.08);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(139, 213, 235, 0.05);
  pointer-events: none;
}

.hero-image-card img {
  width: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-corner,
.corner-line {
  position: absolute;
  z-index: 3;
  width: 58px;
  height: 58px;
}

.hero-corner-top,
.corner-top-left {
  top: 0;
  left: 0;
  border-top: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
}

.hero-corner-bottom,
.corner-bottom-right {
  right: -10px;
  bottom: 42px;
  border-right: 3px solid #f2b846;
  border-bottom: 3px solid #f2b846;
}

.hero-image-caption,
.image-caption {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 7px 15px;
  border: 1px solid #d0dee7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: #547087;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 1.35px;
}

/* =========================================
   WHAT WE DO / CAPABILITIES SECTION
   ========================================= */

.capabilities-section {
  padding: 82px 0 72px;
  border-top: 1px solid #dce7ed;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(85, 162, 200, 0.07),
      transparent 45%
    ),
    #fafdff;
}

.capabilities-heading {
  margin-bottom: 48px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  color: #04758f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.section-eyebrow span {
  width: 34px;
  height: 2px;
  flex-shrink: 0;
  background: var(--teal);
}

.capabilities-heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.8px;
}

.capabilities-intro {
  max-width: 670px;
  margin: 0 0 4px auto;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
  text-align: right;
}

.capabilities-grid {
  position: relative;
}

.capability-card {
  height: 100%;
  min-height: 275px;
  padding: 31px 28px;
  border: 1px solid #d5e2ea;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 24px 54px rgba(10, 44, 72, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.capability-card:hover {
  border-color: rgba(78, 216, 195, 0.6);
  box-shadow:
    0 30px 66px rgba(10, 44, 72, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-7px);
}

.capability-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  font-size: 24px;
}

.capability-card h3 {
  margin: 0 0 13px;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.6px;
}

.capability-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.capabilities-button-area {
  margin-top: 47px;
  text-align: center;
}

.capabilities-button {
  min-height: 61px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 31px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.capabilities-button:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(11, 49, 82, 0.17);
  transform: translateY(-2px);
}

/* =========================================
   OPTIONAL LEGACY SERVICES SECTION
   Keeps older HTML from breaking
   ========================================= */

.services-section {
  padding: 90px 0;
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-heading span,
.small-label {
  color: #159784;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.section-heading h2,
.simple-section h2 {
  margin-top: 12px;
  color: var(--text-dark);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -2px;
}

.service-card {
  height: 100%;
  padding: 34px;
  border: 1px solid #dfeaf0;
  border-radius: 22px;
  background: var(--white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 24px 50px rgba(10, 45, 73, 0.1);
  transform: translateY(-7px);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #eafaf7;
  color: #159784;
  font-size: 25px;
}

.service-card h3 {
  color: var(--text-dark);
  font-size: 21px;
  font-weight: 800;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   SIMPLE SECTIONS
   ========================================= */

.simple-section {
  padding: 90px 0;
  background: #f6fafc;
}

.simple-section p {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.company-section {
  background: var(--white);
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-section {
  padding: 70px 0;
  background: var(--navy-dark);
}

.contact-box span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.contact-box h2 {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -2px;
}

.contact-button {
  min-height: 58px;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--navy-dark);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.contact-button:hover {
  background: var(--white);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* =========================================
   LARGE TABLET
   ========================================= */

@media (max-width: 1199px) {
  .hero-title {
    font-size: 59px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stat-item:nth-child(2)::after {
    display: none;
  }

  .hero-stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid #e0e9ef;
  }

  .hero-image-card img {
    min-height: 500px;
  }
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {
  .navbar-collapse {
    padding-top: 18px;
  }

  .navbar-nav {
    gap: 0;
  }

  .quote-button {
    display: inline-block;
    margin-top: 10px;
  }

  .hero-container {
    padding-top: 54px;
  }

  .hero-image-wrapper {
    max-width: 800px;
    margin: 28px auto 0;
  }

  .hero-image-card img {
    min-height: auto;
  }

  .capabilities-section {
    padding: 75px 0 65px;
  }

  .capabilities-heading {
    margin-bottom: 42px;
  }

  .capabilities-intro {
    max-width: 700px;
    margin-left: 0;
    text-align: left;
  }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {
  .top-location {
    text-align: center;
  }

  .top-contact {
    font-size: 12px;
  }

  .brand-text h1 {
    font-size: 19px;
  }

  .brand-text p {
    font-size: 8px;
    letter-spacing: 3px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-eyebrow,
  .eyebrow {
    white-space: normal;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero-title {
    font-size: 46px;
    letter-spacing: -2.5px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-primary-button,
  .hero-secondary-button,
  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 23px;
  }

  .hero-stat-item {
    padding: 22px 18px;
  }

  .hero-stat-item strong {
    font-size: 26px;
  }

  .hero-image-wrapper {
    padding-left: 11px;
  }

  .hero-image-card {
    border-radius: 23px;
  }

  .hero-image-caption,
  .image-caption {
    font-size: 9px;
    letter-spacing: 0.9px;
  }

  .capabilities-heading h2 {
    font-size: 39px;
    letter-spacing: -2px;
  }

  .capabilities-intro {
    font-size: 16px;
  }

  .capability-card {
    min-height: auto;
    padding: 29px 25px;
    border-radius: 24px;
  }

  .capabilities-button,
  .contact-button {
    width: 100%;
  }
}

/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {
  .top-location {
    display: none;
  }

  .brand-circle {
    width: 42px;
    height: 42px;
  }

  .hero-container {
    padding-top: 45px;
  }

  .hero-title {
    font-size: 40px;
  }

  .coordinate-pill,
  .location-pill {
    font-size: 10px;
  }

  .hero-stat-item span {
    font-size: 9px;
  }

  .hero-corner,
  .corner-line {
    width: 40px;
    height: 40px;
  }
}


/* =========================================
   INSTITUTIONAL CREDIBILITY SECTION
   ========================================= */

.credibility-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #08243b;
  color: #ffffff;
}

.credibility-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(120, 178, 210, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(120, 178, 210, 0.08) 1px,
      transparent 1px
    );
  background-size: 38px 38px;
  pointer-events: none;
}

.credibility-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 20%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(79, 214, 196, 0.06);
  filter: blur(90px);
}

.credibility-container {
  position: relative;
  z-index: 2;
}

.credibility-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 19px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.credibility-eyebrow span {
  width: 37px;
  height: 3px;
  flex-shrink: 0;
  background: var(--teal);
}

.credibility-title {
  max-width: 750px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 4vw, 61px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
}

.credibility-description {
  max-width: 790px;
  margin: 25px 0 31px;
  color: #b9cad8;
  font-size: 18px;
  line-height: 1.65;
}

/* Institution cards */

.institution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.institution-card {
  min-height: 210px;
  padding: 22px 14px;
  text-align: center;
}

.institution-logo {
  width: 72px;
  height: 72px;
  display: block;
  margin: 0 auto 15px;
  padding: 8px;
  border: 2px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
  object-fit: contain;
}

.institution-card h3 {
  margin: 0 0 7px;
  font-size: 20px;
  line-height: 1.25;
}

.institution-card p {
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .institution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .institution-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .institution-grid {
    grid-template-columns: 1fr;
  }

  .institution-card:last-child {
    grid-column: auto;
  }
}
/* Experience panel */

.experience-panel {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 38px;
  background: #ffffff;
  color: var(--text-dark);
  box-shadow: 0 35px 80px rgba(0, 12, 25, 0.30);
}

.experience-panel-title {
  margin: 0 0 17px;
  color: var(--text-dark);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.experience-list {
  display: flex;
  flex-direction: column;
}

.experience-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.experience-item:not(:last-child) {
  border-bottom: 1px solid #d9e4eb;
}

.experience-icon {
  width: 50px;
  height: 50px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  font-size: 22px;
}

.experience-content h4 {
  margin: 0 0 5px;
  color: var(--text-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.experience-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 991px) {
  .credibility-section {
    padding: 80px 0;
  }

  .experience-panel {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .credibility-section {
    padding: 68px 0;
  }

  .credibility-title {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .credibility-description {
    font-size: 16px;
  }

  .institution-grid {
    grid-template-columns: 1fr;
  }

  .institution-card-wide {
    grid-column: auto;
  }

  .experience-panel {
    padding: 27px 23px;
    border-radius: 28px;
  }

  .experience-item {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .credibility-title {
    font-size: 36px;
  }

  .institution-card {
    border-radius: 23px;
  }

  .institution-card h3 {
    font-size: 23px;
  }

  .experience-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

/* =========================================
   SELECTED WORK / PORTFOLIO SECTION
   ========================================= */

.portfolio-section {
  padding: 90px 0 100px;
  background:
    radial-gradient(
      circle at 50% 55%,
      rgba(99, 170, 205, 0.08),
      transparent 50%
    ),
    #f6fafc;
}

.portfolio-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.portfolio-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  color: #04758f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.portfolio-eyebrow span {
  width: 34px;
  height: 2px;
  flex-shrink: 0;
  background: var(--teal);
}

.portfolio-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -3px;
}

.portfolio-main-button {
  min-height: 57px;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 27px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.portfolio-main-button:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(11, 49, 82, 0.15);
  transform: translateY(-2px);
}

/* Project cards */

.portfolio-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid #d6e3eb;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 26px 55px rgba(10, 44, 72, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.portfolio-card:hover {
  border-color: rgba(78, 216, 195, 0.65);
  box-shadow: 0 34px 68px rgba(10, 44, 72, 0.16);
  transform: translateY(-8px);
}

.portfolio-image-link {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
  background: #dbe9ef;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.06);
}

.portfolio-image-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 36, 59, 0.9);
  color: var(--teal);
  font-size: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  backdrop-filter: blur(8px);
}

.portfolio-card:hover .portfolio-image-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-content {
  padding: 25px 22px 27px;
}

.portfolio-content h3 {
  margin: 0 0 14px;
  color: var(--text-dark);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.portfolio-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf3f6;
  color: #61798d;
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
   PORTFOLIO RESPONSIVE
   ========================================= */

@media (max-width: 991px) {
  .portfolio-section {
    padding: 75px 0 85px;
  }

  .portfolio-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .portfolio-section {
    padding: 65px 0 75px;
  }

  .portfolio-heading h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .portfolio-main-button {
    width: 100%;
  }

  .portfolio-card {
    border-radius: 24px;
  }

  .portfolio-image-link {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .portfolio-heading h2 {
    font-size: 36px;
  }

  .portfolio-image-link {
    height: 220px;
  }
}


/* =========================================
   CTA + FOOTER
   ========================================= */

.footer-area {
  padding-top: 85px;
  background: #f7fbfd;
}

/* CTA banner */

.footer-cta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  padding: 55px 54px;
  border-radius: 34px;
  background:
    linear-gradient(
      rgba(93, 167, 204, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(93, 167, 204, 0.08) 1px,
      transparent 1px
    ),
    #12395d;
  background-size: 38px 38px;
  color: #ffffff;
  box-shadow: 0 35px 75px rgba(8, 36, 59, 0.18);
}

.footer-cta::before {
  content: "";
  position: absolute;
  top: -140px;
  right: 8%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(78, 216, 195, 0.08);
  filter: blur(70px);
  pointer-events: none;
}

.footer-cta-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.footer-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.footer-eyebrow span {
  width: 34px;
  height: 2px;
  flex-shrink: 0;
  background: var(--teal);
}

.footer-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.footer-cta p {
  max-width: 820px;
  margin: 15px 0 0;
  color: #bed0dd;
  font-size: 17px;
  line-height: 1.65;
}

.footer-cta-button {
  position: relative;
  z-index: 2;
  min-height: 58px;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--navy-dark);
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(78, 216, 195, 0.18);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.footer-cta-button:hover {
  background: #ffffff;
  color: var(--navy-dark);
  box-shadow: 0 22px 42px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* Main footer */

.main-footer {
  position: relative;
  margin-top: 76px;
  overflow: hidden;
  background: #08243b;
  color: #ffffff;
}

.footer-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(107, 170, 205, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(107, 170, 205, 0.07) 1px,
      transparent 1px
    );
  background-size: 38px 38px;
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  padding-top: 63px;
  padding-bottom: 58px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}

.footer-brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy-dark);
  font-size: 18px;
  font-weight: 800;
}

.footer-brand-name {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.footer-about {
  max-width: 315px;
  margin: 0 0 15px;
  color: #c0d0dc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-established {
  margin: 0;
  color: #a7bdcc;
  font-size: 12px;
}

.footer-heading {
  margin: 0 0 19px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a,
.footer-contact a {
  color: #c3d2dd;
  font-size: 14px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 19px;
}

.footer-quote-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.footer-quote-button:hover {
  background: #ffffff;
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(194, 215, 228, 0.25);
  border-radius: 50%;
  color: #b6c9d6;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.footer-socials a:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* Footer bottom */

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(191, 215, 229, 0.14);
}

.footer-bottom-inner {
  min-height: 57px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.footer-bottom-inner p {
  margin: 0;
  color: #b1c3cf;
  font-size: 11px;
}

.footer-bottom-inner p:last-child {
  text-align: right;
}

.footer-coordinate {
  font-family: monospace;
  letter-spacing: 1px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 991px) {
  .footer-area {
    padding-top: 70px;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 44px 40px;
  }

  .footer-cta-button {
    align-self: flex-start;
  }

  .main-footer {
    margin-top: 60px;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 0;
    text-align: center;
  }

  .footer-bottom-inner p:last-child {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer-area {
    padding-top: 60px;
  }

  .footer-cta {
    padding: 36px 28px;
    border-radius: 26px;
  }

  .footer-cta h2 {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .footer-cta p {
    font-size: 15px;
  }

  .footer-cta-button {
    width: 100%;
  }

  .footer-container {
    padding-top: 52px;
    padding-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .footer-cta {
    padding: 32px 23px;
  }

  .footer-cta h2 {
    font-size: 34px;
  }
}


/* =========================================
   GLOBAL DELIVERY NETWORK SECTION
   ========================================= */

.global-network-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(
      circle at 78% 45%,
      rgba(79, 214, 196, 0.08),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #fbfdfe 0%,
      #f5fafc 100%
    );
}

.global-network-content {
  max-width: 570px;
}

.global-network-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  color: #04758f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.global-network-eyebrow span {
  width: 34px;
  height: 2px;
  flex-shrink: 0;
  background: var(--teal);
}

.global-network-content h2 {
  max-width: 570px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(42px, 4vw, 61px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -3px;
}

.global-network-content p {
  max-width: 560px;
  margin: 24px 0 27px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
}

.global-network-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 25px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(11, 49, 82, 0.16);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.global-network-button:hover {
  border-color: #174b72;
  background: #174b72;
  color: var(--white);
  box-shadow: 0 20px 38px rgba(11, 49, 82, 0.22);
  transform: translateY(-2px);
}

/* Map image */

.global-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin-left: auto;
  padding: 18px 0 0 18px;
}

.global-map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74, 140, 176, 0.34);
  border-radius: 30px;
  background: #061726;
  box-shadow:
    0 34px 75px rgba(7, 35, 58, 0.22),
    0 10px 24px rgba(7, 35, 58, 0.08);
}

.global-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(139, 213, 235, 0.06);
  pointer-events: none;
}

.global-map-image {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.global-map-corner {
  position: absolute;
  z-index: 3;
  width: 55px;
  height: 55px;
}

.global-map-corner-top {
  top: 0;
  left: 0;
  border-top: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
}

.global-map-corner-bottom {
  right: -10px;
  bottom: 42px;
  border-right: 3px solid #f2b846;
  border-bottom: 3px solid #f2b846;
}

.global-map-caption {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 7px 15px;
  border: 1px solid #d0dee7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #547087;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 1.35px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1199px) {
  .global-map-image {
    height: 470px;
  }
}

@media (max-width: 991px) {
  .global-network-section {
    padding: 82px 0;
  }

  .global-network-content {
    max-width: 720px;
  }

  .global-network-content p {
    max-width: 700px;
  }

  .global-map-wrapper {
    max-width: 850px;
    margin: 25px auto 0;
  }

  .global-map-image {
    height: auto;
    min-height: 430px;
  }
}

@media (max-width: 767px) {
  .global-network-section {
    padding: 68px 0;
  }

  .global-network-content h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .global-network-content p {
    font-size: 16px;
  }

  .global-network-button {
    width: 100%;
  }

  .global-map-wrapper {
    padding-left: 11px;
  }

  .global-map-card {
    border-radius: 23px;
  }

  .global-map-image {
    min-height: 330px;
  }

  .global-map-caption {
    font-size: 9px;
    letter-spacing: 0.9px;
  }
}

@media (max-width: 480px) {
  .global-network-content h2 {
    font-size: 36px;
  }

  .global-map-image {
    min-height: 270px;
  }

  .global-map-corner {
    width: 40px;
    height: 40px;
  }
}


/* =========================================
   SERVICES PAGE
   ========================================= */

/* Services hero */

.services-page-hero {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  border-bottom: 1px solid #d9e5eb;
  background:
    radial-gradient(
      circle at 76% 35%,
      rgba(86, 190, 220, 0.08),
      transparent 33%
    ),
    #f6fafc;
}

.services-page-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(29, 81, 110, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(29, 81, 110, 0.07) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  pointer-events: none;
}

.services-page-hero-container {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 75px;
}

.services-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-family: monospace;
  font-size: 12px;
}

.services-breadcrumb a {
  color: #60798c;
}

.services-breadcrumb a:hover {
  color: var(--teal);
}

.services-breadcrumb i {
  color: #8ca0ae;
  font-size: 10px;
}

.services-breadcrumb span {
  color: var(--text-dark);
}

.services-page-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  color: #04758f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.services-page-eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--teal);
}

.services-page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -4px;
}

.services-page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
}


/* Services cards */

.services-page-grid-section {
  padding: 78px 0 95px;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(90, 165, 200, 0.06),
      transparent 48%
    ),
    #f9fcfe;
}

.services-page-card {
  height: 100%;
  min-height: 180px;
  padding: 29px 27px;
  border: 1px solid #d5e2ea;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 45px rgba(10, 44, 72, 0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.services-page-card:hover {
  border-color: rgba(78, 216, 195, 0.65);
  box-shadow: 0 30px 62px rgba(10, 44, 72, 0.14);
  transform: translateY(-7px);
}

.services-page-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  font-size: 21px;
}

.services-page-card h2 {
  margin: 0 0 11px;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

.services-page-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}


/* =========================================
   DELIVERY PROCESS
   ========================================= */

.delivery-process-section {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  background: #08243b;
  color: #ffffff;
}

.delivery-process-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(107, 170, 205, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(107, 170, 205, 0.07) 1px,
      transparent 1px
    );
  background-size: 38px 38px;
  pointer-events: none;
}

.delivery-process-container {
  position: relative;
  z-index: 2;
}

.delivery-process-heading {
  margin-bottom: 48px;
}

.delivery-process-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.delivery-process-eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--teal);
}

.delivery-process-heading h2 {
  max-width: 670px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4vw, 59px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
}

.delivery-process-heading > div:last-child p {
  max-width: 650px;
  margin: 0 0 5px auto;
  color: #b9cad8;
  font-size: 18px;
  line-height: 1.6;
  text-align: right;
}

.delivery-process-card {
  height: 100%;
  min-height: 172px;
  padding: 31px 29px;
  border: 1px solid rgba(192, 218, 232, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.delivery-process-card:hover {
  border-color: rgba(78, 216, 195, 0.3);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-5px);
}

.delivery-process-number {
  display: block;
  margin-bottom: 17px;
  color: var(--teal);
  font-family: monospace;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
}

.delivery-process-card h3 {
  margin: 0 0 11px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.6px;
}

.delivery-process-card p {
  margin: 0;
  color: #b9cad8;
  font-size: 14px;
  line-height: 1.55;
}


/* =========================================
   CONSULTATION
   ========================================= */

.services-consultation {
  padding: 82px 0 88px;
  background: #ffffff;
}

.services-consultation h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -2.5px;
}

.services-consultation p {
  margin: 15px 0 28px;
  color: var(--text-muted);
  font-size: 18px;
}

.services-consultation-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 29px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(11, 49, 82, 0.18);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.services-consultation-button:hover {
  background: #174b72;
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(11, 49, 82, 0.24);
  transform: translateY(-2px);
}


/* =========================================
   SERVICES FOOTER
   ========================================= */

.services-footer {
  position: relative;
  overflow: hidden;
  background: #08243b;
  color: #ffffff;
}

.services-footer-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(107, 170, 205, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(107, 170, 205, 0.07) 1px,
      transparent 1px
    );
  background-size: 38px 38px;
  pointer-events: none;
}

.services-footer-container {
  position: relative;
  z-index: 2;
  padding-top: 65px;
  padding-bottom: 58px;
}

.services-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 21px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.services-footer-brand:hover {
  color: #ffffff;
}

.services-footer-logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy-dark);
  font-weight: 800;
}

.services-footer-description {
  max-width: 310px;
  margin: 0 0 14px;
  color: #c0d0dc;
  font-size: 14px;
  line-height: 1.6;
}

.services-footer-address {
  margin: 0;
  color: #a9becd;
  font-size: 12px;
}

.services-footer-title {
  margin: 0 0 19px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.services-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-footer-links li + li {
  margin-top: 10px;
}

.services-footer-links a,
.services-footer-contact a {
  color: #c3d2dd;
  font-size: 14px;
}

.services-footer-links a:hover,
.services-footer-contact a:hover {
  color: var(--teal);
}

.services-footer-contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 19px;
}

.services-footer-button {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 800;
}

.services-footer-button:hover {
  background: #ffffff;
  color: var(--navy-dark);
}

.services-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.services-footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(194, 215, 228, 0.25);
  border-radius: 50%;
  color: #b6c9d6;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.services-footer-socials a:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.services-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(191, 215, 229, 0.14);
}

.services-footer-bottom-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.services-footer-bottom-inner p {
  margin: 0;
  color: #b1c3cf;
  font-size: 11px;
}

.services-footer-bottom-inner p:last-child {
  text-align: right;
}

.services-footer-coordinate {
  font-family: monospace;
  letter-spacing: 1px;
}


/* =========================================
   SERVICES PAGE RESPONSIVE
   ========================================= */

@media (max-width: 991px) {
  .services-page-hero-container {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .delivery-process-heading > div:last-child p {
    max-width: 700px;
    margin-left: 0;
    text-align: left;
  }

  .services-footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 0;
    text-align: center;
  }

  .services-footer-bottom-inner p:last-child {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .services-page-hero {
    min-height: auto;
  }

  .services-page-hero h1 {
    font-size: 46px;
    letter-spacing: -2.5px;
  }

  .services-page-hero p {
    font-size: 16px;
  }

  .services-page-grid-section {
    padding: 62px 0 75px;
  }

  .services-page-card {
    min-height: auto;
    padding: 27px 24px;
    border-radius: 23px;
  }

  .delivery-process-section {
    padding: 70px 0;
  }

  .delivery-process-heading h2 {
    font-size: 39px;
    letter-spacing: -2px;
  }

  .delivery-process-heading > div:last-child p {
    font-size: 16px;
  }

  .delivery-process-card {
    min-height: auto;
    border-radius: 24px;
  }

  .services-consultation {
    padding: 66px 0 72px;
  }

  .services-consultation p {
    font-size: 16px;
  }

  .services-consultation-button {
    width: 100%;
  }

  .services-footer-container {
    padding-top: 52px;
    padding-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .services-page-hero h1 {
    font-size: 40px;
  }

  .services-breadcrumb {
    margin-bottom: 25px;
  }

  .delivery-process-heading h2 {
    font-size: 35px;
  }

  .services-consultation h2 {
    font-size: 34px;
  }
}


/* =========================================
   WORK PAGE
   ========================================= */

/* Work hero */

.work-page-hero {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  border-bottom: 1px solid #d9e5eb;
  background:
    radial-gradient(
      circle at 76% 35%,
      rgba(86, 190, 220, 0.08),
      transparent 33%
    ),
    #f6fafc;
}

.work-page-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(29, 81, 110, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(29, 81, 110, 0.07) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  pointer-events: none;
}

.work-page-hero-container {
  position: relative;
  z-index: 2;
  padding-top: 68px;
  padding-bottom: 78px;
}

.work-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 31px;
  font-family: monospace;
  font-size: 12px;
}

.work-breadcrumb a {
  color: #60798c;
}

.work-breadcrumb a:hover {
  color: var(--teal);
}

.work-breadcrumb i {
  color: #8ca0ae;
  font-size: 10px;
}

.work-breadcrumb span {
  color: var(--text-dark);
}

.work-page-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  color: #04758f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.work-page-eyebrow span {
  width: 34px;
  height: 2px;
  flex-shrink: 0;
  background: var(--teal);
}

.work-page-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -4px;
}

.work-page-hero p {
  max-width: 760px;
  margin: 23px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}


/* =========================================
   FEATURED WORK
   ========================================= */

.work-projects-section {
  padding: 85px 0 96px;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(79, 155, 194, 0.06),
      transparent 47%
    ),
    #fbfdfe;
}

.featured-work-card {
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid #d5e2ea;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 28px 64px rgba(10, 44, 72, 0.11);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.featured-work-card:last-child {
  margin-bottom: 0;
}

.featured-work-card:hover {
  border-color: rgba(78, 216, 195, 0.6);
  box-shadow: 0 36px 76px rgba(10, 44, 72, 0.16);
  transform: translateY(-5px);
}

.featured-work-image {
  position: relative;
  min-height: 385px;
  height: 100%;
  overflow: hidden;
  background: #dce9ef;
}

.featured-work-image img {
  width: 100%;
  height: 100%;
  min-height: 385px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.featured-work-card:hover .featured-work-image img {
  transform: scale(1.04);
}

.work-figure-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(8, 36, 59, 0.9);
  color: var(--teal);
  font-family: monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  backdrop-filter: blur(8px);
}

.featured-work-content {
  height: 100%;
  min-height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px;
}

.work-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: #04758f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.work-card-eyebrow span {
  width: 34px;
  height: 2px;
  flex-shrink: 0;
  background: var(--teal);
}

.featured-work-content h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
}

.featured-work-content p {
  margin: 19px 0 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.featured-work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.featured-work-tags span {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf3f6;
  color: #5f778a;
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}


/* =========================================
   PROJECT TIMELINE
   ========================================= */

.work-timeline-section {
  padding: 88px 0 90px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(83, 162, 201, 0.06),
      transparent 50%
    ),
    #f3f8fb;
}

.work-timeline-heading {
  margin-bottom: 35px;
}

.work-timeline-heading h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.work-table-wrapper {
  overflow: hidden;
  border: 1px solid #d3e0e8;
  border-radius: 27px;
  background: #ffffff;
  box-shadow: 0 28px 65px rgba(10, 44, 72, 0.1);
}

.work-project-table {
  min-width: 850px;
  margin: 0;
}

.work-project-table thead th {
  padding: 18px 21px;
  border-bottom: 1px solid #d5e2e9;
  background: #f4f8fa;
  color: #647b8d;
  font-family: monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.work-project-table tbody td {
  padding: 17px 21px;
  border-bottom: 1px solid #dce6ec;
  color: var(--text-dark);
  font-size: 13px;
  vertical-align: middle;
}

.work-project-table tbody tr:last-child td {
  border-bottom: 0;
}

.work-project-table tbody tr {
  transition: background-color 0.2s ease;
}

.work-project-table tbody tr:hover {
  background: #f5fafc;
}

.work-project-table tbody td:first-child {
  width: 110px;
  color: #68a0ef;
  font-family: monospace;
  font-weight: 800;
}

.work-project-table tbody td:last-child {
  width: 330px;
  color: var(--text-muted);
}

.work-project-button-area {
  margin-top: 36px;
  text-align: center;
}

.work-project-button,
.work-cta-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 29px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(11, 49, 82, 0.18);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.work-project-button:hover,
.work-cta-button:hover {
  background: #174b72;
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(11, 49, 82, 0.24);
  transform: translateY(-2px);
}


/* =========================================
   WORK CTA
   ========================================= */

.work-cta-section {
  padding: 82px 0 88px;
  background: #ffffff;
}

.work-cta-section h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -2.5px;
}

.work-cta-section p {
  margin: 15px 0 28px;
  color: var(--text-muted);
  font-size: 18px;
}


/* =========================================
   WORK PAGE RESPONSIVE
   ========================================= */

@media (max-width: 991px) {
  .work-page-hero-container {
    padding-top: 58px;
    padding-bottom: 63px;
  }

  .featured-work-content {
    min-height: auto;
    padding: 42px 38px;
  }

  .featured-work-image,
  .featured-work-image img {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .work-page-hero {
    min-height: auto;
  }

  .work-page-hero h1 {
    font-size: 46px;
    letter-spacing: -2.5px;
  }

  .work-page-hero p {
    font-size: 16px;
  }

  .work-projects-section {
    padding: 65px 0 75px;
  }

  .featured-work-card {
    border-radius: 24px;
  }

  .featured-work-image,
  .featured-work-image img {
    min-height: 290px;
  }

  .featured-work-content {
    padding: 34px 27px;
  }

  .featured-work-content h2 {
    font-size: 31px;
    letter-spacing: -1.5px;
  }

  .work-timeline-section {
    padding: 67px 0 72px;
  }

  .work-timeline-heading h2 {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .work-project-button,
  .work-cta-button {
    width: 100%;
  }

  .work-cta-section {
    padding: 65px 0 72px;
  }

  .work-cta-section p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .work-page-hero h1 {
    font-size: 40px;
  }

  .work-breadcrumb {
    margin-bottom: 25px;
  }

  .featured-work-image,
  .featured-work-image img {
    min-height: 245px;
  }

  .featured-work-content h2 {
    font-size: 28px;
  }

  .work-timeline-heading h2 {
    font-size: 34px;
  }

  .work-cta-section h2 {
    font-size: 34px;
  }
}


/* =========================================
   COMPANY PAGE
   ========================================= */

/* Company hero */

.company-page-hero {
  position: relative;
  min-height: 445px;
  overflow: hidden;
  border-bottom: 1px solid #d9e5eb;
  background:
    radial-gradient(
      circle at 76% 35%,
      rgba(86, 190, 220, 0.08),
      transparent 33%
    ),
    #f6fafc;
}

.company-page-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(29, 81, 110, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(29, 81, 110, 0.07) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  pointer-events: none;
}

.company-page-hero-container {
  position: relative;
  z-index: 2;
  padding-top: 76px;
  padding-bottom: 82px;
}

.company-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  font-family: monospace;
  font-size: 12px;
}

.company-breadcrumb a {
  color: #60798c;
}

.company-breadcrumb a:hover {
  color: var(--teal);
}

.company-breadcrumb i {
  color: #8ca0ae;
  font-size: 10px;
}

.company-breadcrumb span {
  color: var(--text-dark);
}

.company-page-eyebrow,
.company-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  color: #04758f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.company-page-eyebrow span,
.company-section-eyebrow span {
  width: 34px;
  height: 2px;
  flex-shrink: 0;
  background: var(--teal);
}

.company-page-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -4px;
}

.company-page-hero p {
  max-width: 780px;
  margin: 23px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}


/* =========================================
   COMPANY STORY
   ========================================= */

.company-story-section {
  padding: 92px 0 100px;
  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(83, 165, 201, 0.07),
      transparent 40%
    ),
    #fbfdfe;
}

.company-story-content {
  max-width: 650px;
}

.company-story-content h2 {
  max-width: 650px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
}

.company-story-content p {
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

/* Company image */

.company-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  padding: 18px 0 0 18px;
}

.company-image-card {
  overflow: hidden;
  border: 1px solid rgba(73, 135, 170, 0.35);
  border-radius: 30px;
  background: #eaf1f4;
  box-shadow:
    0 32px 74px rgba(7, 35, 58, 0.18),
    0 8px 20px rgba(7, 35, 58, 0.07);
}

.company-team-image {
  width: 100%;
  height: 480px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.company-image-card:hover .company-team-image {
  transform: scale(1.035);
}

.company-image-corner {
  position: absolute;
  z-index: 3;
  width: 55px;
  height: 55px;
}

.company-image-corner-top {
  top: 0;
  left: 0;
  border-top: 3px solid var(--teal);
  border-left: 3px solid var(--teal);
}

.company-image-corner-bottom {
  right: -10px;
  bottom: 42px;
  border-right: 3px solid #f2b846;
  border-bottom: 3px solid #f2b846;
}

.company-image-caption {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 7px 15px;
  border: 1px solid #d0dee7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #547087;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 1.35px;
}


/* =========================================
   LEADERSHIP
   ========================================= */

.leadership-section {
  padding: 90px 0 98px;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(87, 161, 199, 0.07),
      transparent 48%
    ),
    #f3f8fb;
}

.leadership-heading {
  max-width: 900px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -3px;
}

.leadership-grid {
  margin-top: 46px;
}

.leader-card {
  height: 100%;
  min-height: 305px;
  padding: 31px 27px;
  border: 1px solid #d5e2ea;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 24px 55px rgba(10, 44, 72, 0.09);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.leader-card:hover {
  border-color: rgba(78, 216, 195, 0.6);
  box-shadow: 0 32px 66px rgba(10, 44, 72, 0.14);
  transform: translateY(-7px);
}

.leader-initials {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 23px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  font-size: 20px;
  font-weight: 800;
}

.leader-card h3 {
  margin: 0 0 7px;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.leader-role {
  display: block;
  margin-bottom: 14px;
  color: #75a0f0;
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.leader-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}


/* =========================================
   COMPANY VALUES
   ========================================= */

.company-values-section {
  padding: 88px 0 92px;
  background: #ffffff;
}

.company-value-card {
  height: 100%;
  min-height: 245px;
  padding: 34px 34px;
  border: 1px solid #d5e2ea;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(10, 44, 72, 0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.company-value-card:hover {
  border-color: rgba(78, 216, 195, 0.6);
  box-shadow: 0 32px 65px rgba(10, 44, 72, 0.13);
  transform: translateY(-6px);
}

.company-value-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  font-size: 22px;
}

.company-value-card h3 {
  margin: 0 0 13px;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.company-value-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}


/* =========================================
   COMPANY CTA
   ========================================= */

.company-cta-section {
  position: relative;
  padding: 0 0 88px;
  background: #ffffff;
}

.company-cta-box {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 58px 40px;
  border-radius: 34px;
  background:
    linear-gradient(
      rgba(93, 167, 204, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(93, 167, 204, 0.08) 1px,
      transparent 1px
    ),
    #12395d;
  background-size: 38px 38px;
  text-align: center;
  box-shadow: 0 34px 75px rgba(8, 36, 59, 0.17);
}

.company-cta-box h2 {
  max-width: 980px;
  margin: 0 auto 28px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2.5px;
}

.company-cta-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 29px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--navy-dark);
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(78, 216, 195, 0.18);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.company-cta-button:hover {
  background: #ffffff;
  color: var(--navy-dark);
  box-shadow: 0 22px 42px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}


/* =========================================
   COMPANY PAGE RESPONSIVE
   ========================================= */

@media (max-width: 991px) {
  .company-page-hero-container {
    padding-top: 60px;
    padding-bottom: 66px;
  }

  .company-image-wrapper {
    max-width: 800px;
    margin: 28px auto 0;
  }

  .company-team-image {
    height: auto;
    min-height: 430px;
  }
}

@media (max-width: 767px) {
  .company-page-hero {
    min-height: auto;
  }

  .company-page-hero h1 {
    font-size: 46px;
    letter-spacing: -2.5px;
  }

  .company-page-hero p {
    font-size: 16px;
  }

  .company-story-section {
    padding: 68px 0 75px;
  }

  .company-story-content h2 {
    font-size: 39px;
    letter-spacing: -2px;
  }

  .company-story-content p {
    font-size: 16px;
  }

  .company-image-wrapper {
    padding-left: 11px;
  }

  .company-image-card {
    border-radius: 23px;
  }

  .company-team-image {
    min-height: 330px;
  }

  .company-image-caption {
    font-size: 9px;
    letter-spacing: 0.9px;
  }

  .leadership-section {
    padding: 67px 0 74px;
  }

  .leadership-heading {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .leader-card {
    min-height: auto;
    border-radius: 24px;
  }

  .company-values-section {
    padding: 68px 0 72px;
  }

  .company-value-card {
    min-height: auto;
    border-radius: 24px;
  }

  .company-cta-section {
    padding-bottom: 70px;
  }

  .company-cta-box {
    padding: 42px 25px;
    border-radius: 27px;
  }

  .company-cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .company-page-hero h1 {
    font-size: 40px;
  }

  .company-breadcrumb {
    margin-bottom: 25px;
  }

  .company-story-content h2 {
    font-size: 35px;
  }

  .company-team-image {
    min-height: 270px;
  }

  .company-image-corner {
    width: 40px;
    height: 40px;
  }

  .leadership-heading {
    font-size: 34px;
  }

  .company-cta-box h2 {
    font-size: 34px;
  }
}


.institution-card {
  text-align: center;
  padding: 20px;
}

.institution-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border: 2px solid #ddd;
  margin-bottom: 15px;
}


.institution-bootstrap-row {
  margin-top: 4px;
}

.compact-institution-card {
  min-height: 175px;
  padding: 18px 8px;
  border-radius: 22px;
}

.compact-institution-card .institution-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 11px;
  padding: 6px;
}

.compact-institution-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.2;
}

.compact-institution-card p {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
}

@media (max-width: 575px) {
  .institution-bootstrap-row > .col-4 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .compact-institution-card {
    min-height: 155px;
  }
}

/* =========================================
   FOOTER NEWSLETTER
   ========================================= */

.footer-newsletter {
  position: relative;
  margin-top: 54px;
  padding-top: 46px;
  border-top: 1px solid rgba(191, 215, 229, 0.16);
}

.footer-newsletter-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.footer-newsletter-title {
  max-width: 540px;
  margin: 0 0 13px;
  color: #ffffff;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1px;
}

.footer-newsletter-text {
  max-width: 580px;
  margin: 0;
  color: #b8cad7;
  font-size: 14px;
  line-height: 1.7;
}

.newsletter-form .form-control {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(194, 215, 228, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.newsletter-form .form-control::placeholder {
  color: rgba(222, 235, 243, 0.58);
}

.newsletter-form .form-control:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(78, 216, 195, 0.14);
}

.newsletter-form .btn {
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--teal);
  border-radius: 14px;
  background: var(--teal);
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.newsletter-form .btn:hover,
.newsletter-form .btn:focus {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--navy-dark);
  box-shadow: 0 16px 30px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.newsletter-consent {
  color: #91aabd;
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .footer-newsletter {
    margin-top: 46px;
    padding-top: 40px;
  }

  .footer-newsletter-title {
    max-width: 680px;
  }

  .footer-newsletter-text {
    max-width: 700px;
  }
}

@media (max-width: 767px) {
  .footer-newsletter {
    margin-top: 40px;
    padding-top: 36px;
  }

  .footer-newsletter-title {
    font-size: 26px;
  }

  .newsletter-form .form-control,
  .newsletter-form .btn {
    min-height: 54px;
  }

  .newsletter-form .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-newsletter-title {
    font-size: 23px;
  }

  .footer-newsletter-text {
    font-size: 13px;
  }
}