:root {

  --navy: #061a2e;
  --navy-light: #0b2948;

  --blue: #0077b6;
  --blue-dark: #005f91;
  --cyan: #00a8d6;
  --cyan-light: #62d1eb;

  --text: #102033;
  --muted: #64748b;

  --white: #ffffff;
  --light: #f5f8fb;
  --border: #e4ebf2;

  --shadow-sm:
    0 8px 25px rgba(7, 29, 53, .06);

  --shadow-md:
    0 18px 45px rgba(7, 29, 53, .10);

  --shadow-lg:
    0 30px 70px rgba(7, 29, 53, .16);

  --ease:
    cubic-bezier(.2, .8, .2, 1);
}


/* RESET */

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


html {
  scroll-behavior: smooth;
}


body {

  font-family: "Manrope", sans-serif;

  color: var(--text);

  background: var(--white);

  line-height: 1.7;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;

  text-rendering: optimizeLegibility;
}


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


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


button,
input,
textarea {
  font: inherit;
}


button {
  cursor: pointer;
}


.container {

  width: min(1240px,
      calc(100% - 48px));

  margin-inline: auto;
}


/* TOP BAR */

.top-bar {

  background: var(--navy);

  color: #b8c8d8;

  font-size: 12px;

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


.top-bar-inner {

  min-height: 40px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 25px;
}


.top-left,
.top-right {

  display: flex;

  align-items: center;

  gap: 24px;
}


.top-bar a,
.top-bar span {

  display: inline-flex;

  align-items: center;

  gap: 7px;
}


.top-bar i {
  color: var(--cyan);
}




/* HEADER */

.header {

  position: sticky;

  top: 0;

  z-index: 1000;

  background:
    rgba(255, 255, 255, .95);

  backdrop-filter:
    blur(18px);

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

  border-bottom:
    1px solid rgba(7, 29, 53, .07);

  transition:
    box-shadow .3s ease;
}


.navbar {

  min-height: 84px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  position: relative;
}


/* LOGO */

.brand-link {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  flex-shrink: 0;
}


.brand-emblem-wrap {

  width: 51px;
  height: 51px;

  display: flex;

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

  border-radius: 11px;

  background: white;

  overflow: hidden;

  box-shadow:
    0 5px 15px rgba(7, 29, 53, .07);
}


.brand-emblem-wrap img {

  width: 100%;
  height: 100%;

  object-fit: contain;
}


.brand-text-block {

  display: flex;

  flex-direction: column;
}


.brand-name {

  color: var(--navy);

  font-size: 21px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -.8px;
}


.brand-sub {

  margin-top: 5px;

  color: var(--blue);

  font-size: 7.5px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


/* NAVIGATION */

.nav-menu {

  display: flex;

  align-items: center;

  gap: 34px;

  list-style: none;
}


.nav-link {

  position: relative;

  display: inline-block;

  padding: 9px 0;

  color: #405168;

  font-size: 14px;

  font-weight: 700;

  transition:
    color .3s ease;
}


.nav-link::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 0;

  height: 2px;

  border-radius: 10px;

  background:
    linear-gradient(90deg,
      var(--blue),
      var(--cyan));

  transition:
    width .35s var(--ease);
}


.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}


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


/* BUTTONS */

.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-height: 52px;

  padding: 0 23px;

  border-radius: 10px;

  font-size: 13px;

  font-weight: 800;

  transition:
    transform .35s var(--ease),
    box-shadow .35s var(--ease),
    background .35s ease;
}


.btn i {

  transition:
    transform .35s var(--ease);
}


.btn:hover i {

  transform:
    translateX(5px);
}


.btn-primary {

  color: white;

  background:
    linear-gradient(135deg,
      var(--blue),
      #00679e);

  box-shadow:
    0 10px 25px rgba(0, 119, 182, .22);
}


.btn-primary:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 16px 32px rgba(0, 119, 182, .32);
}


.btn-white:hover i {

  transform:
    translateX(6px) rotate(-8deg);
}


.btn-outline {

  color: white;

  border:
    1px solid rgba(255, 255, 255, .38);

  background:
    rgba(255, 255, 255, .06);

  backdrop-filter:
    blur(10px);
}


.btn-outline:hover {

  color: var(--navy);

  background: white;

  transform:
    translateY(-3px);
}


.btn-white {

  color: var(--navy);

  background: white;
}


.btn-white:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, .18);
}


/* HAMBURGER */

.menu-toggle {

  display: none;

  position: relative;

  width: 46px;
  height: 46px;

  padding: 0;

  border: 1px solid rgba(6, 26, 46, .10);

  border-radius: 12px;

  background: white;

  box-shadow:
    0 6px 18px rgba(7, 29, 53, .08);

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 5px;

  transition:
    transform .3s var(--ease),
    box-shadow .3s ease;
}


.menu-toggle:hover {

  transform:
    translateY(-2px);

  box-shadow:
    0 10px 25px rgba(7, 29, 53, .12);
}


.menu-toggle span {

  width: 22px;

  height: 2px;

  border-radius: 5px;

  background: var(--navy);

  transition:
    transform .4s var(--ease),
    opacity .25s ease,
    width .3s ease;
}


.menu-toggle span:nth-child(2) {

  width: 15px;

  margin-left: -7px;
}


.menu-toggle.active {

  background:
    var(--navy);
}


.menu-toggle.active span {

  background: white;
}


.menu-toggle.active span:nth-child(1) {

  transform:
    translateY(7px) rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {

  opacity: 0;

  width: 22px;
}


.menu-toggle.active span:nth-child(3) {

  transform:
    translateY(-7px) rotate(-45deg);
}


/* SCROLL PROGRESS */

.scroll-progress-bar {

  position: absolute;

  left: 0;

  bottom: -1px;

  width: 0%;

  height: 3px;

  background:
    linear-gradient(90deg,
      var(--blue),
      var(--cyan));

  box-shadow:
    0 0 10px rgba(0, 168, 214, .4);
}


/* HERO */

.hero {

  position: relative;

  overflow: hidden;

  min-height: 720px;

  color: white;

  background:

    radial-gradient(circle at 85% 15%,
      rgba(0, 168, 214, .18),
      transparent 28%),

    linear-gradient(120deg,
      #061a2e,
      #0a3153);
}


.hero-grid {

  min-height: 720px;

  display: grid;

  grid-template-columns:
    1.05fr .95fr;

  align-items: center;

  gap: 70px;

  padding-top: 65px;

  padding-bottom: 80px;
}


.hero-content {

  max-width: 680px;

  position: relative;

  z-index: 5;
}


.hero-badge {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 9px 15px;

  margin-bottom: 25px;

  border:
    1px solid rgba(98, 209, 235, .2);

  border-radius: 50px;

  background:
    rgba(255, 255, 255, .045);

  color: #b7dce7;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.3px;
}


.pulse-dot {

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #3ed1ec;

  animation:
    pulse 2s infinite;
}


@keyframes pulse {

  0% {

    box-shadow:
      0 0 0 0 rgba(62, 209, 236, .5);
  }

  70% {

    box-shadow:
      0 0 0 8px rgba(62, 209, 236, 0);
  }

  100% {

    box-shadow:
      0 0 0 0 rgba(62, 209, 236, 0);
  }
}


.hero h1 {

  max-width: 750px;

  font-size:
    clamp(48px,
      5.5vw,
      70px);

  line-height: 1.01;

  letter-spacing: -4px;

  font-weight: 800;
}


.hero h1 span {

  display: block;

  color: #55c9e7;
}


.hero-content>p {

  max-width: 620px;

  margin-top: 27px;

  color: #c5d2dd;

  font-size: 16px;

  line-height: 1.9;
}


.hero-buttons {

  display: flex;

  flex-wrap: wrap;

  gap: 13px;

  margin-top: 34px;
}


.hero-trust {

  display: flex;

  flex-wrap: wrap;

  gap: 22px;

  margin-top: 29px;

  color: #d6e1e9;

  font-size: 11px;

  font-weight: 700;
}


.hero-trust div {

  display: flex;

  align-items: center;

  gap: 7px;
}


.hero-trust i {
  color: var(--cyan-light);
}


/* HERO VISUAL */

.hero-visual {

  min-height: 530px;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;
}


.hero-image-wrapper {

  position: relative;

  width:
    min(540px,
      100%);

  height: 525px;

  overflow: hidden;

  border-radius: 30px;

  border:
    1px solid rgba(255, 255, 255, .14);

  box-shadow:
    0 35px 80px rgba(0, 0, 0, .32);
}


.hero-image-wrapper img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1.2s var(--ease);
}


.hero-visual:hover .hero-image-wrapper img {

  transform:
    scale(1.045);
}


.hero-image-shade {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(5, 25, 45, .02),
      rgba(5, 25, 45, .58));
}


/* FLOATING CARDS */

.floating-card {

  position: absolute;

  z-index: 10;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 17px;

  background:
    rgba(255, 255, 255, .97);

  color: var(--navy);

  border-radius: 14px;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, .22);

  animation:
    floatCard 4s ease-in-out infinite;
}


.floating-card-one {

  left: -30px;

  top: 70px;
}


.floating-card-two {

  right: -27px;

  bottom: 65px;

  animation-delay:
    -1.8s;
}


.floating-icon {

  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 10px;

  color: var(--blue);

  background: #e9f7fb;
}


.floating-number {

  color: var(--blue);

  font-size: 19px;

  font-weight: 800;
}


.floating-card strong {

  display: block;

  font-size: 11px;

  font-weight: 800;
}


.floating-card small {

  display: block;

  margin-top: 2px;

  color: var(--muted);

  font-size: 9px;
}


@keyframes floatCard {

  0%,
  100% {

    transform:
      translateY(0);
  }

  50% {

    transform:
      translateY(-10px);
  }
}


/* CLIENT LOGOS */

.clients-section {

  padding:
    55px 0;

  background: white;

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

  overflow: hidden;
}


.clients-heading {

  text-align: center;

  margin-bottom: 32px;
}


.clients-heading span {

  color: var(--blue);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;
}


.clients-heading h2 {

  margin-top: 7px;

  color: var(--navy);

  font-size: 22px;

  font-weight: 800;

  letter-spacing: -.6px;
}


.logo-slider {

  width: 100%;

  overflow: hidden;
}


.logo-track {

  width: max-content;

  display: flex;

  align-items: center;

  gap: 28px;

  animation:
    logoScroll 30s linear infinite;
}


.logo-slider:hover .logo-track {

  animation-play-state:
    paused;
}


.client-logo {

  width: 205px;

  height: 98px;

  flex-shrink: 0;

  padding:
    13px 24px;

  display: flex;

  align-items: center;

  justify-content: center;

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

  border-radius: 14px;

  background: white;

  transition:
    transform .35s var(--ease),
    box-shadow .35s ease,
    border-color .35s ease;
}


.client-logo:hover {

  transform:
    translateY(-6px);

  box-shadow:
    var(--shadow-sm);

  border-color:
    rgba(0, 119, 182, .25);
}


.client-logo img {

  max-width: 100%;

  max-height: 64px;

  width: auto;

  height: auto;

  object-fit: contain;

  object-position: center;
}


@keyframes logoScroll {

  from {

    transform:
      translateX(0);
  }

  to {

    transform:
      translateX(calc(-50% - 14px));
  }
}


/* STATS */

