   :root {
      --primary-color: #ff0000;
      --text-color: #fe0101fb;
      --background-color: #fff;
      --golden: #FFD700;
    }

    body {
      background-color: var(--background-color);
      color: var(--text-color);
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
    }

    /* Navbar */
    .navbar {
      transition: top 0.4s;
      background-color: #fff !important;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 9999;
    }

    .navbar .nav-link,
    .navbar .navbar-brand {
      color: var(--text-color) !important;
      font-weight: 700;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
    }

    .dropdown-menu {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      padding: 8px 0;
      min-width: 180px;
      z-index: 1000;
    }

    .dropdown-menu a {
      display: block;
      color: red !important;
      padding: 10px 20px;
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: all 0.3s ease;
    }

    .dropdown-menu a:hover {
      background-color: #fff1f1;
      color: #b30000 !important;
      padding-left: 28px;
    }

    .navbar-nav .nav-link {
      color: red !important;
      font-weight: 500;
      padding: 10px 14px;
    }

    .navbar-nav .nav-link:hover {
      color: #b30000 !important;
    }

    .navbar-nav .nav-link.active {
      color: #b30000 !important;
      font-weight: 600;
    }

    .logo {
      height: 80px;
    }

    .navbar-toggler {
      border-color: red;
      font-size: 24px;
    }


    .custom-toggler-icon {
      font-size: 24px;
      color: var(--primary-color);
    }

    .custom-toggler-icon.cross {
      font-size: 28px;
      color: var(--primary-color);
    }

    @media (max-width: 991px) {}
      .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
      }

 
      /* ------- */

    .page-header {
      background-color: transparent;
      color: var(--text-color);
      padding: 20px 0 40px;
      text-align: center;
      font-weight: bold;
    }

    .page-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: bold;
    }

    .about-section {
      padding: 10px 0;
    }

    .about-section h2 {
      color: var(--primary-color);
      font-weight: bold;
      margin-bottom: 20px;
    }

    .about-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      padding-top: 90px;
    }

    /* Footer */
    .footer {
      background-color: #212529;
      color: white;
      padding: 2rem 0;
      text-align: center;
    }

    .footer i {
      margin: 0 10px;
      color: #fff;
      transition: 0.3s;
    }

    .footer i:hover {
      color: var(--golden);
    }
    /* ---- */

    .fixed-icons {
      position: fixed;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .fixed-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      text-decoration: none;
      font-size: 24px;
      transition: transform 0.2s;
    }

    .fixed-icons a.whatsapp {
      background-color: #25D366;
    }

    .fixed-icons a.call {
      background-color: #FF6F00;
    }

    .fixed-icons a:hover {
      transform: scale(1.1);
    }

    .timeline li {
      border-left: 3px solid var(--golden);
      padding-left: 15px;
      position: relative;
    }

    .timeline li::before {
      content: '';
      width: 12px;
      height: 12px;
      background: var(--primary-color);
      position: absolute;
      left: -8px;
      top: 5px;
      border-radius: 50%;
    }


    /* Hero Section */
.hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.hero video {
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.hero .container {
  z-index: 2;
}

/* Glow Effect */
.glow-text-box h2 {
  text-shadow: 0 0 10px rgba(255,0,0,0.6);
}

/* 3D Button */
.btn-3d, .btn-danger {
  background: #ff0000;
  border: none;
  font-weight: bold;
  box-shadow: 0 4px 0 #b30000;
}
.btn-3d:active, .btn-danger:active {
  box-shadow: none;
  transform: translateY(4px);
}

/* Cards */
.package-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}


.page-header h1 {
  font-size: 3rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.card-service i {
  color: #dc3545; /* Bootstrap danger red */
}
.card-service h5 {
  margin-top: 10px;
}
.quote-box {
  border-left: 5px solid #dc3545;
}



/* Stay Card */
.stay-card img {
  height: 220px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.stay-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stay-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Info Section */
.info-section {
  border-top: 3px solid #dee2e6;
}
.info-section ul li {
  font-size: 1rem;
  padding: 10px 0;
}


.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

