@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root{
    --orange:#ffa500;
}

*{
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s linear;
}

*::selection{
    background: var(--orange);
    color: #fff;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}

.navbar a.active {
  color: #ff6600;
  font-weight: bold;
  border-bottom: 2px solid #ff6600;
}


section{
    padding: 2rem 9%;
}


.heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: transparent;
  background: linear-gradient(90deg, #00aaff, #ff7b00);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  margin: 3rem 0 2rem;
  animation: fadeInDown 1s ease;
}

.heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #00aaff, #ff7b00);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: growLine 1.2s ease forwards;
}



.btn{
    display: inline-block;
    margin-top: 1rem;
    background: var(--orange);
    color: #fff;
    padding: .8rem 3rem;
    border: .2rem solid var(--orange);
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover{
    background: rgba(255, 165, 0, .2);
    color: var(--orange);
}
/* Header Styling */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 7%;
  z-index: 1000;
}

/* Logo (with image) */
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: bolder;
  color: #fff;
  text-transform: uppercase;
}

header {
  height: 70px;
  width: auto;
  /* border-radius: 6px; */
}
.logo-img {
  height: 95px; /* increased from 55px */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Highlight “Holidays” text */
header .logo .highlight {
  color: var(--orange);
}

/* Navbar */
header .navbar a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

header .navbar a:hover {
  color: var(--orange);
}


header .icons i{
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    margin-right: 2rem;
}

header .icons i:hover{
    color: var(--orange);
}

header .search-bar-container{
    position: absolute;
    top: 100%; left: 0; right: 0;
    padding: 1.5rem 2rem;
    background: #333;
    border-top: .1rem solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    z-index: 1001;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}


header .search-bar-container.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar{
    width: 100%;
    padding: 1rem;
    text-transform: none;
    color: #333;
    font-size: 1.7rem;
}

header .search-bar-container label{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    margin-left: 1.5rem;
}

header .search-bar-container label:hover{
    color: var(--orange);
}


body{
    height: 200rem;
}

/* =======================
   USER DROPDOWN FIX
======================= */
.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-name {
  /* background: #007bff; */
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.user-name:hover {
  background: #0056b3;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  min-width: 160px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-menu button {
  background: none;
  border: none;
  color: #333;
  text-align: left;
  padding: 12px 16px;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.dropdown-menu button:hover {
  background: #f3f4f6;
}

.user-dropdown.active .dropdown-menu {
  display: flex;
}




/* ================================
   MODERN LOGIN FORM STYLING
=================================*/
.login-form-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.login-form-container.active {
  opacity: 1;
  visibility: visible;
}

.login-form-container form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 3rem 3.5rem;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.login-form-container form h3 {
  font-size: 2.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.login-form-container form .box {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.5rem;
  color: #222;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  border: none;
  margin-bottom: 1.5rem;
  outline: none;
  transition: all 0.3s ease;
}

.login-form-container form .box:focus {
  background: #fff;
  box-shadow: 0 0 8px var(--orange);
}

.login-form-container form .btn {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
}

.login-form-container form .btn:hover {
  background: #ff8800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 165, 0, 0.4);
}

.login-form-container form label {
  color: #fff;
  font-size: 1.4rem;
  margin-left: 0.5rem;
}

.login-form-container form #remember {
  accent-color: var(--orange);
}

.login-form-container form p {
  color: #ddd;
  font-size: 1.3rem;
  margin-top: 1rem;
}

.login-form-container form p a {
  color: var(--orange);
  text-decoration: none;
  transition: 0.3s;
}

.login-form-container form p a:hover {
  text-decoration: underline;
  color: #fff;
}

/* ================================
   REGISTRATION FORM STYLING
=================================*/
.register-form-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.register-form-container.active {
  opacity: 1;
  visibility: visible;
}

.register-form-container form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 3rem 3.5rem;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  animation: slideDown 0.5s ease;
}

.register-form-container form h3 {
  font-size: 2.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.register-form-container form .box {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.5rem;
  color: #222;
  background: rgba(255,255,255,0.85);
  border-radius: 8px;
  border: none;
  margin-bottom: 1.5rem;
  outline: none;
  transition: all 0.3s ease;
}

.register-form-container form .btn {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.3s;
}

#register-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 2.8rem;
  color: #fff;
  cursor: pointer;
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 50%;
  transition: 0.3s;
}

#register-close:hover {
  background: var(--orange);
  color: #fff;
  transform: rotate(90deg);
}


/* Close Icon */
#form-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 2.8rem;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50%;
  transition: 0.3s;
}

