* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= GLOBAL ================= */
html {
  scroll-behavior: smooth;
}

/* ================= TOP BAR ================= */
.top-bar {
  width: 100%;
  padding: 13px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0A4D8C;
  color: #fff;
  font-size: 14px;
}

.top-left span {
  margin-right: 50px;
  font-size: 15px;
}

.icon {
  color: #FF8C00;
}

.icoon {
  color: white;
  font-size: 20px;
}

/* ================= NAVBAR ================= */
.navbar {
  width: 100%;
  padding: 14px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1500;
}

.logo img {
  max-width: 200px;
  height: 50px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #0A4D8C;
}

/* ================= NAV LINKS ================= */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: #FF8C00;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #FF8C00;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ================= DROPDOWN (DESKTOP) ================= */
.dropdown-menu {
  position: absolute;
  top: 28px;
  left: 0;
  width: 280px;
  background: #0A4D8C;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 12px 16px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.dropdown-menu a:hover {
  background: rgba(0,0,0,0.15);
}

/* ================= BOOK BUTTON ================= */

@media (max-width: 768px) {
  .book-btn {
    display: block !important;
    
    top: 20px;
    right: 20px;
    z-index: 9999;
    
  }
}

.book-btn {
  background: #FF8C00;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  /* TOP BAR */
  .top-left span{
  
    margin:5px;
    
  }
  
  
  .top-bar {
    flex-direction: column;
    gap: 0px;
    text-align: center;
  }

  /* NAVBAR FIXED */
  .navbar {
    /*position: fixed;*/
    top: 0px;
    left: 0;
  }

  .menu-toggle {
    display: block;
    z-index: 2000;
  }

  nav {
    position: fixed;
    top: 120px; /* top-bar + navbar height */
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }

  nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
  }

  .nav-links li {
    border-bottom: 1px solid #eee;
  }

  .nav-links a {
    padding: 14px 20px;
    display: block;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position: static;
    width: 100%;
    background: #f7f7f7;
    display: none;
    box-shadow: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: #333;
  }

  .book-btn {
    display: none;
  }
}



/* Slider container */
/* ================= SLIDER MAIN ================= */

.slider {
    position: relative;
    width: 100%;
    height: 70vh;              /* Responsive height */
    min-height: 350px;
    overflow: hidden;
}

/* ================= SLIDES WRAPPER ================= */

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

/* ================= SINGLE SLIDE ================= */

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

/* ================= IMAGE ================= */

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* Prevent image distortion */
}

/* ================= CONTENT ================= */

.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #ffffff;
    max-width: 600px;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

/* ================= BUTTON ================= */

.slider-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff8c00;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.slider-btn:hover {
    background: #e67600;
}

/* ================= NAVIGATION DOTS ================= */

.navigation {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.navigation .dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s ease;
}

.navigation .dot.active {
    opacity: 1;
    background: #ff8c00;
}

/* ================= RESPONSIVE TABLET ================= */

@media (max-width: 992px) {

    .slider {
        height: 65vh;
    }

    .slide-content h1 {
        font-size: 36px;
    }
}

/* ================= RESPONSIVE MOBILE ================= */

@media (max-width: 768px) {

    .slider {
        height: 60vh;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }

    .slide-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .slider-btn {
        padding: 8px 18px;
        font-size: 14px;
    }

    .navigation {
        bottom: 15px;
    }

    .navigation .dot {
        width: 10px;
        height: 10px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

    .slider {
        height: 55vh;
        min-height: 300px;
    }

    .slide-content h1 {
        font-size: 20px;
    }
}


.welcome-marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #062F57, #0A4D8C, #1366B3);
  padding: 7px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 15s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-right: 350px;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}



.why-choose-us {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
}

.why-choose-us h2 {
  font-size: 2.8rem;
  color: #0b3c5d;
}

.subtitle {
  color: #666;
  margin-bottom: 60px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Flip Card */
.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 90%;
  padding: 30px;
  border-radius: 16px;
  backface-visibility: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Front Side */
.flip-card-front {
  background: #ffffff;
  color: #000;
}

.flip-card-front i {
  font-size: 40px;
  color: #ff8c00;
  margin-bottom: 15px;
}

.flip-card-front h3 {
  margin-bottom: 10px;
  color: #000;
}

.flip-card-front p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Back Side */
.flip-card-back {
  background: #ff8c00;
  color: #fff;
  transform: rotateY(180deg);
}

.flip-card-back i {
  font-size: 40px;
  color: white;
  margin-bottom: 15px;
}

.flip-card-back h3 {
  margin-bottom: 10px;
  color: #fff;
}

.flip-card-back p {
  font-size: 0.95rem;
  line-height: 1.5;
}
.card-container {
  display: grid;
  grid-template-columns: 1fr;   /* ✅ ONE CARD PER ROW */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

@media (min-width: 768px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr); /* ✅ 2 cards */
    gap: 25px;
  }
}
@media (min-width: 1024px) {
  .card-container {
    grid-template-columns: repeat(4, 1fr); /* ✅ 4 cards */
    gap: 30px;
  }
}









