
  
  .package-card {
      position: relative;
      background-color: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .package-card:hover {
      transform: translateY(-5px);
    }

    .package-image {
      height: 180px;
      width: 100%;
      object-fit: cover;
    }

    .discount-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: #e74c3c;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 0 8px 8px 0;
    }

    .package-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 8px;
      text-align: center;
      border-bottom: 2px solid #007bff;
      display: inline-block;
      padding-bottom: 4px;
    }

    .package-content {
      padding: 16px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .detail-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      margin-bottom: 8px;
      color: #444;
    }

    .detail-item i {
      color: #007bff;
      font-size: 1.1rem;
    }

    .card-buttons {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-top: 10px;
    }

    .btn-whatsapp {
      background-color: #25D366;
      color: white;
      border: none;
    }

    .btn-readmore {
      background-color: #007bff;
      color: white;
      border: none;
    }

    .btn-whatsapp:hover {
      background-color: #1da851;
    }

    .btn-readmore:hover {
      background-color: #0056b3;
    }

    @media (max-width: 576px) {
      .card-buttons {
        flex-direction: column;
      }
    }
  
  background-color: #f8f9fa;
    }


.hotel-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 4px;
  }
    .hotel-card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: #fff;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .hotel-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .hotel-card img {
      height: 200px;
      width: 100%;
      object-fit: cover;
    }

    .hotel-content {
      padding: 16px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hotel-name {
      font-size: 1.2rem;
      font-weight: 600;
      color: #343a40;
    }

    .call-button {
      margin-top: 12px;
      padding: 10px 20px;
      font-weight: 500;
      border-radius: 8px;
      background-color: #007bff;
      color: white;
      border: none;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.2s ease;
    }

    .call-button:hover {
      background-color: #0056b3;
      color: white;
    }

    .facilities {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 10px;
    }

    .facility-icon {
      font-size: 1rem;
      color: #495057;
      display: flex;
      align-items: center;
      gap: 5px;
      background-color: #f1f1f1;
      padding: 6px 10px;
      border-radius: 8px;
    }
  
  

  
  .transport-card {
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s;
    }
    .transport-card:hover {
      transform: translateY(-5px);
    }
    .transport-card img {
      height: 180px;
      object-fit: cover;
      width: 100%;
    }
    .vehicle-name {
      font-weight: 600;
      font-size: 1.1rem;
      margin-top: 10px;
    }
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #f4f4f4;
      height: 100vh;
    }

    /* Right Side - Horizontal Center */
    .enquiry-btn {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      background-color: #007BFF;
      color: white;
      padding: 12px 15px;
      border-radius: 8px 0 0 8px;
      cursor: pointer;
      z-index: 9999;
      font-size: 16px;
      font-weight: 500;
      box-shadow: -2px 2px 8px rgba(0,0,0,0.2);
      transition: background 0.3s ease;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      letter-spacing: 1px;
    }

    .enquiry-btn:hover {
      background-color: #0056b3;
    }

    /* Sidebar Form */
    .sidebar-form {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      max-width: 380px;
      width: 90%;
      background-color: #ffffff;
      box-shadow: -4px 0 15px rgba(0,0,0,0.2);
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      border-left: 4px solid #007BFF;
    }

    .sidebar-form.active {
      transform: translateX(0);
    }

    .sidebar-form .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      background: #eee;
      border: none;
      font-size: 20px;
      padding: 5px 10px;
      border-radius: 50%;
      cursor: pointer;
    }

    .sidebar-form h3 {
      margin: 60px 20px 10px;
      text-align: center;
      font-size: 22px;
      color: #007BFF;
    }

    .sidebar-form form {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .sidebar-form input,
    .sidebar-form select {
      width: 100%;
      padding: 12px 14px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
      background-color: #fafafa;
    }

    .form-buttons {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-top: auto;
    }

    .form-buttons button {
      flex: 1;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .btn-submit {
      background-color: #007BFF;
      color: white;
    }

    .btn-submit:hover {
      background-color: #0056b3;
    }

    .btn-close {
      background-color: #f0f0f0;
      color: #333;
    }

    .btn-close:hover {
      background-color: #ddd;
    }

    @media (max-width: 480px) {
      .sidebar-form {
        width: 100%;
        max-width: 100%;
      }

      .sidebar-form h3 {
        font-size: 20px;
      }

      .enquiry-btn {
        font-size: 14px;
        padding: 10px 18px;
      }
    }
	
	@media (max-width: 480px) {
  .sidebar-form {
    top: 10%;
    transform: translateY(0);
    max-height: 90vh;
    width: 100%;
    border-left: none;
    border-top: 4px solid #007BFF;
  }
}

 
    /* Full Page Loader */
    #loadingPopup {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background-color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .loader {
      width: 60px;
      height: 60px;
      border: 8px solid #f3f3f3;
      border-top: 8px solid #3498db;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Enquiry Form Styles */
    .enquiry-form-container {
      display: none;
      padding: 40px;
      max-width: 500px;
      margin: 50px auto;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      font-family: Arial, sans-serif;
    }

    .enquiry-form-container h2 {
      text-align: center;
      margin-bottom: 20px;
    }

    .enquiry-form-container input,
    .enquiry-form-container textarea {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
    }

    .enquiry-form-container button {
      width: 100%;
      background-color: #3498db;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
    }

    .enquiry-form-container button:hover {
      background-color: #2980b9;
    }
  
  

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
    }

    .slider {
      position: relative;
      overflow: hidden;
      max-width: 100%;
      height: 500px;
      margin: 20px auto;
    }

    .slides {
      display: flex;
      transition: transform 0.20s ease-in-out;
      width: 100%;
    }

    .slide {
      position: relative;
      min-width: 100%;
      height: 500px;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .text-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 24px;
      background: rgba(0, 0, 0, 0.5);
      padding: 10px 20px;
      border-radius: 8px;
      text-align: center;
    }

    .nav-buttons {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
    }

    .nav-buttons button {
      background-color: rgba(0,0,0,0.5);
      border: none;
      color: white;
      font-size: 24px;
      padding: 10px;
      cursor: pointer;
    }

    @media screen and (max-width: 768px) {
      .slider {
        height: 300px;
      }

      .slide {
        height: 300px;
      }

      .text-overlay {
        font-size: 16px;
        padding: 6px 12px;
      }
    }
 
  
  
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 20px;
      background-color: #f2f2f2;
    }

    .card-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .card {
      display: flex;
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      opacity: 0;
      transform: translateX(-100px);
      animation: slideIn 1s ease forwards;
    }

    /* Delay each card slightly */
    .card:nth-child(1) {
      animation-delay: 0.2s;
    }
    .card:nth-child(2) {
      animation-delay: 0.4s;
    }
    .card:nth-child(3) {
      animation-delay: 0.6s;
    }

    @keyframes slideIn {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .card img {
      width: 40%;
      object-fit: cover;
    }

    .card-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .card h3 {
      margin-top: 0;
      font-size: 24px;
      color: #333;
    }

    .card p {
      font-size: 16px;
      color: #666;
    }

    @media (max-width: 768px) {
      .card {
        flex-direction: column;
      }

      .card img {
        width: 100%;
        height: auto;
      }
    }
	
	
	.floating-buttons {
  position: fixed;
  bottom: 15px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 9999;
  pointer-events: none;
}

.floating-buttons a {
  pointer-events: auto;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.floating-buttons .call {
  background-color: #2563eb;
}

.floating-buttons .whatsapp {
  background-color: #10b981;
}

.floating-buttons a:hover {
  opacity: 0.9;
}

 
  