.stats-section {

  background:
    var(--light);

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


.stats-grid {

  display:
    grid;

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


.stat-item {

  min-height: 175px;

  padding: 30px;

  display:
    flex;

  flex-direction:
    column;

  align-items:
    center;

  justify-content:
    center;

  text-align:
    center;

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


.stat-item:last-child {
  border-right: 0;
}


.stat-number {

  min-height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--blue);

  font-size: 43px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -2.5px;
}


.stat-item p {

  margin-top: 10px;

  color: var(--muted);

  font-size: 11px;

  font-weight: 700;
}


.stat-pan {

  font-size: 35px;

  letter-spacing: -1px;
}


/* GENERAL SECTIONS */

.section {

  padding:
    115px 0;
}


.section-heading {

  display:
    grid;

  grid-template-columns:
    1fr .75fr;

  align-items:
    end;

  gap:
    65px;

  margin-bottom:
    60px;
}


.eyebrow {

  display:
    inline-block;

  margin-bottom:
    13px;

  color:
    var(--blue);

  font-size:
    11px;

  font-weight:
    800;

  letter-spacing:
    2.2px;
}


.section-heading h2,
.why-content h2 {

  color:
    var(--navy);

  font-size:
    clamp(35px,
      4vw,
      51px);

  line-height:
    1.1;

  letter-spacing:
    -2.4px;

  font-weight:
    800;
}


.section-heading h2 span,
.why-content h2 span {

  color:
    var(--blue);
}


.section-heading>p {

  color:
    var(--muted);

  font-size:
    13px;

  line-height:
    1.95;
}


/* SERVICES */

.services-grid {

  display:
    grid;

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

  gap:
    30px;
}


.service-card {

  overflow:
    hidden;

  background:
    white;

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

  border-radius:
    20px;

  box-shadow:
    var(--shadow-sm);

  transition:
    transform .45s var(--ease),
    box-shadow .45s var(--ease),
    border-color .45s ease;
}


.service-card:hover {

  transform:
    translateY(-9px);

  box-shadow:
    var(--shadow-md);

  border-color:
    rgba(0, 119, 182, .2);
}


.service-image {

  height:
    275px;

  position:
    relative;

  overflow:
    hidden;
}


.service-image img {

  width:
    100%;

  height:
    100%;

  object-fit:
    cover;

  transition:
    transform .7s var(--ease);
}


.service-card:hover .service-image img {

  transform:
    scale(1.07);
}


.service-image::after {

  content:
    "";

  position:
    absolute;

  inset:
    0;

  background:
    linear-gradient(transparent 45%,
      rgba(0, 0, 0, .55));
}


.service-number {

  position:
    absolute;

  z-index:
    3;

  top:
    19px;

  right:
    19px;

  width:
    43px;

  height:
    43px;

  display:
    grid;

  place-items:
    center;

  border-radius:
    50%;

  background:
    rgba(255, 255, 255, .95);

  color:
    var(--navy);

  font-size:
    11px;

  font-weight:
    800;
}


.service-content {

  position:
    relative;

  padding:
    34px;
}


.service-icon {

  width:
    51px;

  height:
    51px;

  margin-top:
    -60px;

  position:
    relative;

  z-index:
    4;

  display:
    grid;

  place-items:
    center;

  border-radius:
    13px;

  color:
    white;

  background:
    linear-gradient(135deg,
      var(--blue),
      var(--cyan));

  box-shadow:
    0 10px 25px rgba(0, 119, 182, .25);

  transition:
    transform .35s var(--ease);
}


.service-card:hover .service-icon {

  transform:
    rotate(-5deg) scale(1.06);
}


.service-content h3 {

  margin-top:
    21px;

  color:
    var(--navy);

  font-size:
    21px;

  font-weight:
    800;

  letter-spacing:
    -.6px;
}


.service-content p {

  margin-top:
    10px;

  color:
    var(--muted);

  font-size:
    12px;

  line-height:
    1.85;
}


.service-content a {

  display:
    inline-flex;

  align-items:
    center;

  gap:
    8px;

  margin-top:
    23px;

  color:
    var(--blue);

  font-size:
    11px;

  font-weight:
    800;
}


.service-content a i {

  transition:
    transform .3s ease;
}


.service-content a:hover i {

  transform:
    translateX(5px);
}


/* WHY VIVACITY */

.why-section {

  padding:
    120px 0;

  background:
    var(--light);
}


.why-grid {

  display:
    grid;

  grid-template-columns:
    .85fr 1.15fr;

  gap:
    85px;

  align-items:
    center;
}


.why-content .eyebrow {

  margin-bottom:
    16px;
}


.why-content h2 {

  max-width:
    590px;

  color:
    var(--navy);

  font-size:
    clamp(40px,
      4vw,
      54px);

  line-height:
    1.08;

  letter-spacing:
    -2.5px;

  font-weight:
    800;
}


.why-content p {

  max-width:
    570px;

  margin-top:
    25px;

  color:
    var(--muted);

  font-size:
    15px;

  line-height:
    1.9;
}


.text-link {

  display:
    inline-flex;

  align-items:
    center;

  gap:
    10px;

  margin-top:
    32px;

  color:
    var(--blue);

  font-size:
    13px;

  font-weight:
    800;
}


.benefits-grid {

  display:
    grid;

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

  gap:
    20px;
}


.benefit-card {

  min-height:
    175px;

  display:
    flex;

  gap:
    17px;

  padding:
    30px;

  background:
    #fff;

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

  border-radius:
    17px;

  transition:
    transform .4s var(--ease),
    box-shadow .4s ease,
    border-color .3s ease;
}


.benefit-card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    var(--shadow-md);

  border-color:
    rgba(0, 119, 182, .2);
}


.benefit-icon {

  flex-shrink:
    0;

  width:
    49px;

  height:
    49px;

  display:
    grid;

  place-items:
    center;

  border-radius:
    12px;

  color:
    var(--blue);

  background:
    #e9f7fb;

  font-size:
    16px;
}


.benefit-card h3 {

  color:
    var(--navy);

  font-size:
    15px;

  line-height:
    1.4;

  font-weight:
    800;
}


.benefit-card p {

  margin-top:
    8px;

  color:
    var(--muted);

  font-size:
    12px;

  line-height:
    1.8;
}


/* CTA */

.cta-section {

  padding:
    95px 0;

  background:
    white;
}


.cta-box {

  position:
    relative;

  overflow:
    hidden;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    50px;

  padding:
    70px;

  border-radius:
    26px;

  color:
    white;

  background:

    radial-gradient(circle at 90% 0%,
      rgba(0, 168, 214, .35),
      transparent 35%),

    linear-gradient(120deg,
      var(--navy),
      #0d3c64);
}


.cta-content {

  max-width:
    720px;
}


.cta-content .eyebrow {

  color:
    var(--cyan-light);
}


.cta-content h2 {

  font-size:
    clamp(31px,
      4vw,
      49px);

  line-height:
    1.12;

  letter-spacing:
    -2px;

  font-weight:
    800;
}


.cta-content h2 span {

  color:
    var(--cyan-light);
}


.cta-content p {

  margin-top:
    15px;

  color:
    #c2d0db;

  font-size:
    12px;

  line-height:
    1.8;
}


.quick-inquiry-form {
  width: min(520px, 100%);
  flex-shrink: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
}

.quick-inquiry-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick-inquiry-field {
  min-width: 0;
}

.quick-inquiry-field-wide {
  grid-column: 1 / -1;
}

.quick-inquiry-field label {
  display: block;
  margin-bottom: 6px;
  color: #dceaf2;
  font-size: 10px;
  font-weight: 800;
}

.quick-inquiry-field input {
  width: 100%;
  height: 45px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 9px;
  outline: none;
  background: rgba(255, 255, 255, .09);
  color: white;
  font-size: 11px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.quick-inquiry-field input::placeholder {
  color: #9eb1c0;
}

.quick-inquiry-field input:focus {
  border-color: rgba(98, 209, 235, .65);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 3px rgba(98, 209, 235, .08);
}

.quick-inquiry-submit {
  width: 100%;
  margin-top: 13px;
  min-height: 47px;
  border: 0;
}

.quick-inquiry-submit:disabled {
  cursor: not-allowed;
  opacity: .75;
}

.quick-inquiry-submit-loading {
  display: none;
}

.quick-inquiry-submit.is-loading .quick-inquiry-submit-text {
  display: none;
}

.quick-inquiry-submit.is-loading .quick-inquiry-submit-loading {
  display: inline;
}

.quick-inquiry-status {
  min-height: 0;
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.5;
}

.quick-inquiry-status.success {
  color: #9de8b3;
}

.quick-inquiry-status.error {
  color: #ffb3b3;
}

.quick-inquiry-honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* FOOTER */

.footer {

  padding-top:
    85px;

  background:
    #061a2e;

  color:
    #9db0c2;
}


.footer-grid {

  display:
    grid;

  grid-template-columns:
    1.6fr .8fr 1fr 1.3fr;

  gap:
    65px;

  padding-bottom:
    60px;
}


.footer-brand {

  display:
    inline-flex;

  align-items:
    center;

  gap:
    12px;
}


.footer-logo {

  width:
    48px;

  height:
    48px;

  padding:
    2px;

  background:
    white;

  border-radius:
    10px;
}


.footer-logo img {

  width:
    100%;

  height:
    100%;

  object-fit:
    contain;
}


.footer-brand strong {

  display:
    block;

  color:
    white;

  font-size:
    19px;

  font-weight:
    800;
}


.footer-brand span {

  display:
    block;

  margin-top:
    3px;

  color:
    var(--cyan-light);

  font-size:
    7px;

  font-weight:
    800;

  letter-spacing:
    1.4px;
}


.footer-about>p {

  max-width:
    350px;

  margin-top:
    21px;

  font-size:
    12px;

  line-height:
    1.85;
}


.footer-column h4 {

  margin-bottom:
    20px;

  color:
    white;

  font-size:
    13px;

  font-weight:
    800;
}


.footer-column a {

  display:
    block;

  width:
    fit-content;

  margin-bottom:
    12px;

  color:
    #9db0c2;

  font-size:
    11px;

  transition:
    color .25s ease,
    transform .25s ease;
}


.footer-column a:hover {

  color:
    var(--cyan-light);

  transform:
    translateX(4px);
}


.footer-contact p {

  margin-bottom:
    10px;

  font-size:
    11px;

  line-height:
    1.75;
}


.footer-contact strong {

  color:
    white;
}


.footer-contact .branch {

  margin-top:
    20px;
}


.footer-bottom {

  min-height:
    70px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    20px;

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

  color:
    #687e92;

  font-size:
    9px;
}


/* SCROLL TOP */

.scroll-top {

  position:
    fixed;

  right:
    25px;

  bottom:
    25px;

  width:
    56px;

  height:
    56px;

  z-index:
    999;

  display:
    grid;

  place-items:
    center;

  border-radius:
    50%;

  color:
    white;

  background:
    var(--navy);

  border:
    1px solid rgba(255, 255, 255, .15);

  box-shadow:
    0 12px 30px rgba(7, 29, 53, .25);

  opacity:
    0;

  visibility:
    hidden;

  transform:
    translateY(20px) scale(.8);

  transition:
    opacity .35s ease,
    visibility .35s ease,
    transform .35s var(--ease),
    background .3s ease;
}


.scroll-top.visible {

  opacity:
    1;

  visibility:
    visible;

  transform:
    translateY(0) scale(1);
}


.scroll-top:hover {

  background:
    var(--blue);

  transform:
    translateY(-5px) scale(1.05);
}


.scroll-top i {

  position:
    relative;

  z-index:
    3;

  font-size:
    14px;
}


.scroll-progress-circle {

  position:
    absolute;

  inset:
    0;

  width:
    100%;

  height:
    100%;

  transform:
    rotate(-90deg);

  pointer-events:
    none;
}


.scroll-circle-bg {

  fill:
    none;

  stroke:
    rgba(255, 255, 255, .12);

  stroke-width:
    2;
}


.scroll-circle-progress {

  fill:
    none;

  stroke:
    var(--cyan);

  stroke-width:
    2.5;

  stroke-linecap:
    round;

  stroke-dasharray:
    132;

  stroke-dashoffset:
    132;
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition:
    opacity .75s var(--ease),
    transform .75s var(--ease);
}

.js .reveal.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .reveal-delay-1 {
  transition-delay: .12s;
}

.js .reveal-delay-2 {
  transition-delay: .24s;
}

.js .reveal-delay-3 {
  transition-delay: .36s;
}

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

  .reveal,
  .js .reveal,
  .js .reveal.active {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* TABLET <= 1000px */

@media (max-width: 1000px) {

  .menu-toggle {

    display:
      flex;
  }


  .nav-menu {

    position:
      fixed;

    top:
      0;

    left:
      -330px;

    width:
      310px;

    height:
      100vh;

    padding:
      110px 30px 30px;

    display:
      flex;

    flex-direction:
      column;

    align-items:
      flex-start;

    gap:
      10px;

    background:
      white;

    box-shadow:
      15px 0 45px rgba(7, 29, 53, .17);

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

    transition:
      left .45s var(--ease);

    z-index:
      1001;
  }


  .nav-menu.active {

    left:
      0;
  }


  .nav-menu li {

    width:
      100%;
  }


  .nav-link {

    width:
      100%;

    padding:
      14px 0;

    font-size:
      15px;

    border-bottom:
      1px solid #edf2f6;
  }


  .nav-menu .btn {

    width:
      100%;

    margin-top:
      15px;
  }


  .hero-grid {

    grid-template-columns:
      1fr;

    gap:
      50px;
  }


  .hero-content {

    max-width:
      800px;
  }


  .hero-visual {

    min-height:
      500px;
  }


  .hero-image-wrapper {

    margin:
      auto;
  }


  .section-heading {

    grid-template-columns:
      1fr;

    gap:
      20px;
  }


  .why-grid {

    grid-template-columns:
      1fr;

    gap:
      50px;
  }


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

  .footer-about {
    grid-column: 1 / -1;
  }
}


/* TABLET / SMALL <= 750px */

@media (max-width: 750px) {

  .container {

    width:
      calc(100% - 34px);
  }


  /* TOP BAR */

  .top-bar {

    display:
      none;
  }


  /* HEADER */

  .navbar {

    min-height:
      72px;
  }


  /* HERO */

  .hero {

    min-height:
      auto;
  }


  .hero-grid {

    min-height:
      auto;

    padding:
      70px 0 75px;
  }


  .hero h1 {

    font-size:
      clamp(43px,
        9vw,
        62px);

    letter-spacing:
      -3px;
  }


  /* STATS */

  .stats-grid {

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


  .stat-item {

    min-height:
      155px;

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


  .stat-item:nth-child(2n) {

    border-right:
      0;
  }


  /* SERVICES */

  .services-grid {

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

    gap:
      25px;
  }


  .service-content {

    padding:
      30px;
  }


  .service-content h3 {

    font-size:
      20px;

    line-height:
      1.35;
  }


  .service-content p {

    font-size:
      12.5px;

    line-height:
      1.8;
  }


  .service-content a {

    font-size:
      11.5px;
  }


  /* BENEFITS */

  .benefits-grid {

    grid-template-columns:
      1fr;
  }


  /* CTA */

  .cta-box {

    flex-direction:
      column;

    align-items:
      flex-start;

    padding:
      50px 40px;
  }

  .quick-inquiry-form {
    width: 100%;
  }


  /* FOOTER */

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

  .footer-about {
    grid-column: 1 / -1;
  }


  .footer-bottom {

    flex-direction:
      column;

    justify-content:
      center;

    text-align:
      center;

    padding:
      18px 0;
  }
}


/* MOBILE <= 520px */

@media (max-width: 520px) {

  /* CONTAINER */

  .container {

    width:
      calc(100% - 30px);

    max-width:
      none;

    margin-left:
      auto;

    margin-right:
      auto;
  }


  /* HEADER */

  .navbar {

    min-height:
      68px;
  }


  .brand-emblem-wrap {

    width:
      42px;

    height:
      42px;
  }


  .brand-name {

    font-size:
      17px;
  }


  .brand-sub {

    font-size:
      6px;

    letter-spacing:
      1.1px;
  }


  .menu-toggle {

    width:
      43px;

    height:
      43px;

    flex-shrink:
      0;
  }


  /* HERO */

  .hero-grid {

    padding:
      55px 0 65px;

    gap:
      40px;
  }


  .hero-badge {

    font-size:
      8px;

    letter-spacing:
      1px;
  }


  .hero h1 {

    font-size:
      clamp(38px,
        11.5vw,
        53px);

    letter-spacing:
      -2.5px;
  }


  .hero-content>p {

    font-size:
      12px;

    line-height:
      1.8;
  }


  /* HERO BUTTONS Compact + side-by-side */

  .hero-buttons {

    display:
      flex;

    flex-direction:
      row;

    flex-wrap:
      nowrap;

    align-items:
      center;

    width:
      100%;

    gap:
      8px;
  }


  .hero-buttons .btn {

    min-width:
      0;

    width:
      auto;

    min-height:
      42px;

    height:
      42px;

    padding:
      0 12px;

    border-radius:
      8px;

    font-size:
      9.5px;

    gap:
      7px;

    white-space:
      nowrap;
  }


  .hero-buttons .hero-btn,
  .hero-buttons .btn-outline {

    flex:
      1 1 0;
  }


  .hero-buttons .btn i {

    font-size:
      9px;
  }


  /* HERO TRUST */

  .hero-trust {

    flex-direction:
      row;

    gap:
      10px;

    font-size:
      10px;
  }


  /* HERO IMAGE */

  .hero-visual {

    min-height:
      390px;
  }


  .hero-image-wrapper {

    width:
      100%;

    height:
      390px;

    border-radius:
      20px;
  }


  /* FLOATING CARDS */

  .floating-card {

    padding:
      10px 12px;
  }


  .floating-card-one {

    left:
      -5px;

    top:
      22px;
  }


  .floating-card-two {

    right:
      -5px;

    bottom:
      22px;
  }


  .floating-card strong {

    font-size:
      9px;
  }


  .floating-card small {

    font-size:
      7px;
  }


  /* CLIENT LOGOS */

  .clients-section {

    padding:
      42px 0;
  }


  .clients-heading {

    margin-bottom:
      25px;
  }


  .clients-heading h2 {

    font-size:
      19px;

    line-height:
      1.35;
  }


  .logo-slider {

    width:
      100%;

    overflow:
      hidden;
  }


  .logo-track {

    gap:
      16px;
  }


  .client-logo {

    width:
      150px;

    min-width:
      150px;

    height:
      82px;

    padding:
      10px 16px;

    display:
      flex;

    align-items:
      center;

    justify-content:
      center;

    overflow:
      hidden;
  }


  .client-logo img {

    display:
      block;

    width:
      auto;

    height:
      auto;

    max-width:
      100%;

    max-height:
      56px;

    object-fit:
      contain;

    object-position:
      center;

    margin:
      0 auto;
  }


  /* STATS */

  .stat-item {

    min-width:
      0;

    padding:
      20px 10px;
  }


  .stat-number {

    font-size:
      34px;
  }


  .stat-pan {

    font-size:
      28px;
  }


  .stat-item p {

    font-size:
      9px;

    line-height:
      1.45;
  }


  /* SECTION TEXT */

  .section {

    padding:
      75px 0;
  }


  .why-section {

    padding:
      75px 0;
  }


  .section-heading h2 {

    font-size:
      34px;

    line-height:
      1.1;

    letter-spacing:
      -1.6px;
  }


  .section-heading>p {

    font-size:
      11px;

    line-height:
      1.8;
  }


  /* SERVICES */

  .services-grid {

    grid-template-columns:
      1fr;

    gap:
      22px;
  }


  .service-image {

    height:
      220px;
  }


  .service-content {

    padding:
      27px;
  }


  .service-content h3 {

    font-size:
      19px;

    line-height:
      1.35;
  }


  .service-content p {

    font-size:
      11px;

    line-height:
      1.8;
  }


  .service-content a {

    font-size:
      11px;
  }


  /* WHY VIVACITY */

  .why-content h2 {

    font-size:
      35px;

    line-height:
      1.08;

    letter-spacing:
      -1.7px;
  }


  .why-content p {

    font-size:
      12px;

    line-height:
      1.85;
  }


  .benefit-card {

    padding:
      24px 20px;

    min-height:
      auto;
  }


  .benefit-card h3 {

    font-size:
      13px;
  }


  .benefit-card p {

    font-size:
      10.5px;

    line-height:
      1.75;
  }


  /* CTA */

  .cta-section {

    padding:
      55px 0;
  }


  .cta-box {

    padding:
      35px 25px;

    border-radius:
      19px;
  }

  .quick-inquiry-form {
    padding: 18px;
  }

  .quick-inquiry-fields {
    grid-template-columns: 1fr;
  }

  .quick-inquiry-field-wide {
    grid-column: auto;
  }


  .cta-content h2 {

    font-size:
      31px;

    line-height:
      1.12;
  }


  .cta-box .btn {

    width:
      100%;
  }


  /* FOOTER About = full width */

  .footer {

    width:
      100%;

    overflow:
      hidden;

    padding-top:
      60px;
  }


  .footer .container {

    width:
      calc(100% - 30px);

    max-width:
      none;

    margin-left:
      auto;

    margin-right:
      auto;

    padding-left:
      0;

    padding-right:
      0;
  }


  .footer-grid {

    width:
      100%;

    display:
      grid;

    grid-template-columns:
      minmax(0, 1fr) minmax(0, 1fr);

    column-gap:
      24px;

    row-gap:
      35px;

    margin:
      0;

    padding:
      0 0 45px;
  }


  /* ABOUT */

  .footer-about {

    width:
      100%;

    min-width:
      0;

    grid-column:
      1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }


  .footer-about>p {

    width:
      100%;

    max-width:
      100%;

    font-size:
      10.5px;

    line-height:
      1.8;
  }


  /* NAVIGATION + SERVICES */

  .footer-column {

    width:
      100%;

    min-width:
      0;
  }


  .footer-column h4 {

    margin-bottom:
      17px;

    font-size:
      12px;
  }


  .footer-column a {

    display:
      block;

    width:
      100%;

    max-width:
      100%;

    margin-bottom:
      10px;

    color:
      #9db0c2;

    font-size:
      10.5px;

    line-height:
      1.6;

    overflow-wrap:
      anywhere;
  }


  /* CONTACT */

  @media (max-width: 520px) {

    /* CONTACT */
    .footer-contact {
      width: 100%;
      min-width: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 20px;
    }

    .footer-contact h4 {
      grid-column: 1 / -1;
      margin-bottom: 17px;
    }

    .footer-office {
      min-width: 0;
    }

    .footer-office p {
      margin-bottom: 10px;
      font-size: 9.5px;
      line-height: 1.75;
    }

    .footer-office a {
      display: inline-block;
      font-size: 10px;
    }

  }


  /* FOOTER BOTTOM */

  .footer-bottom {

    width:
      100%;

    min-height:
      auto;

    padding:
      18px 0;

    flex-direction:
      column;

    align-items:
      center;

    justify-content:
      center;

    text-align:
      center;

    gap:
      7px;

    font-size:
      8px;

    line-height:
      1.6;
  }


  /* SCROLL TOP */

  .scroll-top {

    width:
      50px;

    height:
      50px;

    right:
      15px;

    bottom:
      15px;
  }
}


/* VERY SMALL PHONES <= 360px */

@media (max-width: 360px) {

  .container {

    width:
      calc(100% - 24px);
  }


  .brand-sub {

    letter-spacing:
      .8px;
  }


  .hero h1 {

    font-size:
      36px;
  }


  /* HERO BUTTONS */

  .hero-buttons {

    gap:
      6px;
  }


  .hero-buttons .btn {

    min-height:
      40px;

    height:
      40px;

    padding:
      0 9px;

    font-size:
      8.5px;

    gap:
      5px;
  }


  .hero-buttons .btn i {

    font-size:
      8px;
  }


  /* FLOATING CARDS */

  .floating-card {

    transform:
      scale(.88);
  }


  .floating-card-one {

    left:
      -18px;
  }


  .floating-card-two {

    right:
      -18px;
  }


  /* CLIENT LOGOS */

  .client-logo {

    width:
      135px;

    min-width:
      135px;

    height:
      76px;

    padding:
      9px 14px;
  }


  .client-logo img {

    max-height:
      51px;
  }


  /* FOOTER */

  .footer-grid {

    grid-template-columns:
      minmax(0, 1fr) minmax(0, 1fr);

    column-gap:
      15px;

    row-gap:
      30px;
  }


  .footer-column a {

    font-size:
      9.5px;

    line-height:
      1.55;
  }


  .footer-column h4 {

    font-size:
      11px;
  }


  .footer-contact p {

    font-size:
      9px;
  }
}


/* REDUCED MOTION */

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

  html {

    scroll-behavior:
      auto;
  }


  *,
  *::before,
  *::after {

    animation-duration:
      .01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      .01ms !important;
  }

}


/* ABOUT PAGE Modern About Us Layout */

.about-page {
  overflow-x: hidden;
}


/* ABOUT HERO */

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 90px;
  color: #fff;

  background:
    radial-gradient(circle at 85% 20%,
      rgba(0, 168, 214, .18),
      transparent 30%),
    linear-gradient(120deg,
      var(--navy),
      var(--navy-light));
}




.about-hero-content {
  position: relative;
  z-index: 2;

  max-width: 850px;
}


.about-hero .eyebrow {
  color: var(--cyan-light);

  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 18px;
}


.about-hero .eyebrow::before {
  content: "";

  width: 28px;
  height: 2px;

  background: var(--cyan-light);
}


.about-hero h1 {
  max-width: 850px;

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

  line-height: 1.05;

  letter-spacing: -3.5px;

  font-weight: 800;
}


.about-hero h1 span {
  display: block;

  color: var(--cyan-light);
}


.about-hero p {
  max-width: 670px;

  margin-top: 24px;

  color: #c7d5df;

  font-size: 15px;

  line-height: 1.9;
}


.about-breadcrumb {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 28px;

  color: rgba(255, 255, 255, .52);

  font-size: 11px;
}


.about-breadcrumb a {
  color: white;

  transition:
    color .25s ease;
}


.about-breadcrumb a:hover {
  color: var(--cyan-light);
}


.about-breadcrumb i {
  font-size: 8px;
}



/* ABOUT INTRO */

.about-intro {
  padding: 115px 0;

  background: white;
}


.about-intro-grid {
  display: grid;

  grid-template-columns:
    minmax(0, .95fr) minmax(0, 1.05fr);

  align-items: center;

  gap:
    clamp(45px,
      7vw,
      100px);
}


.about-intro-image {
  position: relative;

  min-width: 0;
}


.about-image-frame {
  position: relative;

  height: 555px;

  overflow: hidden;

  border-radius: 24px;

  box-shadow:
    var(--shadow-lg);
}


.about-image-frame::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(to top,
      rgba(6, 26, 46, .38),
      transparent 55%);
}


.about-image-frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform .8s var(--ease);
}


.about-image-frame:hover img {
  transform:
    scale(1.04);
}


.about-years-card {
  position: absolute;

  z-index: 3;

  left: -25px;
  bottom: 32px;

  display: flex;
  align-items: center;

  gap: 14px;

  min-width: 210px;

  padding: 20px 22px;

  border:
    1px solid rgba(255, 255, 255, .65);

  border-radius: 15px;

  background:
    rgba(255, 255, 255, .96);

  box-shadow:
    0 20px 50px rgba(7, 29, 53, .18);

  backdrop-filter:
    blur(12px);
}


.about-years-number {
  color: var(--blue);

  font-size: 34px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -1.5px;
}


.about-years-text {
  color: var(--muted);

  font-size: 10px;

  line-height: 1.5;

  font-weight: 700;
}


.about-intro-content {
  min-width: 0;
}


.about-intro-content h2 {
  max-width: 680px;

  color: var(--navy);

  font-size:
    clamp(34px,
      4vw,
      52px);

  line-height: 1.1;

  letter-spacing: -2.5px;

  font-weight: 800;
}


.about-intro-content h2 span {
  color: var(--blue);
}


.about-intro-content p {
  max-width: 680px;

  margin-top: 20px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.9;
}


.about-intro-line {
  width: 100%;
  height: 1px;

  margin-top: 28px;

  background: var(--border);
}


.about-intro-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 12px 22px;

  margin-top: 22px;
}


.about-intro-tags span {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  color: var(--navy);

  font-size: 10px;

  font-weight: 800;
}


.about-intro-tags i {
  color: var(--cyan);

  font-size: 11px;
}



/* SPECIALIZATION */

.about-specialization {
  padding: 110px 0;

  background: var(--light);
}


.about-section-heading {
  display: grid;

  grid-template-columns:
    1fr .75fr;

  align-items: end;

  gap: 60px;

  margin-bottom: 55px;
}


.about-section-heading h2 {
  max-width: 650px;

  color: var(--navy);

  font-size:
    clamp(34px,
      4vw,
      50px);

  line-height: 1.1;

  letter-spacing: -2.3px;

  font-weight: 800;
}


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


.about-section-heading>p {
  color: var(--muted);

  font-size: 12px;

  line-height: 1.9;
}


.about-specialization-grid {
  display: grid;

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

  gap: 18px;
}


.about-specialization-card {
  position: relative;

  min-width: 0;

  padding: 28px 25px 27px;

  background: white;

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

  border-radius: 17px;

  overflow: hidden;

  transition:
    transform .4s var(--ease),
    box-shadow .4s ease,
    border-color .3s ease;
}


.about-specialization-card::after {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  right: -55px;
  top: -55px;

  border-radius: 50%;

  background:
    rgba(0, 168, 214, .06);
}


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

  border-color:
    rgba(0, 119, 182, .22);

  box-shadow:
    var(--shadow-md);
}


