* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      background: #f5f9fc;
      color: #0b1d26;
      scroll-behavior: smooth;
    }


    /* ======== Navbar ======== */
    .navbar {
      width: 100%;
      background: rgba(11, 29, 38, 0.9);
      backdrop-filter: blur(8px);
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo a {
      color: #1da1f2;
      font-size: 1.6rem;
      font-weight: 700;
      text-decoration: none;
    }

    .back-btn {
      background: #1da1f2;
      color: white;
      padding: 8px 15px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .back-btn:hover {
      background: #1486c7;
    }

    /* ======== Hero Section ======== */
    .tour-hero {
      margin-top: 70px;
      width: 100%;
      height: 65vh;
      background: url('') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      position: relative;
    }

    

    .tour-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: #00FFFF;
    }

    .tour-hero h1 {
      position: relative;
      font-size: 3rem;
      z-index: 2;
      background: rgba(0,0,0,0.4);
      padding: 10px 20px;
      border-radius: 10px;
    }

    /* ======== Tour Details ======== */
    .tour-details {
      max-width: 1100px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .tour-details h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 15px;
      color: #0b1d26;
    }

    .tour-details p {
      font-size: 1rem;
      color: #444;
      line-height: 1.7;
      margin-bottom: 15px;
      text-align: justify;
    }

    .tour-info {
      margin-top: 20px;
      background: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .tour-info h3 {
      color: #1da1f2;
      margin-bottom: 10px;
    }

    .tour-info ul {
      list-style: disc;
      padding-left: 25px;
      color: #333;
      line-height: 1.8;
    }

    .price-tag {
      margin-top: 25px;
      text-align: center;
      font-size: 1.4rem;
      color: #1486c7;
      font-weight: 700;
    }

    /* ======== Image Slider ======== */
    .slider-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-top: 40px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .slider {
      display: flex;
      transition: transform 0.6s ease;
      cursor: grab;
    }

    .slider img {
      width: 100%;
      height: 500px;              /* You can adjust this: 400–550px works best */
      object-fit: cover;          /* Ensures images fill area without distortion */
      border-radius: 10px;        /* Optional: softer edges */
      flex-shrink: 0;
      user-select: none;
    }


    

    /* Arrows for PC */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: white;
      padding: 10px;
      font-size: 1rem;
      border-radius: 50%;
      cursor: pointer;
      z-index: 5;
      transition: 0.3s;
    }

    .arrow:hover {
      background: rgba(0,0,0,0.8);
    }

    .arrow.left { left: 15px; }
    .arrow.right { right: 15px; }

    /* Hint for sliding */
    .swipe-hint {
      text-align: center;
      color: #666;
      font-size: 0.9rem;
      margin-top: 10px;
      animation: fadeHint 2s infinite;
    }

    @keyframes fadeHint {
      0%,100% { opacity: 0.4; }
      50% { opacity: 1; }
    }

    /* ======== Book Button ======== */
    .book-btn {
      display: block;
      width: fit-content;
      margin: 40px auto;
      background: #1da1f2;
      color: white;
      font-weight: 600;
      padding: 12px 25px;
      border-radius: 10px;
      text-decoration: none;
      transition: 0.3s;
    }

    .book-btn:hover {
      background: #1486c7;
    }

    @media (max-width: 768px) {
      .tour-hero h1 {
        font-size: 2.2rem;
      }
    }