#form-close:hover {
  background: var(--orange);
  color: #fff;
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 480px) {
  .login-form-container form {
    padding: 2.5rem;
    width: 90%;
  }
}


#menu-bar{
    color: #fff;
    border: .1rem solid #fff;
    border-radius: .5rem;
    font-size: 3rem;
    padding: .5rem 1.2rem;
    cursor: pointer;
    display: none;
}

.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
    z-index: 0;
}

.home .content{
    text-align: center;
}

.home .content h3{
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 .3rem .5rem rgba(0,0,0,.1);
}

.home .content p{
    font-size: 2.5rem;
    color: #fff;
    padding: .5rem 0;
}

.home .video-container video{
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home .controls{
    padding: 1rem;
    border-radius: 5rem;
    background: rgba(0,0,0,.7);
    position: relative;
    top: 10rem;
}

.home .controls .vid-btn{
    height: 2rem;
    width: 2rem;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    margin: 0 .5rem;
}

.home .controls .vid-btn.active{
    background: var(--orange);
}


/* 
.book .row{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}

.book .row .image{
    flex:1 1 40rem;
}

.book .row .image img{
    width:100%;
}

.book .row form{
    flex: 1 1 40rem;
    padding: 2rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border-radius: .5rem;
}

.book .row form .inputBox input{
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,.1);
    font-size: 1.7rem;
    color: #333;
    text-transform: none;
} */

/* ===============================
   BOOKING SECTION (Main)
================================*/
section.booking {
  margin-top: 100px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.booking .image img {
  width: 400px;
  border-radius: 10px;
  margin-right: 30px;
}

/* ===============================
   BOOKING SECTION (SIDE-BY-SIDE)
================================*/
.booking {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Image side (narrower now) */
.booking .image {
  flex: 1 1 35%;
  text-align: center;
}

.booking .image img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
}

/* ===============================
   ADVANCED BOOKING TABS (wider form)
================================*/
.booking-section {
  flex: 1 1 60%;
  max-width: 800px;
  background: #e3f2fd;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.booking-tabs {
  text-align: center;
  margin-bottom: 25px;
}

.tab-button {
  background: #fff;
  border: 1px solid #0077b6;
  color: #0077b6;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-button.active,
.tab-button:hover {
  background: #0077b6;
  color: #fff;
}

.booking-form {
  display: none;
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
}

.booking-form.active {
  display: block;
}

.booking-form h3 {
  color: #0077b6;
  margin-bottom: 15px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.submit-btn {
  background: #0077b6;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
  font-size: 16px;
}

.submit-btn:hover {
  background: #005f8d;
}

/* ===============================
   RESPONSIVE DESIGN
================================*/
@media (max-width: 768px) {
  .booking {
    flex-direction: column;
    align-items: center;
  }

  .booking .image img {
    max-width: 90%;
    margin-bottom: 2rem;
  }

  .booking-section {
    width: 100%;
    max-width: 100%;
  }
}

/* =============================
   MY BOOKINGS FULL PAGE
============================= */
.my-bookings-page {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to right, #f8f9fa, #e6f0ff);
  overflow-y: auto;
  z-index: 9999;
  padding: 40px 60px;
  display: none;
}

.my-bookings-page.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.bookings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.bookings-header h1 {
  font-size: 2rem;
  color: #333;
}

.close-btn {
  background: #ff6600;
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 5px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  background: #e05500;
}

.bookings-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  border-left: 5px solid #ff6600;
}

.booking-card:hover {
  transform: translateY(-5px);
  background: #fff5ef;
}

.booking-info h3 {
  color: #333;
  margin-bottom: 5px;
}

.booking-info p {
  color: #666;
  margin: 4px 0;
}

.status {
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.status.confirmed {
  background: #d4edda;
  color: #155724;
}

.status.pending {
  background: #fff3cd;
  color: #856404;
}

.status.cancelled {
  background: #f8d7da;
  color: #721c24;
}
/* ==========================
   🧳 PACKAGES SECTION (Dynamic)
========================== */
.packages {
  width: 100%;
  background: #eef2ff;
  padding: 80px 0;
  text-align: center;
}

/* Section Heading */
.packages .heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 6px;
  margin-bottom: 50px;
}

.packages .heading span {
  display: inline-block;
  color: #ff7b00;
  transition: transform 0.3s ease;
}

.packages .heading span:hover {
  transform: translateY(-5px);
}

/* Featured Section */
.featured-packages {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-packages h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333;
  text-transform: uppercase;
}

/* Layout for desktop grid view */
.carousel-container {
  overflow: visible; /* ✅ FIXED: was hidden before */
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

/* Package Card */
.package-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Package Image */
.package-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Title */
.package-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.package-item h4 i {
  color: #ff7b00;
  font-size: 1.2rem;
}

/* Content Box */
.package-item .content {
  padding: 16px 20px 30px;
  text-align: center;
  flex: 1;
}

.package-item .content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
  min-height: 60px;
}

/* Price */
.package-item .price {
  font-size: 1.15rem;
  color: #ff7b00;
  font-weight: 700;
  margin: 12px 0;
}

/* Explore Button */
.package-item .btn {
  display: inline-block;
  background: #ff7b00;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.package-item .btn:hover {
  background: #e56b00;
  transform: scale(1.05);
}

/* ==========================
   Responsive Behavior
========================== */
@media (max-width: 992px) {
  .packages .heading {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .carousel-track {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .carousel-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 10px;
    scroll-snap-type: x mandatory;
  }

  .package-item {
    flex: 0 0 80%;
    min-width: 280px;
    scroll-snap-align: center;
  }

  .packages .heading {
    font-size: 1.8rem;
  }

  /* ✅ Ensure no clipping on small screens */
  .carousel-container {
    overflow: visible !important;
  }

  /* Optional: hide horizontal scrollbar */
  .carousel-track::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 480px) {
  .package-item {
    flex: 0 0 100%;
  }

  .package-item img {
    height: 180px;
  }

  .package-item .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}


/* ---------------- SERVICES SECTION ---------------- */
.services {
  background: linear-gradient(180deg, #f8faff 0%, #eef2ff 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* .services .heading {
  font-size: 2.6rem;
  letter-spacing: 8px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 4rem;
} */

/* .services .heading span {
  background: #ffd580;
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: inline-block;
  margin: 0 0.1rem;
  transition: transform 0.3s ease;
} */

.services .heading span:hover {
  transform: translateY(-5px);
}

/* Box container grid */
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-content: center;
}

/* Service box design */
.services .box {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.services .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(75, 106, 255, 0.05), rgba(255, 200, 0, 0.05));
  transition: all 0.5s ease;
  z-index: 0;
}

.services .box:hover::before {
  left: 0;
}

.services .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Icon styles */
.services .box i {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  z-index: 1;
  position: relative;
  transition: transform 0.3s ease;
}

/* Give each icon its own color tone */
.services .box:nth-child(1) i { color: #3b82f6; }  /* blue */
.services .box:nth-child(2) i { color: #f97316; }  /* orange */
.services .box:nth-child(3) i { color: #06b6d4; }  /* cyan */
.services .box:nth-child(4) i { color: #16a34a; }  /* green */
.services .box:nth-child(5) i { color: #8b5cf6; }  /* violet */
.services .box:nth-child(6) i { color: #e11d48; }  /* pink */

.services .box:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* Heading inside box */
.services .box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.8rem;
  z-index: 1;
  position: relative;
}

/* Paragraph */
.services .box p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  z-index: 1;
  position: relative;
}

/* Responsive design */
@media (max-width: 992px) {
  .services {
    padding: 4rem 1.5rem;
  }
  .services .heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .services .heading {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }
  .services .box {
    padding: 2rem 1.5rem;
  }
}



/* ====== GALLERY SECTION ====== */
/* .gallery {
  padding: 4rem 7%;
  background: #f9f9f9;
}

.gallery .heading {
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.2rem;
  color: #0077b6;
  margin-bottom: 3rem;
} */

.gallery .heading span {
  display: inline-block;
  transition: 0.3s ease;
}
/* 
.gallery .heading span:hover {
  color: #023e8a;
  transform: scale(1.2);
} */

/* Box container */
.gallery .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

/* Each image box */
.gallery .box-container .box {
  position: relative;
  flex: 1 1 30rem;
  height: 25rem;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border: 0.5rem solid #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery .box-container .box:hover {
  transform: translateY(-8px);
}

/* Image styling */
.gallery .box-container .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Overlay content */
.gallery .box-container .box .content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery .box-container .box:hover .content {
  opacity: 1;
}

.gallery .box-container .box .content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.gallery .box-container .box .content p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.gallery .box-container .box .btn {
  background: #0077b6;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 0.3rem;
  text-decoration: none;
  transition: 0.3s;
}

.gallery .box-container .box .btn:hover {
  background: #023e8a;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery .box-container .box {
    flex: 1 1 45%;
    height: 20rem;
  }
}

@media (max-width: 480px) {
  .gallery .box-container .box {
    flex: 1 1 100%;
    height: 18rem;
  }
}

/* ==========================
   ABOUT SECTION
========================== */

.about {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
    url("https://images.unsplash.com/photo-1526772662000-3f88f10405ff?q=80&w=2070&auto=format&fit=crop")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 10%;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1.2s ease forwards;
}

.about .heading {
  font-size: 3.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.about .heading span {
  color: var(--orange, #ff6600);
}

.about .tagline {
  font-size: 1.8rem;
  font-style: italic;
  color: #ffd5b5;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.about-text p {
  font-size: 1.6rem;
  color: #f5f5f5;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-text strong {
  color: var(--orange, #ff6600);
}

.about .signature {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-style: italic;
  color: #ffd5b5;
  text-align: right;
}

.about-btn {
  display: inline-block;
  margin-top: 3rem;
  background: var(--orange, #ff6600);
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-btn:hover {
  background: #fff;
  color: var(--orange, #ff6600);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about {
    padding: 4rem 5%;
  }

  .about .heading {
    font-size: 2.6rem;
  }

  .about-text p {
    font-size: 1.4rem;
  }

  .about-btn {
    padding: 0.8rem 2.2rem;
    font-size: 1.4rem;
  }
}
/* ================================
   REVIEW SECTION
================================= */
.review {
  background: #f8f9fa;
  padding: 5rem 5%;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.review .heading {
  font-size: 2rem;
  color: #333;
  letter-spacing: 6px;
  margin-bottom: 2rem;
}

/* Slider container */
.review-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* Wrapper (desktop animated, mobile scrollable) */
.review-slider .wrapper {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollReviews 35s linear infinite;
  will-change: transform;
}

/* Review card */
.review .box {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.review .box img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0077b6;
  margin-bottom: 1rem;
}

.review .box h3 {
  font-size: 1.3rem;
  color: #0077b6;
  margin-bottom: 0.5rem;
}

.review .box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0.8rem auto;
  max-width: 90%;
}

.review .stars {
  color: #ffcc00;
  font-size: 1.1rem;
}

/* Animation */
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-slider:hover .wrapper {
  animation-play-state: paused;
}

/* ================================
   RESPONSIVE DESIGN
================================= */

/* Tablet */
@media (max-width: 992px) {
  .review .box {
    flex: 0 0 280px;
    padding: 1.6rem;
  }
}

/* ✅ Mobile: one review visible fully */
@media (max-width: 600px) {
  .review {
    padding: 3rem 0;
  }

  .review-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    animation: none;
  }

  .review-slider .wrapper {
    display: flex;
    gap: 1rem;
    width: 100%;
    animation: none !important;
    padding: 0 1rem;
  }

  .review .box {
    flex: 0 0 100%;
    min-width: 100%;
    border-radius: 12px;
    margin: 0;
    scroll-snap-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  }

  .review .box img {
    width: 75px;
    height: 75px;
  }

  .review .box h3 {
    font-size: 1.1rem;
  }

  .review .box p {
    font-size: 0.95rem;
  }
}



/* ---------------- CONTACT SECTION (Modern Style) ---------------- */

.contact {
  background: linear-gradient(135deg, #e0f7fa, #f1f8ff);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}

.contact .heading {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: #222;
  margin-bottom: 3rem;
  text-transform: uppercase;
  position: relative;
}

.contact .heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #0078ff;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Layout */
.contact .row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Map Section */
.map-section {
  flex: 1 1 45%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.map-section:hover {
  transform: translateY(-5px);
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Contact Form */
.contact form {
  flex: 1 1 45%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.contact form:hover {
  transform: translateY(-5px);
}

.contact form .inputbox {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f9fafc;
  transition: all 0.3s ease;
}

.contact form input:focus,
.contact form textarea:focus {
  border-color: #0078ff;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 120, 255, 0.15);
  outline: none;
}

.contact form textarea {
  resize: none;
  height: 150px;
}

/* Button */
.contact .btn {
  display: inline-block;
  background: #0078ff;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .btn:hover {
  background: #005cd1;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .contact .row {
    flex-direction: column;
    align-items: center;
  }

  .map-section,
  .contact form {
    width: 100%;
    max-width: 650px;
  }

  .map-section iframe {
    height: 350px;
  }

  .contact form {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .contact .heading {
    font-size: 2rem;
    letter-spacing: 4px;
  }

  .map-section iframe {
    height: 300px;
  }

  .contact .btn {
    width: 100%;
  }
}

/* ---------------- FOOTER SECTION ---------------- */

.footer {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #f9fafb;
  padding: 3rem 1.5rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .box {
  flex: 1 1 250px;
  min-width: 230px;
  text-align: left;
}

.footer .box h3 {
  color: #facc15;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid #facc15;
  padding-left: 10px;
}

.footer .links a,
.footer .contact-info a {
  display: block;
  color: #e5e7eb;
  font-size: 0.95rem;
  margin: 0.4rem 0;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer .links a:hover,
.footer .contact-info a:hover {
  color: #facc15;
  transform: translateX(5px);
}

.footer .contact-info i {
  margin-right: 8px;
  color: #facc15;
}

.footer .address {
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.footer .socials {
  text-align: left;
}

.footer .social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer .social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #facc15;
  border-radius: 50%;
  color: #facc15;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  background: #facc15;
  color: #111827;
  transform: scale(1.1);
}

.footer .credit {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer .credit strong {
  color: #facc15;
}

/* ---------------- RESPONSIVE DESIGN ---------------- */

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer .box {
    text-align: center;
  }

  .footer .social-icons {
    justify-content: center;
  }

  .footer .box h3 {
    border-left: none;
    border-bottom: 2px solid #facc15;
    display: inline-block;
    padding-bottom: 5px;
  }
}
/* ---------------- FOOTER SECTION ---------------- */

.footer {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #f9fafb;
  padding: 3rem 1.5rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .box {
  flex: 1 1 250px;
  min-width: 230px;
  text-align: left;
}

.footer .box h3 {
  color: #facc15;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid #facc15;
  padding-left: 10px;
}

.footer .links a,
.footer .contact-info a {
  display: block;
  color: #e5e7eb;
  font-size: 0.95rem;
  margin: 0.4rem 0;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer .links a:hover,
.footer .contact-info a:hover {
  color: #facc15;
  transform: translateX(5px);
}

.footer .contact-info i {
  margin-right: 8px;
  color: #facc15;
}

.footer .address {
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.footer .socials {
  text-align: left;
}

.footer .social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer .social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #facc15;
  border-radius: 50%;
  color: #facc15;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  background: #facc15;
  color: #111827;
  transform: scale(1.1);
}

.footer .credit {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer .credit strong {
  color: #facc15;
}

/* ---------------- RESPONSIVE DESIGN ---------------- */

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer .box {
    text-align: center;
  }

  .footer .social-icons {
    justify-content: center;
  }

  .footer .box h3 {
    border-left: none;
    border-bottom: 2px solid #facc15;
    display: inline-block;
    padding-bottom: 5px;
  }
}




/* ===============================
   VIDEO CONTROLS (Optional Section)
================================*/
/* .controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.controls .vid-btn {
  background: #ccc;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.controls .vid-btn.active {
  background: #0077b6;
} */


/* ===============================
   RESPONSIVE IMPROVEMENTS (FINAL)
================================*/

/* For large laptops and desktops */
@media (max-width: 1200px) {
  .booking .image img {
    max-width: 320px;
  }

  .booking-section {
    max-width: 700px;
    padding: 25px;
  }
}

/* For tablets */
@media (max-width: 992px) {
  .booking {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .booking .image {
    flex: 1 1 100%;
  }

  .booking .image img {
    width: 100%;
    max-width: 90%;
    margin: 0 auto 2rem;
  }

  .booking-section {
    flex: 1 1 100%;
    width: 100%;
    max-width: 600px;
    padding: 20px;
  }

  .tab-button {
    padding: 8px 15px;
    font-size: 1.4rem;
  }

  .booking-form input,
  .booking-form select {
    font-size: 1.5rem;
  }
}

/* For mobile phones */
@media (max-width: 768px) {
  section.booking {
    margin-top: 60px;
    padding: 25px 15px;
  }

  .booking {
    flex-direction: column;
    align-items: center;
  }

  .booking-section {
    width: 100%;
    max-width: 100%;
  }

  .booking-form {
    padding: 20px;
  }

  .submit-btn {
    font-size: 1.6rem;
    padding: 12px;
  }

  /* Carousel Controls Adjustment */
  .carousel-controls button {
    font-size: 1.8rem;
    padding: 8px 10px;
  }

  .carousel-track {
    gap: 10px;
  }

  .package-item {
    min-width: 220px;
    max-width: 230px;
  }
}

/* For very small phones */
@media (max-width: 480px) {
  html {
    font-size: 55%;
  }

  header .navbar a {
    font-size: 1.6rem;
  }

  .booking-section {
    padding: 15px;
  }

  .booking-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-button {
    padding: 8px 12px;
    margin: 4px;
    font-size: 1.2rem;
  }

  .booking-form h3 {
    font-size: 1.8rem;
  }

  .form-group label {
    font-size: 1.4rem;
  }

  .form-group input,
  .form-group select {
    font-size: 1.4rem;
    padding: 10px;
  }

  .submit-btn {
    font-size: 1.4rem;
    padding: 10px;
  }

  /* Carousel controls on small screens */
  .carousel-controls button {
    font-size: 1.5rem;
    padding: 6px 8px;
  }
}




/* 
body{
    height: 300rem;
} */

/* media queries */
@media (max-width:1200px){
    
    html{
    font-size: 55%;
    
  }
}
@media (max-width:991px){
    
    header{
        padding: 2rem;
    }

    section{
        padding: 2rem;
    }
}

@media(max-width:768px){
    #menu-bar{
        display: initial;
    }

    header .navbar{
        position: absolute;
        top: 100%; right: 0; left: 0;
        background: #333;
        border-top: .1rem solid rgba(255, 255, 255, .2);
        padding: 1rem 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    header .navbar a{
        display: block;
        border-radius: .5rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
        background: #222;
    }
}

@media (max-width:450px){
    
    html{
    font-size: 55%;
    
  }
  .heading span{
    font-size: 2.5rem;
  }
}