    .top-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 2rem;
      position: fixed;
      width: 100%;
      top: 0;
      background: white;
      z-index: 1000;
      transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    }

    .top-nav.shrink {
      background: rgba(255, 255, 255, 0.6);
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 0.6rem 2rem;
    }

    .nav-logo {
      flex: 1;
      text-align: center;
    }

    .nav-left,
    .nav-right {
      flex: 1;
    }

    .nav-left {
      text-align: left;
    }
    .nav-right {
      text-align: right;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 1.5rem;
      padding: 0;
      margin: 0;
    }

    .nav-links li a {
      text-decoration: none;
      color: #1d1d1f;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-links li a:hover {
      color: #0077b6;
    }

    .main-logo {
      height: 80px;
      transition: height 0.3s ease;
    }

    .top-nav.shrink .main-logo {
      height: 50px;
    }

    @media (max-width: 768px) {
      .nav-left,
      .nav-right {
        display: none;
      }

      .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        cursor: pointer;
      }

      .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      }
    }
    /* Reset & Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
        Arial, sans-serif;
      background-color: #c8b884;
      background: url("../Assets/Background/TexasCoast.jpg") no-repeat center center fixed;
      background-size: cover;
      color: #1d1d1f;
      line-height: 1.6;
    }

    /* Layout */
.container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  gap: 40px;
  padding-top: 100px;
}
    .left, .right {
      flex: 0 0 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .right {
      align-items: center;
      height: 600px;
    }

    /* Glass Card */
    .glass-card {
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 2rem;
      color: white;
      max-width: 300px;
      margin: 100px auto;
      text-align: center;
    }

    /* Glass Container */
    .glass-container {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 2rem;
      margin: 3rem auto 3rem auto;
      align-self: center;
      max-width: 800px;
      color: #1d1d1f;
      text-align: center;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      min-height: 600px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Logo & Title */
    /*.logo-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      margin-bottom: 20px;
    }
    .logo {
      width: 140px;
      display: block;
      margin: 0 auto 10px;
    }
    h1 {
      font-size: 2.8em;
      font-weight: 600;
      text-align: center;
      margin-bottom: 20px;
    }
    h2 {
      font-weight: 500;
      margin-bottom: 20px;
    } */

    /* Text + Icons */
    .text-content p {
      font-size: 1.1em;
      margin-bottom: 20px;
    }
    .features {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin: 20px auto;
      max-width: 500px;
    }
    .feature {
      background: #fff;
      padding: 20px;
      border-radius: 50%;
      width: 100px;
      height: 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      color: #1d1d1f;
    }
    .feature .icon {
      font-size: 1.6em;
      margin-bottom: 6px;
    }
    .feature .label {
      font-size: 0.75em;
      line-height: 1.2;
    }

    /* model-viewer */
    model-viewer {
      width: 100%;
      display: block;
     /* border-radius: 12px;*/
     /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);*/
    }
    .model-mobile model-viewer {
      height: 300px;
      margin: 20px 0;
    }
    .model-desktop {
      display: none;
    }

    /* Map */
    .map-wrapper {
      background: #fff;
      padding: 60px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto 60px auto;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    .map-wrapper h2 {
      font-size: 1.5em;
      margin-bottom: 20px;
    }
    iframe {
      width: 100%;
      height: 450px;
      border: 0;
      border-radius: 12px;
    }

    /* Slider container */
    .slider-flex-container {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto 60px auto;
      flex-wrap: wrap;
    }
    .slider-section {
      max-width: 48%;
      text-align: center;
    }
    .slider-title {
      font-size: 1.25rem;
      margin-bottom: 10px;
      margin-top: 30px;
    }
    .swiper-container-wrapper {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Swiper styles */
    .swiper {
      width: 100%;
      height: 400px;
      margin: 40px auto;
    }
    .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      aspect-ratio: 16 / 9;
    }
    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }
    .swiper-button-prev,
    .swiper-button-next {
      color: #ffffff;
      text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
      cursor: pointer;
    }

    .coverflow-swiper {
      width: 100%;
      max-width: 100%;
      aspect-ratio: 16 / 9;
      margin-bottom: 40px;
    }
    .coverflow-swiper .swiper-slide {
      aspect-ratio: 16 / 9;
      width: 100%;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    .coverflow-swiper .swiper-slide img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
    }
    .coverflow-prev,
    .coverflow-next {
      color: white;
      text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
      cursor: pointer;
    }

    /* Desktop vs Mobile */
    @media (min-width: 769px) {
      .model-mobile {
        display: none;
      }
      .model-desktop {
        display: block;
      }
      .model-desktop model-viewer {
        height: 100%;
      }
      .slider-flex-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
      }
      .slider-section {
        flex: 1;
        max-width: 48%;
      }
      .coverflow-swiper {
        aspect-ratio: 16 / 9;
        width: 100%;
        max-width: 100%;
      }
      .swiper-slide {
        aspect-ratio: 16 / 9;
      }
      .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
      }
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        padding: 30px 20px;
        padding-top: 100px;
      }
      .right {
        display: none;
      }
      .logo {
        width: 100px;
        margin-bottom: 10px;
      }
      h1 {
        font-size: 2em;
        margin-bottom: 15px;
      }
      .text-content,
      .text-content .features {
        text-align: center;
      }
      .slider-flex-container {
        flex-direction: column;
        align-items: center;
      }
      .slider-section {
        max-width: 90%;
        text-align: center;
      }
      .coverflow-swiper {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        margin-bottom: 40px;
      }
      .swiper-slide {
        width: 100%;
        padding-top: 56.25%; /* 16:9 ratio */
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }
      .swiper-slide img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
      }
      .slider-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
        margin-top: 30px;
      }
    }

    .hamburger {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
        .glass-container {
            margin-top: 50px; /* push it down below the nav */
          }
        .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        position: absolute;
        top: 56px;
        right: 20px;
        width: 180px;
        padding: 1rem;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        z-index: 999;
      }

      .nav-links.active {
        display: flex;
      }

      .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        cursor: pointer;
      }
    }
