 * {margin:0; padding:0; box-sizing:border-box; }
    body {background:#f4f4f4;}
    @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Playfair+Display:wght@700&family=Bodoni+Moda:wght@700&display=swap');

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 30px;
  background: #F8F8F8;
  border-bottom: 1px solid #ddd;
}

/* Logo */
.logo img {
  /* height: 50px; */
  width: 50%;
}

/* Menu */
.menu {
  display: flex;
  align-items: center;
  list-style: none;
 margin-left: 30px; /*  Logo ke side thoda gap */
  flex: 1;
}

.menu li {
  position: relative;
  margin: 0 15px;
}

.menu li a,
.menu li .dropdown-toggle {
  text-decoration: none;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  /* font-weight:600; */
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 150px;
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Actions (Right side buttons) */
.actions {
  display: flex;
  align-items: center;
  gap: 15px; /* Sign In aur Book Now ke beech gap */
  margin-right: 8%;
 
}

.login-btn, .book-btn {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
 
}

.login-btn {
  background: #f0f0f0;
}

.book-btn {
  background: #88C73D;
  
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
}




    .menu {display:flex; gap:25px; align-items: center; margin: auto;}
    .menu li {list-style:none; position:relative;}
    .menu a, .dropdown-toggle {
      text-decoration:none; color:#fff; font-size:16px; transition:0.3s; cursor:pointer;
    }
    .menu a:hover, .dropdown-toggle:hover {color:#88C73D}

    /* Modal */
    .modal {
      display:none; position:fixed; top:0; left:0; width:100%; height:100%;
      background:rgba(0,0,0,0.6); justify-content:center; align-items:center; z-index:1000;
    }
    .modal-content {
      background:#fff; padding:25px; border-radius:10px;
      width:90%; max-width:400px; animation:fadeIn 0.4s; position:relative;
    }
    .modal-content h2 {margin-bottom:15px; text-align:center; color:#0a3d62;}
    .modal-content input, .modal-content select {
      width:100%; padding:10px; margin:8px 0;
      border-radius:6px; border:1px solid #ccc;
    }
    .modal-content button {
      width:100%; margin-top:12px; padding:10px; border:none;
      background:#0a3d62; color:#fff; border-radius:6px; font-size:16px; cursor:pointer;
    }
    .close-btn {background:#d63031 !important;}

 /*--------- singlevideo--------- */
.single-video {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  margin: 0;   /* extra gap हटाने के लिए */
  padding: 0;  /* extra space हटाने के लिए */
}

.single-video video {
  width: 100%;
  object-fit: cover;
  display: block;  /* नीचे default white gap remove करेगा */
}

/* Text Section */
.txt {
  width: 100%;
  padding: 20px;
  font-size: 25px;
  background: transparent;
  margin: 0;  /* video ke niche gap remove */
  text-align: center;
}

/* Heading */
.txt h1 {
  color: #88C73D;
  padding: 10px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

/* Subheading */
.txt .india {
 
  /* margin-bottom: 15px; */
  font-weight: lighter;
  font-size: 35px;
  font-weight: 0;
  opacity: 0;
  color:#747171;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s; 
}

/* Paragraph */
.txt p {
  line-height: 1.8;
  font-size: 19px;
 color:#747171;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.1s ease forwards;
  animation-delay: 0.9s; /* delay for sequence */
}
.txt img{
    height: auto;
    width: 80%;
}

/* Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Section */
.offers {
  text-align: center;
  padding: 70px 30px;
  background: #faf9f7;
}

.offers-title {
  font-family: "Cinzel", serif;
  font-size: 32px;
color:#747171;
  margin-bottom: 10px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.offers-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, #b2903c, #d4af37);
  margin: 12px auto 0;
  border-radius: 3px;
}

.offers-sub {
  font-size: 17px;
  color: #666;
  margin-bottom: 50px;
  font-style: italic;
}

/* Container */
.offers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

/* Card */
.offer-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offer-info {
  padding: 20px;
  text-align: left;
  border-top: 3px solid transparent;
  transition: border-color 0.4s ease;
}

.offer-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2b2b2b;
  font-family: "Playfair Display", serif;
}

.offer-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  font-family: "Lora", serif;
}

.offer-info a {
  font-size: 14px;
  text-decoration: none;
  color: #b2903c;
  font-weight: bold;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.offer-info a:hover {
  color: #222;
  letter-spacing: 1px;
}

/* Hover Effects */
.offer-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.offer-card:hover img {
  transform: scale(1.05);
}

.offer-card:hover .offer-info {
  border-top-color: #d4af37;
}


/* sliders */

.slider-text
{
  /* border: 2px solid black; */
  text-align: center;
  color:#747171;
}



.slider {
      position: relative;
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-size: cover;
      background-position: center;
      transition: background-image 1s ease-in-out;
    }

    .slide-content {
      text-align: center;
      color: #fff;
      background: rgba(0,0,0,0.5);
      padding: 20px 40px;
      border-radius: 20px;
      animation: fadeIn 1s ease-in-out;
    }

    .slide-content h2 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    .slide-content p {
      font-size: 1.2rem;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    /* Buttons */
    .controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 30px;
    }

    .btn {
      background: rgba(255,255,255,0.2);
      border: 2px solid #fff;
      color: #fff;
      padding: 12px 18px;
      font-size: 20px;
      cursor: pointer;
      border-radius: 50%;
      transition: 0.3s;
    }

    .btn:hover {
      background: #fff;
      color: #000;
      transform: scale(1.1);
    }

    /* Dots */
    .dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 12px;
      height: 12px;
      background: rgba(255,255,255,0.6);
      border-radius: 50%;
      cursor: pointer;
      transition: 0.3s;
    }

    .dot.active {
      background: #fff;
      transform: scale(1.3);
    }


.another {
  padding: 20px 0 0 0;
  /* border: 2px solid black; */
  width: auto;
}

/* cards */

.showcase-container {
      max-width: 1200px;
      margin: 60px auto;
      position: relative;
      overflow: hidden;
      padding: 0 40px;
    }

    .showcase-track {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .showcase-card {
      min-width: 350px;
      margin: 0 15px;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      text-align: center;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .showcase-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .showcase-card:hover img {
      transform: scale(1.05);
    }

    .showcase-card h3 {
      margin: 20px 0 10px;
      font-size: 1.4rem;
      font-weight: bold;
    }

    .showcase-card p {
      padding: 0 15px 25px;
      font-size: 0.95rem;
      line-height: 1.5;
      color: #555;
    }

    /* Navigation arrows */
    .showcase-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 28px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      padding: 10px 15px;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: 0.3s;
      user-select: none;
    }

    .showcase-arrow:hover {
      background: #333;
      color: #fff;
    }

    .showcase-arrow.left {
      left: 10px;
    }

    .showcase-arrow.right {
      right: 10px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .showcase-card {
        min-width: 280px;
      }
    }

    @media (max-width: 768px) {
      .showcase-container {
        padding: 0 20px;
      }
      .showcase-card {
        min-width: 100%;
      }
    }


/* ---------------footer part------------- */
 footer {
    background: #1c1c1c;
    color: #fff;
    padding: 40px 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
  }

  .footer-left h2 {
    margin-bottom: 10px;
    color: #4CAF50;
  }

  .footer-left p {
    margin: 5px 0;
    font-size: 14px;
  }

 .social-icons i {
      font-size: 28px;
      margin-top: 10px;
      margin: 5px;
      /* margin-left: 15px; */
      cursor: pointer;
      color: white;
      transition: color 0.3s;
    }

     .social-icons i:hover {
      color: #4CAF50;
    }

  .footer-right p {
    font-size: 14px;
    margin: 5px 0;
  }

  .footer-right span {
    color: #4CAF50;
    font-weight: bold;
  }

  /* Floating Buttons */
  .floating-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    z-index: 100;
  }

  .floating-btn img {
    width: 28px;
    height: 28px;
  }

  .floating-btn.whatsapp {
    right: 20px;
    background: #25D366;
  }

  .floating-btn.location {
    right: 80px;
    background: #FF4C4C;
  }

  .floating-btn:hover {
    transform: scale(1.2);
  }

  /* Scroll to Top */
  .scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #4CAF50;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 100;
  }

  .scroll-top:hover {
    transform: scale(1.2);
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-right {
      margin-top: 20px;
    }
  }







/* Success Message */
.success-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
  z-index: 2000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4),
              0 0 15px rgba(46, 204, 113, 0.7);
  text-align: center;
  letter-spacing: 0.5px;
  animation: popup 0.5s ease forwards;
}