.gallery-section {
  position: relative;
  width: 100%;
  /*padding: 40px 20px;*/
  color: #fff;
}

.overlay-bg {
  background-image: url("../assets/img/background-images/north-india-background-img");
    background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*padding: 60px 0;*/
  position: relative;
  z-index: 1;
  
}

.overlay-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.5); /* dark overlay for text readability */
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color : #FF6600;
  font-size : x-large;
}

.gallery-section h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #FF6600;
}

.gallery-section p {
  margin-bottom: 50px;
  color: #fff;
  font-size: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
}


@media (max-width: 767px) {
  
  .gallery-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 20px;
  justify-items: center;
}
  .gallery-section {
    padding: 30px 15px;
  }

  .gallery-section h2 {
    font-size: 2rem;
  }

  .gallery-section p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .gallery-item {
    width: 100%;
    max-width: 360px;
  }
}



/*.gallery-grid {
  display: grid;
  grid-template-columns: 1fr; /* ✅ MOBILE: 1 CARD */
 /* gap: 20px;
  justify-items: center;
}*/

.gallery-item {
  background-color: rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.img-container {
  overflow: hidden;
}

/*.img-container img {
  width: 100%;

  height: 69%;
  display: block;
  transition: transform 0.5s;
  object-fit:cover;
}*/
.img-container img {
  width: 100%;
  height: 220px;          /* MOBILE FRIENDLY */
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}


.gallery-item:hover img {
  transform: scale(1.2); /* zoom-in effect */
}

.card-content {
  padding: 15px;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
}

.card-content h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  color: #FF6600;
}

.card-content p {
  margin: 0;
  font-size: 0.9rem;
}






.roll-card-section::before {
content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.5); /* dark overlay for text readability */
  z-index: -1;
}


.roll-card-section {
  padding: 90px 20px;
  background:url('https://wallpapers.com/images/hd/realistic-red-mountain-gmvgjkxqvquq6jvy.jpg')
     position: relative;
  z-index: 1;
}

.roll-card-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #FF6600;
}

.roll-card-section p {
  text-align: center;
  margin-bottom: 60px;
  color: #555;
}

.roll-card {
  display: flex;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.roll-card:hover {
  transform: translateY(-8px);
}

.roll-card.reverse {
  flex-direction: row-reverse;
}

.roll-img {
  width: 40%;
  overflow: hidden;
}

.roll-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.roll-card:hover img {
  transform: scale(1.15);
}

.roll-content {
  width: 60%;
  padding: 40px;
}

.tag {
  display: inline-block;
  background: #FF6600;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.roll-content h3 {
  font-size: 1.9rem;
  margin-bottom: 15px;
}

.roll-content p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.roll-content a {
  text-decoration: none;
  color: #FF6600;
  font-weight: 600;
}



/* =========================
   MOBILE RESPONSIVE FIX
   ========================= */
@media (max-width: 767px) {

  .roll-card-section {
    padding: 50px 15px;
  }

  .roll-card-section h2 {
    font-size: 2rem;
  }

  .roll-card-section p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  /* 🔥 Stack cards vertically */
  .roll-card {
    flex-direction: column;
  }

  /* 🔥 REMOVE reverse effect on mobile */
  .roll-card.reverse {
    flex-direction: column;
  }

  /* Image full width on top */
  .roll-img {
    width: 100%;
    height: 220px;
  }

  .roll-img img {
    height: 100%;
  }

  /* Content full width */
  .roll-content {
    width: 100%;
    padding: 25px;
    text-align: left;
  }

  .roll-content h3 {
    font-size: 1.4rem;
  }

  .roll-content p {
    font-size: 0.95rem;
  }

  .roll-card {
    margin-bottom: 30px;
  }
}




.packages {
  background-image:url("../assets/img/background-images/discover-background-img");
    background-size:cover;
  background-position: cover;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.5); 
  background-blend-mode: darken;
  padding: 80px 8%;

  text-align: center;
}

.packages h2 {
  font-size: 38px;
  margin-bottom: 10px;
  color:white;
}

