@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #ff8906;
  --secondary-color: #e5306f;
  --text-dark: #0e0d16;
  --text-light: #767268;
  --extra-light: #f7f8fd;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}


img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  width: 100%;
}

nav {
  position: fixed;
  top: 0;
  isolation: isolate;
  width: 100%;
  z-index: 999;
}

.nav__header {
  padding: 0.5rem 1rem;
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  position: relative;
  z-index: 2;
}

.nav__logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}

.nav__logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  transition: opacity 0.25s ease;
}

.nav__logo-link:hover {
  opacity: 0.85;
}

.nav__logo-link img {
  width: auto;
  height: clamp(80px, 16vw, 116px);
  max-width: 65vw;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav__logo-mark {
  flex-shrink: 0;
  width: clamp(36px, 8vw, 52px);
  height: auto;
  display: block;
}

.nav__logo-text {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: clamp(0.8rem, 2.3vw, 1.05rem);
  line-height: 1.25;
  color: #971753;
  white-space: normal;
}
.nav__menu__btn {
  font-size: 1.6rem;
  color: var(--text-dark);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
}

/* Mobile-first: nav links are hidden off-canvas until opened */
.nav__links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.75rem;
  padding: 2rem 1rem;
  background-color: var(--primary-color);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  z-index: 1;
}

.nav__links.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  padding: 0.4rem 0;
  display: inline-block;
}

.nav__btns {
  display: none;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
}

.org__container {
  padding-block: 5rem;
}

.org__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.org__card {
  position: relative;
  background: #fff;
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

.org__card img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 6px solid #971753;
  margin: 0 auto 1rem;
  display: block;
}

.org__card h4 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.org__card p {
  color: #777;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .9rem;
}

/* ================= Hero / Header ================= */

.header__outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #fff 0%, #fffafd 58%, #fff4f8 100%);
}

.header__container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3.5rem;
  min-height: 720px;
  padding-top: 6.5rem;
  padding-bottom: 5rem;
}

/* Decorative background layer */
.header__deco {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.header__wave {
  position: absolute;
  top: 7%;
  right: -14%;
  width: 70%;
  height: 92%;
  background: linear-gradient(135deg, #fde8f0 0%, #f7bfd5 45%, #d71f6c 100%);
  border-radius: 48% 0 0 52%;
  transform: rotate(-7deg);
  opacity: 0.92;
}

.header__wave::after {
  content: "";
  position: absolute;
  inset: 18% -10% 18% 18%;
  border: 70px solid rgba(255, 255, 255, 0.42);
  border-left-color: transparent;
  border-radius: 50%;
}

.header__dots {
  position: absolute;
  width: 90px;
  height: 170px;
  background-image: radial-gradient(rgba(229, 48, 111, 0.28) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
}

.header__dots--tl {
  top: 14%;
  left: -8px;
}

.header__dots--br {
  right: 2%;
  bottom: 8%;
  width: 80px;
  height: 80px;
}

.header__ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(229, 48, 111, 0.24);
}

.header__ring--1 {
  width: 54px;
  height: 54px;
  top: 14%;
  left: 50%;
  border-color: rgba(229, 48, 111, 0.48);
}

.header__ring--2 {
  width: 38px;
  height: 38px;
  bottom: 12%;
  left: 3%;
}

.header__ring--3 {
  width: 46px;
  height: 46px;
  top: 44%;
  right: 4%;
}

.header__content {
  position: relative;
  z-index: 2;
}

.header__eyebrow {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1.35rem;
  padding: 0.55rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  background: rgba(229, 48, 111, 0.08);
  color: #c2185b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.header__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-color);
  box-shadow: 0 0 0 5px rgba(229, 48, 111, 0.10);
  flex-shrink: 0;
}

.header__content h1 {
  margin: 0 0 1.4rem 0;
  max-width: 100%;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.4rem, 10vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -1px;
  font-weight: 700;
  color: #971753;
  text-align: left;
  overflow-wrap: normal;
}

.header__content h1 span {
  display: block;
  color: #971753;
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  white-space: normal;
}

.header__content h1::after {
  content: "";
  display: block;
  width: 85px;
  height: 4px;
  margin-top: 1.5rem;
  border-radius: 99px;
  background: linear-gradient(90deg, #971753, #e5306f);
}

.header__content > .section__description {
  max-width: 590px;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #4e4b55;
}

.header__image {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
  padding: 0.6rem;
}

.header__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.header__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(80, 14, 45, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.header__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.10));
  pointer-events: none;
}

.header__photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(80, 14, 45, 0.24);
}

