:root {
  --color-primary: #1f5b90;
  --color-primary-dark: #174771;
  --color-accent: #33b3ff;
  --color-text: #184a78;
  --color-body: #f1f3f5;
  --color-white: #ffffff;
  --color-footer: #145184;
  --color-shadow: 0 12px 30px rgba(20, 41, 61, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --transition: all 0.35s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--color-body);
  color: #1f2d3d;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  transition: var(--transition);
}


.bg-iso {
    background: url("../images/bg-body.png") no-repeat; 
    background-size: cover;
    background-position: center center;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0;
}

.section-paragraph {
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 360px;
}

.section-heading {
  margin-bottom: 2rem;
}

.btn-pill {
  min-width: 176px;
  min-height: 52px;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-primary-custom {
  background: linear-gradient(90deg, #2aa7f4 0%, #41bbff 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(50, 176, 255, 0.25);
}

.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(50, 176, 255, 0.3);
}

.btn-light-header {
  background: #fff;
  color: var(--color-primary);
  min-width: 150px;
  min-height: 46px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn-light-header:hover {
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.section-card {
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.35s ease;
}

.custom-navbar {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  transition: all 0.35s ease;
}

.site-header.scrolled .custom-navbar {
  background: rgba(18, 46, 76, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.site-logo {
  width: 92px;
  height: auto;
}

.custom-navbar .navbar-nav {
  gap: 1.4rem;
}

.custom-navbar .nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.custom-navbar .nav-link.active,
.custom-navbar .nav-link:hover {
  color: #fff;
}

.custom-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

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

/* HERO */
.hero-section {
  position: relative;
  min-height: 780px;
  padding: 170px 0 180px;
  background:
    linear-gradient(to bottom, rgba(13, 32, 53, 0.1), rgba(13, 32, 53, 0.38)),
    url('../images/hero-home.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 31, 53, 0.18) 0%,
    rgba(10, 31, 53, 0.25) 30%,
    rgba(10, 31, 53, 0.5) 100%
  );
}

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

.hero-title {
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}

/* ABOUT */
.about-section {
  margin-top: -70px;
}

.about-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--color-shadow);
  padding: 3.2rem;
  overflow: hidden;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 1.1rem;
  align-items: start;
}

.about-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(17, 37, 56, 0.12);
  transition: var(--transition);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo:hover {
  transform: translateY(-4px);
}

.photo-1 {
  margin-top: 0.5rem;
  height: 355px;
}

.photo-2 {
  margin-top: 4rem;
  height: 355px;
}

.photo-3 {
  margin-top: 1rem;
  height: 355px;
}

/* SERVICES */
.services-section {
  position: relative;
  padding: 5rem 0 3.5rem;
}

.section-bg-mark::before,
.section-bg-mark::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(31, 91, 144, 0.04);
  z-index: 0;
}

.section-bg-mark::before {
  width: 900px;
  height: 900px;
  left: -260px;
  top: 80px;
}

.section-bg-mark::after {
  width: 700px;
  height: 700px;
  left: 40px;
  top: 260px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: 1.08fr 1.7fr 1.08fr 0.62fr;
  grid-template-areas:
    "airport event retail government-facilities"
    "airport office government-buildings government-facilities";
  gap: 18px;
  align-items: start;
}

.service-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  display: block;
  box-shadow: 0 8px 20px rgba(15, 37, 58, 0.12);
  transform: translateZ(0);
  min-height: unset;
 min-width: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 16, 25, 0.55) 0%,
    rgba(8, 16, 25, 0.08) 65%
  );
  z-index: 1;
  transition: var(--transition);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(8, 16, 25, 0.65) 0%,
    rgba(8, 16, 25, 0.1) 70%
  );
}

.service-card:nth-child(1) {
  grid-area: airport;
  height: 428px;
}

.service-card:nth-child(2) {
  grid-area: event;
  height: 205px;
}

.service-card:nth-child(3) {
  grid-area: retail;
  height: 205px;
}

.service-card:nth-child(4) {
  grid-area: government-buildings;
  height: 205px;
}

.service-card:nth-child(5) {
  grid-area: office;
  height: 205px;
}

.service-card:nth-child(6) {
  grid-area: government-facilities;
  height: 428px;
}

.service-card-title {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.08;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* NEWS */
.news-section {
  padding: 1.5rem 0 0;
}

.news-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--color-shadow);
  padding: 3.2rem;
  overflow: hidden;
}

