﻿/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f5f7fa;
}

.navbar {
  width: 100%;
  background: #fff;
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-content {
  max-width: 1300px;
  margin: auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu a:hover {
  color: #086b95;
}

.btn-primary {
  background: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #086b95;
  font-weight: 500;
}

.phone-btn i {
  margin-right: 6px;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #086b95;
  color: #fff;
  border: 1px solid #086b95;
}

.phone-btn:hover {
  background: #065473;
  color: #fff;
}

.dropdown {
  position: relative;
  list-style: none;
}

.dropdown-menu {
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 285px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.dropdown-menu li a {
  padding: 12px 16px;
  display: block;
  color: #333;
  font-size: 12px;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #eaf6ff;
  color: #086b95;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #333;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  padding: 90px 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transform: translateY(-100%);
  transition: 0.4s;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  text-decoration: none;
  font-size: 20px;
  color: #111;
}

.mobile-menu-header {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu .dropdown-menu {
  display: none;
  position: static;
  background: none;
  box-shadow: none;
  padding-left: 20px;
}

.mobile-menu .dropdown.open .dropdown-menu {
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 30px;
  }

  .menu,
  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }
}

/*  */

.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.3s ease,
    transform 1.3s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
}

/* TEXT CONTAINER */
.animated-text {
  display: flex;
  gap: 14px;
  justify-content: center;
  font-size: clamp(28px, 4vw, 60px);
  letter-spacing: 2px;
}

.hero-typewriter {
  min-height: 1.2em;
  display: inline-block;
  white-space: nowrap;
}

.hero-typewriter::after {
  content: "|";
  margin-left: 6px;
  color: #f6b10a;
  animation: blinkCaret 0.9s steps(1, end) infinite;
}

/* WHITE WORD */
.word {
  opacity: 0;
  transform: translateX(-30px);
  animation: wordIn 0.6s ease forwards;
}

/* BLUE TYPED WORD */
.typed-word {
  display: flex;
  color: 086B95;
}

.typed-letter {
  opacity: 0;
  transform: translateY(10px);
  animation: letterIn 0.3s ease forwards;
}

@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes letterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blinkCaret {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}

/* BARS */
.slider-bars {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
}

.bar {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.4s;
}

.bar.active {
  width: 60px;
  background: #f6b10a;
}

@media (max-width: 600px) {
  .hero-slider {
    height: 70vh;
  }
}

/* ===== RESPONSIVE TEXT FIX ===== */

/* Allow wrapping */
.animated-text {
  flex-wrap: wrap;
  row-gap: 10px;
  padding: 0 16px;
}

/* Tablet */
@media (max-width: 1024px) {
  .animated-text {
    font-size: clamp(26px, 3.8vw, 46px);
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .animated-text {
    font-size: clamp(22px, 6vw, 36px);
    gap: 8px;
    letter-spacing: 1.5px;
  }

  .content {
    width: 100%;
  }

  .hero-typewriter {
    white-space: normal;
    line-height: 1.25;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .animated-text {
    font-size: clamp(20px, 7vw, 30px);
    gap: 6px;
    letter-spacing: 1px;
  }

  .typed-word {
    justify-content: center;
  }
}

/* Extra small */
@media (max-width: 360px) {
  .animated-text {
    font-size: 22px;
    line-height: 1.25;
  }
}

/*  */

/* ===============================
   SECTION CONTAINER
================================ */
.section-container {
  max-width: 1280px;
  width: 95%;
  margin: 72px auto;
  padding: 52px 46px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background: #f1f3f5;
  box-shadow: 0 18px 52px rgba(18, 48, 80, 0.2);
}

.section-container::before,
.section-container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.section-container::before {
  width: 220px;
  height: 220px;
  top: -70px;
  left: -70px;
  background: radial-gradient(
    circle,
    rgba(82, 179, 255, 0.2),
    rgba(82, 179, 255, 0)
  );
}

.section-container::after {
  width: 260px;
  height: 260px;
  bottom: -95px;
  right: -90px;
  background: radial-gradient(
    circle,
    rgba(38, 207, 131, 0.16),
    rgba(38, 207, 131, 0)
  );
}

.section-container > * {
  position: relative;
  z-index: 1;
}

.opportunity-tag {
  margin: 0 0 12px;
  text-align: center;
  color: #6eaaa3;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.section-container h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #6eaaa3;
  margin: 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-intro {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.72;
  color: #2c4458;
}

/* ===============================
   GRID
================================ */
.highlights-wrapper {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* ===============================
   CARD
================================ */
.highlight-card {
  text-align: center;
  padding: 12px 10px 6px;
  border-radius: 20px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.88),
    rgba(246, 251, 255, 0.76)
  );
  border: 1px solid rgba(121, 177, 228, 0.32);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(32, 74, 114, 0.22);
}

/* ===============================
   BLUE METRIC CIRCLE
================================ */
.adv-icon {
  width: min(100%, 154px);
  aspect-ratio: 1;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #086b95;
  color: #fff;
  box-shadow:
    inset 0 2px 7px rgba(255, 255, 255, 0.18),
    0 14px 28px rgba(2, 11, 26, 0.34);
  padding: 14px;
}

.metric-top {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0.03em;
}

.metric-main {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  font-size: 2.55rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.metric-main small {
  font-size: 0.4em;
  font-weight: 700;
  line-height: 1.1;
}

.metric-main--small {
  font-size: 1.95rem;
}

.metric-prefix {
  margin-right: 2px;
}

.metric-sub {
  margin-top: 6px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* ===============================
   DESCRIPTION
================================ */
.highlight-copy {
  max-width: 330px;
  margin: 0 auto;
  font-size: 0.97rem;
  color: #274055;
  line-height: 1.62;
}
yyy .highlight-copy strong {
  color: #6eaaa3;
  font-weight: 700;
}

.highlight-copy:last-child {
  margin: 0;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .section-container {
    width: 96%;
    padding: 44px 30px;
  }

  .highlights-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .highlight-card:last-child {
    grid-column: 1 / -1;
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section-container {
    width: 96%;
    padding: 34px 18px;
    border-radius: 22px;
  }

  .opportunity-tag {
    letter-spacing: 0.13em;
    font-size: 0.74rem;
  }

  .section-container h2 {
    font-size: 2rem;
  }

  .section-intro {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .highlights-wrapper {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .highlight-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .adv-icon {
    max-width: 138px;
    margin-bottom: 14px;
  }

  .metric-main {
    font-size: 2.2rem;
  }

  .metric-main--small {
    font-size: 1.78rem;
  }

  .metric-sub {
    font-size: 0.9rem;
  }

  .highlight-copy {
    font-size: 0.94rem;
    line-height: 1.62;
  }
}

/*  */

/*  */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/*  */

/* =========================
   SECTION
========================= */
.about-section {
  padding: 100px 0;
  background: #f5f5f5;
  overflow: hidden;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

.about-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.about-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.about-brand-text p {
  margin: 0 0 3px;
  color: #7a7a7a;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 600;
}

.about-brand-text h2 {
  margin: 0;
  color: #171717;
  font-family: "Lora", serif;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 500;
}

.about-intro {
  margin: 0 0 28px;
  max-width: 760px;
  color: #515151;
  font-size: 16px;
  line-height: 1.6;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, 290px);
  gap: 16px;
}

.expertise-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: #1f1f1f;
  color: inherit;
  text-decoration: none;
}

.expertise-card--tall {
  grid-row: span 2;
}

.expertise-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.expertise-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.expertise-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.expertise-card:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.expertise-card:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.expertise-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.expertise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.74) 0%,
    rgba(0, 0, 0, 0.38) 42%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 1;
  transition: background 0.35s ease;
}

.expertise-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 20px 18px;
  color: #fff;
}

.expertise-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.expertise-head h3 {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}

.expertise-head span {
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  flex-shrink: 0;
}

.expertise-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.45;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease,
    margin-top 0.35s ease;
}

.expertise-card:hover .expertise-bg {
  transform: scale(1.07);
}

.expertise-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.86) 0%,
    rgba(0, 0, 0, 0.5) 54%,
    rgba(0, 0, 0, 0.14) 100%
  );
}