/* Success icon style (optional) */
.success-message::before {
  content: "✔ ";
  font-size: 22px;
  margin-right: 8px;
  color: #fff;
}

/* Animation */
@keyframes popup {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}


    @keyframes fadeIn {
      from {opacity:0; transform:scale(0.9);}
      to {opacity:1; transform:scale(1);}
    }

   






    /* Responsive */
@media (max-width:768px) {
  /* Menu */
  .menu {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #0a3d62, #1e5f9e);
    position: absolute;
    top: 85px;
    left: 0%;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 10px;
    gap: 15px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transform: translateY(-25px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    backdrop-filter: blur(6px);
    z-index: 1000; /* menu sabse upar */
  }

  .menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  /* Scrollbar */
  .menu::-webkit-scrollbar {
    width: 6px;
  }
  .menu::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.5);
    border-radius: 10px;
  }
  .menu::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
  }

  /* Links */
  .menu li a,
  .menu li .dropdown-toggle {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  .menu li a:hover,
  .menu li .dropdown-toggle:hover {
    color: #88C73D;
    transform: translateX(5px);
  }

  /* Dropdown look */
  .dropdown-content {
    position: static;
    background: rgba(0,0,0,0.25);
    border-radius: 8px;
    margin-top: 5px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown-content a {
    color: #fff;
    padding: 10px 15px;
    transition: background 0.3s, transform 0.2s;
  }
  .dropdown-content a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(8px);
  }

/* Actions buttons side by side (mobile) */
.actions {
  flex-direction: row;   /* 👈 ek line me */
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.login-btn, .book-btn {
  flex: 1;               /* equal width */
  max-width: 120px;      /* button chota hoga */
  border-radius: 6px;
  font-size: 13px;       /* 👈 dono ka same text size */
  padding: 6px 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-btn {
  background: #f0f0f0;
  color: #333;
}

.book-btn {
  background: #88C73D;
  color: #fff;
}

.login-btn:hover,
.book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}


  /* Hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100; /* hamburger menu ke upar rahe */
    transition: transform 0.3s ease;
  }
  .hamburger span {
    width: 28px;
    height: 3px;
    background: #0a3d62;
    border-radius: 3px;
    transition: all 0.4s ease;
  }

  /* Hamburger animation cross */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ffd700;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #ffd700;
  }
}