.instagram-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #f4f8fc;
  color: #33a6f3;
  font-size: 0.9rem;
  font-weight: 600;
}

.insta-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 37, 58, 0.12);
  transition: var(--transition);
  max-width: 340px;
  margin: 0 auto;
}

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

.insta-card-head {
  padding: 0.9rem 1rem 0.75rem;
  border-bottom: 1px solid #eef2f5;
}

.insta-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.insta-user img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.insta-user span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #193b61;
}

.insta-card-image {
  aspect-ratio: 4 / 4;
  overflow: hidden;
  background: #f0f2f4;
}

.insta-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1rem 1rem;
}

.insta-card-icons {
  display: flex;
  gap: 0.95rem;
}

.insta-card-actions i {
  font-size: 1.2rem;
  color: #1b1b1b;
}

/* CTA */
.cta-links-section {
  padding: 2.6rem 0 2.4rem;
}

.cta-links-wrap {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
  background: var(--color-footer);
  color: #fff;
  border-radius: 36px 36px 0 0;
  padding: 2.3rem 0 1.8rem;
  margin-top: 0.5rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li,
.footer-address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

.footer-list a {
  color: #fff;
}

.footer-list a:hover {
  opacity: 0.85;
}

.footer-address {
  justify-content: flex-end;
  margin-bottom: 0;
  text-align: right;
}

.site-footer i {
  font-size: 1rem;
  line-height: 1;
}

/* SUBTLE FLOAT */
.about-card,
.news-card,
.service-card,
.insta-card,
.btn-pill {
  will-change: transform;
}

/* RESPONSIVE */
@media (max-width: 1399.98px) {
  .services-grid {
    grid-template-columns: 280px 420px 280px 190px;
    gap: 16px;
  }

  .service-card:nth-child(1) {
    height: 450px;
  }

  .service-card:nth-child(2) {
    height: 265px;
  }

  .service-card:nth-child(3) {
    height: 155px;
  }

  .service-card:nth-child(4) {
    height: 278px;
  }

  .service-card:nth-child(5) {
    height: 167px;
  }

  .service-card:nth-child(6) {
    height: 450px;
  }

  .service-card-title {
    font-size: 0.98rem;
    left: 18px;
    right: 18px;
    bottom: 16px;
  }
}

@media (max-width: 1199.98px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: none;
    justify-content: initial;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-area: auto;
    height: 240px;
  }

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

  .photo-1,
  .photo-2,
  .photo-3 {
    margin-top: 0;
    height: 260px;
  }
}

@media (max-width: 991.98px) {
  .custom-navbar .navbar-collapse {
    background: rgba(17, 42, 68, 0.92);
    border-radius: 18px;
    padding: 1rem 1rem 1.2rem;
    margin-top: 1rem;
  }

  .custom-navbar .navbar-nav {
    gap: 0.35rem;
  }

  .header-cta {
    margin-top: 0.75rem;
  }

  .hero-section {
    min-height: 700px;
    padding: 150px 0 130px;
  }

  .about-card,
  .news-card {
    padding: 2.2rem;
  }

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

  .photo-1,
  .photo-2,
  .photo-3 {
    height: 280px;
  }

  .footer-address {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .site-logo {
    width: 76px;
  }

  .hero-section {
    min-height: 630px;
    padding: 135px 0 100px;
    background-position: center;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .section-card {
    margin-top: -28px;
  }

  .about-section {
    margin-top: -45px;
  }

  .about-card,
  .news-card {
    border-radius: 26px;
    padding: 1.5rem;
  }

  .services-section {
    padding-top: 3.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    justify-content: initial;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-area: auto;
    height: 230px;
  }

  .cta-links-wrap {
    flex-direction: column;
    align-items: center;
  }

  .btn-pill {
    width: 100%;
    max-width: 280px;
  }

  .site-footer {
    border-radius: 26px 26px 0 0;
    padding-top: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    max-width: 96%;
  }

  .insta-card {
    max-width: 100%;
  }

  .instagram-badge {
    margin-top: 0.4rem;
  }
}


/* =========================
   ABOUT US PAGE
========================= */

.about-page {
  background: #f3f4f5;
}

.site-header.vs-light .custom-navbar {
  background: #dfe8ed;
  backdrop-filter: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.vs-light .custom-navbar .nav-link {
  color: #6d7f90;
}

@media (max-width: 767.98px) {
.vs-light .custom-navbar .nav-link {
  color: #fff;
}
    .vs-light .custom-navbar .nav-link.active, .vs-light .custom-navbar .nav-link:hover {color: #dfe8ed !important}
}

.vs-light .custom-navbar .nav-link.active,
.vs-light .custom-navbar .nav-link:hover {
  color: #1f5b90; font-weight: 600;
}

.vs-light .custom-navbar .nav-link::after {
  background: #1f5b90;
}

.vs-light .btn-light-header {
  background: #1f5b90;
  color: #fff;
  box-shadow: 0 6px 14px rgba(31, 91, 144, 0.08);
}

.vs-light .btn-light-header:hover {
  color: #174771;
}

.vs-light .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.2);
}

.vs-light .navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='black' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.about-main {
  padding-top: 150px;
}

/* INTRO */
.about-intro {
  padding: 2rem 0 2rem;
}

.about-page-title {
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  line-height: 0.95;
  font-weight: 600;
  color: #1f5b90;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.about-page-lead {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
  color: #18a7f6;
  margin-bottom: 0.55rem;
}

.about-page-copy {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4e5f70;
  margin-bottom: 0;
}

/* FOUNDERS */
/* FOUNDERS */
.about-founders-section {
  padding: 0.75rem 0 2.8rem;
}

.about-founders-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 12px 24px rgba(20, 41, 61, 0.1);
  padding: 1.5rem 1.7rem;
}

.founders-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.founder-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(20, 41, 61, 0.1);
  overflow: hidden;
}

