:root {
  --vn-bg: #130031;
  --vn-bg-soft: #f3f7fb;
  --vn-bg-mid: #0d1a2b;
  --vn-surface: #ffffff;
  --vn-surface-dark: rgba(255,255,255,0.06);
  --vn-text: #304154;
  --vn-text-light: rgba(255,255,255,0.78);
  --vn-heading: #091525;
  --vn-accent: #19b7c9;
  --vn-border: rgba(9,21,37,0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--vn-text);
}

.vn-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #130031;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vn-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vn-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.vn-nav a,
.vn-text-link,
.vn-inline-link {
  font-family: "Inter", sans-serif;
}

.vn-nav a {
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  font-weight: 500;
}

.vn-nav a:hover,
.vn-text-link:hover,
.vn-inline-link:hover {
  color: var(--vn-accent);
}

.vn-hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(25,183,201,0.22), transparent 28%),
   
    url('../../assets/img/home-1/hero/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 180px 0 110px;
  overflow: hidden;
}

.vn-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,17,31,0.2), rgba(7,17,31,0.35));
}

.vn-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.vn-hero h1 {
  color: #fff;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 760px;
}

.vn-hero-copy {
  color: var(--vn-text-light);
  font-size: 19px;
  line-height: 1.7;
  max-width: 720px;
  margin-top: 24px;
}

.vn-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.vn-text-link {
  color: #fff;
  font-weight: 600;
}

.vn-hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.vn-hero-metrics div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.vn-hero-metrics strong,
.vn-hero-metrics span {
  display: block;
}

.vn-hero-metrics strong {
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}

.vn-hero-metrics span {
  color: var(--vn-text-light);
  font-size: 14px;
  line-height: 1.6;
}

.vn-hero-card {
  padding: 34px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.vn-card-label,
.vn-role {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #28F99F;
  margin-bottom: 14px;
}

.vn-card-labelx{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #05A4BF;
  margin-bottom: 14px;
}

.vn-hero-card h3,
.vn-person-card h3,
.vn-strategy-card h3 {
  font-size: 28px;
  line-height: 1.2;
}

.vn-hero-card h3,
.vn-hero-card p,
.vn-hero-card li {
  color: #fff;
}

.vn-hero-card p {
  opacity: .82;
  margin-top: 16px;
  line-height: 1.75;
}

.vn-hero-card ul {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.vn-hero-card li {
  position: relative;
  padding-left: 22px;
}

.vn-hero-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vn-accent);
  position: absolute;
  left: 0;
  top: 10px;
}

.vn-section {
  padding: 110px 0;
}

.vn-section-dark {
  background: var(--vn-bg);
}

.vn-section-soft {
  background: var(--vn-bg-soft);
}

.vn-lead,
.vn-section-intro {
  font-size: 19px;
  line-height: 1.75;
}

.vn-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vn-pill-grid span {
  display: inline-flex;
  padding: 12px 16px;
  border: 1px solid var(--vn-border);
  border-radius: 999px;
  background: #fff;
  color: var(--vn-heading);
  font-size: 14px;
  font-weight: 600;
}

.vn-image-block,
.vn-person-card,
.vn-strategy-card,
.vn-form,
.vn-quote-grid blockquote {
  border-radius: 24px;
}

.vn-image-block {
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(8, 20, 36, 0.1);
}

.vn-image-block img,
.vn-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vn-person-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  background: var(--vn-surface-dark);
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
}

.vn-person-photo {
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
}

.vn-person-content h3,
.vn-person-content p,
.vn-inline-link {
  color: #fff;
}

.vn-person-content p {
  opacity: .8;
  line-height: 1.75;
  margin-top: 12px;
}

.vn-inline-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
}

.vn-strategy-card {
  background: #fff;
  border: 1px solid var(--vn-border);
  padding: 30px;
  height: 100%;
  box-shadow: 0 18px 45px rgba(9, 21, 37, 0.06);
}

.vn-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(25,183,201,0.12);
  color: var(--vn-accent);
  margin-bottom: 18px;
}

.vn-strategy-card p {
  margin-top: 14px;
  line-height: 1.75;
}

.vn-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.vn-quote-grid blockquote {
  margin: 0;
  padding: 32px;
  background: var(--vn-bg-mid);
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  line-height: 1.7;
  border: 1px solid rgba(255,255,255,0.08);
}

.vn-quote-grid cite {
  display: block;
  margin-top: 18px;
  color: var(--vn-accent);
  font-style: normal;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vn-location-list {
  display: grid;
  gap: 18px;
}

.vn-location-list div {
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--vn-border);
  box-shadow: 0 14px 36px rgba(9, 21, 37, 0.05);
}

.vn-location-list strong,
.vn-location-list span {
  display: block;
}

.vn-location-list strong {
  margin-bottom: 6px;
  color: var(--vn-heading);
}

.vn-form {
  background: #fff;
  border: 1px solid var(--vn-border);
  box-shadow: 0 18px 50px rgba(9, 21, 37, 0.08);
  padding: 34px;
}