.about-card-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 25px;
}


.about-card-number {
  color:
    rgba(6, 26, 46, .25);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1px;
}


.about-card-icon {
  width: 47px;
  height: 47px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  color: white;

  background:
    linear-gradient(135deg,
      var(--blue),
      var(--cyan));

  box-shadow:
    0 9px 20px rgba(0, 119, 182, .18);
}


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

  font-size: 17px;

  line-height: 1.35;

  font-weight: 800;

  letter-spacing: -.4px;
}


.about-specialization-card p {
  margin-top: 11px;

  color: var(--muted);

  font-size: 10.5px;

  line-height: 1.8;
}


.about-specialization-card a {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 20px;

  color: var(--blue);

  font-size: 10px;

  font-weight: 800;
}


.about-specialization-card a i {
  transition:
    transform .3s ease;
}


.about-specialization-card a:hover i {
  transform:
    translateX(5px);
}



/* WHY CHOOSE VIVACITY */

.about-why {
  padding: 115px 0;

  background: white;
}


.about-why-grid {
  display: grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap: 80px;

  align-items: start;
}


.about-why-intro {
  position: sticky;

  top: 130px;
}


.about-why-intro h2 {
  max-width: 500px;

  color: var(--navy);

  font-size:
    clamp(36px,
      4vw,
      53px);

  line-height: 1.08;

  letter-spacing: -2.5px;

  font-weight: 800;
}


