body {
  background: #ffd7120a;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 22px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

p {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

/* Tablet */
@media (max-width: 991px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 22px;
  }

  h6 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 23px;
  }

  h3 {
    font-size: 21px;
  }

  h4 {
    font-size: 19px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 17px;
  }

  p {
    font-size: 16px;
  }
}

:root {
  --button-color: #ffd712;
  --primary-color: #20ad9f;
  --secondary-color: #0b2c4d;
  --small-heading: #b58b4a;
}

.business {
  /* background: #DDF4F1; */
  background: rgba(32, 173, 159, 0.12);
}

/* --------------------navbar=================== */
/* =====================================
   NAVBAR
===================================== */

.sr-navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  /* height: 65px; */
  padding: 10px 30px;
  z-index: 9999;

  background: rgba(255, 255, 255, 0.25);

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

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* BLUE ON SCROLL */

.sr-navbar.scrolled {
  background: var(--secondary-color);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
}

/* =====================================
   CONTAINER
===================================== */

.sr-nav-container {
  position: relative;

  width: 100%;
  height: 70px;

  display: flex;
  align-items: center;

  box-sizing: border-box;

  padding: 0 25px 0 10px;
}

/* =====================================
   LOGO - LEFT
===================================== */

.sr-logo {
  position: absolute;

  left: 10px;
  top: 50%;

  transform: translateY(-50%);

  /* width: 45px;
    height: 45px; */

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

  z-index: 10;
}

.sr-logo img {
  width: 65px;
  height: 65px;

  display: block;

  object-fit: contain;
}

/* =====================================
   MENU - CENTER
===================================== */

.sr-menu {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;

  gap: 35px;

  white-space: nowrap;
}

/* MENU LINKS */

.sr-menu a {
  color: #000000;

  text-decoration: none;

  font-size: 16px;
  font-weight: 400;

  white-space: nowrap;

  transition: color 0.3s ease;
}

/* SCROLLED */

.sr-navbar.scrolled .sr-menu a {
  color: #fff;
}

/* HOVER */

.sr-menu a:hover {
  color: #005b9f;
}

.sr-navbar.scrolled .sr-menu a:hover {
  color: var(--button-color);
}

/* =====================================
   BUTTON - RIGHT
===================================== */

.sr-consult-btn {
  position: absolute;

  right: 25px;
  top: 50%;

  transform: translateY(-50%);

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

  /* height: 52px; */

  padding: 10px 32px;

  box-sizing: border-box;

  border-radius: 30px;

  background: var(--button-color);

  color: #000000;

  text-decoration: none;

  font-size: 16px;

  font-weight: 400;

  white-space: nowrap;

  transition: all 0.3s ease;
}

.sr-consult-btn:hover {
  background: var(--button-color);

  transform: translateY(-50%) translateY(-2px);
}

@media (max-width: 1200px) {
  .sr-navbar {
    padding: 10px 20px;
  }

  .sr-menu {
    gap: 18px;
  }

  .sr-menu a {
    font-size: 14px;
  }

  .sr-consult-btn {
    padding: 10px 20px;
    font-size: 14px;
    right: 15px;
  }
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 992px) {
  .sr-navbar {
    padding: 10px 15px;
  }

  .sr-nav-container {
    height: 65px;
  }

  .sr-menu {
    gap: 12px;
  }

  .sr-menu a {
    font-size: 13px;
  }

  .sr-consult-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

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

@media (max-width: 768px) {
  .sr-nav-container {
    justify-content: space-between;
    padding: 0;
  }

  .sr-logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }

  .sr-logo img {
    max-height: 55px;
    width: auto;
  }

  /* Hamburger Show */

  .sr-hamburger {
    display: block;
    position: relative;
    z-index: 10001;
  }

  .sr-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #000;
    margin: 5px 0;
    transition: 0.3s;
  }

  .sr-navbar.scrolled .sr-hamburger span {
    background: #000;
  }

  /* Hide Button */

  .sr-consult-btn {
    display: none;
  }

  /* Mobile Menu */

  .sr-menu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    background: var(--secondary-color);

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    padding: 20px;

    transform: translateY(-10px);

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s ease;
  }

  .sr-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .sr-menu a {
    width: 100%;

    padding: 12px 0;

    color: #fff !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    font-size: 15px;
    text-align: center;
  }
}

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

@media (max-width: 480px) {
  .sr-navbar {
    padding: 8px 12px;
  }

  .sr-logo img {
    max-height: 45px;
  }

  .sr-menu a {
    font-size: 14px;
  }
}

/* =======================index.php========================== */
/* =====================================
   HERO
===================================== */
/* =====================================
   HERO
===================================== */

.vanuatu-hero {
  position: relative;
  width: 100%;
  /* min-height: 650px; */

  overflow: hidden;

  display: flex;
  align-items: center;

  box-sizing: border-box;

  padding: 120px 5% 70px;
}

/* =====================================
   HERO IMAGE
===================================== */

.vanuatu-hero-img {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center center;

  z-index: 0;
}

/* =====================================
   OVERLAY
===================================== */

.vanuatu-overlay {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );

  z-index: 1;
}

/* =====================================
   CONTENT
===================================== */

.vanuatu-hero-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 850px;

  color: #fff;
}

/* =====================================
   KICKER
===================================== */

.vanuatu-kicker {
  display: block;

  margin-bottom: 12px;

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

  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;

  letter-spacing: 1.5px;

  color: #fff;
}

/* =====================================
   HEADING
===================================== */

.vanuatu-hero h1 {
  margin: 0 0 18px;

  font-size: 56px;
  line-height: 1.08;
  font-weight: 600;

  color: #fff;
}

/* =====================================
   DESCRIPTION
===================================== */

.vanuatu-hero p {
  max-width: 820px;

  margin: 0 0 25px;

  line-height: 1.6;
  font-weight: 500;

  color: #fff;
}

/* =====================================
   BUTTONS
===================================== */

.vanuatu-hero-buttons {
  display: flex;

  align-items: center;

  gap: 10px;

  flex-wrap: wrap;
}

/* =====================================
   COMMON BUTTON
===================================== */

.vanuatu-btn-primary,
.vanuatu-btn-secondary {
  display: inline-flex;

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

  padding: 10px 24px;

  border-radius: 25px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* =====================================
   PRIMARY BUTTON
===================================== */

.vanuatu-btn-primary {
  background: var(--button-color);

  color: #000;

  border: 1px solid var(--button-color);
}

/* =====================================
   SECONDARY BUTTON
===================================== */

.vanuatu-btn-secondary {
  background: #fff;

  color: #111;

  border: 1px solid #fff;
}

/* =====================================
   BUTTON HOVER
===================================== */

.vanuatu-btn-primary:hover,
.vanuatu-btn-secondary:hover {
  transform: translateY(-2px);
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {
  .vanuatu-hero {
    min-height: 600px;

    padding: 110px 6% 60px;
  }

  .vanuatu-hero-content {
    max-width: 700px;
  }

  .vanuatu-hero h1 {
    font-size: 52px;
  }

  .vanuatu-hero p {
    max-width: 650px;
  }

  .vanuatu-hero-img {
    object-position: center center;
  }
}

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

@media (max-width: 767px) {
  .vanuatu-hero {
    min-height: 650px;

    padding: 110px 25px 60px;

    align-items: center;
  }

  .vanuatu-hero-img {
    object-position: center center;
  }

  .vanuatu-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.25)
    );
  }

  .vanuatu-hero-content {
    max-width: 100%;
  }

  .vanuatu-kicker {
    margin-bottom: 10px;

    font-size: 11px;

    letter-spacing: 1.2px;
  }

  .vanuatu-hero h1 {
    margin-bottom: 16px;

    font-size: 42px;

    line-height: 1.1;
  }

  .vanuatu-hero p {
    margin-bottom: 22px;

    font-size: 14px;

    line-height: 1.55;
  }

  .vanuatu-hero-buttons {
    gap: 8px;
  }

  .vanuatu-btn-primary,
  .vanuatu-btn-secondary {
    min-height: 42px;

    padding: 9px 20px;

    font-size: 12px;
  }
}

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

@media (max-width: 480px) {
  .vanuatu-hero {
    min-height: 680px;

    padding: 100px 20px 50px;
  }

  .vanuatu-hero h1 {
    font-size: 35px;

    line-height: 1.1;
  }

  .vanuatu-hero p {
    font-size: 13px;

    line-height: 1.55;
  }

  /* 

    .vanuatu-hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    } */

  .vanuatu-btn-primary,
  .vanuatu-btn-secondary {
    width: auto;

    padding: 10px 20px;
  }
}

/* =====================================
   REAL ESTATE SECTION
===================================== */

.real-estate-section {
  position: relative;

  width: 100%;

  padding: 50px 0;

  /* background-color: #f8f8f3; */

  /* DOTTED BACKGROUND */
  /* background-image: radial-gradient(rgba(13, 53, 70, 0.12) 0.8px,
            transparent 0.8px); */

  background-size: 12px 12px;

  overflow: hidden;
}

/* =====================================
   KICKER
===================================== */

.real-estate-kicker {
  display: block;

  margin-bottom: 17px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 3px;

  color: var(--small-heading);
}

/* =====================================
   HEADING
===================================== */

.real-estate-content h2 {
  margin: 0 0 17px;

  line-height: 1.15;

  font-weight: 600;

  color: var(--secondary-color);
}

/* =====================================
   DESCRIPTION
===================================== */

.real-estate-content p {
  max-width: 490px;

  margin: 0 0 28px;

  line-height: 1.65;

  font-weight: 400;

  color: #6d8792;
}

/* =====================================
   BUTTON
===================================== */

.real-estate-btn {
  display: inline-flex;

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

  gap: 18px;

  min-width: 222px;

  padding: 12px 17px;

  border-radius: 7px;

  background: var(--secondary-color);

  border: 1px solid #07374a;

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: all 0.3s ease;
}

/* BUTTON ARROW */

.real-estate-arrow {
  display: inline-flex;

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

  font-size: 20px;

  line-height: 1;

  transition: transform 0.3s ease;
}

/* BUTTON HOVER */

.real-estate-btn:hover {
  background: transparent;

  color: #07374a;
}

.real-estate-btn:hover .real-estate-arrow {
  transform: translateX(4px);
}

/* =====================================
   IMAGE WRAPPER
===================================== */

.real-estate-image-wrap {
  width: 100%;

  overflow: hidden;

  border-radius: 17px;

  line-height: 0;
}

/* =====================================
   IMAGE
===================================== */

.real-estate-image {
  display: block;

  width: 100%;

  height: 357px;

  object-fit: cover;

  object-position: center;

  transition: transform 0.5s ease;
}

/* IMAGE HOVER */

.real-estate-image-wrap:hover .real-estate-image {
  transform: scale(1.03);
}

/* =====================================
   LARGE DESKTOP
===================================== */

@media (min-width: 1200px) {
  .real-estate-image {
    height: 357px;
  }
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991.98px) {
  .real-estate-content {
    max-width: 100%;
  }

  .real-estate-image {
    height: 330px;
  }
}

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

@media (max-width: 767.98px) {
  /* .real-estate-section {
        padding: 60px 0;
    } */

  .real-estate-content {
    max-width: 100%;

    text-align: left;
  }

  .real-estate-kicker {
    margin-bottom: 13px;

    font-size: 10px;

    letter-spacing: 2.5px;
  }

  .real-estate-content h2 {
    margin-bottom: 15px;

    line-height: 1.15;
  }

  .real-estate-content p {
    max-width: 100%;

    margin-bottom: 23px;

    line-height: 1.6;
  }

  .real-estate-image-wrap {
    margin-top: 10px;

    border-radius: 14px;
  }

  .real-estate-image {
    height: 300px;
  }
}

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