.packages .subtitle {
  color: #fff;
  margin-bottom: 50px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

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

.package-card.featured {
  border: 3px solid #ff9f1c;
}


.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover img {
  transform: scale(1.12);
}

.content button:hover {
  background: linear-gradient(135deg, #0A4D8C, #1877D2);
  
}


.tag2 {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff9f1c;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
}

.content {
  padding: 25px;
}

.content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.content button {
  background: linear-gradient(135deg, #ff9f1c, #ff6f00);
  border: none;
  padding: 12px 30px;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.4s;
}



/* BUTTON STYLE */
.plan-trip-btn {
  background: orange;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
}

/* HIDE CHECKBOX */
#popup-toggle {
  display: none;
}

/* OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9999;
}

/* POPUP FORM */
.popup-form {
  background: #fff;
  width: 90%;
  max-width: 450px;
  padding: 30px;
  border-radius: 15px;
  position: relative;
  animation: popup 0.4s ease;
}

@keyframes popup {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-form h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

.popup-form p {
  text-align: center;
  margin-bottom: 20px;
  color: #777;
}

/* INPUTS */
.input-group {
  margin-bottom: 15px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
}

.input-group textarea {
  resize: none;
  height: 80px;
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;
  padding: 12px;
  background: orange;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: darkorange;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* SHOW POPUP WHEN CHECKED */
#popup-toggle:checked ~ .popup-overlay {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE */
@media (max-width: 500px) {
  .popup-form {
    padding: 20px;
  }
}


.unique-gallery2 {
  padding: 60px 20px;
  background-image:url('../assets/img/background-images/highlights-background-img');
  background-size:cover;
  background-position: cover;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.5); 
  background-blend-mode: darken;
  text-align: center;
  color: white;
  overflow: hidden;
}

.unique-gallery2 h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
}

.unique-gallery2 p {
  font-size: 20px;
  margin-bottom: 20px;
  margin-top:0px;
  color: #fff;
}

.gallery2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  perspective: 1000px; /* For rotation effect */
}

.gallery-item2 {
  width: 300px;
  height: 300px;
  overflow: hidden;
  clip-path: polygon(25% 0%, 100% 10%, 75% 100%, 0% 90%); /* Unique polygon shape */
  transition: transform 0.6s ease, filter 0.6s ease;
  animation: float 6s ease-in-out infinite alternate;
}

.gallery-item2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  border-radius: 10px;
}

/* Hover animation */
.gallery-item2:hover {
  transform: rotate(-5deg) scale(1.1);
  filter: brightness(1.2) saturate(1.3);
}

.gallery-item2:hover img {
  transform: scale(1.2) rotate(5deg);
}

/* Floating rotation animation for all items */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-item2 {
    width: 150px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery2 {
    gap: 10px;
  }
  .gallery-item2 {
    width: 120px;
    height: 160px;
  }
}


.cta-section {
  position: relative;
  padding: 80px 20px;
  background-image:url('../assets/img/background-images/quick-enquiry-background-img');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.cta-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  z-index: 2;
}

/* LEFT CONTENT */
.cta-content h2 {
  color: #ff9f1c;
  font-size: 42px;
  margin-bottom: 15px;
}

.cta-content p {
  color: #ddd;
  font-size: 18px;
  max-width: 500px;
}

.cta-info {
  margin-top: 30px;
  display: flex;
  gap: 25px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  background: rgba(255,255,255,0.1);
  padding: 12px 18px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  /*animation: floatUp 4s ease-in-out infinite;*/
}

.info-box:nth-child(2) {
  animation-delay: 1s;
}

/* FORM */
.cta-form {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  animation: fadeUp 1.2s ease;
}

.cta-form h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 26px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 15px;
}

.cta-form textarea {
  resize: none;
  height: 100px;
}

.cta-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg,#ff9f1c,#ff6f00);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.cta-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,159,28,.5);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-info {
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* ================= TESTIMONIAL SECTION ================= */

/* ================= PREMIUM TESTIMONIAL ================= */
.stars{
    margin-bottom:12px;
}

.stars i{
    color: gold;
    margin-right:3px;
    font-size:16px;
}

.stars .inactive{
    color:#ccc;
}


.testimonial-section {
    background: linear-gradient(to right, #1f1f1f, #3a3a3a);
 
    padding: 100px 40px;
    text-align: center;
    color: #fff;
}

.testimonial-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ff6f00;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.testimonial-header p {
    font-size: 18px;
    margin-bottom: 60px;
    opacity: 0.8;
}

.testimonial-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 350px;
    background: #0A4D8C;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: #555;
}

.testimonial-card p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card h4 {
    color: #fff;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:#fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    color: #000;
    z-index: 2;
}

.arrow.left {
    left: -1px;
}

.arrow.right {
    right: -1px;
}



/* Responsive */
@media(max-width: 768px){
    .testimonial-card {
        min-width: 280px;
    }
}