.about-why-intro h2 span {
  color: var(--blue);
}


.about-why-intro p {
  max-width: 490px;

  margin-top: 22px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.9;
}


.about-why-list {
  display: grid;

  gap: 15px;
}


.about-why-item {
  display: grid;

  grid-template-columns:
    58px minmax(0, 1fr);

  gap: 20px;

  padding: 25px;

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

  border-radius: 16px;

  transition:
    transform .35s var(--ease),
    box-shadow .35s ease,
    border-color .3s ease;
}


.about-why-item:hover {
  transform:
    translateX(5px);

  border-color:
    rgba(0, 119, 182, .22);

  box-shadow:
    var(--shadow-sm);
}


.about-why-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  color: var(--blue);

  background:
    #e9f7fb;

  font-size: 17px;
}


.about-why-item h3 {
  color: var(--navy);

  font-size: 15px;

  line-height: 1.4;

  font-weight: 800;
}


.about-why-item p {
  margin-top: 7px;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.8;
}



/* OPERATIONAL APPROACH */

.about-approach {
  padding: 110px 0;

  color: white;

  background:
    radial-gradient(circle at 90% 10%,
      rgba(0, 168, 214, .16),
      transparent 30%),
    linear-gradient(120deg,
      var(--navy),
      var(--navy-light));
}


.about-approach-header {
  max-width: 760px;

  margin-bottom: 65px;
}


.about-approach-header .eyebrow {
  color: var(--cyan-light);
}


.about-approach-header h2 {
  color: white;

  font-size:
    clamp(35px,
      4vw,
      51px);

  line-height: 1.1;

  letter-spacing: -2.3px;

  font-weight: 800;
}


.about-approach-header h2 span {
  color: var(--cyan-light);
}


.about-approach-header p {
  max-width: 650px;

  margin-top: 17px;

  color: #b9cad6;

  font-size: 12px;

  line-height: 1.9;
}


.about-approach-grid {
  display: grid;

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

  gap: 1px;

  background:
    rgba(255, 255, 255, .13);
}


.about-approach-step {
  position: relative;

  min-height: 265px;

  padding: 35px;

  background:
    rgba(6, 26, 46, .72);

  transition:
    background .35s ease;
}


.about-approach-step:hover {
  background:
    rgba(255, 255, 255, .055);
}


.about-approach-step>span {
  color: var(--cyan-light);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.about-step-line {
  width: 45px;
  height: 2px;

  margin-top: 25px;

  background:
    var(--cyan);
}


.about-approach-step h3 {
  margin-top: 22px;

  color: white;

  font-size: 22px;

  font-weight: 800;
}


.about-approach-step p {
  max-width: 280px;

  margin-top: 9px;

  color: #a9bdcb;

  font-size: 11px;

  line-height: 1.8;
}



/* LOCATIONS */

.about-locations {
  padding: 110px 0;

  background: var(--light);
}


.about-location-heading {
  margin-bottom: 50px;
}


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

  font-size:
    clamp(34px,
      4vw,
      50px);

  line-height: 1.1;

  letter-spacing: -2.3px;

  font-weight: 800;
}


.about-location-heading h2 span {
  color: var(--blue);
}


.about-location-grid {
  display: grid;

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

  gap: 22px;
}


.about-location-card {
  display: grid;

  grid-template-columns:
    58px minmax(0, 1fr);

  gap: 20px;

  padding: 30px;

  background: white;

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

  border-radius: 17px;

  transition:
    transform .35s var(--ease),
    box-shadow .35s ease,
    border-color .3s ease;
}


.about-location-card:hover {
  transform:
    translateY(-5px);

  border-color:
    rgba(0, 119, 182, .22);

  box-shadow:
    var(--shadow-md);
}


.about-location-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  color: var(--blue);

  background:
    #e9f7fb;

  font-size: 17px;
}