.founder-card-lg {
  min-height: 152px;
}

.founder-photo {
  width: 210px;
  min-width: 110px;
  height: 252px;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 1rem 2rem;
}

.founder-info h3 {
  font-size: 2.15rem;
  line-height: 1.02;
  font-weight: 700;
  color: #0A679E;
  margin-bottom: 0.18rem;
}

.founder-info span {
  font-size: 0.74rem;
  font-weight: 500;
  color: #0095DA;
}

.founders-message {
  padding: 0.15rem 0 0 0.25rem;
}

.founders-message h2 {
  font-size: clamp(2rem, 2.8vw, 3.05rem);
  line-height: 0.98;
  font-weight: 700;
  color: #1f5b90;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.founders-message p {
  font-size: 0.84rem;
  line-height: 1.62;
  color: #0B6CA7;
  margin-bottom: 0.7rem; font-weight: 500;
}

.founders-message .message-quote {
  font-weight: 600;
  color: #0095DA;
}


/* TEAM */
/* TEAM */
.about-team-section {
  padding: 0.6rem 0 2.8rem;
}

.team-row {
  display: grid;
  gap: 1rem;
}

.team-row + .team-row {
  margin-top: 2rem;
}

/* ROW 1 */
.team-row-featured {
  grid-template-columns: repeat(4, 1fr);
}

.team-card-featured {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(20, 41, 61, 0.08);
  overflow: hidden;
  min-height: 126px;
}

.team-card-featured .team-card-photo {
  width: 100%;
  min-width: 150px;
}

.team-card-featured .team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-featured .team-card-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 2rem 1rem 0.7rem ;
}

.team-card-featured h3 {
  font-size: 1.3rem;
  line-height: 1.05;
  font-weight: 700;
  color: #1f5b90;
  margin-bottom: 0.18rem;
}

.team-card-featured span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.15;
  font-weight: 500;
  color: #18a7f6;
  margin: 10px 0;
}

.team-card-featured p {
  font-size: 0.62rem;
  line-height: 1.28;
  color: #0095DA;
  margin-bottom: 0;
}

/* ROW 2 */
.team-row-standard {
  grid-template-columns: repeat(4, 1fr);
  max-width: 820px;
  margin: 0 auto;
}

.team-card-standard {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(20, 41, 61, 0.08);
  overflow: hidden;
}

.team-card-standard .team-card-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
}

.team-card-standard .team-card-content {
  padding: 0.42rem 0.45rem 0.5rem;
  min-height: 56px;
}

.team-card-standard h3 {
  font-size: 1rem;
  line-height: 1.05;
  font-weight: 700;
  color: #1f5b90;
  margin-bottom: 0.14rem;
}

.team-card-standard span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.1;
  font-weight: 500;
  color: #18a7f6;
  margin-bottom: 0;
}