.site-footer {
  background: #000;
  color: #ccc;
  padding: 70px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-box {
  animation: fadeUp 1.2s ease;
}

.footer-box h3 {
  color: #ff9f1c;
  margin-bottom: 15px;
}

.footer-box p,
.footer-box li {
  font-size: 15px;
  line-height: 1.7;
  color:#fff;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-box ul li a:hover {
  color: #ff9f1c;
  transform: translateX(5px);
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-icons2{
display:flex;
  gap:12px;
}

.social-icons2 a {
  width: 35px;
  height: 35px;
  border: 1px solid #ff9f1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9f1c;
  font-size: 16px;
  transition: all 0.4s ease;
  text-decoration:none;
}

.social-icons2 a:hover {
  background: #ff9f1c;
  color: #000;
  transform: translateY(-6px) rotate(360deg);
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid #ff9f1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9f1c;
  font-size: 16px;
  transition: all 0.4s ease;
  text-decoration:none;
}

.social-icons a:hover {
  background: #ff9f1c;
  color: #000;
  transform: translateY(-6px) rotate(360deg);
}

/* MAP */
.footer-box iframe {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  border: none;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.footer-box iframe:hover {
  filter: grayscale(0);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  border-top: 1px solid #222;
  padding-top: 15px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}



.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* COMMON STYLE */
.floating-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  text-decoration:none;
}

/* WHATSAPP */
.floating-icons .whatsapp {
  background: #25D366;
  animation: jump 2.0s infinite;
}

.floating-icons .whatsapp:hover {
  transform: scale(1.15);
}

/* CALL */
.floating-icons .call {
  background: #ff3b3b;
  animation: jump 2.0s infinite;
}

.floating-icons .call:hover {
  transform: scale(1.15) rotate(10deg);
}

/* JUMP ANIMATION */
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* MOBILE ADJUSTMENT */
@media (max-width: 480px) {
  .floating-icons {
    right: 15px;
    bottom: 20px;
  }

  .floating-icons a {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}


/* SCROLL TO TOP BUTTON */
.scroll-top {
  position: fixed;
  bottom: 160px; /* above whatsapp & call */
  right: 25px;
  width: 48px;
  height: 48px;
  background: #0A4D8C; /* blue theme */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;
  transition: 0.3s ease;
  animation: floatUp 2s infinite;
}

/* Hover */
.scroll-top:hover {
  background: #083b6c;
  transform: translateY(-6px);
}

/* Floating animation */
@keyframes floatUp {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .scroll-top {
    right: 15px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}





.about-modern {
  padding: 80px 5%;
  background: #0f172a;
  color: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE GRID */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 800px;
  overflow: hidden;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-column img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transition: transform 0.5s ease;
}

.image-column img:hover {
  transform: scale(1.05);
}

/* LOOP ANIMATION */
.column-1 {
  animation: moveUp 14s linear infinite;
}

.column-2 {
  animation: moveDown 14s linear infinite;
}

@keyframes moveUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes moveDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* CONTENT */
.about-content h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.about-content .tagline {
  color: #fff;
  font-size: 16px;
  margin-bottom: 25px;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-content ul li {
  margin-bottom: 12px;
  font-size: 16px;
}

.about-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #facc15;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-images {
    height: 350px;
  }
}


.hill-escapes {
  padding: 90px 5%;
  background: linear-gradient(135deg, #e0f2fe, #fef3c7, #dcfce7);
}

.hill-header {
  text-align: center;
  margin-bottom: 60px;
}

.hill-header h2 {
  font-size: 42px;
  color: #0f172a;
  margin-bottom: 10px;
}

.hill-header p {
  font-size: 16px;
  color: #334155;
}

/* GRID */
.hill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.hill-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.25);
}

/* IMAGE */
.hill-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hill-card:hover img {
  transform: scale(1.15);
}

/* CONTENT */
.hill-content {
  padding: 20px;
}

.hill-content h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 8px;
}

.hill-content p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hill-header h2 {
    font-size: 32px;
  }

  .hill-card img {
    height: 200px;
  }
}



.beach-paradise {
  padding: 80px 8%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.section-header {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 18px;
  opacity: 0.9;
}

.beach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.beach-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.beach-card:hover {
  transform: translateY(-8px);
}

.beach-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.beach-card:hover img {
  transform: scale(1.15);
}

.beach-content {
  padding: 20px;
  text-align: center;
}

.beach-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #0072ff;
}

.beach-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }

  .beach-card img {
    height: 200px;
  }
}



.destinations-section {
  padding: 80px 8%;
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
}

.destinations-header {
  text-align: center;
  margin-bottom: 50px;
}

.destinations-header h2 {
  font-size: 38px;
  color: #1f2933;
  margin-bottom: 10px;
}

.destinations-header p {
  color: #555;
  font-size: 16px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.destination-card {
  position: relative;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.destination-card:hover img {
  transform: scale(1.15);
}

/* Overlay */
.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #fff;
  transition: all 0.4s ease;
}

.destination-overlay h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.destination-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
}