.about-location-label {
  color: var(--blue);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.about-location-card h3 {
  margin-top: 5px;

  color: var(--navy);

  font-size: 20px;

  font-weight: 800;
}


.about-location-card p {
  margin-top: 10px;

  color: var(--muted);

  font-size: 10.5px;

  line-height: 1.8;
}


.about-location-card a {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 15px;

  color: var(--blue);

  font-size: 11px;

  font-weight: 800;
}


.about-location-card a i {
  font-size: 10px;
}



/* ABOUT CTA */

.about-cta {
  padding: 0 0 110px;

  background: var(--light);
}


.about-cta-box {
  position: relative;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 45px;

  padding: 60px;

  border-radius: 23px;

  color: white;

  background:
    radial-gradient(circle at 90% 10%,
      rgba(0, 168, 214, .3),
      transparent 32%),
    linear-gradient(120deg,
      var(--navy),
      #0d3c64);
}


.about-cta-box::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  right: -100px;
  bottom: -190px;

  border:
    1px solid rgba(255, 255, 255, .08);

  border-radius: 50%;
}


.about-cta-content {
  position: relative;
  z-index: 2;

  max-width: 760px;
}


.about-cta-content .eyebrow {
  color: var(--cyan-light);
}


.about-cta-content h2 {
  color: white;

  font-size:
    clamp(28px,
      4vw,
      45px);

  line-height: 1.13;

  letter-spacing: -1.8px;

  font-weight: 800;
}


.about-cta-content h2 span {
  color: var(--cyan-light);
}


.about-cta-content p {
  margin-top: 13px;

  color: #bfd0dc;

  font-size: 12px;

  line-height: 1.8;
}


.about-cta-box .btn {
  position: relative;

  z-index: 3;

  flex-shrink: 0;
}



/* ABOUT RESPONSIVE */

@media (max-width: 1100px) {

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


  .about-intro-grid {
    gap: 50px;
  }


  .about-why-grid {
    gap: 50px;
  }

}


@media (max-width: 1000px) {

  .about-section-heading {
    grid-template-columns:
      1fr;
    gap: 20px;
  }


  .about-why-grid {
    grid-template-columns:
      1fr;
  }


  .about-why-intro {
    position: static;
  }


  .about-why-intro p {
    max-width: 700px;
  }


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

}


@media (max-width: 800px) {

  .about-hero {
    padding:
      75px 0 70px;
  }


  .about-intro {
    padding:
      80px 0;
  }


  .about-intro-grid {
    grid-template-columns:
      1fr;

    gap: 55px;
  }


  .about-intro-image {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }


  .about-image-frame {
    height: 470px;
  }


  .about-intro-content {
    max-width: 750px;
  }


  .about-specialization {
    padding:
      80px 0;
  }


  .about-why {
    padding:
      80px 0;
  }


  .about-approach {
    padding:
      80px 0;
  }


  .about-approach-grid {
    grid-template-columns:
      1fr;
  }


  .about-approach-step {
    min-height:
      auto;

    padding:
      28px;
  }


  .about-approach-step p {
    max-width:
      650px;
  }


  .about-locations {
    padding:
      80px 0;
  }


  .about-location-grid {
    grid-template-columns:
      1fr;
  }


  .about-cta-box {
    flex-direction:
      column;

    align-items:
      flex-start;

    padding:
      50px 40px;
  }

}


@media (max-width: 600px) {

  .about-hero {
    padding:
      62px 0 60px;
  }


  .about-hero h1 {
    font-size:
      38px;

    letter-spacing:
      -2px;
  }


  .about-hero p {
    font-size:
      11.5px;

    line-height:
      1.8;
  }


  .about-breadcrumb {
    font-size:
      10px;
  }


  .about-intro {
    padding:
      65px 0;
  }


  .about-image-frame {
    height:
      390px;

    border-radius:
      19px;
  }


  .about-years-card {
    left:
      12px;

    bottom:
      12px;

    min-width:
      175px;

    padding:
      16px;
  }


  .about-years-number {
    font-size:
      28px;
  }


  .about-years-text {
    font-size:
      8.5px;
  }


  .about-intro-content h2 {
    font-size:
      34px;

    letter-spacing:
      -1.6px;
  }


  .about-intro-content p {
    font-size:
      11px;

    line-height:
      1.8;
  }


  .about-intro-tags {
    flex-direction:
      column;

    gap:
      10px;
  }


  .about-specialization {
    padding:
      65px 0;
  }


  .about-specialization-grid {
    grid-template-columns:
      1fr;

    gap:
      15px;
  }


  .about-specialization-card {
    padding:
      25px 22px;
  }


  .about-specialization-card h3 {
    font-size:
      18px;
  }


  .about-specialization-card p {
    font-size:
      10.5px;
  }


  .about-why {
    padding:
      65px 0;
  }


  .about-why-intro h2 {
    font-size:
      35px;

    letter-spacing:
      -1.7px;
  }


  .about-why-intro p {
    font-size:
      11px;
  }


  .about-why-item {
    grid-template-columns:
      45px minmax(0, 1fr);

    gap:
      14px;

    padding:
      20px;
  }


  .about-why-icon {
    width:
      45px;

    height:
      45px;

    font-size:
      14px;
  }


  .about-why-item h3 {
    font-size:
      13px;
  }


  .about-why-item p {
    font-size:
      10px;

    line-height:
      1.75;
  }


  .about-approach {
    padding:
      65px 0;
  }


  .about-approach-header {
    margin-bottom:
      40px;
  }


  .about-approach-header h2 {
    font-size:
      34px;

    letter-spacing:
      -1.6px;
  }


  .about-approach-header p {
    font-size:
      10.5px;
  }


  .about-approach-step {
    padding:
      25px;
  }


  .about-approach-step h3 {
    font-size:
      20px;
  }


  .about-approach-step p {
    font-size:
      10px;
  }


  .about-locations {
    padding:
      65px 0;
  }


  .about-location-heading {
    margin-bottom:
      35px;
  }


  .about-location-heading h2 {
    font-size:
      34px;

    letter-spacing:
      -1.6px;
  }


  .about-location-card {
    grid-template-columns:
      45px minmax(0, 1fr);

    gap:
      14px;

    padding:
      20px;
  }


  .about-location-icon {
    width:
      45px;

    height:
      45px;

    font-size:
      14px;
  }


  .about-location-card h3 {
    font-size:
      18px;
  }


  .about-location-card p {
    font-size:
      9.5px;
  }


  .about-location-card a {
    font-size:
      10px;
  }


  .about-cta {
    padding:
      0 0 65px;
  }


  .about-cta-box {
    padding:
      35px 25px;

    border-radius:
      18px;
  }


  .about-cta-content h2 {
    font-size:
      29px;

    letter-spacing:
      -1.2px;
  }


  .about-cta-content p {
    font-size:
      10.5px;
  }


  .about-cta-box .btn {
    width:
      100%;
  }

}


@media (max-width: 380px) {

  .about-hero h1 {
    font-size:
      34px;

    letter-spacing:
      -1.8px;
  }


  .about-image-frame {
    height:
      340px;
  }


  .about-years-card {
    min-width:
      155px;

    padding:
      14px;
  }


  .about-years-number {
    font-size:
      25px;
  }


  .about-years-text {
    font-size:
      8px;
  }


  .about-intro-content h2 {
    font-size:
      31px;
  }


  .about-specialization-card {
    padding:
      22px 18px;
  }


  .about-why-item {
    padding:
      17px;
  }


  .about-location-card {
    padding:
      17px;
  }


  .about-cta-box {
    padding:
      30px 20px;
  }

}


/* SERVICES PAGE */


/* SERVICES HERO */

.services-page {
  overflow-x: hidden;
}

.services-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%,
      rgba(0, 168, 214, .18),
      transparent 30%),
    linear-gradient(120deg,
      var(--navy),
      #0a3153);
  color: white;
}

.services-page-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -280px;
  top: -250px;
  border: 1px solid rgba(98, 209, 235, .13);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(98, 209, 235, .025),
    0 0 0 160px rgba(98, 209, 235, .018);
}

.services-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, .035) 1px,
      transparent 1px);
  background-size: 70px 70px;
}

.services-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 115px 0 95px;
}

.services-page-hero-content .eyebrow {
  color: var(--cyan-light);
}

.services-page-hero-content h1 {
  max-width: 820px;
  font-size: clamp(43px, 5.5vw, 70px);
  line-height: 1.04;
  letter-spacing: -3.5px;
  font-weight: 800;
}

.services-page-hero-content h1 span {
  display: block;
  color: var(--cyan-light);
}

.services-page-hero-content>p {
  max-width: 650px;
  margin-top: 25px;
  color: #c5d2dd;
  font-size: 15px;
  line-height: 1.9;
}

.services-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  color: #9eb2c3;
  font-size: 11px;
  font-weight: 700;
}

.services-breadcrumb a {
  color: white;
  transition: color .25s ease;
}

.services-breadcrumb a:hover {
  color: var(--cyan-light);
}

.services-breadcrumb i {
  color: var(--cyan);
  font-size: 8px;
}


/* SERVICES INTRO */

.services-intro-section {
  padding: 110px 0;
  background: white;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}

.services-intro-content {
  max-width: 650px;
}

.services-intro-content h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -2.3px;
  font-weight: 800;
}

.services-intro-content h2 span {
  color: var(--blue);
}

.services-intro-content p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.services-intro-content p+p {
  margin-top: 12px;
}

.services-intro-highlight {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 20px;
  background: var(--light);
  border: 1px solid var(--border);
}

.services-intro-highlight::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -110px;
  bottom: -120px;
  border-radius: 50%;
  border: 1px solid rgba(0, 119, 182, .08);
}

.services-highlight-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background:
    linear-gradient(135deg,
      var(--blue),
      var(--cyan));
  box-shadow:
    0 10px 25px rgba(0, 119, 182, .2);
}

.services-intro-highlight>span {
  display: block;
  margin-top: 25px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.services-intro-highlight h3 {
  max-width: 420px;
  margin-top: 10px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -.8px;
  font-weight: 800;
}

.services-intro-highlight h3 strong {
  display: block;
  color: var(--blue);
}

.services-intro-highlight p {
  max-width: 480px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}


/* SERVICES LIST */

.services-list-section {
  padding: 110px 0;
  background: var(--light);
}

.services-section-heading {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}

.services-section-heading h2 {
  max-width: 650px;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -2.3px;
  font-weight: 800;
}

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

.services-section-heading>p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}


/* SERVICE DETAIL GRID */

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.service-detail-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition:
    transform .45s var(--ease),
    box-shadow .45s var(--ease),
    border-color .35s ease;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 119, 182, .2);
}


/* SERVICE IMAGE */

.service-detail-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform .75s var(--ease);
}

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.07);
}

.service-detail-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 45%,
      rgba(0, 0, 0, .58));
  pointer-events: none;
}

.service-detail-number {
  position: absolute;
  z-index: 3;
  top: 19px;
  right: 19px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}


/* SERVICE CONTENT */

.service-detail-content {
  position: relative;
  padding: 34px;
}

.service-detail-icon {
  width: 52px;
  height: 52px;
  margin-top: -61px;
  position: relative;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background:
    linear-gradient(135deg,
      var(--blue),
      var(--cyan));
  box-shadow:
    0 10px 25px rgba(0, 119, 182, .25);
  transition:
    transform .35s var(--ease);
}

.service-detail-card:hover .service-detail-icon {
  transform:
    rotate(-5deg) scale(1.06);
}

.service-detail-label {
  display: block;
  margin-top: 21px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.service-detail-content h3 {
  margin-top: 9px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -.7px;
  font-weight: 800;
}

.service-detail-content h3 span {
  color: var(--blue);
}

.service-detail-content>p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.service-detail-line {
  width: 100%;
  height: 1px;
  margin-top: 22px;
  background: var(--border);
}

.service-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
}

.service-detail-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #52657a;
  font-size: 10px;
  font-weight: 700;
}

.service-detail-tags i {
  color: var(--blue);
  font-size: 9px;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  transition:
    gap .3s ease,
    color .25s ease;
}

.service-detail-link:hover {
  gap: 14px;
  color: var(--blue-dark);
}

.service-detail-link i {
  font-size: 10px;
}


/* CAPABILITIES */

.services-capabilities {
  padding: 110px 0;
  background: white;
}

.services-capabilities-heading {
  max-width: 700px;
  margin-bottom: 55px;
}

.services-capabilities-heading h2 {
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -2.3px;
  font-weight: 800;
}

.services-capabilities-heading h2 span {
  color: var(--blue);
}

.services-capabilities-heading p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.services-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.services-capability-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--light);
  transition:
    transform .4s var(--ease),
    box-shadow .4s ease,
    border-color .3s ease;
}

.services-capability-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 119, 182, .2);
}

.services-capability-icon {
  flex-shrink: 0;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: #e9f7fb;
  font-size: 16px;
}

.services-capability-card h3 {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
}

.services-capability-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}


/* FINAL MESSAGE / CTA */

.services-message {
  padding: 0 0 110px;
  background: white;
}

.services-message-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 60px;
  border-radius: 25px;
  color: white;
  background:
    radial-gradient(circle at 90% 0%,
      rgba(0, 168, 214, .35),
      transparent 35%),
    linear-gradient(120deg,
      var(--navy),
      #0d3c64);
}

.services-message-box::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -160px;
  bottom: -210px;
  border: 1px solid rgba(98, 209, 235, .14);
  border-radius: 50%;
}