/* ROW 3 */
.team-row-small {
  grid-template-columns: repeat(5, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.team-card-small {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(20, 41, 61, 0.08);
  overflow: hidden;
}

.team-card-small .team-card-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.team-card-small .team-card-content {
  padding: 0.42rem 0.45rem 0.5rem;
  min-height: 56px;
}

.team-card-small h3 {
  font-size: 1rem;
  line-height: 1.05;
  font-weight: 700;
  color: #1f5b90;
  margin-bottom: 0.14rem;
}

.team-card-small span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.1;
  font-weight: 500;
  color: #18a7f6;
  margin-bottom: 0;
}

/* HOVER GENERAL */
.team-card-featured,
.team-card-standard,
.team-card-small {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-featured:hover,
.team-card-standard:hover,
.team-card-small:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .team-row-featured,
  .team-row-standard {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .team-row-small {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .team-row-featured,
  .team-row-standard,
  .team-row-small {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .team-card-featured {
    flex-direction: column;
  }

  .team-card-featured .team-card-photo {
    width: 100%;
    min-width: 100%;
  }

  .team-card-featured .team-card-photo img {
    aspect-ratio: 1 / 1;
  }
}
.about-intro {
  padding: 1.2rem 0 1.7rem;
}

.about-page-title {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 0.55rem;
}

.about-page-lead {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.about-page-copy {
  max-width: 520px;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* COMPANY TEXT */
.about-company-section {
  padding: 0.5rem 0 2rem;
}

.company-title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 700;
  color: #1f5b90;
  margin-bottom: 1.2rem;
}

.about-company-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4f6172;
  margin-bottom: 1rem;
}

/* VALUES */
.about-values-section {
  padding: 1.5rem 0 3rem;
}

.about-values-bg {
  background: url('../images/about-values-bg.jpg') left top / 100% auto no-repeat;
  padding: 20rem 0 10rem;
  overflow: hidden;
}

.about-values-card {
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 34px;
  box-shadow: 0 12px 30px rgba(20, 41, 61, 0.12);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.values-title {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 700;
  color: #1f5b90;
  margin-bottom: 1.8rem;
}

.values-graphic {
  max-width: 420px;
  margin: 0 auto 2rem;
}

.values-graphic img {
  width: 100%;
  height: auto;
}

.clients-block h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  color: #1f5b90;
  margin-bottom: 1.5rem;
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.clients-logos img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

/* BOTTOM CTA */
.about-bottom-cta {
  padding: 0.5rem 0 3rem;
}

.about-bottom-cta-box {
  max-width: 360px;
}

.about-bottom-cta-box h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  font-weight: 700;
  color: #1f5b90;
  margin-bottom: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .about-main {
    padding-top: 130px;
  }

  .about-founders-card {
    padding: 1.5rem;
  }

  .founders-message {
    padding-top: 0.5rem;
  }

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

  .about-values-bg {
    padding: 5rem 0 6rem;
  }

  .about-values-card {
    padding: 2.2rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .about-intro {
    padding-top: 1rem;
  }

  .about-page-lead {
    font-size: 1.2rem;
  }

  .about-founders-card {
    border-radius: 24px;
    padding: 1.2rem;
  }

  .founder-card {
    flex-direction: column;
    align-items: stretch;
  }

  .founder-photo {
    width: 100%;
    min-width: 100%;
    height: 250px;
  }
    .founder-photo img {height: auto}

  .founder-info {
    padding: 1rem 1rem 1.2rem;
  }

  .founder-info h3 {
    font-size: 1.6rem; color: #fff;
  }
    .founder-info span {color: #fff}

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

  .about-values-bg {
    border-radius: 24px;
    padding: 4rem 0 4.5rem;
  }

  .about-values-card {
    border-radius: 24px;
  }

  .clients-logos {
    gap: 1.2rem;
  }

  .clients-logos img {
    max-height: 42px;
  }
}

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

.services-page {
  background: #f3f4f5;
}

.services-page .site-header .custom-navbar {
  background: #dfe8ed;
  backdrop-filter: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.services-page .custom-navbar .nav-link {
  color: #6d7f90;
}

.services-page .custom-navbar .nav-link.active,
.services-page .custom-navbar .nav-link:hover {
  color: #1f5b90;
}

.services-page .custom-navbar .nav-link::after {
  background: #1f5b90;
}

.services-page .btn-light-header {
  background: #1f80c3;
  color: #fff;
  box-shadow: none;
}

.services-page .btn-light-header:hover {
  color: #fff;
  background: #176ca7;
}

.services-main {
  position: relative;
  padding-top: 140px;
  overflow: hidden;
}

.services-page-hero {
  position: relative;
  padding: 1rem 0 1rem;
}

.services-page-bg-shape {
  position: absolute;
  inset: 120px 0 auto 0;
  height: 1500px;
  background: url('../images/bg-services.jpg') center top / cover no-repeat;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.services-page-hero .container,
.services-list-section .container,
.services-slider-section .container {
  position: relative;
  z-index: 1;
}

.services-page-title {
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 0.92;
  font-weight: 600;
  color: #1f5b90;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

/* LIST */
.services-list-section {
  padding: 1rem 0 2.2rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.service-zigzag {
  display: flex;
}

.service-zigzag-left {
  justify-content: flex-start;
}

.service-zigzag-right {
  justify-content: flex-end;
}

.service-zigzag-card {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 10px 22px rgba(20, 41, 61, 0.12);
  overflow: hidden;
  min-height: 188px;
}

.service-zigzag-right .service-zigzag-card {
  grid-template-columns: 0.9fr 1.35fr;
}

.service-zigzag-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-zigzag-copy {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.2rem 1.4rem 1.2rem;
  text-align: center;
}

.service-zigzag-copy h2 {
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  line-height: 0.95;
  font-weight: 700;
  color: #1f5b90;
  margin: 0;
  letter-spacing: -0.02em;
}

.services-page-cta {
  margin-top: 2rem;
}

/* SLIDER */
.services-slider-section {
  padding: 1.5rem 0 5rem;
}

.services-gallery-slider {
  position: relative;
  padding-bottom: 4.5rem;
}

.services-slide-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(20, 41, 61, 0.1);
}

.services-slide-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.services-slider-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.65rem;
}

.services-slider-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #36aff7;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(54, 175, 247, 0.28);
  transition: all 0.3s ease;
}

.services-slider-btn:hover {
  background: #1f97df;
  transform: translateY(-2px);
}

.services-slider-btn i {
  font-size: 1rem;
  line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .services-main {
    padding-top: 125px;
  }

  .services-page-title {
    margin-bottom: 1.4rem;
  }

  .service-zigzag-card,
  .service-zigzag-right .service-zigzag-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .services-page-title {
    font-size: 3.1rem;
  }

  .services-list {
    gap: 1.2rem;
  }

  .service-zigzag-left,
  .service-zigzag-right {
    justify-content: center;
  }

  .service-zigzag-card,
  .service-zigzag-right .service-zigzag-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-zigzag-copy {
    min-height: 120px;
    align-items: center;
    padding: 1.1rem;
  }

  .services-slider-section {
    padding-bottom: 4rem;
  }

  .services-gallery-slider {
    padding-bottom: 4rem;
  }
}

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

.contact-page {
  background: #f3f4f5;
}

.contact-page .site-header .custom-navbar {
  background: #dfe8ed;
  backdrop-filter: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.contact-page .custom-navbar .nav-link {
  color: #6d7f90;
}

.contact-page .custom-navbar .nav-link.active,
.contact-page .custom-navbar .nav-link:hover {
  color: #1f5b90;
}

.contact-page .custom-navbar .nav-link::after {
  background: #1f5b90;
}

.contact-page .btn-light-header {
  background: #1f80c3;
  color: #fff;
  box-shadow: none;
}

.contact-page .btn-light-header:hover {
  color: #fff;
  background: #176ca7;
}

.contact-main {
  padding-top: 150px;
  overflow: hidden;
}

.contact-hero {
  padding: 2rem 0 1.8rem;
}

.contact-page-title {
  font-size: clamp(3.5rem, 6vw, 5.8rem);
  line-height: 0.95;
  font-weight: 600;
  color: #1f5b90;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

/* FORM */
.contact-form-section {
  padding: 0.5rem 0 4rem;
}

.contact-form-card {
  background: #fff;
  border-radius: 38px;
  box-shadow: 0 12px 28px rgba(20, 41, 61, 0.12);
  padding: 3rem 3rem 2.2rem;
}

.contact-form-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 700;
  color: #1f5b90;
  margin-bottom: 2rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-form-left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form-group-custom {
  width: 100%;
}

.form-control-custom {
  width: 100%;
  height: 74px;
  border: 0;
  border-radius: 999px;
  background: #f1f1f1;
  padding: 0 1.6rem;
  font-size: 1rem;
  font-weight: 500;
  color: #4d5f70;
  outline: none;
  box-shadow: none;
}

.form-control-custom::placeholder {
  color: #b3b3b3;
}

.form-control-custom:focus {
  background: #ededed;
}

.form-textarea-custom {
  height: 100%;
  min-height: 290px;
  border-radius: 32px;
  padding: 1.4rem 1.6rem;
  resize: none;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.8rem;
}

/* INFO + MAP */
.contact-info-section {
  position: relative;
  padding: 2rem 0 4.5rem;
}

.contact-bg-shape {
  position: absolute;
  inset: 40px 0 auto 0;
  height: 800px;
  background: url('../images/bg-body.png') center center / cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
}

.contact-info-section .container {
  position: relative;
  z-index: 1;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #3f5f7c;
  font-size: 1.25rem;
  line-height: 1.45;
}

.contact-info-item i {
  font-size: 1.35rem;
  color: #36aff7;
  line-height: 1;
  flex-shrink: 0;
}

.contact-info-item a {
  color: #3f5f7c;
  text-decoration: underline;
}

.contact-info-item a:hover {
  color: #1f5b90;
}

.contact-map-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(20, 41, 61, 0.1);
}

.contact-map-card {
  min-height: 360px;
}

.contact-map-card iframe,
.contact-map-card img {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-map-card iframe {
  min-height: 360px;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .contact-main {
    padding-top: 130px;
  }

  .contact-form-card {
    padding: 2rem 1.8rem 1.6rem;
    border-radius: 28px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-textarea-custom {
    min-height: 220px;
  }

  .contact-info-item {
    font-size: 1.05rem;
  }
}

@media (max-width: 767.98px) {
  .contact-hero {
    padding-top: 1rem;
  }

  .contact-page-title {
    font-size: 3.1rem;
  }

  .contact-form-card {
    padding: 1.4rem;
    border-radius: 24px;
  }

  .contact-form-card h2 {
    margin-bottom: 1.4rem;
  }

  .contact-form-left {
    gap: 1rem;
  }

  .form-control-custom {
    height: 62px;
    font-size: 0.95rem;
  }

  .form-textarea-custom {
    min-height: 180px;
    border-radius: 24px;
  }

  .contact-form-actions {
    justify-content: center;
  }

  .contact-info-section {
    padding-bottom: 3rem;
  }

  .contact-info-list {
    gap: 1.2rem;
  }

  .contact-info-item {
    font-size: 0.98rem;
    align-items: flex-start;
  }

  .contact-map-card {
    border-radius: 24px;
  }
}

/* =========================
   JOIN PAGE
========================= */

.join-page {
  background: #f3f4f5;
}

.join-page .site-header .custom-navbar {
  background: #dfe8ed;
  backdrop-filter: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.join-page .custom-navbar .nav-link {
  color: #6d7f90;
}

.join-page .custom-navbar .nav-link.active,
.join-page .custom-navbar .nav-link:hover {
  color: #1f5b90;
}

.join-page .custom-navbar .nav-link::after {
  background: #1f5b90;
}

.join-page .btn-light-header {
  background: #1f80c3;
  color: #fff;
  box-shadow: none;
}

.join-page .btn-light-header:hover {
  color: #fff;
  background: #176ca7;
}

.join-main {
  position: relative;
  padding-top: 150px;
  min-height: calc(100vh - 180px);
  overflow: hidden;
}

.join-hero {
  position: relative;
  padding: 2rem 0 1rem;
}

.join-bg-shape {
  position: absolute;
  inset: 40px 0 0 0;
  background: url('../images/bg-body.png') center center / cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.join-hero .container,
.join-embed-section .container {
  position: relative;
  z-index: 1;
}

.join-page-title {
  font-size: clamp(3.6rem, 6vw, 6rem);
  line-height: 0.92;
  font-weight: 700;
  color: #1f5b90;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.join-page-copy {
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.35;
  color: #466985;
  margin-bottom: 0;
}

.join-embed-section {
  padding: 1.5rem 0 4.5rem;
}

.join-embed-wrap {
  width: 100%;
  min-height: 760px;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
}

.join-embed-wrap iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
  background: transparent;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .join-main {
    padding-top: 130px;
  }

  .join-embed-wrap,
  .join-embed-wrap iframe {
    min-height: 680px;
  }
}

@media (max-width: 767.98px) {
  .join-hero {
    padding-top: 1rem;
  }

  .join-page-title {
    font-size: 3.2rem;
  }

  .join-page-copy {
    font-size: 1rem;
    max-width: 100%;
  }

  .join-embed-section {
    padding-bottom: 3rem;
  }

  .join-embed-wrap,
  .join-embed-wrap iframe {
    min-height: 620px;
    border-radius: 20px;
  }
}