.destination-overlay a {
  align-self: flex-start;
  padding: 8px 18px;
  background: #ff7a18;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.3s ease;
}

.destination-overlay a:hover {
  background: #ff9f43;
}

/* Color Accents */
.devotional a { background: #f43f5e; }
.hills a { background: #10b981; }
.beach a { background: #0ea5e9; }
.desert a { background: #f59e0b; }
.wildlife a { background: #22c55e; }
.international a { background: #8b5cf6; }

/* Responsive */
@media (max-width: 992px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    height: 300px;
  }
}

.devotional-section {
  padding: 90px 8%;
 /* background: linear-gradient(135deg, #fff7ed, #fde68a);*/
}

.devotional-header {
  text-align: center;
  margin-bottom: 55px;
}

.devotional-header h2 {
  font-size: 40px;
  color: #7c2d12;
  margin-bottom: 10px;
}

.devotional-header p {
  font-size: 16px;
  color: #92400e;
}

.devotional-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.dev-card {
  position: relative;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  transition: transform 0.5s ease;
}

.dev-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dev-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.dev-card:hover img {
  transform: scale(1.18);
}

/* Overlay */
.dev-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(124, 45, 18, 0.85),
    rgba(124, 45, 18, 0.2)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: #fff;
}

.dev-overlay h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.dev-overlay p {
  font-size: 14px;
  opacity: 0.95;
}

/* Glow Effect */
.dev-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: inset 0 0 0 rgba(255,255,255,0);
  transition: box-shadow 0.5s ease;
}

.dev-card:hover::after {
  box-shadow: inset 0 0 60px rgba(255,255,255,0.35);
}

/* Responsive */
@media (max-width: 1100px) {
  .devotional-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .devotional-grid {
    grid-template-columns: 1fr;
  }

  .dev-card {
    height: 320px;
  }
}


.coastal-section {
  padding: 90px 7%;
  background: linear-gradient(135deg, #e0f7fa, #fff);
}

.coastal-header {
  text-align: center;
  margin-bottom: 60px;
}

.coastal-header h2 {
  font-size: 38px;
  color: #0f766e;
  margin-bottom: 10px;
}

.coastal-header p {
  font-size: 16px;
  color: #155e75;
}

.coastal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.coastal-card {
  display: flex;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.coastal-card:hover {
  transform: translateY(-10px);
}

/* Image */
.coastal-img {
  width: 50%;
  overflow: hidden;
}

.coastal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.coastal-card:hover img {
  transform: scale(1.15);
}

/* Content */
.coastal-content {
  width: 50%;
  padding: 26px;
  background: linear-gradient(135deg, #0ea5a4, #38bdf8);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coastal-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.coastal-content p {
  font-size: 14px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 1100px) {
  .coastal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .coastal-grid {
    grid-template-columns: 1fr;
  }

  .coastal-card {
    flex-direction: column;
  }

  .coastal-img,
  .coastal-content {
    width: 100%;
  }

  .coastal-img {
    height: 240px;
  }
}



.royal-section {
  padding: 95px 7%;
  background: linear-gradient(135deg, #3b0a0a, #7c2d12, #fde68a);
}

.royal-header {
  text-align: center;
  margin-bottom: 60px;
}

.royal-header h2 {
  font-size: 40px;
  color: #fde68a;
  margin-bottom: 12px;
}

.royal-header p {
  color: #fff7ed;
  font-size: 16px;
}

/* Grid */
.royal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */
.royal-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  transition: transform 0.5s ease;
}

.royal-card:hover {
  transform: translateY(-14px) rotate(-0.5deg);
}

/* Image */
.royal-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.royal-card:hover img {
  transform: scale(1.2);
}

/* Info Panel */
.royal-info {
  padding: 26px;
  background: linear-gradient(135deg, #7c2d12, #b45309);
  color: #fff;
}

.royal-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.royal-info p {
  font-size: 14px;
  opacity: 0.95;
}

/* Golden Glow */
.royal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  box-shadow: inset 0 0 0 rgba(253,230,138,0);
  transition: box-shadow 0.5s ease;
 
  pointer-events: none;

}

.royal-card:hover::after {
  box-shadow: inset 0 0 70px rgba(253,230,138,0.4);
}

/* Responsive */
@media (max-width: 1100px) {
  .royal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .royal-grid {
    grid-template-columns: 1fr;
  }

  .royal-card img {
    height: 260px;
  }
}

.wildlife-section {
  padding: 90px 7%;
  background: #f8fafc;
}

.wildlife-header {
  text-align: center;
  margin-bottom: 55px;
}

.wildlife-header h2 {
  font-size: 38px;
  color: #064e3b;
}

.wildlife-header p {
  font-size: 16px;
  color: #475569;
  margin-top: 8px;
}

/* Grid */
.wildlife-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.wild-card {
  position: relative;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Image */
.wild-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.wild-card:hover img {
  transform: scale(1.15);
}

/* Info strip */
.wild-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px 22px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  backdrop-filter: blur(4px);
}

.wild-info h3 {
  font-size: 20px;
}

.wild-info span {
  font-size: 13px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1100px) {
  .wildlife-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wildlife-grid {
    grid-template-columns: 1fr;
  }

  .wild-card {
    height: 300px;
  }
}


.international-section {
  padding: 100px 7%;
  background: linear-gradient(135deg, #eef2ff, #fdf4ff);
}

.international-header {
  text-align: center;
  margin-bottom: 65px;
}

.international-header h2 {
  font-size: 40px;
  color: #312e81;
}

.international-header p {
  font-size: 16px;
  color: #475569;
  margin-top: 8px;
}

/* Grid */
.international-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* Card */
.intl-card {
  position: relative;
  height: 420px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,0.2);
  transition: transform 0.5s ease;
}

.intl-card:hover {
  transform: translateY(-12px) rotate(0.6deg);
}

/* Image */
.intl-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.intl-card:hover img {
  transform: scale(1.18);
}

/* Country badge */
.country-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
}

/* Info (Glass effect) */
.intl-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 22px 26px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: #fff;
}

.intl-info h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.intl-info p {
  font-size: 14px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1100px) {
  .international-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .international-grid {
    grid-template-columns: 1fr;
  }

  .intl-card {
    height: 340px;
  }
}



.honeymoon-section {
  padding: 100px 7%;
  background: linear-gradient(135deg, #fff1f2, #fdf2f8, #f5f3ff);
}

.honeymoon-header {
  text-align: center;
  margin-bottom: 70px;
}

.honeymoon-header h2 {
  font-size: 42px;
  color: #831843;
}

.honeymoon-header p {
  font-size: 16px;
  color: #6b7280;
  margin-top: 10px;
}

/* Wrapper */
.honeymoon-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.honeymoon-card {
  display: flex;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: transform 0.5s ease;
}

.honeymoon-card:hover {
  transform: translateY(-12px);
}

/* Image */
.honeymoon-img {
  width: 45%;
  overflow: hidden;
}

.honeymoon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.honeymoon-card:hover img {
  transform: scale(1.2);
}

/* Content */
.honeymoon-content {
  width: 55%;
  padding: 35px;
  background: linear-gradient(135deg, #fdf2f8, #ede9fe);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.honeymoon-content h3 {
  font-size: 26px;
  color: #701a75;
  margin-bottom: 12px;
}

.honeymoon-content p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .honeymoon-wrapper {
    grid-template-columns: 1fr;
  }

  .honeymoon-card {
    flex-direction: column;
  }

  .honeymoon-img,
  .honeymoon-content {
    width: 100%;
  }

  .honeymoon-img {
    height: 260px;
  }
}



.family-packages {
  padding: 100px 6%;
  background: linear-gradient(135deg, #eff6ff, #ecfeff, #f0fdf4);
}

/* Header */
.family-header {
  text-align: center;
  margin-bottom: 70px;
}

.family-header h2 {
  font-size: 42px;
  color: #1e40af;
}

.family-header p {
  color: #4b5563;
  margin-top: 10px;
}

/* Grid */
.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */
.family-card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  transition: transform 0.5s ease;
}

.family-card:hover {
  transform: translateY(-10px);
}

/* Image */
.family-img {
  height: 230px;
  overflow: hidden;
}

.family-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.family-card:hover img {
  transform: scale(1.15);
}

/* Info */
.family-info {
  padding: 25px;
}

.family-info h3 {
  font-size: 22px;
  color: #1f2937;
  margin-bottom: 12px;
}

/* Badges */
.family-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.family-badges span {
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  color: white;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
}

.family-info p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .family-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .family-grid {
    grid-template-columns: 1fr;
  }

  .family-img {
    height: 200px;
  }
}




/* Modal background */
.package-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal box */
.modal-content {
  background: #fff;
  width: 90%;
  max-width: 700px;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: zoomIn 0.4s ease;
}

/* Animation */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Image */
.modal-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* Title */
.modal-content h2 {
  color: #1e40af;
  margin-bottom: 15px;
}

/* Itinerary */
.itinerary {
  padding-left: 18px;
}

.itinerary li {
  margin-bottom: 10px;
  color: #374151;
  line-height: 1.6;
}


.package-modal3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal box */
.modal-content3 {
  background: #fff;
  width: 90%;
  max-width: 700px;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: zoomIn 0.4s ease;
}

/* Animation */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close button */
.close-btn3 {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Image */
.modal-img3 {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* Title */
.modal-content3 h2 {
  color: #1e40af;
  margin-bottom: 15px;
}

/* Itinerary */
.itinerary3 {
  padding-left: 18px;
}

.itinerary3 li {
  margin-bottom: 10px;
  color: #374151;
  line-height: 1.6;
}

.package-modal4 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal box */
.modal-content4 {
  background: #fff;
  width: 90%;
  max-width: 700px;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: zoomIn 0.4s ease;
}

/* Animation */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close button */
.close-btn4 {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Image */
.modal-img4 {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* Title */
.modal-content4 h2 {
  color: #1e40af;
  margin-bottom: 15px;
}

/* Itinerary */
.itinerary4 {
  padding-left: 18px;
}

.itinerary4 li {
  margin-bottom: 10px;
  color: #374151;
  line-height: 1.6;
}


.package-modal5 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal box */
.modal-content5 {
  background: #fff;
  width: 90%;
  max-width: 700px;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: zoomIn 0.4s ease;
}

/* Animation */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close button */
.close-btn5 {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Image */
.modal-img5 {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* Title */
.modal-content5 h2 {
  color: #1e40af;
  margin-bottom: 15px;
}

/* Itinerary */
.itinerary5 {
  padding-left: 18px;
}

.itinerary5 li {
  margin-bottom: 10px;
  color: #374151;
  line-height: 1.6;
}

.package-modal6 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal box */
.modal-content6 {
  background: #fff;
  width: 90%;
  max-width: 700px;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: zoomIn 0.4s ease;
}

/* Animation */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close button */
.close-btn6 {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Image */
.modal-img6 {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* Title */
.modal-content6 h2 {
  color: #1e40af;
  margin-bottom: 15px;
}

/* Itinerary */
.itinerary6 {
  padding-left: 18px;
}

.itinerary6 li {
  margin-bottom: 10px;
  color: #374151;
  line-height: 1.6;
}



/* Modal background */
.package-modal2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal box */
.modal-content2 {
  background: #fff;
  width: 90%;
  max-width: 700px;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: zoomIn 0.4s ease;
}

/* Animation */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close button */
.close-btn2 {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

/* Image */
.modal-img2 {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* Title */
.modal-content2 h2 {
  color: #1e40af;
  margin-bottom: 15px;
}

/* Itinerary */
.itinerary2 {
  padding-left: 18px;
}

.itinerary2 li {
  margin-bottom: 10px;
  color: #374151;
  line-height: 1.6;
}


/* ===== PILGRIMAGE SECTION ===== */
.pilgrimage-section {
  padding: 100px 6%;
  background: linear-gradient(135deg, #fff7ed, #fffbeb, #fef3c7);
}

/* Header */
.pilgrimage-header {
  text-align: center;
  margin-bottom: 70px;
}

.pilgrimage-header h2 {
  font-size: 42px;
  color: #92400e;
  margin-bottom: 10px;
}

.pilgrimage-header p {
  font-size: 16px;
  color: #78350f;
}

/* Grid Layout */
.pilgrimage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Individual Box */
.pilgrimage-box {
  height: 420px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Soft Divine Overlay */
.pilgrimage-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(120, 53, 15, 0.75),
    rgba(120, 53, 15, 0.15)
  );
  z-index: 1;
}

/* Hover Lift */
.pilgrimage-box:hover {
  transform: translateY(-14px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

/* Content */
.pilgrimage-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

/* Reveal on Hover */
.pilgrimage-box:hover .pilgrimage-content {
  opacity: 1;
  transform: translateY(0);
}

/* Text Styles */
.pilgrimage-content h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.pilgrimage-content span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

.pilgrimage-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* Slow Zoom Effect */
.pilgrimage-box:hover {
  background-size: 112%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .pilgrimage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pilgrimage-box {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .pilgrimage-grid {
    grid-template-columns: 1fr;
  }

  .pilgrimage-box {
    height: 340px;
  }

  .pilgrimage-content {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
}




.adventure-section {
  padding: 100px 6%;
  background: linear-gradient(135deg, #020617, #0f172a);
}

/* Header */
.adventure-header {
  text-align: center;
  margin-bottom: 70px;
}

.adventure-header h2 {
  font-size: 44px;
  color: #f97316;
}

.adventure-header p {
  color: #cbd5f5;
  margin-top: 10px;
}

/* Grid */
.adventure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */
.adventure-card {
  background: #020617;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0,0,0,0.5);
  transform: rotate(0deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.adventure-card:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 35px 70px rgba(249, 115, 22, 0.4);
}

/* Image */
.adventure-img {
  height: 260px;
  overflow: hidden;
}

.adventure-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.adventure-card:hover img {
  transform: scale(1.2);
}

/* Info */
.adventure-info {
  padding: 25px;
  background: linear-gradient(135deg, #020617, #0f172a);
}

.adventure-info h3 {
  font-size: 22px;
  color: #f97316;
  margin-bottom: 8px;
}

.adventure-info span {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #84cc16);
  color: #022c22;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}

.adventure-info p {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .adventure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .adventure-grid {
    grid-template-columns: 1fr;
  }

  .adventure-img {
    height: 230px;
  }
}



.package-showcase {
  padding: 80px 7%;
  background: #ffffff;
}

.showcase-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
  font-weight: 700;
  color: #222;
}

.package-row {
 display: flex; 
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.package-row:hover {
  transform: translateY(-6px);
}

.reverse {
  flex-direction: row-reverse;
}

.row-img {
  flex: 1.2;
  height: 320px;
  overflow: hidden;
}

.row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.package-row:hover img {
  transform: scale(1.18);
}

.row-content {
  flex: 1;
  padding: 40px;
  color: #fff;
 
background: linear-gradient(90deg, #2193b0, #6dd5ed);


}

.row-content h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.row-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.row-content a {
  display: inline-block;
  padding: 12px 22px;
  background: rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.row-content a:hover {
  background: rgba(255,255,255,0.4);
  transform: translateX(6px);
}

/* Color Themes 
.honeymoon .row-content {
  background: linear-gradient(135deg, #ff6a88, #ff99ac);
}

.family .row-content {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.adventure .row-content {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.pilgrimage .row-content {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}*/

/* Responsive */
@media (max-width: 900px) {
  .package-row,
  .reverse {
    flex-direction: column;
  }

  .row-img {
    height: 240px;
  }

  .row-content {
    text-align: center;
  }

  .row-content h3 {
    font-size: 26px;
  }
}




.contact-section {
  padding: 80px 7%;
  /*background: linear-gradient(135deg, #e0f7fa, #fff);*/
}

.contact-container {
  display: flex;
  gap: 50px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  overflow: hidden;
}

/* Left Info */
.contact-info {
  flex: 1;
  padding: 50px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.info-box span {
  font-size: 26px;
}

.info-box h4 {
  margin: 0;
  font-size: 18px;
}

.info-box p {
  margin: 0;
  font-size: 14px;
}

/* Right Form */
.contact-form {
  flex: 1;
  padding: 50px;
}

.contact-form h3 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #333;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2a5298;
  box-shadow: 0 0 8px rgba(42,82,152,0.3);
}

.contact-form button {
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    padding: 35px;
  }

  .contact-info h2 {
    font-size: 30px;
  }
}

.gallery-section1 {
  
  background: #f9fbff;
}

.gallery-section {
 padding: 80px 7%; 
  background: #f9fbff;
}

/* Tabs */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.gallery-tabs .tab {
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #333;
  background: #eaeaea;
  transition: all 0.3s ease;
}

.gallery-tabs .tab:hover {
  background: #ff8c00;
  color: #fff;
}

.gallery-tabs .active {
  background: linear-gradient(135deg, #ff8c00, #ffb347);
  color: #fff;
}

/* Heading */
.gallery-heading {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-heading h2 {
  font-size: 38px;
  color: #222;
}

.gallery-heading p {
  max-width: 600px;
  margin: 10px auto 0;
  color: #666;
  font-size: 15px;
}

/* Gallery Grid */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Zoom Effect */
.photo-card:hover img {
  transform: scale(1.15);
}

/* Overlay */
.photo-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.photo-card:hover .overlay {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .photo-card img {
    height: 240px;
  }
}



/* Video Gallery Grid */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Zoom on Hover */
.video-card:hover img {
  transform: scale(1.15);
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/*.video-card:hover .video-overlay {
  opacity: 1;
}*/

/* Play Button */
.play-btn {
  font-size: 55px;
  background: rgba(255,255,255,0.9);
  color: #ff8c00;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  animation: pulse 1.6s infinite;
}

/* Video Title */
.video-overlay h4 {
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 992px) {
  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .video-gallery {
    grid-template-columns: 1fr;
  }

  .video-card img {
    height: 250px;
  }
}



/* Gallery images */
.gallery-img {
  width: 100%;
  cursor: pointer;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Lightbox Background */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Image */
#lightboxImg {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
}

/* Close Icon */
#closeLightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

/* Prev & Next Icons */
.nav-btn {
  position: absolute;
  top: 50%;
  font-size: 45px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 12px;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

.nav-btn:hover {
  color: #ff8c00;
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

/* Mobile Adjust */
@media (max-width: 576px) {
  .nav-btn {
    font-size: 32px;
  }
}



.content button a{
text-decoration:none;
  color:white;
}