.services-message-box>div {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.services-message-box .eyebrow {
  color: var(--cyan-light);
}

.services-message-box h2 {
  margin-top: 7px;
  color: white;
  font-size: clamp(29px, 4vw, 47px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 800;
}

.services-message-box h2 span {
  display: block;
  color: var(--cyan-light);
}

.services-message-box p {
  margin-top: 14px;
  color: #c2d0db;
  font-size: 12px;
  line-height: 1.8;
}

.services-message-box .btn {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.services-page-hero-content .eyebrow {
  color: var(--cyan-light);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.services-page-hero-content .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--cyan-light);
}


/* SERVICES RESPONSIVE */

@media (max-width: 1000px) {

  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .services-intro-content {
    max-width: 800px;
  }

  .services-intro-highlight {
    max-width: 700px;
  }

  .services-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-capabilities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-message-box {
    padding: 50px 45px;
  }

}


@media (max-width: 750px) {

  .services-page-hero-content {
    padding: 90px 0 75px;
  }

  .services-page-hero-content h1 {
    font-size: clamp(40px, 8vw, 58px);
    letter-spacing: -2.8px;
  }

  .services-page-hero-content>p {
    font-size: 13px;
    line-height: 1.8;
  }

  .services-intro-section {
    padding: 80px 0;
  }

  .services-intro-content h2 {
    font-size: 38px;
  }

  .services-list-section {
    padding: 80px 0;
  }

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

  .service-detail-image {
    height: 280px;
  }

  .services-capabilities {
    padding: 80px 0;
  }

  .services-capabilities-grid {
    grid-template-columns: 1fr;
  }

  .services-message {
    padding-bottom: 80px;
  }

  .services-message-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 45px 35px;
  }

}


@media (max-width: 520px) {

  /* HERO */

  .services-page-hero-content {
    padding: 72px 0 62px;
  }

  .services-page-hero-content .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .services-page-hero-content h1 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -2px;
  }

  .services-page-hero-content>p {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.8;
  }

  .services-breadcrumb {
    margin-top: 24px;
    font-size: 9px;
  }


  /* INTRO */

  .services-intro-section {
    padding: 60px 0;
  }

  .services-intro-grid {
    gap: 32px;
  }

  .services-intro-content h2 {
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -1.5px;
  }

  .services-intro-content p {
    font-size: 11px;
    line-height: 1.8;
  }

  .services-intro-highlight {
    padding: 28px 23px;
    border-radius: 16px;
  }

  .services-highlight-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    font-size: 15px;
  }

  .services-intro-highlight>span {
    margin-top: 20px;
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .services-intro-highlight h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .services-intro-highlight p {
    font-size: 10.5px;
    line-height: 1.75;
  }


  /* SERVICES */

  .services-list-section {
    padding: 60px 0;
  }

  .services-section-heading {
    margin-bottom: 35px;
  }

  .services-section-heading h2 {
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -1.5px;
  }

  .services-section-heading>p {
    font-size: 10.5px;
    line-height: 1.8;
  }

  .services-list-grid {
    gap: 20px;
  }

  .service-detail-image {
    height: 215px;
  }

  .service-detail-number {
    top: 14px;
    right: 14px;
    width: 39px;
    height: 39px;
    font-size: 10px;
  }

  .service-detail-content {
    padding: 25px 20px 27px;
  }

  .service-detail-icon {
    width: 45px;
    height: 45px;
    margin-top: -53px;
    border-radius: 11px;
    font-size: 15px;
  }

  .service-detail-label {
    margin-top: 17px;
    font-size: 8px;
    letter-spacing: 1.3px;
  }

  .service-detail-content h3 {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.3;
  }

  .service-detail-content>p {
    font-size: 10.5px;
    line-height: 1.8;
  }

  .service-detail-line {
    margin-top: 18px;
  }

  .service-detail-tags {
    gap: 8px 12px;
    margin-top: 15px;
  }

  .service-detail-tags span {
    font-size: 9px;
  }

  .service-detail-tags i {
    font-size: 8px;
  }

  .service-detail-link {
    margin-top: 20px;
    font-size: 10px;
  }


  /* CAPABILITIES */

  .services-capabilities {
    padding: 60px 0;
  }

  .services-capabilities-heading {
    margin-bottom: 35px;
  }

  .services-capabilities-heading h2 {
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -1.5px;
  }

  .services-capabilities-heading p {
    font-size: 10.5px;
    line-height: 1.8;
  }

  .services-capabilities-grid {
    gap: 14px;
  }

  .services-capability-card {
    gap: 14px;
    padding: 22px 18px;
  }

  .services-capability-icon {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .services-capability-card h3 {
    font-size: 12px;
  }

  .services-capability-card p {
    font-size: 9.5px;
    line-height: 1.75;
  }


  /* FINAL MESSAGE */

  .services-message {
    padding-bottom: 60px;
  }

  .services-message-box {
    padding: 30px 22px;
    gap: 25px;
    border-radius: 18px;
  }

  .services-message-box h2 {
    font-size: 27px;
    line-height: 1.15;
    letter-spacing: -1.2px;
  }

  .services-message-box p {
    font-size: 10px;
    line-height: 1.75;
  }

  .services-message-box .btn {
    width: auto;
    min-height: 43px;
    padding: 0 15px;
    font-size: 10px;
  }

}

/* BLOG HERO EYEBROW */
.blog-hero .eyebrow {
  color: var(--cyan-light);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.blog-hero .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--cyan-light);
  flex-shrink: 0;
}


/* BLOG HERO - TOP RIGHT CONCENTRIC ARC EFFECT */

.blog-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.blog-hero .container {
  position: relative;
  z-index: 3;
}


/* Main oversized circle */

.blog-hero-circles {
  position: absolute;

  width: 900px;
  height: 900px;

  top: -600px;
  right: -120px;

  border-radius: 50%;

  background: rgba(0, 168, 214, 0.018);

  border: 1px solid rgba(98, 209, 235, 0.09);

  box-shadow:
    0 0 0 85px rgba(0, 168, 214, 0.012),
    0 0 0 170px rgba(0, 168, 214, 0.010),
    0 0 0 255px rgba(0, 168, 214, 0.008);

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


/* Inner arc */

.blog-hero-circles::before {
  content: "";

  position: absolute;

  width: 680px;
  height: 680px;

  top: 110px;
  left: 110px;

  border-radius: 50%;

  border: 1px solid rgba(98, 209, 235, 0.055);

  pointer-events: none;
}


/* Very soft outer glow */

.blog-hero-circles::after {
  content: "";

  position: absolute;

  width: 1100px;
  height: 1100px;

  top: -100px;
  left: -100px;

  border-radius: 50%;

  border: 1px solid rgba(0, 168, 214, 0.025);

  pointer-events: none;
}


/* MOBILE */

@media (max-width: 750px) {

  .blog-hero-circles {
    width: 650px;
    height: 650px;

    top: -450px;
    right: -100px;

    box-shadow:
      0 0 0 65px rgba(0, 168, 214, 0.012),
      0 0 0 130px rgba(0, 168, 214, 0.009),
      0 0 0 195px rgba(0, 168, 214, 0.007);
  }

  .blog-hero-circles::before {
    width: 490px;
    height: 490px;

    top: 80px;
    left: 80px;
  }

  .blog-hero-circles::after {
    width: 790px;
    height: 790px;

    top: -70px;
    left: -70px;
  }

}


@media (max-width: 520px) {

  .blog-hero-circles {
    width: 500px;
    height: 500px;

    top: -350px;
    right: -90px;

    box-shadow:
      0 0 0 50px rgba(0, 168, 214, 0.012),
      0 0 0 100px rgba(0, 168, 214, 0.009),
      0 0 0 150px rgba(0, 168, 214, 0.007);
  }

  .blog-hero-circles::before {
    width: 380px;
    height: 380px;

    top: 60px;
    left: 60px;
  }

  .blog-hero-circles::after {
    width: 610px;
    height: 610px;

    top: -55px;
    left: -55px;
  }

}

/* Blog filter hidden cards */
.blog-grid .service-card.filter-hidden {
  display: none !important;
}

/* ================================
   BLOG CATEGORY FILTER
================================ */

.blog-filter-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 42px;
}

.blog-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 5px;

  background: #f5f8fb;
  border: 1px solid #e4ebf2;
  border-radius: 12px;

  flex-wrap: nowrap;
  overflow-x: auto;

  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;

  box-shadow: 0 8px 24px rgba(7, 29, 53, 0.05);
}

.blog-filter::-webkit-scrollbar {
  display: none;
}


.blog-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  flex: 0 0 auto;

  min-height: 35px;
  padding: 8px 13px;

  border: 0;
  border-radius: 8px;

  background: transparent;
  color: #64748b;

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

  white-space: nowrap;
  cursor: pointer;

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

.blog-filter-btn i {
  font-size: 10px;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.blog-filter-btn:hover {
  color: #061a2e;
  background: #ffffff;
}

.blog-filter-btn.active {
  color: #ffffff;
  background: #061a2e;
  box-shadow: 0 5px 14px rgba(7, 29, 53, 0.16);
}

.blog-filter-btn.active i {
  opacity: 1;
}

.blog-filter-btn:active {
  transform: scale(0.97);
}


/* ================================
   FILTER ARROWS
================================ */

.blog-filter-arrow {
  position: absolute;
  z-index: 5;

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

  width: 30px;
  height: 30px;
  padding: 0;

  border: 1px solid rgba(228, 235, 242, 0.7);
  border-radius: 50%;

  /* Translucent background */
  background: rgba(255, 255, 255, 0.48);

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

  color: #061a2e;

  box-shadow: 0 5px 15px rgba(7, 29, 53, 0.08);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(-50%) scale(0.85);

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

.blog-filter-arrow i {
  font-size: 10px;
}

.blog-filter-arrow:hover {
  box-shadow: 0 8px 22px rgba(7, 29, 53, 0.18);
}

.blog-filter-arrow:active {
  transform: translateY(-50%) scale(0.92);
}

.blog-filter-arrow.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.blog-filter-arrow-left {
  top: 50%;
  left: 8px;
}

.blog-filter-arrow-right {
  top: 50%;
  right: 8px;
}


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

@media (max-width: 600px) {

  .blog-filter-wrap {
    width: 100%;
    margin-bottom: 30px;
  }

  .blog-filter {
    width: 100%;
    max-width: 100%;

    padding: 4px;

    border-radius: 10px;

    scroll-padding-left: 38px;
    scroll-padding-right: 38px;
  }

  .blog-filter-btn {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 10.5px;
  }

  .blog-filter-btn i {
    font-size: 9px;
  }

  .blog-filter-arrow {
    display: flex;
  }

  .blog-filter-arrow-left {
    left: 6px;
  }

  .blog-filter-arrow-right {
    right: 6px;
  }

  /* Keep cards normal when visible */
  .blog-grid .service-card.filter-hidden {
    display: none !important;
  }

}


.about-hero {
  position: relative;
  overflow: hidden;
}


/* Large cropped circle */

.about-hero-circle {
  position: absolute;

  width: 680px;
  height: 680px;

  right: -320px;
  top: -285px;

  border: 1px solid rgba(98, 209, 235, .11);

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(0, 168, 214, .035),
      transparent 65%);

  box-shadow:
    0 0 0 90px rgba(98, 209, 235, .018),
    0 0 0 180px rgba(98, 209, 235, .012);

  pointer-events: none;

  z-index: 1;
}


/* Keep About content above the decoration */

.about-hero-content {
  position: relative;
  z-index: 2;
}


/* ABOUT HERO - MOBILE */

@media (max-width: 750px) {

  .about-hero-circle {
    width: 520px;
    height: 520px;

    right: -250px;
    top: -225px;

    box-shadow:
      0 0 0 70px rgba(98, 209, 235, .016),
      0 0 0 140px rgba(98, 209, 235, .010);
  }

}


@media (max-width: 520px) {

  .about-hero-circle {
    width: 400px;
    height: 400px;

    right: -200px;
    top: -175px;

    box-shadow:
      0 0 0 55px rgba(98, 209, 235, .015),
      0 0 0 110px rgba(98, 209, 235, .009);
  }

}

/* HOME HERO CIRCLE EFFECT */

body[data-page="home"] .hero {
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -300px;
  top: -210px;
  border: 1px solid rgba(98, 209, 235, 0.075);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(98, 209, 235, 0.012),
    0 0 0 130px rgba(98, 209, 235, 0.008);
  pointer-events: none;
  z-index: 1;
}

body[data-page="home"] .hero::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  left: -150px;
  bottom: -125px;
  border: 1px solid rgba(98, 209, 235, 0.045);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

body[data-page="home"] .hero-grid {
  position: relative;
  z-index: 2;
}


/* CONTACT MAIN */

.contact-main-section {
  padding: 90px 0 100px;
  background: var(--light, #f7f9fb);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: stretch;
}

.contact-location-column {
  min-width: 0;
}

.contact-form-column {
  min-width: 0;
  display: flex;
}

.contact-section-heading {
  margin-bottom: 25px;
}

.contact-section-heading h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -1.8px;
}

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


/* LOCATION CARDS */

.contact-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-location-card {
  min-width: 0;
  padding: 20px;

  border: 1px solid var(--border);
  border-radius: 16px;

  background: #fff;

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

.contact-location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 214, .25);
  box-shadow: var(--shadow-sm);
}

