* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -webkit-transform: translateZ(0); /* triggers GPU compositing */
  backface-visibility: hidden;
}
/* Hero */
.hero {
  height: 610vh;
  background: url("image copy.png") center center / cover no-repeat;
}

.navbar {
  display: flex;
  justify-content: space-between;

  align-items: center;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2vw;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 0.5rem 0;
}

/* .nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f16529;
  transition: width 0.3s ease;
  transform-origin: left;
} */

.nav-links a:hover {
  color: #f16529;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Performance optimizations */

a {
  text-decoration: none;
}

@font-face {
  font-family: "Open Sans";
  src: url("open-sans-v43-latin-regular.woff2");
}

@font-face {
  font-family: "cardo";
  src: url("fonts/Cardo-Regular.woff2");
}

.hero {
  position: relative;
  height: 610px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Navbar */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.5vh; /* Matches header height from index.html */
  padding: 2vw 1.5vw;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between; /* Nav links left, logo right */
  align-items: center;
  gap: 0vw;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2vw;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: #fff;
  font-size: 1.3vw !important;
  font-family: "Open Sans";
  font-weight: 300 !important;
  line-height: normal;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover {
  color: #f16529;
}

.nav-links a:hover::after {
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
  padding-right: 0; /* Reset if any */
  margin-right: -5.3vw;
  padding-top: 2.5vw;
}

.logo img {
  width: 25.5vw;
  height: 7.5vh;
  object-fit: contain;
  display: block;
}

/* Intro */

.btn-meet:hover {
  color: #f16529;
  transition: color 0.3s ease, background 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Dropdown container */

/* Dropdown links */

.regulatory-content {
  height: auto;
  padding: 100px 10vw 60px;
  background-size: cover;
  font-family: "Open Sans", sans-serif;
}

.regulatory-content h2 {
  text-align: center;
  font-size: 2.1vw;
  font-weight: 400 !important;
  color: #1d1d1d;
  margin-bottom: 50px;
}

.regulatory-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  gap: 0px;
  margin-bottom: 10vw;
}

.regulatory-left,
.regulatory-right {
  width: 48%;
  min-width: auto;
  font-size: 1vw;
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  color: #111;
  line-height: 1.5vw !important;
}

.regulatory-left p {
  margin-bottom: 1vw;
}

.regulatory-right p {
  margin-bottom: 1vw;
}

.regulatory-left a,
.regulatory-right a {
  color: blue;
  text-decoration: underline;
}

.footer-links {
  text-align: center;
  font-size: 0.8vw;
  color: #222;
  margin-top: 10vw !important;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  margin: 0 5px;
}
/* final footer */
.site-footer {
  display: flex;
  height: 30vh;
  background-color: #00083e;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  align-items: stretch; /* stretch footer-inner to full height */
  padding: 0; /* remove extra vertical padding */
}

.footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* push nav to center and copy to bottom */
  padding: 0 4vw;
  width: 100%;
  height: 100%; /* this is critical */
  box-sizing: border-box;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1vw;
  flex-wrap: nowrap;
  height: 100%;
}

.footer-flex a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1vw;
  white-space: nowrap;
}

.footer-flex a:hover {
  text-decoration: none;
  color: #f16529;
}

.footer-copy {
  padding-bottom: 2vw;
  text-align: right;
  font-size: 0.85rem;
  color: #ccc;
  margin: 0;
}

.hero {
  position: relative;
  width: 100vw;
  height: 610px !important;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

/* media queries to manage ipad resolution */
@media screen and (min-width: 768px) and (max-width: 1366px) {
  /* Navbar */
  .nav-links a,
  .dropdown-toggle {
    font-size: 1.8vw !important;
  }

  .logo {
    margin-right: 0;
    padding-top: 2vw;
  }

  .logo img {
    width: 25vw;
  }

  /* Hero */
  .hero {
    height: 500px !important;
    background-position: center;
    background-size: cover;
  }

  /* Heading */
  .regulatory-content h2 {
    font-size: 3.6vw;
    margin-bottom: 6vw;
    line-height: 4.8vw;
  }

  .regulatory-content {
    padding: 10vw 6vw;
  }

  /* Layout */
  .regulatory-wrapper {
    flex-direction: column;
    gap: 4vw;
    max-width: 100%;
  }

  .regulatory-left,
  .regulatory-right {
    width: 100%;
    font-size: 2.2vw;
    line-height: 3.2vw !important;
  }

  .regulatory-left p,
  .regulatory-right p {
    margin-bottom: 3vw;
  }

  .footer-links {
    font-size: 1.6vw;
    margin-top: 8vw !important;
  }

  /* Footer */
  .footer-flex a {
    font-size: 1.8vw;
  }

  .footer-copy {
    font-size: 1.4vw;
  }
}