.header__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.header__photo:hover img {
  transform: scale(1.04);
}

/* ---------- Hero expertise graphic ---------- */
.header__expertise {
  margin-top: 2rem;
  text-align: left;
}

.header__expertise-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #6e6870;
}

.header__expertise-label::before {
  content: "✦";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fde8f0;
  color: var(--secondary-color);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.header__expertise-label::after {
  content: "";
  flex: 1;
  max-width: 110px;
  height: 1px;
  background: linear-gradient(90deg, rgba(229,48,111,.55), transparent);
}

.header__chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem;
}

.header__chip-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.58rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--text-dark);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(14, 13, 22, 0.07);
  border-radius: 999px;
  box-shadow: 0 5px 18px rgba(14, 13, 22, 0.06);
  transition: 0.3s;
}

.header__chip-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(14, 13, 22, 0.11);
  border-color: rgba(229, 48, 111, 0.18);
}

.header__chip-list li i {
  font-size: 1.05rem;
}

.header__chip-list li:nth-child(4n+1) i { color: #00bfae; }
.header__chip-list li:nth-child(4n+2) i { color: #ff637e; }
.header__chip-list li:nth-child(4n+3) i { color: #a96cff; }
.header__chip-list li:nth-child(4n+4) i { color: #00aeea; }

.header__btns {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.header__btns .btn {
  min-width: 150px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 9px 22px rgba(255, 137, 6, 0.20);
}

.header__btns .btn::after {
  content: "→";
  margin-left: 1rem;
  font-size: 1.05rem;
}

.header__btns a {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.header__btns a span {
  width: 2.75rem;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 2px solid var(--text-dark);
  border-radius: 50%;
  transition: 0.3s;
}

.header__btns a:hover span {
  color: var(--white);
  background: var(--text-dark);
}

.company__license {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  align-self: center;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
}

.company__license:hover {
  color: #d10072;
  transform: translateY(-2px);
}

.company__license i {
  color: #d10072;
  flex-shrink: 0;
  font-size: 1.6rem;
}
.service {
  background-color: var(--extra-light);
}

.service__container.section__header {
  max-width: 750px;
  margin-inline: auto;
}

.service__grid {
  margin-block: 4rem;
  display: grid;
  gap: 1rem;
}

.service__card {
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: var(--white);
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.service__card:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.service__card:nth-child(1):hover {
  border-color: #00d5be;
}

.service__card:nth-child(2):hover {
  border-color: #ff637e;
}

.service__card:nth-child(3):hover {
  border-color: #c27aff;
}

.service__card:nth-child(4):hover {
  border-color: #00bcff;
}

.service__card div {
  margin-bottom: 1rem;
  max-width: max-content;
  padding: 5px 8px;
  font-size: 1.75rem;
  border-radius: 5px;
}

.service__card:nth-child(1) div {
  color: #00d5be;
  background-color: #f0fdfa;
}

.service__card:nth-child(2) div {
  color: #ff637e;
  background-color: #fff1f2;
}

.service__card:nth-child(3) div {
  color: #c27aff;
  background-color: #faf5ff;
}

.service__card:nth-child(4) div {
  color: #00bcff;
  background-color: #f0f9ff;
}

.service__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service__card .section__description {
  text-align: left;
}

.service__btn {
  display: flex;
  justify-content: center;
}

.about__container {
  display: grid;
  gap: 2rem;
}

.about__image {
  position: relative;
  max-width: 450px;
  width: 100%;
  margin-inline: auto;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(14, 13, 22, 0.08);
}

.about__image img {
  max-width: 450px;
  width: 100%;
  margin-inline: auto;
  display: block;
  transition: transform 0.4s ease;
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__image:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

.about__hint {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background-color: rgba(14, 13, 22, 0.55);
  border-radius: 999px;
  transition: opacity 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.about__image:hover .about__hint,
.about__image:focus .about__hint,
.about__image:focus-within .about__hint {
  opacity: 0;
}

.about__bio {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  background: linear-gradient(160deg, #971753, #e5306f);
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
  pointer-events: none;
}

.about__image:hover .about__bio,
.about__image:focus .about__bio,
.about__image:focus-within .about__bio {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.about__bio h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.about__bio p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: left;
}

.about__content .section__header {
  margin-bottom: 2rem;
  text-align: left;
}

.about__list {
  display: grid;
  gap: 2rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__list li span {
  max-width: max-content;
  padding: 5px 8px;
  font-size: 1.75rem;
  border-radius: 5px;
}

.about__list li:nth-child(1) span {
  color: #00d5be;
  background-color: #f0fdfa;
}

.about__list li:nth-child(2) span {
  color: #ff637e;
  background-color: #fff1f2;
}

.about__list li:nth-child(3) span {
  color: #c27aff;
  background-color: #faf5ff;
}

.about__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about__list .section__description {
  text-align: left;
}



/* =========================================================
   2026 DEPLOYMENT HIGHLIGHT
   ========================================================= */

.deployment {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(229, 48, 111, 0.20), transparent 30%),
    linear-gradient(135deg, #fff7fa 0%, #ffffff 48%, #fff0f6 100%);
  border-top: 1px solid rgba(151, 23, 83, 0.08);
  border-bottom: 1px solid rgba(151, 23, 83, 0.08);
}

.deployment__container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.deployment__content {
  position: relative;
  z-index: 2;
}

.deployment__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(229, 48, 111, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #971753;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.deployment__eyebrow i {
  font-size: 1rem;
  color: #e5306f;
}

.deployment__content h2 {
  margin-bottom: 1rem;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.1rem, 8vw, 4.3rem);
  line-height: 1;
  letter-spacing: -1px;
  color: #971753;
}

.deployment__content h2 span {
  color: #e5306f;
}

.deployment__content > p {
  max-width: 580px;
  margin-bottom: 1.5rem;
  color: #5e5962;
  font-size: 0.98rem;
  line-height: 1.75;
}

.deployment__route {
  display: flex;
  align-items: center;
  max-width: 430px;
  margin-bottom: 1.35rem;
}

.deployment__point {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 32px;
  padding-inline: 0.7rem;
  border-radius: 999px;
  background: #971753;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.deployment__line {
  position: relative;
  flex: 1;
  height: 2px;
  margin-inline: 0.7rem;
  background: repeating-linear-gradient(
    90deg,
    rgba(229, 48, 111, 0.8) 0 8px,
    transparent 8px 14px
  );
}

.deployment__line i {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0.35rem;
  background: #fff;
  border-radius: 50%;
  color: #e5306f;
  font-size: 1.25rem;
  transform: translate(-50%, -50%) rotate(8deg);
  box-shadow: 0 4px 15px rgba(151, 23, 83, 0.12);
}

.deployment__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.deployment__tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(14, 13, 22, 0.07);
  color: #403b43;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(14, 13, 22, 0.05);
}

.deployment__tags i {
  color: #e5306f;
  font-size: 0.95rem;
}

/* ---------- Deployment gallery: Swiper carousel (replaces old grid) ---------- */

.deployment__visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

.deployment__swiper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(80, 14, 45, 0.18);
}

.deployment__swiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.deployment__swiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.deployment__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.deployment__swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.65;
  width: 8px;
  height: 8px;
}

.deployment__swiper .swiper-pagination-bullet-active {
  background: #e5306f;
  opacity: 1;
}

.deployment__swiper .swiper-button-next,
.deployment__swiper .swiper-button-prev {
  color: #fff;
  background: rgba(151, 23, 83, 0.55);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: 0.3s;
}

.deployment__swiper .swiper-button-next:hover,
.deployment__swiper .swiper-button-prev:hover {
  background: rgba(151, 23, 83, 0.85);
}

.deployment__swiper .swiper-button-next::after,
.deployment__swiper .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.deployment__gallery-overlay {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(31, 7, 21, 0.66);
  backdrop-filter: blur(7px);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
  max-width: calc(100% - 1.4rem);
}

.deployment__gallery-overlay span {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.deployment__gallery-overlay strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.45rem;
}

.deployment__plane {
  position: absolute;
  right: -0.7rem;
  top: -1rem;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #971753, #e5306f);
  color: #fff;
  font-size: 1.5rem;
  transform: rotate(12deg);
  box-shadow: 0 12px 28px rgba(151, 23, 83, 0.25);
  z-index: 3;
}

.deployment__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.deployment__glow--one {
  width: 220px;
  height: 220px;
  top: -120px;
  left: -90px;
  border: 35px solid rgba(229, 48, 111, 0.06);
}

.deployment__glow--two {
  width: 300px;
  height: 300px;
  right: -150px;
  bottom: -190px;
  border: 50px solid rgba(151, 23, 83, 0.05);
}

@media (width > 768px) {
  .deployment__container {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .deployment__visual {
    margin-inline: 0;
  }

  .deployment__swiper {
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 540px) {
  .deployment__container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .deployment__swiper {
    border-width: 3px;
    border-radius: 0.85rem;
  }

  .deployment__gallery-overlay {
    left: 0.7rem;
    bottom: 0.7rem;
    padding: 0.55rem 0.7rem;
  }

  .deployment__gallery-overlay strong {
    font-size: 1rem;
  }

  .deployment__plane {
    width: 46px;
    height: 46px;
    right: -0.2rem;
    top: -0.6rem;
    font-size: 1.1rem;
  }
}

/* ---------- Company Information ---------- */
.company {
  position: relative;
  background-color: var(--extra-light);
}

.company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.company__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.company__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.company__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.company__left .section__header {
  position: relative;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
}

.company__left .section__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.company__logo-card {
  display: inline-block;
  margin: 0 auto;
}

.company__logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.company__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1.1rem;
  font-size: 20px;
  font-weight: 600;
  color: #971753;
  background-color: rgba(151, 23, 83, 0.08);
  border-radius: 999px;
  text-align: center;
}

.company__badge i {
  font-size: 1rem;
}

.image-effect {
  transition: transform 0.5s ease;
}

.image-effect:hover {
  transform: scale(1.1);
}

.company__list {
  display: grid;
  gap: 2rem;
}

.company__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.company__list li span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  border-radius: 5px;
}

.company__list li:nth-child(1) span {
  color: #00d5be;
  background-color: #f0fdfa;
}

.company__list li:nth-child(2) span {
  color: #ff637e;
  background-color: #fff1f2;
}

.company__list li:nth-child(3) span {
  color: #c27aff;
  background-color: #faf5ff;
}

.company__list li:nth-child(4) span {
  color: #00bcff;
  background-color: #f0f9ff;
}

.company__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.company__right .section__description {
  text-align: left;
  line-height: 1.7;
}

@media (width > 768px) {
  .company__header {
    grid-template-columns: 45% 55%;
    gap: 60px;
  }

  .company__left {
    align-items: flex-start;
    text-align: left;
  }

  .company__left .section__header {
    font-size: 3.5rem;
  }

  .company__left .section__header::after {
    left: 0;
    transform: none;
  }

  .company__logo-card {
    margin: 0;
  }

  .company__logo {
    max-width: var(--max-width);
  }

  .company__license {
    align-self: flex-start;
  }
}


.portfolio {
  background-color: var(--extra-light);
  overflow: hidden;
}

.portfolio__header {
  margin-bottom: 4rem;
  display: grid;
  gap: 2rem;
}

.portfolio__image {
  position: relative;
  isolation: isolate;
}

.portfolio__image__content {
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-50%);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 0.25rem;
  z-index: 1;
}

.portfolio__image__content div {
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.portfolio__image__content div:nth-child(1) {
  border-right: 1px solid var(--extra-light);
}

.portfolio__image img {
  border-radius: 0.5rem;
}

.portfolio__image__content h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.portfolio__image__content p {
  font-size: 0.9rem;
  color: var(--extra-light);
}

.portfolio__content {
  display: grid;
  gap: 2rem;
}

.portfolio__list {
  display: grid;
  gap: 2rem;
}

.portfolio__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.portfolio__list li span {
  width: 5rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--secondary-color);
  border-radius: 0.25rem;
}

.portfolio__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.portfolio__list .section__description {
  text-align: left;
}

.feedback__container {
  padding-bottom: 3rem;
}

.swiper {
  padding-block: 4rem 2rem;
  width: 100%;
}

.swiper-slide {
  min-width: min(375px, 90vw);
}

.feedback__card {
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.feedback__card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.feedback__card .section__description {
  text-align: left;
}

.feedback__details {
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feedback__user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feedback__user img {
  max-width: 50px;
  border-radius: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feedback__user h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feedback__user h5 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.feedback__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.feedback__rating span {
  font-size: 1rem;
  color: goldenrod;
}

.orientation__container {
  text-align: center;
}

.orientation__header {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.orientation__header .section__header {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.orientation__header .section__description {
  margin-inline: auto;
  text-align: center;
}

.orientation__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #971753;
  background-color: rgba(151, 23, 83, 0.08);
  border-radius: 999px;
}

.orientation__header .section__header {
  margin-bottom: 0.75rem;
}

.orientation__header .section__description {
  max-width: 600px;
  margin-inline: auto;
}

.orientation__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  max-width: 750px;
  margin: 3rem auto 0;
}

.orientation__card {
  padding: 1.75rem 1rem;
  background-color: var(--white);
  border: 1px solid rgba(14, 13, 22, 0.08);
  border-bottom: 3px solid var(--primary-color);
  border-radius: 0.75rem;
  transition: 0.3s;
}

.orientation__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.orientation__day {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
}

.orientation__card h4 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.orientation__card p {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.orientation__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.orientation__location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

.orientation__footer .btn {
  text-align: center;
  white-space: normal;
}

.subscribe__content {
  padding: 3rem 1rem;
  border-radius: 1rem;
  background-color: #971753;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.subscribe__content .section__header {
  margin-bottom: 2rem;
  max-width: 750px;
  margin-inline: auto;
  color: var(--white);
}

.subscribe__content form {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  padding: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--white);
  border-radius: 0.5rem;
}

.subscribe__content input {
  width: 100%;
  min-width: 0;
  flex: 1 1 180px;
  padding-inline: 1rem;
  padding-block: 0.6rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--text-dark);
}

.subscribe__content form .btn {
  flex: 0 0 auto;
}

.footer__container {
  display: grid;
  gap: 3rem 2rem;
}

.footer__logo {
  margin-bottom: 2rem;
}

.footer__logo a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: "Times New Roman", Times, serif;
}

.footer__logo a span {
  color: var(--secondary-color);
}

.footer__col .section__description {
  margin-bottom: 2rem;
  text-align: left;
}

.footer__col h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__socials a {
  padding: 4px 6px;
  font-size: 1.125rem;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--secondary-color);
}

.footer__col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
}

.footer__col {
  min-width: 0;
}
.footer__links a:hover {
  color: var(--secondary-color);
}

.footer__links a span {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon i {
  color: #e91e63;
  font-size: 20px;
  margin-top: 4px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info a i {
  color: #e91e63;
}

.contact-info a:hover {
  color: #e91e63;
}

/* ---------- floating chat bubble (fallback style if chatbot.js needs one) ---------- */
.chat__bubble {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-content: center;
  font-size: 1.4rem;
  color: var(--white);
  background: linear-gradient(160deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 20;
  cursor: pointer;
  border: none;
}

@media (width > 540px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 2px solid var(--extra-light);
  }

  .nav__header {
    flex: 1;
    padding: 0;
    min-height: 0;
    background-color: transparent;
  }

  .nav__logo-link img {
    height: clamp(96px, 7vw, 130px);
    max-width: 480px;
  }

  .nav__logo-text {
    color: #971753;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    max-height: none;
    gap: 2rem;
  }

  .nav__links a {
    color: var(--text-light);
    padding: 0;
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .header__container {
    min-height: 720px;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: center;
    gap: 2.5rem;
  }

  .header__content {
    padding-left: 1rem;
  }

  .header__image {
    grid-area: 1/2/2/3;
    transform: translateY(0);
  }

  .header__content :is(h1, .section__description) {
    text-align: left;
  }

  .header__content h1 {
    text-align: left;
    max-width: 620px;
    font-size: clamp(2.6rem, 3.6vw, 3.9rem);
    line-height: 0.98;
    letter-spacing: -1.5px;
  }

  .header__content h1 span {
    white-space: normal;
  }

  .header__expertise {
    text-align: left;
  }

  .header__chip-list {
    justify-content: flex-start;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .header__wave {
    right: -18%;
    width: 68%;
  }

  .service__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .portfolio__header {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__header :is(.section__header, .section__description) {
    text-align: left;
  }

  .portfolio__content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .portfolio__image {
    grid-area: 1/2/2/3;
  }

  .footer__logo img {
    width: 250px;
    max-width: 100%;
    display: block;
  }

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-column: 1/3;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .header__outer {
    min-height: auto;
  }

  .header__container {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 3.5rem;
    gap: 2.25rem;
  }

  .header__content {
    order: 1;
  }

  .header__image {
    order: 2;
    max-width: 520px;
  }

  .header__wave {
    top: 42%;
    right: -45%;
    width: 125%;
    height: 65%;
  }

  .header__ring--1 {
    top: 40%;
    left: 8%;
  }

  .header__ring--3 {
    top: 60%;
    right: 4%;
  }
}

@media (max-width: 540px) {
  .section__container {
    padding: 3.5rem 1rem;
  }

  .header__container {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }

  .header__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.8px;
  }

  .header__content > .section__description {
    font-size: 0.92rem;
  }

  .header__gallery {
    gap: 0.45rem;
  }

  .header__photo {
    border-width: 3px;
    border-radius: 0.75rem;
  }

  .header__chip-list {
    gap: 0.5rem;
  }

  .header__chip-list li {
    padding: 0.48rem 0.72rem;
    font-size: 0.7rem;
  }

  .header__btns {
    flex-wrap: wrap;
  }

  .header__btns .btn {
    width: 100%;
    text-align: center;
  }

  .about__image {
    max-width: 100%;
  }

  .about__image img {
    max-width: 100%;
  }

  .subscribe__content form {
    flex-direction: column;
    padding: 0.6rem;
    gap: 0.6rem;
  }

  .subscribe__content input {
    width: 100%;
    padding-block: 0.75rem;
  }

  .subscribe__content form .btn {
    width: 100%;
  }
}
/* =========================================================
   ORGANIZATIONAL CHART - CLICKABLE PROFILE CARDS
   ========================================================= */
.org__heading { text-align: center; }
.org__subtitle { margin-top: .65rem; color: var(--text-light); font-size: .9rem; }
.org__grid { align-items: stretch; }
.org__card {
  width: 100%; border: 1px solid rgba(151,23,83,.08);
  font-family: "Montserrat", sans-serif; color: inherit; cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.org__card:hover, .org__card:focus-visible {
  transform: translateY(-6px); border-color: rgba(229,48,111,.28);
  box-shadow: 0 14px 35px rgba(80,14,45,.14); outline: none;
}
.org__card:active { transform: translateY(-2px); }
.org__card h4 { color: var(--text-dark); }
.org__card p { line-height: 1.5; }
.org__view {
  display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem;
  padding: .45rem .8rem; border-radius: 999px; background: rgba(151,23,83,.07);
  color: #971753; font-size: .72rem; font-weight: 700; letter-spacing: .2px;
  text-transform: none; transition: .3s ease;
}
.org__card:hover .org__view, .org__card:focus-visible .org__view {
  color: var(--white); background: #971753;
}
.org__modal {
  position: fixed; inset: 0; display: flex; align-items: center; justify-content: center;
  padding: 1rem; z-index: 1000; visibility: hidden; opacity: 0; pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.org__modal.open { visibility: visible; opacity: 1; pointer-events: auto; }
.org__modal-backdrop {
  position: absolute; inset: 0; background: rgba(14,13,22,.58);
  backdrop-filter: blur(4px);
}
.org__modal-content {
  position: relative; width: min(680px,100%); max-height: min(82vh,760px);
  overflow-y: auto; padding: 2rem; background: var(--white); border-radius: 1rem;
  box-shadow: 0 25px 80px rgba(14,13,22,.28); transform: translateY(15px) scale(.98);
  transition: transform .25s ease;
}
.org__modal.open .org__modal-content { transform: translateY(0) scale(1); }
.org__modal-close {
  position: absolute; top: 1rem; right: 1rem; width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center; border: 0; border-radius: 50%;
  background: #f7f8fd; color: var(--text-dark); font-size: 1.25rem; cursor: pointer;
}
.org__modal-close:hover { color: var(--white); background: #971753; }
.org__modal-top {
  display: flex; align-items: center; gap: 1.25rem; padding-right: 2.5rem;
  margin-bottom: 1.5rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(14,13,22,.08);
}
.org__modal-top img {
  width: 92px; height: 92px; flex: 0 0 92px; object-fit: cover;
  object-position: center top;
  border-radius: 50%; border: 4px solid #971753;
}
.org__modal-top h3 {
  margin-bottom: .35rem; color: #971753; font-family: "Times New Roman",Times,serif;
  font-size: clamp(1.45rem,4vw,2rem); line-height: 1.1;
}
.org__modal-top p { color: var(--text-light); font-size: .82rem; line-height: 1.5; font-weight: 700; }
.org__modal-bio p {
  margin-bottom: 1rem; color: #4e4b55; font-size: .92rem; line-height: 1.75; text-align: left;
}
.org__modal-bio p:last-child { margin-bottom: 0; }
body.org__modal-open { overflow: hidden; }

@media (max-width: 540px) {
  .org__modal { padding: .75rem; }
  .org__modal-content { padding: 1.35rem; border-radius: .85rem; max-height: 88vh; }
  .org__modal-top { align-items: flex-start; gap: .9rem; padding-right: 2rem; }
  .org__modal-top img { width: 70px; height: 70px; flex-basis: 70px; }
  .org__modal-top h3 { font-size: 1.35rem; }
  .org__modal-bio p { font-size: .86rem; line-height: 1.65; }
}

/* ---------- Mission & Vision alignment ---------- */
.about__content {
  width: 100%;
}

.about__content > .section__header {
  width: 100%;
  margin-inline: auto;
  margin-bottom: 2rem;
  text-align: center !important;
}

.about__list {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.about__list li {
  text-align: left;
}

.about__list .section__description {
  text-align: left;
}

/* ---------- Organizational Chart alignment ---------- */
.org__heading {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
  text-align: center !important;
}

.org__heading .section__header {
  width: 100%;
  margin-inline: auto;
  text-align: center !important;
}

.org__subtitle {
  width: 100%;
  margin-inline: auto;
  text-align: center !important;
}

@media (width > 768px) {
  .about__content > .section__header {
    text-align: center !important;
  }

  .org__heading {
    text-align: center !important;
  }
}

/* ---------- Global small-screen safety net ---------- */
@media (max-width: 400px) {
  .nav__header {
    min-height: 90px;
    padding: 0.4rem 0.85rem;
  }

  .nav__logo-link img {
    height: clamp(64px, 17vw, 80px);
    max-width: 60vw;
  }

  .header__content h1 {
    font-size: clamp(2rem, 11vw, 2.6rem);
  }

  .company__logo {
    max-width: 260px;
  }

  .deployment__content h2 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }
}