.contact-location-icon {
  width: 38px;
  height: 38px;

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

  margin-bottom: 14px;

  border-radius: 10px;

  background: rgba(0, 168, 214, .08);
  color: var(--blue);

  font-size: 13px;
}

.contact-location-tag {
  display: block;

  margin-bottom: 4px;

  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.contact-location-card h3 {
  margin: 0 0 10px;

  color: var(--navy);
  font-size: 17px;
  letter-spacing: -.4px;
}

.contact-location-card p {
  margin: 0;

  color: var(--muted);
  font-size: 10px;
  line-height: 1.75;
}

.contact-location-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: 15px;

  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
}

.contact-location-phone i {
  color: var(--blue);
}


/* MAP */

.contact-map-wrapper {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 16px;

  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  padding: 17px 19px;
}

.contact-map-eyebrow {
  display: block;

  margin-bottom: 3px;

  color: var(--blue);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.contact-map-header h3 {
  margin: 0;

  color: var(--navy);
  font-size: 16px;
  letter-spacing: -.4px;
}

.contact-map-tabs {
  display: flex;
  gap: 5px;
}

.contact-map-tab {
  padding: 7px 10px;

  border: 1px solid var(--border);
  border-radius: 999px;

  background: #fff;

  color: var(--muted);

  font-family: inherit;
  font-size: 8px;
  font-weight: 800;

  cursor: pointer;

  transition: .2s ease;
}

.contact-map-tab:hover {
  color: var(--blue);
  border-color: rgba(0, 168, 214, .3);
}

.contact-map-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.contact-map-container {
  position: relative;

  width: 100%;
  height: 285px;

  background: #e9eef1;
}

.contact-map-frame {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;

  opacity: 0;
  visibility: hidden;

  transition: opacity .25s ease;
}

.contact-map-frame.active {
  opacity: 1;
  visibility: visible;
}


/* FORM */

.contact-form-card {
  width: 100%;

  padding: 34px;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: #fff;

  box-shadow:
    0 20px 60px rgba(6, 26, 46, .07);
}

.contact-form-header {
  margin-bottom: 27px;
}

.contact-form-header h2 {
  margin: 10px 0 9px;

  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -1.4px;
}

.contact-form-header h2 span {
  color: var(--blue);
}

.contact-form-header p {
  margin: 0;

  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-group {
  margin-bottom: 17px;
}

.contact-form-label {
  display: flex;
  align-items: center;
  gap: 3px;

  margin-bottom: 7px;

  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
}

.contact-form-label>span {
  color: #df5b5b;
}

.contact-input-wrapper,
.contact-textarea-wrapper {
  position: relative;
}

.contact-input-wrapper>i,
.contact-textarea-wrapper>i {
  position: absolute;

  left: 13px;
  top: 50%;

  transform: translateY(-50%);

  color: #9aa6ad;
  font-size: 10px;

  pointer-events: none;
}

.contact-textarea-wrapper>i {
  top: 15px;
  transform: none;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;

  border: 1px solid #dfe5e9;
  border-radius: 10px;

  background: #fbfcfd;

  color: var(--navy);

  font-family: inherit;
  font-size: 10px;

  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.contact-form-input {
  height: 43px;
  padding: 0 13px 0 37px;
}

.contact-form-textarea {
  min-height: 145px;
  padding: 13px 13px 13px 37px;

  resize: vertical;
  line-height: 1.7;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: rgba(0, 168, 214, .55);
  background: #fff;

  box-shadow:
    0 0 0 3px rgba(0, 168, 214, .07);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #a9b2b8;
}


/* VALIDATION */

.contact-form-group.has-error .contact-form-input,
.contact-form-group.has-error .contact-form-textarea {
  border-color: #df6666;
  background: #fffafa;
}

.contact-form-error {
  display: block;

  min-height: 0;
  margin-top: 5px;

  color: #d75555;

  font-size: 8px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-textarea-footer {
  display: flex;
  justify-content: space-between;
}

.contact-character-count {
  margin-top: 5px;

  color: #9aa5ad;
  font-size: 8px;
  font-weight: 700;
}


/* STATUS */

.contact-form-status {
  display: none;

  align-items: flex-start;
  gap: 8px;

  margin-bottom: 14px;
  padding: 11px 12px;

  border-radius: 9px;

  font-size: 8px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-form-status.success,
.contact-form-status.error {
  display: flex;
}

.contact-form-status.success {
  background: rgba(35, 160, 105, .06);
  border: 1px solid rgba(35, 160, 105, .18);
  color: #21875c;
}

.contact-form-status.error {
  background: rgba(217, 83, 83, .06);
  border: 1px solid rgba(217, 83, 83, .18);
  color: #c44d4d;
}


/* SUBMIT */

.contact-submit-btn {
  width: 100%;
  min-height: 47px;

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

  border: 0;
  border-radius: 10px;

  background: var(--navy);
  color: #fff;

  font-family: inherit;
  font-size: 9px;
  font-weight: 800;

  cursor: pointer;

  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.contact-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--blue);

  box-shadow:
    0 9px 22px rgba(0, 168, 214, .18);
}

.contact-submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.contact-submit-arrow {
  font-size: 8px;
  transition: transform .2s ease;
}

.contact-submit-btn:hover .contact-submit-arrow {
  transform: translateX(4px);
}

.contact-submit-loading {
  display: none;
}

.contact-submit-btn.is-loading .contact-submit-text,
.contact-submit-btn.is-loading .contact-submit-arrow {
  display: none;
}

.contact-submit-btn.is-loading .contact-submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  margin: 12px 0 0;

  color: #9aa5ad;
  font-size: 7px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-location-column,
  .contact-form-column {
    max-width: 760px;
  }

}


@media (max-width: 650px) {

  .contact-location-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-map-tabs {
    width: 100%;
  }

  .contact-map-tab {
    flex: 1;
  }

  .contact-form-card {
    padding: 25px 20px;
  }

}


@media (max-width: 520px) {

  .contact-main-section {
    padding: 65px 0 75px;
  }

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

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-header h2 {
    font-size: 27px;
  }

  .contact-map-container {
    height: 260px;
  }

}


@media (max-width: 400px) {

  .contact-form-card {
    padding: 22px 16px;
  }

  .contact-location-card {
    padding: 18px;
  }

  .contact-map-header {
    padding: 15px;
  }

  .contact-map-container {
    height: 235px;
  }

}

/* CONTACT HERO */

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 90px;
  color: #fff;

  background:
    radial-gradient(circle at 90% 20%,
      rgba(0, 168, 214, 0.18),
      transparent 30%),
    linear-gradient(120deg,
      var(--navy),
      var(--navy-light));
}


/* Grid Background */

.contact-hero-grid {
  position: absolute;
  inset: 0;

  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, .045) 1px,
      transparent 1px);

  background-size: 70px 70px;
}


/* Top Right Circle */

.contact-hero-circle-one {
  position: absolute;

  width: 680px;
  height: 680px;

  right: -320px;
  top: -285px;

  border: 1px solid rgba(98, 209, 235, .11);
  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(0, 168, 214, .035),
      transparent 65%);

  box-shadow:
    0 0 0 90px rgba(98, 209, 235, .018),
    0 0 0 180px rgba(98, 209, 235, .012);

  pointer-events: none;
}


/* Content */

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

.contact-hero-content {
  max-width: 1000px;
}


/* Eyebrow */

.contact-hero .eyebrow {
  color: var(--cyan-light);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.contact-hero .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--cyan-light);
  flex-shrink: 0;
}


/* Main Heading */

.contact-hero h1 {
  max-width: 900px;

  margin: 0;

  font-size: clamp(46px, 6vw, 78px);
  line-height: .98;

  letter-spacing: -3.5px;
  font-weight: 800;
}

.contact-hero h1 span {
  display: block;
  color: #62d1eb;
}


/* Description */

.contact-hero-content>p {
  max-width: 680px;

  margin: 30px 0 0;

  color: rgba(255, 255, 255, .72);

  font-size: 14px;
  line-height: 1.9;
}


/* Breadcrumb */

.contact-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 42px;

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

.contact-hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.contact-hero-breadcrumb span {
  color: rgba(255, 255, 255, .55);
}

.contact-hero-breadcrumb i {
  color: #62d1eb;
  font-size: 8px;
}


/* RESPONSIVE */

@media (max-width: 750px) {

  .contact-hero {
    padding: 80px 0 75px;
  }

  .contact-hero h1 {
    font-size: clamp(42px, 9vw, 62px);
    letter-spacing: -2.5px;
  }

  .contact-hero-circle-one {
    width: 520px;
    height: 520px;

    right: -280px;
    top: -220px;
  }

}


@media (max-width: 520px) {

  .contact-hero {
    padding: 70px 0 65px;
  }

  .contact-hero-eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .contact-hero h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .contact-hero-content>p {
    margin-top: 22px;
    font-size: 11px;
    line-height: 1.8;
  }

  .contact-hero-breadcrumb {
    margin-top: 30px;
    font-size: 9px;
  }

  .contact-hero-circle-one {
    width: 400px;
    height: 400px;

    right: -240px;
    top: -160px;
  }

}

/* CONTACT TYPOGRAPHY IMPROVEMENT Better readability across all screen sizes */

/* Main location heading */
.contact-section-heading h2 {
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.9px;
}


/* Location cards */
.contact-location-card {
  padding: 22px;
}

.contact-location-tag {
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: 1.5px;
}

.contact-location-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.5px;
}

.contact-location-card p {
  font-size: 12px;
  line-height: 1.8;
}

.contact-location-phone {
  margin-top: 17px;
  font-size: 11px;
  line-height: 1.4;
}


/* Location icon */
.contact-location-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  font-size: 14px;
}


/* MAP HEADER */

.contact-map-header {
  padding: 19px 21px;
}

.contact-map-eyebrow {
  margin-bottom: 5px;
  font-size: 9px;
  letter-spacing: 1.5px;
}

.contact-map-header h3 {
  font-size: 18px;
  line-height: 1.3;
}

.contact-map-tabs {
  gap: 7px;
}

.contact-map-tab {
  padding: 8px 13px;
  font-size: 10px;
}


/* CONTACT FORM */

.contact-form-card {
  padding: 36px;
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -1.6px;
}

.contact-form-header p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.8;
}


/* Form labels */

.contact-form-label {
  margin-bottom: 8px;
  font-size: 10.5px;
}


/* Inputs */

.contact-form-input,
.contact-form-textarea {
  font-size: 12px;
}

.contact-form-input {
  height: 48px;
  padding-left: 40px;
}

.contact-form-textarea {
  min-height: 155px;
  padding: 14px 14px 14px 40px;
  line-height: 1.75;
}


/* Input icons */

.contact-input-wrapper>i,
.contact-textarea-wrapper>i {
  left: 14px;
  font-size: 11px;
}


/* Validation messages */

.contact-form-error {
  margin-top: 6px;
  font-size: 9.5px;
  line-height: 1.45;
}


/* Character counter */

.contact-character-count {
  margin-top: 6px;
  font-size: 9px;
}


/* Submit button */

.contact-submit-btn {
  min-height: 50px;
  font-size: 10px;
}

.contact-submit-arrow {
  font-size: 9px;
}


/* Privacy note */

.contact-form-note {
  margin-top: 13px;
  font-size: 9px;
  line-height: 1.5;
}


/* Status message */

.contact-form-status {
  font-size: 9.5px;
  line-height: 1.6;
}


/* TABLET */