.expertise-card:hover .expertise-content {
  max-height: 110px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .about-section {
    padding: 78px 0;
  }

  .about-brand-text h2 {
    font-size: 36px;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .expertise-card {
    min-height: 280px;
  }

  .expertise-card--tall {
    grid-row: auto;
  }

  .expertise-card:nth-child(1),
  .expertise-card:nth-child(2),
  .expertise-card:nth-child(3),
  .expertise-card:nth-child(4),
  .expertise-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 700px) {
  .about-section {
    padding: 64px 0;
  }

  .about-container {
    padding: 0 16px;
  }

  .about-brand {
    margin-bottom: 10px;
  }

  .about-brand img {
    width: 40px;
    height: 40px;
  }

  .about-brand-text h2 {
    font-size: 32px;
  }

  .about-intro {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .expertise-card {
    min-height: 250px;
  }

  .expertise-overlay {
    padding: 16px 16px 14px;
  }

  .expertise-head h3 {
    font-size: 26px;
  }

  .expertise-head span {
    font-size: 28px;
  }

  .expertise-content {
    max-height: none;
    opacity: 1;
    transform: none;
    margin-top: 10px;
    font-size: 15px;
  }
}

/*  */

.key-milestones {
  position: relative;
  padding: 80px 5%;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab");
  background-size: 120%;
  background-position: center;
  animation: bgMove 25s ease-in-out infinite alternate;
}

.key-milestones::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
}

.key-milestones * {
  position: relative;
  z-index: 1;
}

@keyframes bgMove {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center bottom;
  }
}