@media (max-width: 575.98px) {
  /* .real-estate-section {
        padding: 50px 0;
    } */

  .real-estate-btn {
    min-width: 215px;

    padding: 11px 15px;
  }

  .real-estate-image {
    height: 260px;
  }
}

/* =====================================
   VERY SMALL MOBILE
===================================== */

@media (max-width: 400px) {
  .real-estate-image {
    height: 235px;
  }
}

/* =====================================
   BUSINESS OPTIONS
===================================== */

.business-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
  margin-bottom: 25px;
}

/* =====================================
   BUSINESS OPTION BOX
===================================== */

.business-option {
  display: flex;
  align-items: center;

  width: 100%;
  /* min-height: 36px; */

  padding: 13px 13px;

  background: #fff;

  border: 1px solid #e4e8e9;
  border-radius: 12px;

  box-sizing: border-box;

  font-size: 16px;
  font-weight: 400;

  color: #0b2c4d;

  transition: all 0.3s ease;
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {
  .business-options {
    gap: 9px;
  }

  .business-option {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 14px;
  }
}

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

@media (max-width: 767px) {
  .business-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .business-option {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 10px;
  }
}

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

@media (max-width: 480px) {
  .business-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .business-option {
    min-height: 42px;
    font-size: 14px;
  }
}

/* =====================================
   REAL ESTATE PROJECTS SECTION
===================================== */

.projects-section {
  width: 100%;
  padding: 70px 0;

  background: #f8f8f3;

  overflow: hidden;
}

/* =====================================
   PROJECT CARD
===================================== */

.project-card {
  width: 100%;

  height: 100%;

  display: flex;

  flex-direction: column;

  background: #ffffff;

  border: 1px solid #e5e9e8;

  border-radius: 14px;

  overflow: hidden;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);

  transition: all 0.3s ease;
}

/* =====================================
   CARD HOVER
===================================== */

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

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* =====================================
   PROJECT IMAGE
===================================== */

.project-image {
  width: 100%;

  height: 170px;

  overflow: hidden;
}

.project-image img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

/* =====================================
   CARD CONTENT
===================================== */

.project-content {
  display: flex;

  flex: 1;

  flex-direction: column;

  padding: 18px 18px 20px;
}

/* =====================================
   STATUS
===================================== */

.project-status {
  display: block;

  margin-bottom: 12px;

  font-size: 9px;

  line-height: 1.6;

  font-weight: 600;

  letter-spacing: 1.4px;

  color: var(--primary-color);
}

/* =====================================
   PROJECT TITLE
===================================== */

.project-content h3 {
  margin: 0 0 8px;

  font-size: 20px;

  line-height: 1.15;

  font-weight: 700;

  color: var(--secondary-color);
}

/* =====================================
   LOCATION
===================================== */

.project-content p {
  margin: 0 0 20px;

  line-height: 1.4;
  font-weight: 500;
  color: #8a9aa0;
}

/* =====================================
   ENQUIRE LINK
===================================== */

.project-link {
  display: inline-flex;

  margin-top: auto;

  align-items: center;

  gap: 9px;

  text-decoration: none;

  font-weight: 500;

  color: var(--primary-color);

  transition: all 0.3s ease;
}

/* =====================================
   ARROW
===================================== */

.project-link span {
  display: inline-block;

  font-size: 16px;

  line-height: 1;

  transition: transform 0.3s ease;
}

.project-link:hover {
  color: var(--secondary-color);
}

.project-link:hover span {
  transform: translateX(4px);
}

/* =====================================
   LARGE DESKTOP
===================================== */

@media (min-width: 1200px) {
  .projects-section {
    padding: 75px 0;
  }

  .project-image {
    height: 170px;
  }

  .project-content {
    padding: 18px 18px 22px;
  }
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991.98px) {
  .projects-section {
    padding: 60px 0;
  }

  .project-image {
    height: 180px;
  }

  .project-content h3 {
    font-size: 19px;
  }

  .project-content {
    padding: 16px;
  }
}

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

@media (max-width: 767.98px) {
  .projects-section {
    padding: 50px 0;
  }

  .project-image {
    height: 190px;
  }
}

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

@media (max-width: 575.98px) {
  .projects-section {
    padding: 45px 0;
  }

  .project-image {
    height: 210px;
  }

  .project-content {
    padding: 17px;
  }

  .project-content h3 {
    font-size: 20px;
  }

  /* .project-content p {
        font-size: 10px;
    } */
}

/* =========================================
           PREVENT WHITE FLASH
        ========================================= */

/* =========================================
           FOOTER
        ========================================= */

.src-footer {
  width: 100%;
  background: #003f4b;
  color: #9bb2b8;

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

  overflow: hidden;

  font-family: "DM Sans", sans-serif;

  /* Prevent white flash */
  opacity: 1;
  visibility: visible;
}

.src-footer-inner {
  width: 100%;

  min-height: auto;

  padding: 30px 36px;

  box-sizing: border-box;

  display: grid;

  grid-template-columns: 42% 34% 24%;
}

/* =========================================
           LEFT SECTION
        ========================================= */

.src-footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  opacity: 1;

  transform: translateY(18px);

  animation: srcFooterContentReveal 0.8s ease forwards;
}

/* =========================================
   LOGO
========================================= */

.src-footer-logo {
  width: 75px;
  height: 75px;
  border-radius: 12px;

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

  overflow: hidden;
  margin-bottom: 20px;
}

.src-footer-logo img {
  width: 65px;
  height: 65px;
  display: block;
  object-fit: contain;
}

/* =========================================
           COMPANY TITLE
        ========================================= */

.src-footer-title {
  margin: 0;

  color: #f1f3f3;

  font-family: "Playfair Display", serif;

  font-size: 20px;

  font-weight: 700;

  letter-spacing: 1.6px;

  line-height: 1.2;

  text-transform: uppercase;
}

/* =========================================
           TAGLINE
        ========================================= */

.src-footer-tagline {
  margin-top: 16px;

  margin-bottom: 24px;

  color: #d8871f;

  font-size: 12px;

  font-weight: 500;

  letter-spacing: 2px;

  line-height: 1.55;

  text-transform: uppercase;

  max-width: 390px;
}

/* =========================================
           DESCRIPTION
        ========================================= */

.src-footer-description {
  margin: 0;

  max-width: 360px;

  color: #9bb2b8;

  font-size: 17px;

  font-weight: 400;

  line-height: 1.65;
}

/* =========================================
           NAVIGATION
        ========================================= */

.src-footer-nav {
  padding-left: 10px;

  opacity: 1;

  transform: translateY(18px);

  animation: srcFooterContentReveal 0.8s ease forwards;

  animation-delay: 0.12s;
}

.src-footer-heading {
  margin: 13px 0 32px 0;

  color: #8ea7ad;

  font-family: "Playfair Display", serif;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 4px;

  text-transform: uppercase;
}

.src-footer-nav-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  column-gap: 34px;
}

.src-footer-nav-column {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.src-footer-link {
  color: #a9bbc0;

  text-decoration: none;

  font-size: 17px;

  font-weight: 400;

  line-height: 1.25;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.src-footer-link:hover {
  color: #ffffff;

  transform: translateX(4px);
}

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

.src-footer-contact {
  padding-left: 0;

  opacity: 1;

  transform: translateY(18px);

  animation: srcFooterContentReveal 0.8s ease forwards;

  animation-delay: 0.24s;
}

.src-footer-contact-list {
  display: flex;

  flex-direction: column;

  gap: 17px;

  margin-top: 0;
}

.src-footer-contact-item {
  display: flex;

  align-items: center;

  gap: 12px;

  color: #a9bbc0;

  font-size: 16px;

  font-weight: 400;

  line-height: 1.55;

  text-decoration: none;

  transition: color 0.3s ease;
}

.src-footer-contact-item i {
  width: 18px;

  color: #20ad9f;

  font-size: 18px;

  text-align: center;

  flex: 0 0 18px;
}

.src-footer-contact-item:hover {
  color: #ffffff;
}

/* =========================================
           CONTENT ANIMATION
           
           IMPORTANT:
           opacity NEVER becomes 0.
           This prevents white flash.
        ========================================= */

@keyframes srcFooterContentReveal {
  from {
    transform: translateY(18px);
  }

  to {
    transform: translateY(0);
  }
}

/* =========================================
           LARGE DESKTOP
        ========================================= */

@media (min-width: 1600px) {
  .src-footer-inner {
    padding: 36px 45px;
  }

  .src-footer-logo {
    width: 78px;

    height: 78px;

    border-radius: 12px;

    margin-bottom: 15px;
  }

  .src-footer-logo svg {
    width: 68px;

    height: 68px;
  }

  .src-footer-title {
    font-size: 21px;

    letter-spacing: 1.6px;
  }

  .src-footer-tagline {
    font-size: 12px;

    letter-spacing: 2px;

    margin-top: 14px;

    margin-bottom: 20px;
  }

  .src-footer-description {
    max-width: 390px;

    font-size: 16px;

    line-height: 1.5;
  }

  .src-footer-heading {
    margin-top: 13px;

    margin-bottom: 25px;

    font-size: 13px;

    letter-spacing: 3px;
  }

  .src-footer-nav-column {
    gap: 22px;
  }

  .src-footer-link {
    font-size: 17px;
  }

  .src-footer-contact-item {
    font-size: 16px;
  }
}

/* =========================================
           TABLET
        ========================================= */

@media (max-width: 1199px) {
  .src-footer-inner {
    padding: 30px 32px;

    grid-template-columns: 45% 32% 23%;
  }

  .src-footer-title {
    font-size: 23px;
  }

  .src-footer-description {
    font-size: 19px;
  }

  .src-footer-link {
    font-size: 19px;
  }

  .src-footer-contact-item {
    font-size: 17px;
  }
}

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

@media (max-width: 767px) {
  .src-footer-inner {
    padding: 28px 20px;

    display: flex;

    flex-direction: column;

    gap: 30px;
  }

  .src-footer-logo {
    width: 85px;

    height: 85px;

    border-radius: 14px;

    margin-bottom: 20px;
  }

  .src-footer-logo svg {
    width: 74px;

    height: 74px;
  }

  .src-footer-title {
    font-size: 21px;

    letter-spacing: 1.4px;

    line-height: 1.25;
  }

  .src-footer-tagline {
    font-size: 12px;

    letter-spacing: 1.8px;

    line-height: 1.6;

    margin-top: 17px;

    margin-bottom: 23px;
  }

  .src-footer-description {
    max-width: 100%;

    font-size: 17px;

    line-height: 1.65;
  }

  .src-footer-nav {
    padding-left: 0;
  }

  .src-footer-heading {
    margin-top: 0;

    margin-bottom: 28px;

    font-size: 14px;

    letter-spacing: 3.5px;
  }

  .src-footer-nav-grid {
    grid-template-columns: 1fr 1fr;

    column-gap: 20px;
  }

  .src-footer-nav-column {
    gap: 22px;
  }

  .src-footer-link {
    font-size: 17px;
  }

  .src-footer-contact {
    padding-left: 0;
  }

  .src-footer-contact-item {
    font-size: 16px;

    word-break: break-word;
  }
}

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

@media (max-width: 400px) {
  .src-footer-inner {
    padding-left: 20px;

    padding-right: 20px;
  }

  .src-footer-title {
    font-size: 19px;
  }

  .src-footer-description {
    font-size: 16px;
  }

  .src-footer-link {
    font-size: 16px;
  }
}

/* =============THE VANUATU ADVANTAGE============= */

/* =========================================
   VANUATU ADVANTAGE SECTION
========================================= */

.van-advantage-section {
  width: 100%;
  overflow: hidden;
  padding: clamp(28px, 4vw, 60px) clamp(20px, 5vw, 72px);
  box-sizing: border-box;
}

/* =========================================
   MAIN CONTAINER
========================================= */

.van-advantage-container {
  width: 100%;

  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 36fr) minmax(0, 64fr);
  column-gap: 28px;

  align-items: stretch;
}

/* =========================================
   IMAGE
========================================= */

.van-advantage-image-wrap {
  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 15px;
}

.van-advantage-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  min-height: 398px;

  transition: transform 0.7s ease;
}