@media (max-width: 1000px) {

  .contact-section-heading h2 {
    font-size: clamp(34px, 5vw, 44px);
  }

  .contact-location-card p {
    font-size: 12.5px;
  }

  .contact-form-header p {
    font-size: 13px;
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .contact-location-grid {
    gap: 16px;
  }

  .contact-location-card {
    padding: 21px;
  }

  .contact-location-card h3 {
    font-size: 19px;
  }

  .contact-location-card p {
    font-size: 12px;
    line-height: 1.8;
  }

  .contact-map-header {
    padding: 18px;
  }

  .contact-map-eyebrow {
    font-size: 9px;
  }

  .contact-map-header h3 {
    font-size: 17px;
  }

  .contact-map-tab {
    padding: 9px 12px;
    font-size: 10px;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

}


/* SMALL MOBILE */

@media (max-width: 520px) {

  .contact-main-section {
    padding: 65px 0 75px;
  }

  .contact-section-heading h2 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }

  .contact-location-card {
    padding: 20px;
  }

  .contact-location-card h3 {
    font-size: 19px;
  }

  .contact-location-card p {
    font-size: 12px;
  }

  .contact-location-phone {
    font-size: 11px;
  }

  .contact-form-card {
    padding: 26px 20px;
  }

  .contact-form-header h2 {
    font-size: 29px;
  }

  .contact-form-header p {
    font-size: 12px;
    line-height: 1.8;
  }

  .contact-form-label {
    font-size: 10px;
  }

  .contact-form-input,
  .contact-form-textarea {
    font-size: 12px;
  }

  .contact-submit-btn {
    min-height: 49px;
    font-size: 10px;
  }

}


/* VERY SMALL DEVICES */

@media (max-width: 400px) {

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

  .contact-location-card {
    padding: 18px;
  }

  .contact-location-card h3 {
    font-size: 18px;
  }

  .contact-location-card p {
    font-size: 11.5px;
  }

  .contact-location-phone {
    font-size: 10.5px;
  }

  .contact-map-header {
    padding: 16px;
  }

  .contact-map-header h3 {
    font-size: 16px;
  }

  .contact-map-tab {
    font-size: 9.5px;
    padding: 8px 10px;
  }

  .contact-form-card {
    padding: 23px 17px;
  }

  .contact-form-header h2 {
    font-size: 27px;
  }

  .contact-form-header p {
    font-size: 11.5px;
  }

}

/* STATS NUMBER ANIMATION */

.stat-number .counter-val {
  display: inline-block;
}

.stat-item.active .stat-number .counter-val {
  animation: statNumberPop .7s ease-out;
}

@keyframes statNumberPop {

  0% {
    opacity: 0;
    transform: translateY(14px) scale(.92);
  }

  60% {
    transform: translateY(-2px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}


/* PAN-INDIA REVEAL */

.stat-pan span {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  clip-path: inset(0 100% 0 0);

  transition:
    opacity .7s ease,
    transform .7s ease,
    clip-path 1s cubic-bezier(.65, 0, .35, 1);
}

.stat-item.active .stat-pan span {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

/* HOMEPAGE REFINEMENTS Stats flow, section spacing and footer links */

/* Give the statistics area proper breathing room */
.stats-section {
  padding: 34px 0;
}

/* Keep counters visually stable while the number changes */
.stat-number .counter-val {
  display: inline-block;
  min-width: 2.2ch;
  white-space: nowrap;
  animation: none !important;
}

/* Client section: clear separation from WHAT WE MOVE */
.clients-section {
  padding-top: 5px !important;
  padding: 82px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-heading {
  margin-bottom: 38px;
}

/* Slightly larger footer navigation/service links */
.footer-column a {
  position: relative;
  width: fit-content;
  padding-bottom: 3px;
  margin-bottom: 12px;
  font-size: 12px;
  transition: color .25s ease, transform .25s ease;
}

/* Animated underline */
.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width .3s var(--ease);
}

.footer-column a:hover {
  color: var(--cyan-light);
  transform: translateX(4px);
}

.footer-column a:hover::after {
  width: 100%;
}

/* Keep phone links in the footer consistent with the same interaction */
.footer-contact>a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: 3px;
  font-size: 11px;
  transition: color .25s ease, transform .25s ease;
}

.footer-contact>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width .3s var(--ease);
}

.footer-contact>a:hover {
  color: var(--cyan-light);
  transform: translateX(4px);
}

.footer-contact>a:hover::after {
  width: 100%;
}

/* Tablet */
@media (max-width: 1000px) {
  .stats-section {
    padding: 28px 0;
  }

  .clients-section {
    padding: 70px 0;
  }
}

/* Mobile */
@media (max-width: 750px) {
  .stats-section {
    padding: 22px 0;
  }

  .clients-section {
    padding: 58px 0;
  }

  .clients-heading {
    margin-bottom: 30px;
  }

  .footer-column a {
    font-size: 11.5px;
    margin-bottom: 11px;
  }

  .footer-contact>a {
    font-size: 10.5px;
  }
}

/* Small phones */
@media (max-width: 520px) {
  .stats-section {
    padding: 18px 0;
  }

  .stat-item {
    min-height: 145px;
    padding: 20px 8px;
  }

  .clients-section {
    padding: 52px 0;
  }

  .clients-heading {
    margin-bottom: 27px;
  }

  .footer-column a {
    font-size: 11px;
    line-height: 1.65;
  }
}

@media (max-width: 360px) {
  .stats-section {
    padding: 15px 0;
  }

  .clients-section {
    padding: 46px 0;
  }

  .footer-column a {
    font-size: 10.5px;
  }
}

/* REUSABLE CTA CIRCLE EFFECT Works with CTA boxes on all pages */

.cta-circle-effect {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Large half-circle from top-right */
.cta-circle-effect::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -300px;
  top: -250px;
  border: 1px solid rgba(98, 209, 235, 0.10);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(98, 209, 235, 0.018),
    0 0 0 140px rgba(98, 209, 235, 0.012);
  pointer-events: none;
  z-index: 0;
}

/* Small subtle curve from bottom-left */
.cta-circle-effect::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -180px;
  bottom: -170px;
  border: 1px solid rgba(98, 209, 235, 0.055);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Keep actual CTA content above the effect */
.cta-circle-effect>* {
  position: relative;
  z-index: 1;
}


/* RESPONSIVE */

@media (max-width: 750px) {

  .cta-circle-effect::before {
    width: 420px;
    height: 420px;
    right: -270px;
    top: -210px;
  }

  .cta-circle-effect::after {
    width: 220px;
    height: 220px;
    left: -155px;
    bottom: -145px;
  }

}


@media (max-width: 520px) {

  .cta-circle-effect::before {
    width: 340px;
    height: 340px;
    right: -230px;
    top: -175px;
  }

  .cta-circle-effect::after {
    width: 180px;
    height: 180px;
    left: -130px;
    bottom: -120px;
  }

}

/* MINIMAL CIRCLE EFFECT */

.cta-circle-effect-minimal {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-circle-effect-minimal::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -280px;
  top: -250px;
  border: 1px solid rgba(98, 209, 235, 0.055);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(98, 209, 235, 0.009),
    0 0 0 130px rgba(98, 209, 235, 0.006);
  pointer-events: none;
  z-index: 0;
}

.cta-circle-effect-minimal>.container {
  position: relative;
  z-index: 1;
}


/* RESPONSIVE */

@media (max-width: 750px) {

  .cta-circle-effect-minimal::before {
    width: 350px;
    height: 350px;
    right: -230px;
    top: -210px;
  }

}

@media (max-width: 520px) {

  .cta-circle-effect-minimal::before {
    width: 280px;
    height: 280px;
    right: -190px;
    top: -170px;
  }

}

/* CONTACT PAGE - MOBILE REVEAL FIX */

@media (max-width: 768px) {

  .contact-location-column.reveal,
  .contact-form-column.reveal {
    transform: none;
    opacity: 1;
  }

}


/* ABOUT HERO - CLEAN MINIMAL CIRCLE EFFECT */



/* Main circle */
.about-hero-circle {
  position: absolute;

  width: 620px;
  height: 620px;

  right: -300px;
  top: -280px;

  border: 1px solid rgba(98, 209, 235, 0.10);
  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(0, 168, 214, 0.035),
      transparent 68%);

  box-shadow:
    0 0 0 85px rgba(98, 209, 235, 0.012),
    0 0 0 170px rgba(98, 209, 235, 0.007);

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


/* Keep content above the decoration */
.about-hero .container {
  position: relative;
  z-index: 2;
}


/* TABLET */

@media (max-width: 800px) {

  .about-hero-circle {
    width: 500px;
    height: 500px;

    right: -255px;
    top: -225px;

    border-color: rgba(98, 209, 235, 0.085);

    box-shadow:
      0 0 0 65px rgba(98, 209, 235, 0.010),
      0 0 0 130px rgba(98, 209, 235, 0.006);
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .about-hero-circle {
    width: 390px;
    height: 390px;

    right: -205px;
    top: -175px;

    border-color: rgba(98, 209, 235, 0.075);

    box-shadow:
      0 0 0 50px rgba(98, 209, 235, 0.009),
      0 0 0 100px rgba(98, 209, 235, 0.005);
  }

}


/* VERY SMALL MOBILE */

@media (max-width: 400px) {

  .about-hero-circle {
    width: 330px;
    height: 330px;

    right: -175px;
    top: -145px;

    border-color: rgba(98, 209, 235, 0.065);

    box-shadow:
      0 0 0 42px rgba(98, 209, 235, 0.008),
      0 0 0 84px rgba(98, 209, 235, 0.004);
  }

}


/* CONTACT FORM — VALIDATION POLISH */

.contact-form-group.has-error .contact-input-wrapper,
.contact-form-group.has-error .contact-textarea-wrapper {
  border-color: #d95353;
  box-shadow: 0 0 0 3px rgba(217, 83, 83, 0.08);
}

.contact-form-input.input-error,
.contact-form-textarea.input-error {
  border-color: transparent;
}

.contact-form-status {
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 12px;
  align-items: flex-start;
  gap: 9px;
}

.contact-form-status i {
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-form-status.success,
.contact-form-status.error {
  animation: contactStatusIn .35s ease both;
}

.contact-submit-btn:disabled {
  cursor: not-allowed;
  opacity: .75;
}

@keyframes contactStatusIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* QUICK INQUIRY RESPONSIVE LAYOUT */
.quick-inquiry-form,
.quick-inquiry-form * {
  box-sizing: border-box;
}

.cta-box {
  min-width: 0;
}

.cta-content {
  min-width: 0;
  flex: 1 1 0;
}

.cta-content h2 {
  max-width: 100%;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.quick-inquiry-form {
  flex: 0 1 520px;
  min-width: 0;
}

.quick-inquiry-fields {
  width: 100%;
}

@media (max-width: 1100px) {
  .cta-box {
    gap: 34px;
    padding: 55px 45px;
  }

  .cta-content h2 {
    font-size: clamp(29px, 4vw, 42px);
    letter-spacing: -1.5px;
  }

  .quick-inquiry-form {
    flex-basis: 460px;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .cta-box {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: 48px 38px;
  }

  .cta-content {
    width: 100%;
  }

  .cta-content h2 {
    max-width: 760px;
    font-size: clamp(30px, 5.5vw, 42px);
    line-height: 1.12;
    letter-spacing: -1.5px;
  }

  .cta-content p {
    max-width: 560px;
  }

  .quick-inquiry-form {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 65px 0;
  }

  .cta-box {
    gap: 26px;
    padding: 38px 22px;
    border-radius: 20px;
  }

  .cta-content .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .cta-content h2 {
    width: 100%;
    font-size: clamp(27px, 8.2vw, 36px);
    line-height: 1.14;
    letter-spacing: -1px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .cta-content h2 span {
    display: inline;
  }

  .cta-content p {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.7;
  }

  .quick-inquiry-form {
    width: 100%;
    padding: 17px;
    border-radius: 15px;
  }

  .quick-inquiry-fields {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .quick-inquiry-field-wide {
    grid-column: auto;
  }

  .quick-inquiry-field label {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .quick-inquiry-field input {
    height: 44px;
    padding: 0 12px;
    font-size: 11px;
    border-radius: 8px;
  }

  .quick-inquiry-submit {
    min-height: 44px;
    margin-top: 12px;
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .cta-section {
    padding: 52px 0;
  }

  .cta-box {
    padding: 32px 16px;
    gap: 22px;
    border-radius: 17px;
  }

  .cta-content h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -.7px;
  }

  .quick-inquiry-form {
    padding: 14px;
  }

  .quick-inquiry-field input {
    height: 42px;
    font-size: 10.5px;
  }
}
