  /* Custom Navbar */
  .custom-navbar {
      background-color: rgba(36, 34, 30, 0.95);
      backdrop-filter: blur(10px);
      padding: 10px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
  }

  .custom-navbar .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      color: #fff;
      letter-spacing: 1px;
  }

  .custom-navbar .hotel-name {
      color: #d4af37;
      /* Gold accent */
      margin-left: 8px;
      text-transform: uppercase;
  }

  .custom-navbar .nav-logo {
      height: 45px;
      width: auto;
      border-radius: 4px;
  }

  .custom-navbar .nav-link {
      color: rgba(255, 255, 255, 0.8) !important;
      font-size: 1.05rem;
      margin-left: 15px;
      transition: all 0.3s ease;
      position: relative;
  }

  .custom-navbar .nav-link:hover,
  .custom-navbar .nav-link.active {
      color: #d4af37 !important;
  }

  .custom-navbar .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 2px;
      left: 0;
      background-color: #d4af37;
      transition: width 0.3s ease;
  }

  .custom-navbar .nav-link:hover::after,
  .custom-navbar .nav-link.active::after {
      width: 100%;
  }

  .custom-navbar .navbar-toggler {
      border: none;
      box-shadow: none;
  }

  .custom-navbar .navbar-toggler-icon {
      filter: invert(1);
  }

  body {
      font-family: 'Poppins', sans-serif;
  }

  /* HERO */
  .about-hero {
      height: 70vh;
      background: url("../images/about2.jpeg") center/cover no-repeat;
      position: relative;
  }

  .about-hero::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, .5);
  }

  .fade-in {
      animation: fadeIn 1.5s ease forwards;
      opacity: 0;
  }

  .fade-in-delay {
      animation: fadeIn 1.5s ease .3s forwards;
      opacity: 0;
  }

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

  /* Fade Up */
  .fade-up {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp .9s ease forwards;
  }

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

  /* Parallax */
  .parallax-section {
      height: 50vh;
      background: url("../images/about3.jpg") center/cover fixed no-repeat;
  }

  /* Highlights */
  .highlight-box {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
      transition: .3s;
  }

  .highlight-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
  }

  /* Counters */
  .counter-section {
      background: #222;
  }

  .counter {
      font-size: 48px;
      font-weight: bold;
  }

  /* Team */
  .team-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
      padding-bottom: 25px;
  }

  .team-img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
  }

  .text-clo {
      color: #111;
  }