/* =========================================
   IMAGE HOVER
========================================= */

.van-advantage-image-wrap:hover .van-advantage-image {
  transform: scale(1.025);
}

/* =========================================
   RIGHT CONTENT
========================================= */

.van-advantage-content {
  padding: 57px 30px 25px 30px;
}

/* =========================================
   SMALL LABEL
========================================= */

.van-advantage-label {
  margin: 0 0 17px 0;

  color: #bd8d4a;

  font-family: "DM Sans", sans-serif;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 3px;

  text-transform: uppercase;
}

/* =========================================
   MAIN HEADING
========================================= */

.van-advantage-title {
  margin: 0;

  max-width: 600px;

  color: #06384a;

  font-family: "Playfair Display", serif;

  font-size: 34px;
  font-weight: 600;

  line-height: 1.08;

  letter-spacing: 1px;
}

/* =========================================
   BENEFITS
========================================= */

.van-advantage-benefits {
  margin-top: 27px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  column-gap: 42px;
}

.van-advantage-benefit-column {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.van-advantage-benefit {
  position: relative;

  padding-left: 14px;

  color: #657d84;

  font-family: "DM Sans", sans-serif;

  font-weight: 400;

  line-height: 1.35;
}

.van-advantage-benefit::before {
  content: "";

  position: absolute;

  left: 0;
  top: 5px;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #b98a49;
}

/* =========================================
   DIVIDER
========================================= */

.van-advantage-divider {
  width: 100%;
  height: 1px;

  margin-top: 31px;

  background: #deded7;
}

/* =========================================
   BOTTOM INFORMATION
========================================= */

.van-advantage-info {
  display: grid;

  grid-template-columns: 1fr 1fr 1.15fr;

  column-gap: 35px;

  margin-top: 26px;
}

.van-advantage-info-item {
  min-width: 0;
}

.van-advantage-info-title {
  margin: 0;

  color: #07394b;

  font-family: "Playfair Display", serif;

  font-size: 18px;
  font-weight: 500;

  line-height: 1.15;
}

.van-advantage-info-description {
  margin: 4px 0 0 0;

  color: #89999d;

  font-family: "DM Sans", sans-serif;

  line-height: 1.35;
}

/* =========================================
   SCROLL ANIMATION
========================================= */

.van-advantage-image-wrap,
.van-advantage-content {
  opacity: 0;
  transform: translateY(25px);

  animation: vanAdvantageReveal 0.8s ease forwards;
}

.van-advantage-content {
  animation-delay: 0.12s;
}

@keyframes vanAdvantageReveal {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .van-advantage-container {
    grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
    column-gap: 18px;
  }

  .van-advantage-content {
    padding: 40px 25px 25px;
  }

  .van-advantage-title {
    font-size: 29px;
  }

  .van-advantage-benefits {
    column-gap: 20px;
  }

  .van-advantage-info {
    column-gap: 20px;
  }
}

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

@media (max-width: 700px) {
  .van-advantage-section {
    padding: 24px 18px;
  }

  .van-advantage-container {
    display: flex;

    flex-direction: column;
    gap: 18px;
  }

  .van-advantage-image-wrap {
    height: 320px;

    border-radius: 12px;
  }

  .van-advantage-image {
    min-height: 320px;
  }

  .van-advantage-content {
    padding: 40px 25px 35px;
  }

  .van-advantage-title {
    font-size: 26px;

    line-height: 1.1;
  }

  .van-advantage-benefits {
    grid-template-columns: 1fr;

    row-gap: 9px;

    margin-top: 25px;
  }

  .van-advantage-divider {
    margin-top: 28px;
  }

  .van-advantage-info {
    grid-template-columns: 1fr;

    row-gap: 25px;
  }
}

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

@media (max-width: 400px) {
  .van-advantage-image-wrap {
    height: 280px;
  }

  .van-advantage-image {
    min-height: 280px;
  }

  .van-advantage-content {
    padding: 35px 20px 30px;
  }

  .van-advantage-title {
    font-size: 24px;
  }
}

/* =========================================================
   VANUATU CITIZENSHIP SECTION
========================================================= */

.vn-citizenship-section {
  position: relative;

  width: 100%;

  min-height: 410px;

  overflow: hidden;

  display: flex;

  align-items: center;
}

/* =========================================================
    BACKGROUND IMAGE
========================================================= */

.vn-citizenship-background-image {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center center;

  pointer-events: none;
}

/* =========================================================
   DARK BLUE OVERLAY
========================================================= */

.vn-citizenship-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 45, 60, 0.78) 0%,
    rgba(0, 47, 61, 0.7) 45%,
    rgba(0, 42, 56, 0.6) 100%
  );

  pointer-events: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.vn-citizenship-container {
  position: relative;

  z-index: 2;

  width: 100%;

  max-width: fit-content;

  margin: 0 auto;

  padding: 50px 40px;

  box-sizing: border-box;

  display: grid;

  grid-template-columns: 46% 54%;

  align-items: center;

  gap: 20px;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.vn-citizenship-content {
  opacity: 0;

  transform: translateY(18px);

  animation: vnCitizenshipContentIn 0.65s ease forwards;
}

/* =========================================================
   LABEL
========================================================= */

.vn-citizenship-label {
  margin-bottom: 15px;

  color: #c59b55;

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

  font-size: 11px;

  font-weight: 500;

  letter-spacing: 3px;

  text-transform: uppercase;
}

/* =========================================================
   TITLE

   Font-size intentionally NOT specified.
   Uses your global h1 CSS.
========================================================= */

.vn-citizenship-title {
  margin: 0;

  color: #f5f1e9;

  line-height: 1.08;

  letter-spacing: 1px;
}

/* =========================================================
   DESCRIPTION

   Font-size intentionally NOT specified.
   Uses your global p CSS.
========================================================= */

.vn-citizenship-description {
  max-width: 500px;

  margin: 16px 0 21px;

  color: #aebdc1;

  line-height: 1.55;
}

/* =========================================================
   BUTTON
========================================================= */

.vn-citizenship-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 13px 16px;

  box-sizing: border-box;

  border-radius: 6px;

  background: #ffd712;

  color: #000;

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

  font-weight: 500;

  text-decoration: none;

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

.vn-citizenship-button:hover {
  background: #e5b52f;

  color: #082e3b;

  transform: translateY(-2px);

  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
}

.vn-citizenship-button-arrow {
  font-size: 17px;

  line-height: 1;

  transition: transform 0.22s ease;
}

.vn-citizenship-button:hover .vn-citizenship-button-arrow {
  transform: translateX(4px);
}

/* =========================================================
   RIGHT CARD
========================================================= */

.vn-citizenship-card {
  width: 100%;

  max-width: 500px;

  justify-self: end;

  padding: 25px 22px 22px;

  box-sizing: border-box;

  border-radius: 17px;

  background: rgba(34, 64, 71, 0.62);

  border: 1px solid rgba(177, 151, 91, 0.34);

  backdrop-filter: blur(8px);

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

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);

  opacity: 0;

  transform: translateX(22px);

  animation: vnCitizenshipCardIn 0.65s 0.12s ease forwards;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.vn-citizenship-card:hover {
  transform: translateY(-3px);
}

/* =========================================================
   GRID
========================================================= */

.vn-citizenship-grid {
  display: grid;

  grid-template-columns: 1fr 1.35fr;

  column-gap: 38px;

  row-gap: 18px;
}

/* =========================================================
   ITEM
========================================================= */

.vn-citizenship-item {
  min-width: 0;
}

.vn-citizenship-item-title {
  margin-bottom: 3px;

  color: #c59b55;

  font-family: "Playfair Display", serif;

  font-size: 16px;

  font-weight: 600;

  line-height: 1.2;
}

.vn-citizenship-item-text {
  color: #aebdc0;

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

  font-size: 14px;

  line-height: 1.4;
}

/* =========================================================
   CARD DIVIDER
========================================================= */

.vn-citizenship-card-line {
  width: 100%;

  height: 1px;

  margin: 20px 0 14px;

  background: rgba(194, 180, 143, 0.22);
}

/* =========================================================
   NOTICE
========================================================= */

.vn-citizenship-notice {
  width: 100%;

  /* min-height: 37px; */

  padding: 13px 13px;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  border-radius: 11px;

  border: 1px solid rgba(196, 171, 108, 0.25);

  background: linear-gradient(
    90deg,
    rgba(78, 92, 79, 0.38),
    rgba(93, 97, 74, 0.28)
  );

  color: #bdc3b9;

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

  font-size: 14px;

  line-height: 1.4;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes vnCitizenshipContentIn {
  from {
    opacity: 0;

    transform: translateY(18px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes vnCitizenshipCardIn {
  from {
    opacity: 0;

    transform: translateX(22px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .vn-citizenship-section {
    min-height: auto;
  }

  .vn-citizenship-container {
    grid-template-columns: 1fr 1fr;

    padding: 50px 30px;

    gap: 16px;
  }

  .vn-citizenship-title {
    line-height: 1.1;
  }

  .vn-citizenship-card {
    padding: 22px 18px;
  }

  .vn-citizenship-grid {
    column-gap: 22px;
  }
}

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

@media (max-width: 767px) {
  .vn-citizenship-section {
    min-height: auto;
  }

  .vn-citizenship-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 43, 57, 0.78),
      rgba(0, 43, 57, 0.7)
    );
  }

  .vn-citizenship-container {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    padding: 50px 22px;

    gap: 24px;
  }

  .vn-citizenship-content {
    width: 100%;
  }

  .vn-citizenship-title {
    line-height: 1.1;
  }

  .vn-citizenship-description {
    max-width: 100%;

    margin-top: 18px;
  }

  .vn-citizenship-card {
    max-width: none;

    justify-self: auto;

    padding: 24px 19px;

    border-radius: 16px;
  }

  .vn-citizenship-grid {
    column-gap: 20px;

    row-gap: 20px;
  }
}

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

@media (max-width: 480px) {
  .vn-citizenship-container {
    padding: 42px 18px;
  }

  .vn-citizenship-grid {
    grid-template-columns: 1fr 1fr;

    column-gap: 15px;
  }

  .vn-citizenship-card {
    padding: 21px 16px;
  }

  .vn-citizenship-notice {
    padding: 8px 11px;

    min-height: auto;
  }

  .vn-citizenship-button {
    width: auto;

    max-width: 100%;
  }
}

/* =====================================================
   VANUATU WHY SECTION
   No global h1/h2/h3/p styling used
===================================================== */

.vn-why-section {
  width: 100%;
  /* 
    background: linear-gradient(
        135deg,
        #123858 0%,
        #1b4866 52%,
        #2b6680 100%
    ); */

  overflow: hidden;

  padding: 42px 0 48px;

  box-sizing: border-box;
}

.vn-why-container {
  width: 100%;

  margin: 0 auto;

  padding: 0 56px;

  box-sizing: border-box;
}

/* =====================================================
   HEADER
===================================================== */

.vn-why-header {
  margin-bottom: 42px;

  opacity: 0;

  transform: translateY(22px);

  animation: vnWhyHeaderIn 0.65s ease forwards;
}

.vn-why-label {
  display: inline-block;

  margin-bottom: 25px;

  color: rgba(32, 173, 159, 1);

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

  font-weight: 700;

  letter-spacing: 4px;

  text-transform: uppercase;
}

.vn-why-title {
  margin: 0;

  color: var(--secondary-color);

  line-height: 1.08;

  letter-spacing: 1px;
  font-weight: 700;
}

.vn-why-description {
  max-width: 900px;

  margin: 24px 0 0;

  color: #7d7d76;

  line-height: 1.65;
}

/* =====================================================
   CARDS
===================================================== */

.vn-why-cards {
  display: grid;

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

  gap: 29px;
}

/* =====================================================
   CARD
===================================================== */

.vn-why-card {
  position: relative;

  min-height: 270px;

  padding: 28px 30px 26px;

  box-sizing: border-box;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  background: #ffffff;

  border: 1px solid #d9ddde;

  border-radius: 32px;

  box-shadow: 0 5px 18px rgba(20, 40, 45, 0.035);

  overflow: hidden;

  opacity: 0;

  transform: translateY(35px) scale(0.985);

  animation: vnWhyCardIn 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;

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

/* stagger */

.vn-why-card:nth-child(1) {
  animation-delay: 0.12s;
}

.vn-why-card:nth-child(2) {
  animation-delay: 0.2s;
}

.vn-why-card:nth-child(3) {
  animation-delay: 0.28s;
}

/* =====================================================
   CARD TOP GLOW
===================================================== */

.vn-why-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 3px;

  background: linear-gradient(
    90deg,
    transparent,
    #0b2c4d,
    #16b9e8,
    transparent
  );

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.4s ease;
}

.vn-why-card:hover::before {
  transform: scaleX(1);
}

/* =====================================================
   CARD HOVER
===================================================== */

.vn-why-card:hover {
  transform: translateY(-7px);

  border-color: #bfc9cc;

  box-shadow: 0 18px 40px rgba(20, 40, 45, 0.1);
}

/* =====================================================
   ICON
===================================================== */

.vn-why-icon {
  width: 44px;

  height: 44px;

  margin-bottom: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: rgba(32, 173, 159, 1);

  transition: transform 0.35s ease;
}

.vn-why-icon svg {
  width: 40px;

  height: 40px;

  display: block;
}

.vn-why-card:hover .vn-why-icon {
  transform: translateY(-3px) scale(1.08);
}

/* =====================================================
   CARD TITLE

   No font-size here.
   Uses your global h3 rule.
===================================================== */

.vn-why-card-title {
  margin: 0 0 20px;

  color: #173c4b;

  line-height: 1.2;
}

/* =====================================================
   CARD TEXT

   No font-size here.
   Uses your global p rule.
===================================================== */

.vn-why-card-text {
  margin: 0;

  max-width: 390px;

  color: #7d7d76;

  line-height: 1.65;
}

/* =====================================================
   LINK
===================================================== */

.vn-why-card-link {
  margin-top: auto;

  padding-top: 28px;

  display: inline-flex;

  align-items: center;

  gap: 13px;
  letter-spacing: 1px;

  color: rgba(32, 173, 159, 1);

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

  font-weight: 700;

  text-decoration: none;

  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.vn-why-arrow {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  transition: transform 0.25s ease;
}

.vn-why-card-link:hover {
  color: rgba(32, 173, 159, 1);

  gap: 17px;
}

.vn-why-card-link:hover .vn-why-arrow {
  transform: translateX(4px);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes vnWhyHeaderIn {
  from {
    opacity: 0;

    transform: translateY(22px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes vnWhyCardIn {
  from {
    opacity: 0;

    transform: translateY(35px) scale(0.985);
  }

  to {
    opacity: 1;

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

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {
  .vn-why-section {
    padding: 42px 0 48px;
  }

  .vn-why-container {
    padding: 0 35px;
  }

  .vn-why-header {
    margin-bottom: 36px;
  }

  .vn-why-desktop-break {
    display: none;
  }

  .vn-why-cards {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .vn-why-card {
    min-height: 260px;

    padding: 28px;
  }
}

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

@media (max-width: 767px) {
  .vn-why-section {
    padding: 34px 0 40px;
  }

  .vn-why-container {
    padding: 0 22px;
  }

  .vn-why-header {
    margin-bottom: 30px;
  }

  .vn-why-label {
    margin-bottom: 18px;

    letter-spacing: 3px;
  }

  .vn-why-title {
    letter-spacing: 1px;
  }

  .vn-why-description {
    margin-top: 20px;
  }

  .vn-why-cards {
    gap: 18px;
  }

  .vn-why-card {
    min-height: 250px;

    padding: 25px 24px;

    border-radius: 25px;
  }

  .vn-why-icon {
    margin-bottom: 22px;
  }

  .vn-why-card-title {
    margin-bottom: 16px;
  }

  .vn-why-card-link {
    padding-top: 24px;
  }
}

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

@media (max-width: 480px) {
  .vn-why-container {
    padding: 0 18px;
  }

  .vn-why-card {
    padding: 28px 23px;

    border-radius: 22px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .vn-why-header,
  .vn-why-card {
    animation: none;

    opacity: 1;

    transform: none;
  }

  .vn-why-card,
  .vn-why-icon,
  .vn-why-card-link,
  .vn-why-arrow {
    transition: none;
  }
}

/* ==========categories=============== */
/* ===========about.php============== */
.about-hero {
  position: relative;
  width: 100%;
  /* min-height: 345px; */
  overflow: hidden;

  display: flex;
  align-items: center;
  margin-top: 100px;
}

/* Image from HTML */
.about-hero-img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(5, 38, 58, 0.4);

  z-index: 1;
}

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

  width: 100%;
  /* max-width: 1100px; */
  margin: auto;
  padding: 100px 70px;
}

@media (max-width: 767px) {
  .about-hero-content {
    padding: 100px 50px;
  }
}

.about-label {
  color: var(--button-color);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  font-weight: 700;
}

.about-hero h1 {
  color: #fff;
  line-height: 1.05;
  margin: 0 0 20px;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* =========================
   WHO WE ARE SECTION
========================= */

.who-we-are {
  position: relative;
  width: 100%;
  padding: 78px 0 65px;
  background: #f8f7f1;
  overflow: hidden;
}

/* Subtle dotted background */
.who-we-are::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: radial-gradient(
    rgba(15, 55, 70, 0.12) 0.8px,
    transparent 0.8px
  );

  background-size: 18px 18px;
  opacity: 0.45;
  pointer-events: none;
}

/* CONTAINER */

.who-we-are .container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  padding: 0 25px;

  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;

  align-items: start;
}

/* =========================
   LABEL
========================= */

.section-label {
  display: block;

  margin-bottom: 20px;

  color: var(--small-heading);

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 2px;
  line-height: 1;

  text-transform: uppercase;
}

/* =========================
   HEADING
========================= */

.who-content h2 {
  margin: 0 0 20px;

  color: var(--secondary-color);

  /* font-family: Georgia, "Times New Roman", serif; */
  /* font-size: 48px; */
  font-weight: 700;

  line-height: 1.2;
  letter-spacing: 1px;
}

/* =========================
   DESCRIPTION
========================= */

.description {
  max-width: 570px;

  margin: 0;

  color: #607887;

  font-weight: 400;

  line-height: 1.5;
}

/* =========================
   NOTICE BOX
========================= */

.notice-box {
  max-width: 580px;

  margin-top: 28px;
  padding: 16px 18px;

  background: #f3edd8;

  border: 1px solid #e7d8a8;
  border-radius: 15px;

  color: #607887;

  font-size: 13px;

  line-height: 1.45;
}

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

.services {
  width: 100%;
}

.services-label {
  color: #8197a1;
}

/* SERVICES GRID */

.services-grid {
  display: grid;

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

  gap: 11px 12px;
}

/* SERVICE ITEM */

.service-item {
  /* min-height: 41px; */

  padding: 13px 14px;

  display: flex;
  align-items: center;

  background: rgba(255, 255, 255, 0.92);

  border: 1px solid #e3e8e9;
  border-radius: 14px;

  color: #073247;

  font-weight: 500;

  line-height: 1.3;

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

/* Hover */

.service-item:hover {
  transform: translateY(-2px);

  border-color: #d8c28c;

  box-shadow: 0 8px 20px rgba(7, 50, 71, 0.08);
}

/* =========================
   LARGE DESKTOP
========================= */

@media (min-width: 1400px) {
  .who-we-are {
    padding-top: 90px;
    padding-bottom: 75px;
  }

  .who-we-are .container {
    max-width: 1300px;
    gap: 85px;
  }

  /* 
    .who-content h2 {
        font-size: 54px;
    } */

  /* .description {
        font-size: 17px;
    } */

  /* .service-item {
        min-height: 44px;
        font-size: 14px;
    } */
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .who-we-are {
    padding: 60px 0;
  }

  .who-we-are .container {
    grid-template-columns: 1fr;
    gap: 50px;

    max-width: 750px;
  }

  /* .who-content h2 {
        font-size: 45px;
    } */

  .description {
    max-width: 100%;
  }

  .notice-box {
    max-width: 100%;
  }

  .services-grid {
    gap: 12px;
  }

  /* 
    .service-item {
        min-height: 45px;
    } */
}

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

@media (max-width: 767px) {
  .who-we-are {
    padding: 50px 0;
  }

  .who-we-are .container {
    display: block;

    padding: 0 20px;
  }

  .who-content {
    margin-bottom: 42px;
  }

  /* .section-label {
        margin-bottom: 16px;
        font-size: 9px;
        letter-spacing: 2.5px;
    } */

  /* .who-content h2 {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -0.8px;
    } */

  /* .description {
        font-size: 14px;
        line-height: 1.55;
    } */

  .notice-box {
    margin-top: 23px;
    padding: 14px 15px;

    border-radius: 13px;
  }

  .services-label {
    margin-bottom: 16px;
  }

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

  /* 
    .service-item {
        min-height: 44px;

        padding: 11px 14px;

        border-radius: 13px;

        font-size: 13px;
    } */
}

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

@media (max-width: 400px) {
  .who-we-are {
    padding: 42px 0;
  }

  .who-we-are .container {
    padding: 0 16px;
  }

  /* .who-content h2 {
        font-size: 31px;
    } */

  /* .description {
        font-size: 13px;
    } */

  /* .service-item {
        font-size: 12px;
    } */
}

/* ========================================
   OUR APPROACH SECTION
======================================== */

.approach-section {
  width: 100%;
  padding: 48px 0 50px;
  overflow: hidden;
}

.approach-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   HEADING
======================================== */

.approach-heading {
  margin-bottom: 28px;
}

.approach-label {
  display: block;

  margin-bottom: 10px;

  color: var(--small-heading);

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.approach-heading h2 {
  margin: 0;

  color: var(--secondary-color);

  /* font-size: 30px; */
  font-weight: 700;

  line-height: 1.1;
  letter-spacing: 1px;
}

/* ========================================
   CARDS GRID
======================================== */

.approach-grid {
  display: grid;

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

  gap: 13px;
}

/* ========================================
   CARD
======================================== */

.approach-card {
  min-height: 123px;

  padding: 14px 14px 13px;

  background: #ffffff;

  border: 1px solid #dfe5e7;
  border-radius: 11px;

  box-shadow: 0 14px 25px rgba(20, 55, 70, 0.07);

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

/* ========================================
   NUMBER
======================================== */

.step-number {
  display: block;

  margin-bottom: 14px;

  color: var(--small-heading);

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 1.8px;
}

/* ========================================
   CARD TITLE
======================================== */

.approach-card h3 {
  margin: 0 0 8px;

  color: var(--secondary-color);

  font-size: 20px;
  font-weight: 700;

  line-height: 2;
}

/* ========================================
   CARD TEXT
======================================== */

.approach-card p {
  margin: 0;

  color: #718591;

  font-weight: 400;

  line-height: 1.45;
}

/* ========================================
   HOVER
======================================== */

.approach-card:hover {
  transform: translateY(-4px);

  border-color: #d3c39d;

  box-shadow: 0 18px 35px rgba(20, 55, 70, 0.11);
}

/* ========================================
   LARGE DESKTOP
======================================== */

@media (min-width: 1400px) {
  .approach-section {
    padding: 65px 0 65px;
  }

  .approach-container {
    max-width: 1250px;
  }

  .approach-heading {
    margin-bottom: 32px;
  }

  /* 
    .approach-heading h2 {
        font-size: 38px;
    } */

  .approach-card {
    min-height: 145px;
    padding: 17px 16px;
  }

  /* .approach-card h3 {
        font-size: 15px;
    } */

  /* .approach-card p {
        font-size: 11px;
    } */

  /* .step-number {
        font-size: 8px;
    } */
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {
  .approach-section {
    padding: 50px 0;
  }

  /* .approach-heading h2 {
        font-size: 32px;
    } */

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

  .approach-card {
    min-height: 135px;
  }

  /* .approach-card h3 {
        font-size: 14px;
    } */

  /* .approach-card p {
        font-size: 10px;
    } */
}

/* ========================================
   SMALL TABLET
======================================== */

@media (max-width: 700px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-card {
    min-height: 140px;
  }
}

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

@media (max-width: 480px) {
  .approach-section {
    padding: 42px 0;
  }

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

  .approach-heading {
    margin-bottom: 24px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .approach-card {
    min-height: auto;
    padding: 16px;
  }
}

/* ==========================================
   OBJECTIVES / CTA SECTION
========================================== */

.objective-section {
  position: relative;
  width: 100%;
  min-height: 425px;

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

  overflow: hidden;
}

/* ==========================================
   BACKGROUND IMAGE
========================================== */

.objective-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;
}

/* ==========================================
   DARK BLUE OVERLAY
========================================== */

.objective-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(3, 43, 62, 0.82), rgba(3, 43, 62, 0.6));

  z-index: 1;
}

/* ==========================================
   CONTENT
========================================== */

.objective-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 900px;

  padding: 60px 25px;

  text-align: center;
}

/* ==========================================
   HEADING
========================================== */

.objective-content h1 {
  margin: 0 0 14px;

  color: #ffffff;

  font-weight: 700;

  line-height: 1.12;
  letter-spacing: 1px;
}

/* ==========================================
   DESCRIPTION
========================================== */

.objective-text {
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.78);

  font-weight: 400;

  line-height: 1.45;
}

/* ==========================================
   BUTTONS
========================================== */

.objective-buttons {
  display: flex;

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

  gap: 10px;

  margin-top: 33px;
}

/* Primary Button */

.btn-consultation {
  min-width: 253px;

  /* height: 42px; */

  padding: 13px 18px;

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

  gap: 15px;

  background: var(--button-color);

  border: 1px solid #d0a052;
  border-radius: 9px;

  color: var(--secondary-color);

  font-weight: 600;

  text-decoration: none;

  transition: all 0.25s ease;
}

/* Arrow */

.btn-consultation .arrow {
  font-size: 19px;
  line-height: 1;

  transition: transform 0.25s ease;
}

/* Primary Hover */

.btn-consultation:hover {
  background: #dfb66d;
  border-color: #dfb66d;

  color: #082f45;
}

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

/* Secondary Button */

.btn-inquiry {
  /* height: 42px; */

  /* min-width: 126px; */

  padding: 13px 20px;

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

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9px;

  color: #ffffff;

  font-weight: 500;

  text-decoration: none;

  background: rgba(255, 255, 255, 0.02);

  transition: all 0.25s ease;
}

/* Secondary Hover */

.btn-inquiry:hover {
  background: rgba(255, 255, 255, 0.12);

  border-color: rgba(255, 255, 255, 0.65);

  color: #ffffff;
}

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

.objective-contact {
  margin-top: 26px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 14px;
  font-weight: 400;

  line-height: 1.4;
}

/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {
  .objective-section {
    min-height: 480px;
  }

  .objective-content {
    max-width: 1000px;
  }

  /* .objective-content h2 {
        font-size: 50px;
    } */

  /* .btn-consultation,
    .btn-inquiry {
        height: 46px;
    } */
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .objective-section {
    min-height: 400px;
  }

  /* 
    .objective-content {
        padding: 55px 25px;
    } */

  /* .objective-content h2 {
        font-size: 38px;
    } */

  /* .objective-text {
        font-size: 14px;
    } */

  .objective-buttons {
    margin-top: 28px;
  }
}

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

@media (max-width: 767px) {
  .objective-section {
    min-height: 430px;
  }

  .objective-bg {
    object-position: center;
  }

  /* .objective-content {
        padding: 50px 20px;
    }

    .objective-content h2 {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -0.5px;

        margin-bottom: 16px;
    } */

  /* .objective-text {
        max-width: 430px;

        font-size: 13px;
        line-height: 1.55;
    } */

  .desktop-break {
    display: none;
  }

  .objective-buttons {
    flex-direction: column;

    width: 100%;

    gap: 10px;

    margin-top: 28px;
  }

  .objective-contact {
    margin-top: 23px;

    font-size: 10px;

    word-break: break-word;
  }
}

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

@media (max-width: 400px) {
  .objective-section {
    min-height: 450px;
  }

  /* 
    .objective-content {
        padding: 45px 16px;
    }

    .objective-content h2 {
        font-size: 28px;
    } */

  /* .objective-text {
        font-size: 12px;
    } */

  /* .btn-consultation,
    .btn-inquiry {
        max-width: 280px;

        font-size: 11px;
    } */

  /* .objective-contact {
        font-size: 9px;
    } */
}

.objective-contact a {
  color: inherit;
  text-decoration: none;
}

.objective-contact a:hover {
  text-decoration: underline;
}

/* ================real estated.php============ */
/* ==========categories=============== */

/* =========================================================
   PREMIUM PROPERTY SECTION
========================================================= */

.vn-premium-property {
  width: 100%;

  background: #ffffff;

  overflow: hidden;

  padding: clamp(30px, 4vw, 58px) clamp(18px, 4vw, 60px) clamp(48px, 6vw, 85px);

  box-sizing: border-box;
}

/* =========================================================
   WRAPPER
========================================================= */

.vn-premium-property-wrap {
  width: 100%;

  margin: 0 auto;

  padding: 0;

  box-sizing: border-box;
}

/* =========================================================
   HEADER
========================================================= */

.vn-premium-property-head {
  position: relative;

  margin-bottom: 43px;

  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.vn-premium-property-head.vn-property-visible {
  opacity: 1;

  transform: translateY(0);
}

.vn-premium-property-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 11px;

  color: #b99152;

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

  font-weight: 600;

  letter-spacing: 3.5px;

  text-transform: uppercase;

  font-size: 13px;
}

.vn-premium-property-eyebrow::before {
  content: "";

  width: 24px;

  height: 1px;

  background: #b99152;

  transform-origin: left;

  transform: scaleX(0);

  transition: transform 0.7s ease 0.35s;
}

.vn-premium-property-head.vn-property-visible
  .vn-premium-property-eyebrow::before {
  transform: scaleX(1);
}

/*
=========================================================
NO FONT-SIZE
Uses your existing global H1 typography
=========================================================
*/

.vn-premium-property-heading {
  margin: 0;

  color: #0a394a;

  line-height: 1.08;

  letter-spacing: 1px;
}

/* =========================================================
   HEADER LINE
========================================================= */

.vn-premium-property-line {
  width: 100%;

  height: 1px;

  margin-top: 27px;

  background: linear-gradient(90deg, #d7d9d5 0%, #eeeeeb 45%, transparent 100%);

  transform-origin: left;

  transform: scaleX(0);

  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s;
}

.vn-premium-property-head.vn-property-visible .vn-premium-property-line {
  transform: scaleX(1);
}

/* =========================================================
   GRID
========================================================= */

.vn-premium-property-grid {
  display: grid;

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

  gap: 22px;

  perspective: 1200px;
}

/* =========================================================
   CARD
========================================================= */

.vn-premium-property-card {
  position: relative;

  min-width: 0;

  min-height: 390px;

  display: flex;

  flex-direction: column;

  background: #ffffff;

  border: 1px solid #dfe3e1;

  border-radius: 19px;

  overflow: hidden;

  box-shadow: 0 5px 18px rgba(8, 46, 58, 0.035);

  opacity: 0;

  transform: translateY(55px) scale(0.97);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;

  will-change: transform;
}

/* =========================================================
   VISIBLE
========================================================= */

.vn-premium-property-card.vn-property-visible {
  opacity: 1;

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

.vn-premium-property-card:nth-child(1).vn-property-visible {
  transition-delay: 0.05s;
}

.vn-premium-property-card:nth-child(2).vn-property-visible {
  transition-delay: 0.15s;
}

.vn-premium-property-card:nth-child(3).vn-property-visible {
  transition-delay: 0.25s;
}

/* =========================================================
   CARD HOVER
========================================================= */

.vn-premium-property-card:hover {
  border-color: #c8d0cf;

  box-shadow: 0 24px 50px rgba(8, 46, 58, 0.13);
}

/* =========================================================
   GOLD TOP LINE
========================================================= */

.vn-premium-property-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 2px;

  z-index: 5;

  background: linear-gradient(90deg, transparent, #bd9454, transparent);

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.55s ease;
}

.vn-premium-property-card:hover::before {
  transform: scaleX(1);
}

/* =========================================================
   IMAGE
========================================================= */

.vn-premium-property-image {
  position: relative;

  width: 100%;

  height: 205px;

  overflow: hidden;

  background: #e9ebe7;
}

/* IMAGE */

.vn-premium-property-image img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transform: scale(1);

  transition:
    transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.6s ease;
}

.vn-premium-property-card:hover .vn-premium-property-image img {
  transform: scale(1.075);

  filter: saturate(1.08) contrast(1.03);
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.vn-premium-property-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 35%,
    rgba(0, 35, 47, 0.28) 100%
  );

  opacity: 0.55;

  transition: opacity 0.5s ease;
}

.vn-premium-property-card:hover .vn-premium-property-image-overlay {
  opacity: 0.8;
}

/* =========================================================
   IMAGE SHINE
========================================================= */

.vn-premium-property-image-shine {
  position: absolute;

  top: 0;

  left: -130%;

  width: 65%;

  height: 100%;

  background: linear-gradient(
    105deg,
    transparent 15%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 85%
  );

  transform: skewX(-18deg);

  transition: left 0.8s ease;

  pointer-events: none;
}

.vn-premium-property-card:hover .vn-premium-property-image-shine {
  left: 145%;
}

/* =========================================================
   NUMBER
========================================================= */

.vn-premium-property-number {
  position: absolute;

  top: 17px;

  right: 18px;

  width: 34px;

  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.45);

  border-radius: 50%;

  background: rgba(7, 45, 56, 0.45);

  color: #ffffff;

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

  font-weight: 500;

  backdrop-filter: blur(6px);

  transform: translateY(-5px);

  opacity: 0.75;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    opacity 0.4s ease;
}

.vn-premium-property-card:hover .vn-premium-property-number {
  transform: translateY(0) rotate(8deg);

  opacity: 1;

  background: rgba(7, 45, 56, 0.72);
}

/* =========================================================
   CONTENT
========================================================= */

.vn-premium-property-content {
  position: relative;

  min-height: 165px;

  flex: 1;

  display: flex;

  flex-direction: column;

  padding: 28px 28px 25px;

  box-sizing: border-box;

  background: #ffffff;
}

/* =========================================================
   SMALL LABEL
========================================================= */

.vn-premium-property-small-label {
  margin-bottom: 9px;

  color: #b89154;

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

  font-weight: 600;

  letter-spacing: 2px;
  font-size: 13px;

  text-transform: uppercase;

  opacity: 0.9;
}

/*
=========================================================
NO FONT-SIZE
Uses existing global H3 typography
=========================================================
*/

.vn-premium-property-title {
  margin: 0 0 12px;

  color: #103c4b;

  line-height: 1.15;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.vn-premium-property-card:hover .vn-premium-property-title {
  color: #0a5268;

  transform: translateX(3px);
}

/*
=========================================================
NO FONT-SIZE
Uses existing global P typography
=========================================================
*/

.vn-premium-property-text {
  margin: 0;

  color: #789097;

  line-height: 1.55;
  margin-bottom: 10px;
}

/* =========================================================
   BOTTOM
========================================================= */

.vn-premium-property-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: auto;

  padding-top: 8px;

  border-top: 1px solid #edf0ed;
  text-decoration: none;
}

/* =========================================================
   EXPLORE
========================================================= */

.vn-premium-property-explore {
  color: #174858;

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

  font-weight: 600;

  transition: color 0.3s ease;
}

.vn-premium-property-card:hover .vn-premium-property-explore {
  color: #b58a4d;
}

/* =========================================================
   ARROW
========================================================= */

.vn-premium-property-arrow {
  width: 30px;

  height: 30px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid #d8dfdd;

  border-radius: 50%;

  color: #174858;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.vn-premium-property-card:hover .vn-premium-property-arrow {
  transform: rotate(45deg);

  background: #174858;

  border-color: #174858;

  color: #ffffff;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .vn-premium-property {
    padding: 28px 25px 65px;
  }

  .vn-premium-property-wrap {
    padding: 0;
  }

  .vn-premium-property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
  }

  .vn-premium-property-card:nth-child(3) {
    grid-column: 1 / -1;

    width: calc(50% - 10px);

    justify-self: center;
  }

  .vn-premium-property-image {
    height: 230px;
  }
}

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

@media (max-width: 767px) {
  .vn-premium-property {
    padding: 22px 18px 55px;
  }

  .vn-premium-property-wrap {
    padding: 0;
  }

  .vn-premium-property-head {
    margin-bottom: 32px;
  }

  .vn-premium-property-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .vn-premium-property-card:nth-child(3) {
    grid-column: auto;

    width: 100%;
  }

  .vn-premium-property-image {
    height: 245px;
  }

  .vn-premium-property-content {
    min-height: 155px;

    padding: 25px 23px 23px;
  }

  .vn-premium-property-card {
    border-radius: 17px;
  }

  .vn-premium-property-card:hover {
    transform: translateY(-5px);
  }
}

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

@media (max-width: 480px) {
  .vn-premium-property-wrap {
    padding: 0;
  }

  .vn-premium-property-image {
    height: 220px;
  }

  .vn-premium-property-content {
    padding: 23px 21px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .vn-premium-property-head,
  .vn-premium-property-card {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .vn-premium-property-image img,
  .vn-premium-property-image-shine,
  .vn-premium-property-arrow {
    transition: none;
  }
}

/* =========================================================
   APPROVED PROJECTS
========================================================= */

.vn-approved-projects {
  width: 100%;

  padding: clamp(10px, 2vw, 58px) clamp(18px, 4vw, 60px) clamp(48px, 6vw, 65px);

  overflow: hidden;

  box-sizing: border-box;
}

/* =========================================================
   MAIN CONTAINER
========================================================= */

.vn-approved-projects-inner {
  margin: 0 auto;

  padding: 0;

  box-sizing: border-box;
}

/* =========================================================
   HEADER
========================================================= */

.vn-approved-projects-header {
  margin-bottom: 58px;

  opacity: 0;

  transform: translateY(24px);

  animation: vnApprovedHeaderIn 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* =========================================================
   LABEL
========================================================= */

.vn-approved-projects-label {
  margin-bottom: 17px;

  color: #b99051;

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

  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;
}

/* =========================================================
   TITLE

   FONT SIZE NOT DEFINED
   Uses your global H1
========================================================= */

.vn-approved-projects-title {
  margin: 0;

  color: #07384a;

  line-height: 1.08;

  letter-spacing: 1px;
}

/* =========================================================
   INTRO

   FONT SIZE NOT DEFINED
   Uses your global P
========================================================= */

.vn-approved-projects-intro {
  margin: 16px 0 0;

  color: #708a93;

  line-height: 1.55;
}

/* =========================================================
   GRID
========================================================= */

.vn-approved-projects-grid {
  display: grid;

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

  gap: 19px;
}

/* =========================================================
   CARD
========================================================= */

.vn-approved-project-card {
  position: relative;

  height: 100%;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid #dce1df;

  border-radius: 0;

  opacity: 0;

  transform: translateY(35px);

  animation: vnApprovedCardIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;

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

/* STAGGER */

.vn-approved-project-card:nth-child(1) {
  animation-delay: 0.15s;
}

.vn-approved-project-card:nth-child(2) {
  animation-delay: 0.28s;
}

/* =========================================================
   CARD HOVER
========================================================= */

.vn-approved-project-card:hover {
  transform: translateY(-5px);

  border-color: #cbd3d1;

  box-shadow: 0 18px 40px rgba(8, 48, 60, 0.09);
}

/* =========================================================
   IMAGE
========================================================= */

.vn-approved-project-image {
  width: 100%;

  height: 265px;

  overflow: hidden;

  background: #edf0ed;
}

.vn-approved-project-image img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.vn-approved-project-card:hover .vn-approved-project-image img {
  transform: scale(1.045);
}

/* =========================================================
   IMAGE LIGHT SWEEP
========================================================= */

.vn-approved-project-image::after {
  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 55%;

  height: 100%;

  pointer-events: none;

  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );

  transform: skewX(-18deg);

  transition: left 0.9s ease;
}

.vn-approved-project-card:hover .vn-approved-project-image::after {
  left: 140%;
}

/* =========================================================
   CONTENT
========================================================= */

.vn-approved-project-content {
  flex: 1;

  display: flex;

  flex-direction: column;

  padding: 29px 22px 22px;

  background: #ffffff;

  box-sizing: border-box;
}

/* =========================================================
   CATEGORY
========================================================= */

.vn-approved-project-category {
  margin-bottom: 10px;

  color: #537a80;

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

  font-weight: 600;
  font-size: 16px;

  letter-spacing: 2.3px;

  text-transform: uppercase;
}

/* =========================================================
   PROJECT NAME

   FONT SIZE NOT DEFINED
   Uses your global H3
========================================================= */

.vn-approved-project-name {
  margin: 0;

  color: #123e4d;

  line-height: 1.15;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.vn-approved-project-card:hover .vn-approved-project-name {
  color: #0b5368;

  transform: translateX(2px);
}

/* =========================================================
   LOCATION
========================================================= */

.vn-approved-project-location {
  margin-top: 3px;

  color: #91a0a4;

  font-family: "Roboto", sans-serif;
}

/* =========================================================
   DESCRIPTION

   FONT SIZE NOT DEFINED
   Uses your global P
========================================================= */

.vn-approved-project-description {
  max-width: 650px;

  margin: 11px 0 0;

  color: #789098;

  line-height: 1.55;
}

/* =========================================================
   ENQUIRE
========================================================= */

.vn-approved-project-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: auto;

  padding-top: 20px;

  color: #246074;

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

  font-weight: 600;

  text-decoration: none;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.vn-approved-project-link span {
  display: inline-block;

  transition: transform 0.3s ease;
}

.vn-approved-project-link:hover {
  color: #b68d50;

  gap: 12px;
}

.vn-approved-project-link:hover span {
  transform: translateX(3px);
}

/* =========================================================
   BOTTOM GOLD LINE
========================================================= */

.vn-approved-project-card::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 2px;

  background: linear-gradient(90deg, #b99051, #d5b77e, #b99051);

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.5s ease;

  z-index: 5;
}

.vn-approved-project-card:hover::before {
  transform: scaleX(1);
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes vnApprovedHeaderIn {
  from {
    opacity: 0;

    transform: translateY(24px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes vnApprovedCardIn {
  from {
    opacity: 0;

    transform: translateY(35px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .vn-approved-projects {
    padding: 28px 25px 55px;
  }

  .vn-approved-projects-inner {
    padding: 0;
  }

  .vn-approved-projects-header {
    margin-bottom: 42px;
  }

  .vn-approved-projects-break {
    display: none;
  }

  .vn-approved-project-image {
    height: 240px;
  }
}

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

@media (max-width: 767px) {
  .vn-approved-projects {
    padding: 22px 18px 50px;
  }

  .vn-approved-projects-inner {
    padding: 0;
  }

  .vn-approved-projects-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .vn-approved-projects-header {
    margin-bottom: 35px;
  }

  .vn-approved-project-image {
    height: 235px;
  }

  .vn-approved-project-content {
    padding: 26px 22px 23px;
  }
}

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

@media (max-width: 480px) {
  .vn-approved-projects-inner {
    padding: 0;
  }

  .vn-approved-project-image {
    height: 220px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .vn-approved-projects-header,
  .vn-approved-project-card {
    opacity: 1;

    transform: none;

    animation: none;
  }

  .vn-approved-project-image img {
    transition: none;
  }
}

/* ==================business-investmeny.php================= */
/* =========================================
   SUPPORT SECTION
========================================= */

.support-section {
  width: 100%;
  padding: 50px 0 30px;
  position: relative;
}

/* =========================================
   CONTAINER
========================================= */

.support-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* =========================================
   CARD
========================================= */

.support-card {
  padding: 25px 24px;

  display: flex;
  align-items: center;
  gap: 18px;

  background: #ffffff;

  border: 1px solid #e1e8e9;
  border-radius: 15px;

  box-shadow: 0 8px 20px rgba(13, 47, 64, 0.08);

  transition: all 0.25s ease;
}

/* =========================================
   ICON
========================================= */

.support-icon {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

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

  background: #e2f4f0;

  border-radius: 12px;

  color: #08766d;

  font-size: 22px;
}

/* =========================================
   TEXT
========================================= */

.support-card p {
  margin: 0;

  color: #082f45;

  font-weight: 500;

  line-height: 1.35;
}

/* =========================================
   HOVER
========================================= */

.support-card:hover {
  transform: translateY(-3px);

  border-color: #cbdede;

  box-shadow: 0 12px 28px rgba(13, 47, 64, 0.11);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .support-container {
    max-width: 800px;
    gap: 16px;
  }

  .support-card {
    padding: 17px 20px;
  }

  /* 
    .support-card p {
        font-size: 12px;
    } */
}

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

@media (max-width: 767px) {
  .support-container {
    grid-template-columns: 1fr;
    gap: 12px;

    padding: 0 18px;
  }

  .support-card {
    min-height: 76px;

    padding: 16px 18px;

    border-radius: 13px;

    gap: 14px;
  }

  .support-icon {
    width: 32px;
    height: 32px;

    flex-basis: 32px;

    border-radius: 10px;

    font-size: 14px;
  }

  /* .support-card p {
        font-size: 12px;
        line-height: 1.4;
    } */
}

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

@media (max-width: 400px) {
  .support-container {
    padding: 0 14px;
  }

  .support-card {
    padding: 14px;
    gap: 12px;
  }

  .support-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

/* =========================================
   SECTORS SECTION
========================================= */

.sectors-section {
  width: 100%;
  padding: 50px 0 64px;
  overflow: hidden;
}

.sectors-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   HEADING
========================================= */

.sectors-container h2 {
  margin: 0 0 34px;

  color: #10283d;

  font-weight: 700;

  line-height: 1.2;
  letter-spacing: 1px;
}

/* =========================================
   GRID
========================================= */

.sectors-grid {
  display: grid;

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

  gap: 15px 16px;
}

/* =========================================
   CARD
========================================= */

.sector-card {
  padding: 16px 18px;

  display: flex;
  align-items: center;

  gap: 14px;

  background: #ffffff;

  border: 1px solid #dfe7e9;
  border-radius: 14px;

  color: #10283d;

  font-size: 18px;
  font-weight: 600;

  box-shadow: 0 10px 22px rgba(20, 52, 66, 0.07);

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

/* =========================================
   ICON
========================================= */

.sector-icon {
  width: 20px;
  height: 20px;

  flex: 0 0 20px;

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

  color: #249c8d;

  font-size: 22px;
}

/* =========================================
   HOVER
========================================= */

.sector-card:hover {
  transform: translateY(-3px);

  border-color: #bcdfe0;

  box-shadow: 0 14px 28px rgba(20, 52, 66, 0.11);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .sectors-section {
    padding: 48px 0 55px;
  }

  .sectors-container {
    max-width: 760px;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
  }
}

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

@media (max-width: 600px) {
  .sectors-section {
    padding: 40px 0 45px;
  }

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

  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }
}

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

@media (max-width: 400px) {
  .sectors-section {
    padding: 35px 0 40px;
  }

  .sectors-container {
    padding: 0 14px;
  }
}

/* ================================
   BUSINESS PROCESS SECTION
================================ */

.business-process-section {
  width: 100%;
  background: #092641;
  padding: 32px 0 55px;
  overflow: hidden;
}

/* ================================
   TOP 3 COLUMNS
================================ */

.business-process-row {
  margin: 0 -12px;
}

.process-item {
  position: relative;
  padding: 20px 20px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 155px;
}

/* Number */

.process-number {
  display: block;
  margin-bottom: 13px;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--primary-color);
}

/* Heading */

.process-item h3 {
  margin: 0 0 12px;

  line-height: 1.3;
  font-weight: 500;

  color: #ffffff;
}

/* Description */

.process-item p {
  max-width: 310px;
  margin: 0;

  line-height: 1.55;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.62);
}

/* ================================
   INFORMATION BOX
================================ */

.business-info-box {
  width: 100%;
  min-height: 59px;

  margin-top: 20px;
  padding: 16px 21px;

  display: flex;
  align-items: center;
  gap: 16px;

  background: #142f4b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;

  box-sizing: border-box;
}

/* Info Icon */

.info-icon {
  flex: 0 0 auto;

  width: 17px;
  height: 17px;

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

  color: #008fc5;
  font-size: 14px;
}

/* Info Text */

.business-info-box p {
  margin: 0;

  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

/* ================================
   CONSULTATION BUTTON
================================ */

.business-consultation {
  margin-top: 32px;
}

.consultation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 13px 25px;

  background: #ffffff;
  border-radius: 20px;

  text-decoration: none;

  font-weight: 500;

  color: var(--secondary-color);

  transition: all 0.3s ease;
}

.consultation-btn span {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.consultation-btn:hover {
  background: #20ad9f;
  color: #ffffff;
}

.consultation-btn:hover span {
  transform: translateX(3px);
}

/* ================================
   TABLET
================================ */

@media (max-width: 991px) {
  .business-process-section {
    padding: 30px 0 50px;
  }

  .process-item {
    padding: 18px 14px 22px;
  }

  .business-info-box {
    margin-top: 15px;
  }
}

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

@media (max-width: 767px) {
  .business-process-section {
    padding: 25px 0 40px;
  }

  .business-process-row {
    margin: 0;
  }

  .process-item {
    min-height: auto;
    padding: 20px 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .business-info-box {
    margin-top: 18px;
    padding: 15px;
    gap: 12px;
    border-radius: 12px;
    align-items: flex-start;
  }

  .business-info-box p {
    font-size: 10px;
  }

  .business-consultation {
    margin-top: 25px;
  }

  .consultation-btn {
    height: 36px;
    min-width: 185px;
    font-size: 10px;
  }
}

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

@media (max-width: 480px) {
  .business-process-section {
    padding: 20px 0 35px;
  }

  .process-item {
    padding: 18px 0;
  }

  .business-info-box {
    padding: 14px;
  }

  .consultation-btn {
    width: 100%;
    max-width: 220px;
  }
}

/* ==========================================
   TAX / ATTRACTIVE SECTION
========================================== */

.tax-section {
  width: 100%;
  padding: 42px 0 55px;

  overflow: hidden;
}

/* 
.tax-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
    padding: 0 20px;
} */

/* ==========================================
   HEADER
========================================== */

.tax-header {
  margin-bottom: 31px;
}

.tax-header h2 {
  margin: 0 0 9px;

  color: var(--secondary-color);

  font-weight: 700;

  line-height: 1.12;
  letter-spacing: 1px;
}

.tax-header p {
  margin: 0;

  color: #70818c;

  font-weight: 400;

  line-height: 1.4;
}

/* ==========================================
   CARDS GRID
========================================== */

.tax-grid {
  display: grid;

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

  gap: 17px;
}

/* ==========================================
   CARD
========================================== */

.tax-card {
  /* min-height: 138px; */

  padding: 30px 25px 30px;

  border: 1px solid #e0e7e9;
  border-radius: 13px;

  box-shadow: 0 10px 25px rgba(20, 50, 65, 0.08);
}

/* Left card */

.attractive-card {
  background: #ffffff;
}

/* Right card */

.costs-card {
  background: #f8faf9;
}

/* ==========================================
   CARD TITLE
========================================== */

.tax-card-title {
  margin-bottom: 17px;

  color: var(--primary-color);

  font-size: 14px;
  font-weight: 700;

  letter-spacing: 2px;
  line-height: 1;

  text-transform: uppercase;
}

.costs-card .tax-card-title {
  color: var(--secondary-color);
}

/* ==========================================
   LIST
========================================== */

.tax-card ul {
  margin: 0;
  padding: 0;

  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 13px;
}

/* ==========================================
   LIST ITEM
========================================== */

.tax-card li {
  display: grid;

  grid-template-columns: 16px 1fr;

  align-items: start;

  gap: 1px;

  color: #334d5d;

  font-size: 16px;
  font-weight: 400;

  line-height: 1.45;
}

/* ==========================================
   CHECK
========================================== */

.check-icon {
  color: #249d8d;

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

  line-height: 1.1;
}

/* ==========================================
   DASH
========================================== */

.dash-icon {
  color: #8c806d;

  font-size: 12px;
  font-weight: 400;

  line-height: 1;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .tax-section {
    padding: 42px 0 50px;
  }

  .tax-container {
    max-width: 800px;
  }

  .tax-card {
    padding: 20px 18px;
  }
}

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

@media (max-width: 767px) {
  .tax-section {
    padding: 38px 0 45px;
  }

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

  .tax-header {
    margin-bottom: 25px;
  }

  .tax-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .tax-card {
    min-height: auto;

    padding: 20px 18px;

    border-radius: 13px;
  }

  .tax-card-title {
    margin-bottom: 16px;
  }

  .tax-card ul {
    gap: 12px;
  }

  .tax-card li {
    grid-template-columns: 18px 1fr;

    line-height: 1.5;
  }

  .check-icon {
    font-size: 11px;
  }
}

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

@media (max-width: 400px) {
  .tax-section {
    padding: 32px 0 40px;
  }

  .tax-container {
    padding: 0 14px;
  }

  .tax-card {
    padding: 18px 15px;
  }
}

/* =======================citizenship.php========= */
/* ==========================================
   PATHWAYS SECTION
========================================== */

.pathways-section {
  width: 100%;
  padding: 50px 0 22px;
  background: #ffffff;
  overflow: hidden;
}

.pathways-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   GRID
========================================== */

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

/* ==========================================
   CARD
========================================== */

.pathway-card {
  min-width: 0;
  min-height: 264px;

  padding: 17px 17px 18px;

  background: #ffffff;

  border: 1px solid #e1e7e9;
  border-radius: 13px;

  box-shadow: 0 8px 20px rgba(15, 45, 60, 0.08);

  display: flex;
  flex-direction: column;

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

/* ==========================================
   ICON
========================================== */

.pathway-icon {
  width: 40px;
  height: 40px;

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

  margin-bottom: 14px;

  background: #e1f4f0;
  border-radius: 9px;

  color: #08776e;

  font-size: 22px;
}

/* ==========================================
   CARD TITLE
========================================== */

.pathway-card h3 {
  margin: 0 0 17px;

  color: #10283d;

  font-size: 20px;
  font-weight: 700;

  line-height: 1.25;
}

/* ==========================================
   INFORMATION
========================================== */

.pathway-info {
  margin-bottom: 12px;
}

.info-label {
  display: block;

  margin-bottom: 5px;

  color: var(--secondary-color);

  font-size: 16px;
  font-weight: 600;

  letter-spacing: 1.8px;
  line-height: 1;

  text-transform: uppercase;
}

.pathway-info p {
  margin-top: 10px;

  color: #637783;

  font-size: 16px;
  font-weight: 400;

  line-height: 1.45;
}

/* ==========================================
   CAUTION BOX
========================================== */

.caution-box {
  margin-top: auto;

  padding: 10px 10px 9px;

  background: #f4f8f9;

  border: 1px solid #e2e9eb;
  border-radius: 10px;
}

.caution-label {
  display: block;

  margin-bottom: 10px;

  color: var(--secondary-color);

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 1px;
  line-height: 1;

  text-transform: uppercase;
}

.caution-box p {
  margin: 0;

  color: #627682;

  font-size: 14px;

  line-height: 1.4;
}

/* ==========================================
   HOVER
========================================== */

.pathway-card:hover {
  transform: translateY(-3px);

  border-color: #c9dedf;

  box-shadow: 0 14px 28px rgba(15, 45, 60, 0.11);
}

/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {
  .pathways-container {
    max-width: 1250px;
  }

  .pathways-grid {
    gap: 20px;
  }

  .pathway-card {
    min-height: 290px;
    padding: 20px;
  }
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .pathways-section {
    padding: 35px 0;
  }

  .pathways-container {
    max-width: 800px;
  }

  .pathways-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .pathway-card {
    min-height: 275px;
  }
}

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

@media (max-width: 767px) {
  .pathways-section {
    padding: 30px 0 40px;
  }

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

  .pathways-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pathway-card {
    min-height: auto;

    padding: 18px;

    border-radius: 14px;
  }

  .pathway-info {
    margin-bottom: 14px;
  }

  .caution-box {
    margin-top: 4px;
    padding: 11px;
  }
}

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

@media (max-width: 400px) {
  .pathways-container {
    padding: 0 14px;
  }

  .pathway-card {
    padding: 16px;
  }
}

/* =========================================
           CITIZENSHIP BENEFITS SECTION
           ========================================= */

.vn-citizenship-benefits {
  width: 100%;

  background: #f7fafb;

  padding: 8px 50px 34px;

  overflow: hidden;

  box-sizing: border-box;
}

.vn-citizenship-benefits-inner {
  width: 100%;

  max-width: 1300px;

  margin: 50px auto;

  padding: 0 19px;

  box-sizing: border-box;
}

/* =========================================
           HEADER
           ========================================= */

.vn-citizenship-benefits-header {
  margin-bottom: 42px;

  opacity: 0;

  transform: translateY(22px);

  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.vn-citizenship-benefits-header.vn-benefits-show {
  opacity: 1;

  transform: translateY(0);
}

.vn-citizenship-benefits-title {
  margin: 0;

  color: #10283a;

  line-height: 1.15;
}

.vn-citizenship-benefits-subtitle {
  margin: 10px 0 0;

  color: #71858f;

  line-height: 1.5;
}

/* =========================================
           GRID
           ========================================= */

.vn-citizenship-benefits-grid {
  display: grid;

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

  gap: 18px;
}

/* =========================================
           CARD
           ========================================= */

.vn-citizenship-benefit-card {
  position: relative;

  min-height: 144px;

  padding: 20px 22px 18px;

  background: #ffffff;

  border: 1px solid #dce5e8;

  border-radius: 17px;

  box-sizing: border-box;

  opacity: 0;

  transform: translateY(35px) scale(0.985);

  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;

  overflow: hidden;
}

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

.vn-citizenship-benefit-card.vn-benefits-show {
  opacity: 1;

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

.vn-citizenship-benefit-card:nth-child(1) {
  transition-delay: 0.05s;
}

.vn-citizenship-benefit-card:nth-child(2) {
  transition-delay: 0.12s;
}

.vn-citizenship-benefit-card:nth-child(3) {
  transition-delay: 0.19s;
}

.vn-citizenship-benefit-card:nth-child(4) {
  transition-delay: 0.26s;
}

.vn-citizenship-benefit-card:nth-child(5) {
  transition-delay: 0.33s;
}

.vn-citizenship-benefit-card:nth-child(6) {
  transition-delay: 0.4s;
}

/* =========================================
           HOVER
           ========================================= */

.vn-citizenship-benefit-card:hover {
  border-color: #bcdce5;

  box-shadow: 0 14px 32px rgba(12, 57, 72, 0.09);

  transform: translateY(-5px);
}

/* =========================================
           TOP LINE
           ========================================= */

.vn-citizenship-benefit-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 18px;

  right: 18px;

  height: 2px;

  background: linear-gradient(90deg, transparent, #159b82, transparent);

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.45s ease;
}

.vn-citizenship-benefit-card:hover::before {
  transform: scaleX(1);
}

/* =========================================
           ICON
           ========================================= */

.vn-citizenship-benefit-icon {
  width: 25px;

  height: 25px;

  margin-bottom: 13px;

  color: #159b82;

  transition: transform 0.35s ease;
}

.vn-citizenship-benefit-icon svg {
  width: 100%;

  height: 100%;

  stroke: currentColor;

  stroke-width: 1.7;

  stroke-linecap: round;

  stroke-linejoin: round;
}

.vn-citizenship-benefit-card:hover .vn-citizenship-benefit-icon {
  transform: translateY(-2px) scale(1.08);
}

/* =========================================
           CARD TITLE
           ========================================= */

.vn-citizenship-benefit-card h3 {
  margin: 0 0 9px;

  color: #112d42;

  line-height: 1.25;

  transition: color 0.3s ease;
}

.vn-citizenship-benefit-card:hover h3 {
  color: #087b72;
}

/* =========================================
           DESCRIPTION
           ========================================= */

.vn-citizenship-benefit-card p {
  margin: 0;

  color: #758994;

  line-height: 1.5;
}

/* =========================================
           TABLET
           ========================================= */

@media (max-width: 991px) {
  .vn-citizenship-benefits {
    padding: 10px 0 45px;
  }

  .vn-citizenship-benefits-inner {
    padding: 0 25px;
  }

  .vn-citizenship-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 17px;
  }
}

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

@media (max-width: 767px) {
  .vn-citizenship-benefits {
    padding: 10px 0 40px;
  }

  .vn-citizenship-benefits-inner {
    padding: 0 18px;
  }

  .vn-citizenship-benefits-header {
    margin-bottom: 30px;
  }

  .vn-citizenship-benefits-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .vn-citizenship-benefit-card {
    min-height: auto;

    padding: 21px 20px;
  }
}

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

@media (max-width: 480px) {
  .vn-citizenship-benefits-inner {
    padding: 0 14px;
  }
}

/* =========================================
           REDUCED MOTION
           ========================================= */

@media (prefers-reduced-motion: reduce) {
  .vn-citizenship-benefits-header,
  .vn-citizenship-benefit-card {
    opacity: 1;

    transform: none;

    transition: none;
  }
}

/* =======================footer floating======================== */
/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 100px;
  width: 45px;
  height: 45px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Back To Top */
.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 40px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 575px) {
  .whatsapp-btn {
    right: 15px;

    bottom: 75px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ===========conatct.php=========== */
/* =========================================
   PROJECT ENQUIRY SECTION
========================================= */

.project-enquiry-section {
  /* width: 100%; */
  padding: 50px 20px;
  background: #f5f7fb;
}

/* =========================================
   LEFT CONTENT
========================================= */

/* .project-enquiry-content {
    padding-right: 65px;
} */

.project-enquiry-label {
  display: block;
  margin-bottom: 14px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;

  color: var(--primary-color);
  text-transform: uppercase;
}

.project-enquiry-title {
  margin: 0 0 18px;

  /* line-height: 1.04; */
  font-weight: 800;

  color: #172033;
}

.project-enquiry-description {
  max-width: 300px;
  margin: 0 0 39px;

  /* font-size: 11px; */
  line-height: 1.75;

  color: #7b8495;
}

/* =========================================
   CONTACT INFORMATION
========================================= */

.project-enquiry-contact {
  display: flex;
  align-items: flex-start;

  margin-bottom: 24px;
}

.project-enquiry-line {
  width: 2px;
  min-width: 2px;
  height: 32px;

  margin-right: 14px;

  background: var(--navy-blue);
}

.project-enquiry-contact-content {
  display: flex;
  flex-direction: column;
}

.project-enquiry-contact-icon {
  width: 30px;

  margin-right: 12px;

  color: #20ad9f;

  font-size: 24px;

  line-height: 1.2;

  text-align: center;
}

.project-enquiry-info-title {
  margin-bottom: 5px;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;

  color: var(--primary-color);
}

.project-enquiry-contact-content a,
.project-enquiry-contact-content strong,
.project-enquiry-contact-value {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;

  color: #000;
  text-decoration: none;
}

.project-enquiry-contact-content small {
  margin-top: 2px;

  font-size: 14px;

  color: #7b8495;
}

@media (max-width: 768px) {
  .project-enquiry-contact-content a,
  .project-enquiry-contact-content strong,
  .project-enquiry-contact-value {
    font-size: 14px;
  }
}

/* =========================================
   FORM CARD
========================================= */

.project-enquiry-form {
  width: 90%;
  margin: 0 auto;
  padding: 40px 37px 36px;

  background: #ffffff;

  box-shadow: 0 12px 30px rgba(24, 42, 70, 0.07);
}

@media (max-width: 768px) {
  .project-enquiry-form {
    padding: 40px 20px 36px;

    width: 100%;
  }
}

.project-enquiry-form-title {
  margin: 0 0 28px;

  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;

  color: #172033;
}

/* =========================================
   FORM FIELDS
========================================= */

.project-enquiry-field {
  margin-bottom: 14px;
}

.project-enquiry-field label {
  display: block;

  margin-bottom: 9px;

  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;

  color: #596477;
}

.project-enquiry-input {
  display: block;

  width: 100%;

  padding: 11px 12px;
  border: 0.8px solid #0000001f;
  border-radius: 3px;

  background: #f4f6fa;

  font-size: 14px;

  color: #172033;

  box-shadow: none;
  outline: none;

  transition: all 0.3s ease;
}

.project-enquiry-input::placeholder {
  color: #969eac;
}

.project-enquiry-input:focus {
  border-color: var(--navy-blue);

  background: #ffffff;

  box-shadow: none;
  outline: none;
}

.project-enquiry-textarea {
  height: 81px;

  padding-top: 10px;

  resize: none;
}

/* =========================================
   BUTTON
========================================= */

.project-enquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  /* width: 138px; */
  /* height: 40px; */

  margin-top: 4px;
  padding: 13px 55px;

  border: 0;
  border-radius: 2px;

  background: var(--secondary-color);

  color: #ffffff;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;

  cursor: pointer;

  transition: all 0.3s ease;
}

.project-enquiry-button span {
  font-size: 14px;
  line-height: 1;
}

.project-enquiry-button:hover {
  background: #004b88;

  transform: translateY(-1px);
}

.sc-floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sc-floating-btn {
  width: 45px;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 50%;

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

  text-decoration: none;
  cursor: pointer;

  font-size: 25px;
  color: #ffffff;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.16),
    0 4px 12px rgba(0, 0, 0, 0.08);

  transition: all 0.35s ease;
}

.sc-whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.sc-call-btn {
  font-size: 20px;
  background: var(--navy-blue);
}

.sc-top-btn {
  background: var(--primary-color);
}

.sc-floating-btn:hover {
  transform: translateY(-4px) scale(1.06);
  color: #ffffff;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.2),
    0 6px 18px rgba(0, 0, 0, 0.12);
}

.sc-whatsapp-btn {
  animation: scPulseWhatsApp 2.5s infinite;
}

@keyframes scPulseWhatsApp {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.35),
      0 8px 24px rgba(0, 0, 0, 0.16);
  }

  70% {
    box-shadow:
      0 0 0 18px rgba(37, 211, 102, 0),
      0 8px 24px rgba(0, 0, 0, 0.16);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 8px 24px rgba(0, 0, 0, 0.16);
  }
}

.sc-top-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.sc-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 575.98px) {
  .sc-floating-contact {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .sc-floating-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/*  ================contact========== */

.contact-map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 991px) {
  .contact-map-section {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .contact-map-section {
    height: 550px;
  }
}

/* Small Mobile */

@media (max-width: 575px) {
  .contact-map-section {
    height: 520px;
  }
}

.footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #e0e7e9;
}

.footer a {
  color: #9bb2b8;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  color: var(--small-heading);
}
