  body { 
        font-family: 'EB Garamond', serif; margin:0; 
        background: rgba(0, 0, 0, 0.28);
    }

    /* Top nav area */
    .topbar {
      height: 125px;
      display:flex;
      align-items:center;
      background:#191818;
     
      border-bottom: 1px solid rgba(0,0,0,0.08);
      padding: 10px 50px;
    }
    .brand-logo {
      width:150px;
      height: auto;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    /* Nav links */
    .nav-links {
      margin-left: auto;
      display:flex;
      align-items:center;
      gap:35px;
    }
    .nav-links a {
      text-decoration: none;
      color:white;
      font-weight:500;
      letter-spacing: .2px;
      padding-bottom:8px;
      position:relative;
      font-size: 1.3rem;
    }
    .nav-links a.active::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      height:2px;
      background:white;
      transform:scaleX(1);
    }
    .nav-links a::after{ transform:scaleX(0); transform-origin:left; transition:transform .2s ease; }
    .nav-links a:hover::after{ transform:scaleX(1); }

    /* Hamburger (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-left: auto;
}

/* Side menu (off-canvas) */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px; /* hidden outside screen */
  width: 300px;
  height: 100%;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  transition: right 0.3s ease;
  z-index: 2000;
}

/* Open state */
.side-menu.active {
  right: 0;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Menu links */
.menu-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 1.2rem;
}

.menu-content a {
  color: white;
  text-decoration: none;
}

.menu-content a:hover {
  text-decoration: underline;
}

/* Responsive: show hamburger, hide desktop nav */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

    /* Hero */
    .hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-start;   /* move content up */
  justify-content: flex-start; /* move content left */
  text-align: left;
  padding: 60px 40px;  /* spacing from top & left */
  overflow: hidden;
}

    /* dark overlay to make text readable */
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background: rgba(0,0,0,0.28);
      z-index:1;
    }
    .hero .title-wrap{
      position:relative;
      z-index:2;
      color: goldenrod;
      width:100%;
      padding: 0 20px;
      
    }
    .hero h1{
      font-family: 'EB Garamond', serif;
      font-weight:200;
      font-size:66px;
    
      margin:0;
      letter-spacing:2px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.25);
    }
    @media (max-width: 992px){
      .hero { height:420px; }
      .hero h1 { font-size:48px; }
    }
    @media (max-width: 576px){
      .topbar { padding: 8px 16px; }
      .nav-links { display:none; } /* keep simple for mobile */
      .brand-logo img { width:90px; }
      .hero { height:360px; }
      .hero h1 { font-size:34px; }
    }

    /* white curved section below hero */
    .hero-svg {
      display:block;
      position:relative;
      z-index:3;
      margin-top: -4px; /* overlap */
    }

    /* the content area under the curve */
    .below-hero {
  margin-top: 20px;
  border-radius: 30px; /* all 4 corners rounded equally */
  color: white;
  background-color: rgb(15, 15, 15);
  
  padding: 50px 50px 50px 50px;
  text-align: center;
  font-family: 'EB Garamond', serif;
}

   
    .below-hero h4 {
      
      line-height: 1.8;
      margin-bottom:12px;
    }
    .below-hero p {
      color: #444;
      font-size:20px;
      margin-bottom:0;
    }

      /* Thumbnail effects */
  .thumb {
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
    opacity: 0.5; /* dim by default */
  }
  .thumb:hover {
    transform: scale(1.05);
  }
  .thumb.active-thumb {
    opacity: 1; /* highlight active */
    border: 2px solid black;
  }

  /* Optional: style for arrows */
  .btn-outline-dark {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 0;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

    .shadow-sm {
    box-shadow: 0 0 20px rgba(0,0,0,0.08) !important;
  }

  .ratio video {
    object-fit: cover;
  }

  .testimonial-btn {
    background: #000;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease;
  }
  .testimonial-btn:hover {
    background: #333;
  }

  /* Fade In Base */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* When element is visible */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.card-title {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
}

.card h6 {
  font-weight: 600;
}

.card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}


.terms-section {
  background: black; /* You can change this to match your theme */
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  border: 2px solid gold;
  color: gold;
  padding: 50px 30px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}