.vn-form label {
  display: block;
  font-weight: 600;
  color: var(--vn-heading);
  margin-bottom: 10px;
}

.vn-form input,
.vn-form textarea {
  width: 100%;
  border: 1px solid rgba(9,21,37,0.14);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--vn-heading);
  background: #fff;
}

.vn-form textarea {
  resize: vertical;
}

.vn-form input:focus,
.vn-form textarea:focus {
  border-color: var(--vn-accent);
  box-shadow: 0 0 0 4px rgba(25,183,201,0.12);
}

.vn-contact-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--vn-bg-soft);
  border: 1px solid var(--vn-border);
  line-height: 1.7;
}

.vn-footer {
  background: var(--vn-bg);
  padding: 28px 0;
}

.vn-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.vn-footer p {
  color: rgba(255,255,255,0.7);
  margin: 0;
}

@media (max-width: 1199px) {
  .vn-person-card {
    grid-template-columns: 1fr;
  }

  .vn-person-photo {
    min-height: 280px;
  }
}

@media (max-width: 991px) {
  .vn-nav {
    display: none;
  }

  .vn-hero {
    padding-top: 150px;
  }

  .vn-hero-metrics,
  .vn-quote-grid {
    grid-template-columns: 1fr;
  }
}

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

  .vn-hero-copy,
  .vn-lead,
  .vn-section-intro,
  .vn-quote-grid blockquote {
    font-size: 17px;
  }

  .vn-form,
  .vn-hero-card,
  .vn-strategy-card {
    padding: 24px;
  }

  .vn-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.vn-plugin-form .wpcf7-form p { margin-bottom: 18px; }
.vn-plugin-form .wpcf7-form-control,
.vn-newsletter-holder input[type="email"],
.vn-newsletter-holder input[type="text"] {
  width: 100%;
  border: 1px solid rgba(9,21,37,0.14);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--vn-heading);
  background: #fff;
}
.vn-plugin-form textarea.wpcf7-form-control { min-height: 180px; }
.vn-plugin-form input:focus,
.vn-plugin-form textarea:focus,
.vn-newsletter-holder input:focus {
  border-color: var(--vn-accent);
  box-shadow: 0 0 0 4px rgba(25,183,201,0.12);
}
.vn-plugin-form .wpcf7-submit,
.vn-newsletter-holder input[type="submit"],
.vn-newsletter-holder button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--theme-color, #05A4BF);
  color: #fff;
  font-weight: 700;
}
.vn-newsletter-holder form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.vn-newsletter-holder form .tnp-field,
.vn-newsletter-holder form p { flex: 1 1 280px; margin: 0; }

/* ================================
   Leadership cards tweak
   Magazine / passport style
================================ */

.vn-person-card {
  display: grid !important;
  grid-template-columns: 130px 1fr !important;
  gap: 28px !important;
  align-items: flex-start !important;
  background: var(--vn-surface-dark);
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
}

.vn-person-photo {
  width: 130px !important;
  max-width: 130px !important;
  min-height: 0 !important;
  height: auto !important;
  border-radius: 16px !important;
  overflow: hidden;
}

.vn-person-photo img {
  width: 130px !important;
  height: 165px !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 16px !important;
  display: block;
}

.vn-person-content {
  min-width: 0;
}

/* Tablet */
@media (max-width: 1199px) {
  .vn-person-card {
    grid-template-columns: 120px 1fr !important;
    gap: 24px !important;
  }

  .vn-person-photo {
    width: 120px !important;
    max-width: 120px !important;
    min-height: 0 !important;
  }

  .vn-person-photo img {
    width: 120px !important;
    height: 152px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .vn-person-card {
    grid-template-columns: 96px 1fr !important;
    gap: 18px !important;
    padding: 22px !important;
  }

  .vn-person-photo {
    width: 96px !important;
    max-width: 96px !important;
    margin-bottom: 0 !important;
  }

  .vn-person-photo img {
    width: 96px !important;
    height: 122px !important;
    border-radius: 12px !important;
  }

  .vn-person-content h3 {
    font-size: 24px;
  }

  .vn-person-content p {
    font-size: 15px;
    line-height: 1.65;
  }
}

.vn-footer-links {
display: flex;
align-items: center;
gap: 24px;
}

.vn-footer-links a {
color: rgba(255,255,255,0.72);
font-size: 14px;
transition: color .25s ease;
}

.vn-footer-links a {
color: #ffffff;
}

@media (max-width: 767px) {
.vn-footer-links {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
}

/* Floating Go To Top */

.vn-floating-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #28f99f;
    color: #130031;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
    transition: all .25s ease;
    line-height: 1;
}

.vn-floating-top:hover {
    transform: translateY(-3px);
    background: #1ef18d;
    color: #130031;
}

.vn-floating-top:visited,
.vn-floating-top:focus,
.vn-floating-top:active {
    color: #130031;
    text-decoration: none;
}

@media (max-width: 767px) {

    .vn-floating-top {
        width: 48px;
        height: 48px;
        font-size: 22px;
        right: 20px;
        bottom: 20px;
    }

}