/* TITLE */
.milestone-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  color: #086b95;
}

/* GRID */
.milestone-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* CARD */
.milestone-item {
  background: #fff;
  padding: 45px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

.milestone-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(0, 0, 0, 0.05),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.milestone-item:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

.milestone-item:hover::after {
  opacity: 1;
}

/* ICON */
.milestone-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #111;

  background: linear-gradient(145deg, #ffffff, #e8eef3);
  box-shadow:
    8px 8px 18px rgba(0, 0, 0, 0.08),
    -8px -8px 18px rgba(255, 255, 255, 0.9);

  transition: all 0.45s ease;
}

.milestone-item:hover .milestone-icon {
  transform: rotateY(180deg) scale(1.12);
}

/* TEXT */
.milestone-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.milestone-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* CARD COLOR ACCENTS (UNCHANGED) */
.pink {
  border-top: 5px solid #76b4ab;
}
.yellow {
  border-top: 5px solid #76b4ab;
}
.green {
  border-top: 5px solid #76b4ab;
}
.purple {
  border-top: 5px solid #76b4ab;
}
.orange {
  border-top: 5px solid #76b4ab;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .milestone-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .milestone-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .milestone-wrapper {
    grid-template-columns: 1fr;
  }
  .milestone-title {
    font-size: 26px;
  }
}

/*  */

/* 
.workflow-section {
    padding: 100px 0;
    background: #fff;
}

.workflow-container {
    max-width: 90%;
    margin: auto;
}

.workflow-header {
    text-align: center;
    max-width: 650px;
    margin: auto;
}

.workflow-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #086B95;
}

.workflow-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.workflow-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
}

.workflow-item.reverse {
    flex-direction: row-reverse;
}

.workflow-image img {
    width: 420px;
    max-width: 100%;
    border-radius: 2px;
}

.workflow-content {
    max-width: 420px;
}

.step-number {
    font-size: 52px;
    font-weight: 700;
    color: #eaeaea;
    display: block;
    margin-bottom: 10px;
}

.workflow-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.workflow-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .workflow-item {
        gap: 40px;
    }

    .workflow-image img {
        width: 350px;
    }
}

@media (max-width: 768px) {

    .workflow-item,
    .workflow-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .workflow-item.reverse .workflow-image {
        order: 1;
    }

    .workflow-item.reverse .workflow-content {
        order: 2;
    }

}


@media (max-width: 480px) {
    .workflow-header h2 {
        font-size: 26px;
    }

    .workflow-content h3 {
        font-size: 18px;
    }

    .workflow-content p {
        font-size: 14px;
    }

    .workflow-section {
        padding: 30px;
    }
} */

/*  */

/* SECTION */

.team-section {
  padding: 70px 18px;
  background: #fff;
}

/* CONTAINER */
.team-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* HEADER */
.team-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.team-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #086b95;
}

.team-header p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: flex-start;
  gap: 24px 14px;
}

/* CARD */
.team-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 248px;
  min-width: 0;
  justify-self: center;
  grid-column: span 3;
}

.team-grid > .team-card:nth-child(n + 5) {
  grid-column: span 4;
}

/* IMAGE */
.team-image {
  width: min(100%, 228px);
  aspect-ratio: 4 / 4.85;
  background: #f2f2f2;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

/* TEXT */
.team-card h4 {
  font-size: 18px;
  margin: 0 0 5px 0;
  color: #086b95;
  font-weight: 600;
  text-align: center;
}

.team-card span {
  font-size: 14px;
  color: #444;
  text-align: center;
  line-height: 1.5;
}

/* ---------- RESPONSIVE ---------- */

/* TABLET */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .team-card,
  .team-grid > .team-card:nth-child(n + 5) {
    max-width: 258px;
    grid-column: span 1;
  }

  .team-image {
    width: min(100%, 218px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .team-card,
  .team-grid > .team-card:nth-child(n + 5) {
    max-width: 228px;
    grid-column: span 1;
  }

  .team-image {
    width: min(100%, 192px);
  }

  .team-card h4 {
    font-size: 16px;
  }

  .team-card span {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 56px 14px;
  }

  .team-header {
    margin-bottom: 30px;
  }

  .team-header h2 {
    font-size: 24px;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .team-card,
  .team-grid > .team-card:nth-child(n + 5) {
    max-width: 280px;
    grid-column: span 1;
  }

  .team-image {
    width: min(100%, 205px);
    margin-bottom: 12px;
  }
}

/* SECTION */

/* ================= WHY US ================= */
.whyus-section {
  width: 100%;
  background: #ffffff;
}

/* HEADING */
.whyus-heading {
  text-align: center;
  margin-bottom: 140px;
}

.whyus-heading h2 {
  font-size: 28px;
  font-weight: 600;
  color: #086b95;
}

/* BACKGROUND STRIP */
.whyus-bg {
  position: relative;
  max-width: 90%;
  margin: auto;
  background: #e3ecef;
  padding: 160px 40px 90px;
  border-radius: 6px;
}

/* ITEMS CONTAINER */
.whyus-items {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 35px;
}

/* BOX */
.whyus-box {
  width: 300px;
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: 0.3s ease;
}

.whyus-box:hover {
  transform: translateY(-10px);
}

/* ICON */
.whyus-icon {
  font-size: 34px;
  margin-bottom: 20px;
  color: #1f7a86;
}

.whyus-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #222;
}

.whyus-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* HIGHLIGHT BOX */
.whyus-box.highlight {
  background: #0f6b78;
}

.whyus-box.highlight h3,
.whyus-box.highlight p,
.whyus-box.highlight .whyus-icon {
  color: #ffffff;
}

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

/* TABLET */
@media (max-width: 992px) {
  .whyus-heading {
    margin-bottom: 60px;
  }

  .whyus-items {
    position: static;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
  }

  .whyus-bg {
    padding: 60px 30px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .whyus-heading h2 {
    font-size: 22px;
  }

  .whyus-items {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .whyus-box {
    width: 100%;
    max-width: 320px;
  }
}

/*  */

/* Location Map Section */
.location-section {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

/* Map iframe */
.location-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%);
}

/* Tablet */
@media (max-width: 768px) {
  .location-section {
    height: 250px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .location-section {
    height: 220px;
  }
}

/* Container */
.container {
  max-width: 90%;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section */
.contact-section {
  padding: 70px 0;
  background: #f8f8f8;
  position: relative;
}

/* Heading */
.contact-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #086b95;
  margin-top: 20px;
}

/* Info blocks */
.contact-info {
  text-align: center;
  margin-bottom: 35px;
}

.contact-info h2,
.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #2c3a2f;
}

.contact-info p {
  color: #555;
  font-size: 14px;
}

/* Form */

select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  background: #fff;
  font-family: inherit;
  color: #555;
}

select:focus {
  border-color: #0b7285;
}

.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* Inputs */
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: 0.3s ease;
  background: #fff;
}

input:focus,
textarea:focus {
  border-color: #2c3a2f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 58, 47, 0.1);
}

/* Button */
.form-actions {
  text-align: center;
  margin-top: 25px;
}

.submit-btn {
  background: #086b95;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #1f2b22;
}

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

/* Tablet */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

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

/* Mobile */
@media (max-width: 480px) {
  .contact-heading {
    font-size: 1.6rem;
  }

  .submit-btn {
    width: 100%;
  }
}

/*  */

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  background: #086b95;
  border-top: 1px solid #d1dde2;
  padding: 20px 0;
}

.footer-bottom-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;

  /* Center the content */
  display: flex;
  justify-content: center;
  /* horizontally center */
  align-items: center;
  /* vertically center if needed */
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: white;
  line-height: 1.6;
}

.footer-bottom span {
  color: #0b7285;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}

.milestone-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/*  */
