@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

body {
  font-family: "Poppins", sans-serif;
  color: #362a2a;
  background-color: #ffffff;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: white;
  color: #333;
}

h1 {
  font-size: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative;
  height: 120vh;;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}



.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  color: rgb(209, 149, 39);
  margin-bottom: 25px;
}

.hero-content .btn {
  background: #ff9900;
  color: white;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-content .btn:hover {
  background: #cc7a00;
}


.hero h2 {
  font-size: 40px;
}

.btn {
  background: #ff9900;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  border-radius: 5px;
}


.destinations {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
}

/* 👇 Paste this here 👇 */

.packages {
  padding: 50px 15px;
  background-color: #ffffff;
  text-align: center;
}

.package-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* Force 4 columns */
  gap: 25px;
  padding: 40px 20px;
  max-width: 1300px;                     /* Wide enough to fit 4 cards */
  margin: 0 auto;
  justify-items: center;                /* Center each card */
}



.package {
  background: #f9f9f9;
  border-radius: 30px;
  width: 100%;              /* Fill the grid column */
  max-width: 280px;         /* Prevent overflow */
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.package:hover {
  transform: translateY(-10px); /* ⬆️ Slight move up */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* 💡 Deep shadow on hover */
}

.package img {
  width: 100%;
  border-radius: 10px;
}

.package .price {
  font-weight: bold;
  color: #ff6600;
  margin: 10px 0;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.card {
  background: #eaeaea;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards .card:hover {
  transform: translateY(-10px);
  box-shadow:
  0 0 10px rgba(128, 119, 104, 0.4),   /* soft orange outer glow */
  0 0 20px rgba(158, 125, 62, 0.3),
  0 10px 25px rgba(0, 0, 0, 0.15);   /* shadow for depth */
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.about,
.contact {
  padding: 40px 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
}

button {
  padding: 10px;
  background: #004466;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* === Clean Modern Footer with Mountain Style === */

/* MAIN FOOTER */

footer.footer-bottom {
  background-color: #004466;
  color: #ffffff;
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #ffffff22; /* subtle top border */
}


.footer-main {
  background: url('https://images.unsplash.com/photo-1533243216203-8c08406d4583?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center bottom;
  background-size: cover;
  position: relative;
  padding: 100px 20px;
  color: #fff;
  z-index: 1;
}

/* DARK OVERLAY for readability */
.footer-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}




.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
  color: #fff;
}

.footer-column p,
.footer-column ul li {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
}

/* CONTACT SECTION */
.footer-contact {
  background: #ffffff;
  color: #000;
  text-align: center;
  padding: 30px 20px;
}

.social-icons {
  margin-bottom: 20px;
}

.social-icons i {
  font-size: 20px;
  margin: 0 10px;
  color: #004466;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #ff9900;
}

/* OFFICES */
.footer-offices {
  margin-top: 20px;
}

.footer-offices h4 {
  font-size: 16px;
  margin-top: 15px;
}

.footer-offices p,
.footer-offices a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
}

.footer-offices a:hover {
  text-decoration: underline;
}

/* BOTTOM LINE */
footer.footer-bottom {
  background-color: #004466;
  text-align: center;
  padding: 10px;
  color: white;
  font-size: 13px;
}



.footer-column,
.footer-contact,
.footer-offices {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.2s; }
.footer-column:nth-child(2) { animation-delay: 0.4s; }
.footer-column:nth-child(3) { animation-delay: 0.6s; }
.footer-column:nth-child(4) { animation-delay: 0.8s; }

/* 📱 Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
  .footer-main {
    padding: 60px 15px;
    text-align: left;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 15px;
  }

  .footer-column {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-column h3 {
    font-size: 16px;
  }

  .footer-column p,
  .footer-column ul li {
    font-size: 13px;
  }

  .footer-contact {
    padding: 20px 15px;
    text-align: center;
  }

  .social-icons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
  }

  .social-icons i {
    font-size: 22px;
    margin: 0;
  }

  .footer-offices {
    margin-top: 30px;
  }

  .footer-offices h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer-offices p,
  .footer-offices a {
    font-size: 13px;
  }

  footer.footer-bottom {
    padding: 12px 15px;
    font-size: 12px;
    text-align: center;
  }
}




.call-form {
  padding: 60px 20px;
  background: #fff3e0;
  display: flex;
  justify-content: center;
}

.form-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  background: #fff3e0;
  flex-wrap: wrap;
  justify-content: center;
}

.form-left img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
}

.form-right {
  background: white;
  border: 1px solid #ffae42;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  max-width: 400px;
  width: 100%;
}

.form-right h5 {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.form-right .orange {
  color: #ff8500;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  top: 12px;
  left: 15px;
  color: #888;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.input-group textarea {
  resize: vertical;
  height: 80px;
}

.form-right button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #ff8500, #ff6600);
  border: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-right button:hover {
  background: linear-gradient(to right, #e67300, #cc5500);
}


.features {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.feature-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.feature-card img {
  width: 50px;
  margin-bottom: 20px;
  filter: hue-rotate(90deg); /* turns icons green-ish */
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 30px;
  color: #333;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

.nav-left {
  flex: 1;
}

.nav-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 5px 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.nav-search input {
  border: none;
  background: transparent;
  padding: 10px 15px;
  width: 250px;
  outline: none;
  font-size: 16px;
  color: #000000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
}

.nav-search input::placeholder {
  color: #000000;
}

.nav-search button {
  background: linear-gradient(45deg, #ff6f00, #ffa726);
  border: none;
  border-radius: 50%;
  padding: 10px;
  color: rgb(253, 253, 253);
  cursor: pointer;
  transition: 0.3s ease;
}

.nav-search button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px #ff9800;
}


.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 10px 20px;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  flex-wrap: nowrap;
}

.phone {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.fa-user {
  font-size: 18px;
  color: #000;
  cursor: pointer;
}

/* === Hero Redesign === */

.hero {
  position: relative;
  height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-content .btn {
  background: #ff9900;
  color: white;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-content .btn:hover {
  background: #cc7a00;
}

/* ✅ Extra: fallback heading font size if outside hero-content */
.hero h2 {
  font-size: 40px;
}

/* 📱 Responsive: Adjust for mobile screens */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-content .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* 📱 Even smaller screens (phones) */
@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-content .btn {
    font-size: 14px;
    padding: 8px 18px;
  }
}




/* === Hero Section Animations === */

.animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.animate:nth-child(1) {
  animation-delay: 0.2s;
}
.animate:nth-child(2) {
  animation-delay: 0.4s;
}
.animate:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.stats-section {
  background: #f9f9f9;
  padding: 70px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.stats-left {
  flex: 1 1 40%;
}

.stats-left h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.stats-left p {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.explore-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #69be5d;
  color: white;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.explore-btn:hover {
  background-color: #56a24c;
}

.stats-right {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat-box {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box i {
  font-size: 28px;
  color: #69be5d;
  margin-bottom: 10px;
  display: block;
}

.stat-box h3 {
  color: #f68c1f;
  font-size: 28px;
  margin: 10px 0 5px;
}

.stat-box span {
  color: #555;
  font-size: 15px;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 12px;
  right: 12px;
  background: #25d366;
  color: white;
  padding: 7px 15px;
  border-radius: 50%;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 1000%;
  height: 1000%;
  background: #fff; /* or any background color */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.package {
  position: relative;
}

.ribbon {
  position: absolute;
  top: 20px;
  left: -20px;
  background: #ff6600;
  color: white;
  padding: 5px 35px;
  transform: rotate(-45deg);
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 2;
}

#preloader {
  background: linear-gradient(45deg, #ffcc80, #ffe0b2, #ffd699);
  background-size: 400% 400%;
  animation: gradientBG 8s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Slide-in and Glow Glass Sidebar */
.ultra-social-sidebar {
  position: fixed;
  top: 39%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 3px;
  z-index: 9999;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 15px 15px 0;
  animation: slideInLeft 1s ease-out;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

.social {
  position: relative;
  color: white;
  font-size: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Neon Glow on Hover */
.social:hover {
  transform: scale(1.2) rotate(6deg);
  box-shadow: 0 0 12px #fff, 0 0 25px currentColor, 0 0 45px currentColor;
}

/* Unique Platform Glow Colors */
.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fb { background: #1877f2; }
.yt { background: #ff0000; }

/* Tooltip Bubble */
.social::after {
  content: attr(data-label);
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 14px;
  background: #000;
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.social:hover::after {
  opacity: 1;
  left: 70px;
}

/* Slide-in Animation */
@keyframes slideInLeft {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounceGlow {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  60% {
    transform: translateX(10px);
    opacity: 1;
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

.ultra-social-sidebar {
  animation: bounceGlow 1.2s ease-out;
}

.stars {
  color: #ffc107;
  margin: 8px 0;
  font-size: 18px;
}

.package .stars {
  text-align: center;
}
















/* Testimonials Section */
.testimonials {
  background: #fefcf8;
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  margin-bottom: 50px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonials h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ff914d;
  margin: 10px auto 0;
  border-radius: 2px;
}

.review-card {
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 15px 45px rgba(255, 165, 0, 0.1);
  max-width: 350px;
  margin: 0 auto;
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 200, 120, 0.2), transparent 70%);
  z-index: 0;
  transition: transform 0.4s ease;
}

.review-card:hover::before {
  transform: scale(1.2);
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.1),
    0 20px 60px rgba(255, 165, 0, 0.15);
  border-color: #ffba5a;
}

.review-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff9900;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.4);
  z-index: 2;
  position: relative;
}

.review-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  z-index: 2;
  position: relative;
}

.review-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-top: 12px;
  z-index: 2;
  position: relative;
}

/* Optional: Star ratings */
.review-stars {
  margin-top: 12px;
  color: #ffb400;
  font-size: 18px;
}



/* Swiper pagination */
.swiper-pagination {
  margin-top: 30px;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #ff914d;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

















.packing-tool {
  padding: 60px 20px;
  background: linear-gradient(145deg, #ffffff, #f2f2f2);
  border-radius: 20px;
  max-width: 700px;
  margin: 50px auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.packing-tool h2 {
  font-size: 32px;
  color: #ff6f00;
}

.packing-tool .subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.glass-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.form-group select {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
}

.generate-btn {
  background: linear-gradient(to right, #ff6f00, #ff8e53);
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.generate-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ff8e53aa;
}

.checklist-output {
  margin-top: 30px;
  text-align: left;
  padding: 20px;
  border-radius: 12px;
  background: #fff8f1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.checklist-output h3 {
  margin-bottom: 15px;
  color: #ff6f00;
}

.checklist-output ul {
  padding-left: 20px;
}

.checklist-output li {
  margin-bottom: 10px;
  padding-left: 10px;
  position: relative;
  font-size: 16px;
}

.checklist-output li::before {
  content: "✅";
  position: absolute;
  left: -20px;
}

.slideshow-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
}

.slideshow-modal.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.slideshow-content {
  width: 90%;
  height: 80%;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  z-index: 1000;
}

.slideshow-modal {
position: fixed;
top: 0; left: 0;
width: 100vw;
 height: 100vh;
z-index: 9999;
background: rgba(0, 0, 0, 0.95);
display: none;
justify-content: center;
align-items: center;
}

    .slideshow-modal.active {
      display: flex;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    .slideshow-content {
      width: 90%;
      height: 80%;
      position: relative;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 20px;
      color: white;
      font-size: 32px;
      cursor: pointer;
      z-index: 1000;
    }

    .slideshow-swiper {
      height: 100%;
    }

    .slideshow-swiper .swiper-slide {
      background-size: cover;
      background-position: center;
      color: white;
      font-size: 2rem;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      position: relative;
      padding-bottom: 60px;
    }

    .slideshow-swiper .swiper-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    }

.flight-animate-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.flight-path-svg {
  width: 100%;
  height: auto;
}

/* Airport image styling */
.airport-img {
  position: absolute;
  width: 214px;   /* increased from 80px */
  height: auto;
  z-index: 2;
}

/* India airport */
.airport-india {
  top: 260px;     /* slightly adjusted for larger size */
  left: 70px;
}

/* Japan airport */
.airport-japan {
  top: 260px;
  left: 790px;
}

/* France airport */
.airport-france {
  top: 260px;
  left: 1018px;
}



/* ✅ Responsive Adjustments */
@media (max-width: 992px) {
  .airport-img {
    display: none !important;
  }

  .airport-india {
    top: 250px;
    left: 40px;
  }

  .airport-japan {
    top: 250px;
    left: 640px;
  }

  .airport-france {
    top: 250px;
    left: 880px;
  }
}

@media (max-width: 768px) {
  .airport-img {
    display: none !important;
  }

  .airport-india {
    top: 240px;
    left: 20px;
  }

  .airport-japan {
    top: 240px;
    left: 480px;
  }

  .airport-france {
    top: 240px;
    left: 670px;
  }
}

@media (max-width: 576px) {
  .airport-img {
    display: none !important;
  }

  .airport-india {
    top: 230px;
    left: 10px;
  }

  .airport-japan {
    top: 230px;
    left: 300px;
  }

  .airport-france {
    top: 230px;
    left: 450px;
  }
}

.navbar-heading h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-left: 20px;
  background: linear-gradient(90deg, #ff6f00, #ffc107);
  background-clip: text;
  -webkit-background-clip: text; /* Chrome/Safari */
  color: transparent;
  -webkit-text-fill-color: transparent;
  color: #ff6f00
}

/* Then override for modern browsers */
@supports (-webkit-background-clip: text) {
  .navbar-heading h1 {
    background: linear-gradient(90deg, #ff6f00, #ffc107);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.highlight-link:hover {
  background: linear-gradient(to right, #ff9800, #ff6f00);
  box-shadow: 0 0 20px rgba(255, 111, 0, 0.6);
  transform: scale(1.05);
}

.filter-sidebar {
  flex: 0 0 270px;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

.filter-sidebar h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #2c3e50;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #34495e;
  position: relative;
  padding-left: 20px;
}

.filter-group h4::before {
  content: "•";
  position: absolute;
  left: 0;
  color: orange;
  font-size: 20px;
  top: -1px;
}

.filter-group label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  color: #555;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.filter-group label:hover {
  color: #e67e22;
  font-weight: 500;
}

.price-range {
  display: flex;
  gap: 10px;
}

.price-range input {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.price-range input:focus {
  border-color: #f39c12;
  outline: none;
  box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.2);
}

.filter-sidebar button {
  background-color: #f39c12;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
  width: 100%;
}

.filter-sidebar button:hover {
  background-color: #e67e22;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ai-art-section {
  background: url('https://images.unsplash.com/photo-1750440982726-d723eab666a5?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
}

.ai-art-overlay {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 21px;
  padding:40px;
  max-width: 50000px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}


.nav-menu a {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.nav-menu a.active {
  background: linear-gradient(to right, #ff7b00, #ffb347);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 22px;
}

/* Wrapper to position pill nav inside header */
.pill-nav ul {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  justify-content: center;
  margin-top: 40px;
}

.pill-nav li a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.pill-nav li.active a {
  background-color: #007bff; /* Blue active tab */
  color: #fff;
  font-weight: 600;
}

.pill-nav li a:hover {
  background-color: #1a1a1a;
}

/* ✅ Glassy White Header */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ✅ Plain Logo (No box or background) */
.logo img {
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

/* ✅ Navigation Menu */
.header-nav {
  display: flex;
  gap: 20px;
}
.header-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 10px;
  background: transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}
.header-nav a:hover,
.header-nav a.active {
  color: #FF6F00;
  border-bottom: 2px solid #FF6F00;
}

/* ✅ Contact Button */
.header-contact a {
  font-size: 0.95rem;
  color: #111;
  background: rgba(255,255,255,0.6);
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
}
.header-contact a:hover {
  background: rgba(255,255,255,0.9);
  color: #FF6F00;
}



.valentine-hover {
  position: relative;
  overflow: hidden;
}

.sparkle-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle-layer i {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #ff7aa2;
  transform: rotate(45deg);
  opacity: 0;
}

/* Heart shape */
.sparkle-layer i::before,
.sparkle-layer i::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: inherit;
  border-radius: 50%;
}

.sparkle-layer i::before {
  top: -4px;
  left: 0;
}

.sparkle-layer i::after {
  left: -4px;
  top: 0;
}

.valentine-hover:hover .sparkle-layer i {
  animation: heartBurst 0.9s ease-out forwards;
}

/* Different directions */
.sparkle-layer i:nth-child(1) { --x: -20px; --y: -25px; }
.sparkle-layer i:nth-child(2) { --x: 15px;  --y: -30px; }
.sparkle-layer i:nth-child(3) { --x: -30px; --y: -10px; }
.sparkle-layer i:nth-child(4) { --x: 25px;  --y: -15px; }
.sparkle-layer i:nth-child(5) { --x: 0px;   --y: -35px; }

@keyframes heartBurst {
  0% {
    transform: translate(0, 0) rotate(45deg) scale(0.3);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translate(var(--x), var(--y)) rotate(45deg) scale(1);
    opacity: 0;
  }
}










/* ✅ Hamburger Icon for Mobile */
.mobile-hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

/* ✅ Mobile Fullscreen Menu */
.mobile-fullmenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 9998;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-fullmenu.active {
  display: flex;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-header h2 {
  font-size: 24px;
  font-weight: bold;
}
.menu-header .close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #222;
}
.menu-list {
  list-style: none;
  padding: 0;
}
.menu-list li {
  margin-bottom: 15px;
}
.menu-list a {
  font-size: 18px;
  color: #0a0a5a;
  text-decoration: none;
  font-weight: 500;
}
.menu-footer {
  font-size: 14px;
  color: #222;
}
.menu-footer .phone {
  color: #f5a623;
  font-weight: 400px;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .glass-header {
    height: 55px;
    padding: 0 16px;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 100%;
  }

  .logo img {
    height: 30px;
  }

  .mobile-hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 20px;
    z-index: 9999;
  }

  .header-nav,
  .header-contact {
    display: none !important;
  }
}

.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  font-family: 'Poppins', sans-serif;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  flex-wrap: wrap;
}

.header-logo img {
  height: 40px;
}

.search-bar {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #cccccc;
  width: 200px;
}

.header-top .right a {
  margin-left: 20px;
  font-size: 14px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.phone-link {
  background: #FF6F00;
  color: white !important;
  padding: 6px 12px;
  border-radius: 5px;
}

.menu-list {
  display: flex;
  flex-direction: column; /* stack vertically */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 3px;
}

.menu-list li a {
  font-size: 16px;
  color: #0a0a5a;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  padding: 5px 0;
}

.menu-list li a.active {
  color: #f5a623;
  font-weight: bold;
}

.menu-list li a:hover {
  color: #FF6F00;
}

.header-bottom {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;  /* ❌ Removed solid color */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
  border-bottom: none;
  padding:5px 30px;
}

.navbar {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 21px;
  margin: 0;
  padding: 0;
}

.navbar li a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: #000;
  font-size: 14px;
  padding: 6px 12px;
  transition: color 0.3s ease;
  border-bottom: none !important; /* Remove default underline */
}

/* 👇 Common curved line on hover & active */
.navbar li a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 0%;
  height: 5px;
  border-bottom: 2px solid #ff6600;
  border-radius: 0 0 100px 100px;
  transition: width 0.3s ease;
}

/* 👇 When hovered or active, show the curve */
.navbar li a:hover,
.navbar li a.active {
  color: #ff6600;
  font-weight: bold;
}

.navbar li a:hover::after,
.navbar li a.active::after {
  width: 80%;
}

.logo-glass img {
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-glass:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .header-bottom {
    display: none;
  }
}

.menu-list a.active {
  color: #f5a623;
  font-weight: bold;
}

.menu-list a.active:hover {
  color: #f5a623;
}

/* Add this in your CSS file */
@media screen and (max-width: 768px) {
  .ultra-social-sidebar {
    display: none;
  }
}

/* === RESPONSIVE FOOTER STYLING === */

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}



.footer-contact .social-icons {
  margin-bottom: 15px;
}

.footer-contact .social-icons i {
  margin: 0 10px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-contact .social-icons i:hover {
  color: #1da1f2;
}

.footer-offices h4 {
  margin: 10px 0 5px;
  font-weight: bold;
}


/* === MOBILE OPTIMIZATION === */
/* 📱 Enhanced Mobile Responsive Design */

.social-feed {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(to bottom, #f9f9f9, #ffffff);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.social-feed h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
  letter-spacing: 1.2px;
  position: relative;
}

.social-feed h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #0077ff;
  border-radius: 2px;
}

.social-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logo-card {
  position: relative;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 20px;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  z-index: 0;
}

.logo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 0;
}

.logo-image {
  position: relative;
  z-index: 2; /* Makes sure the image sits above the gradient */
}

.logo-card:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 18px 50px rgba(0, 119, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.logo-card:hover img {
  transform: scale(1.015);
}


/* Full Banner Styling */
/* Full Banner Section */
.kerala-full-banner {
  width: 100%;
  padding: 40px 20px;
  background-color: #fff; /* Optional background */
}

/* Boxed container for the image */
.kerala-banner-box {
  max-width: 1290px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); /* Optional shadow */
}

/* Banner Image */
.kerala-banner-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}




.search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border-radius: 19px;
  padding: 5px 30px;
  width: 800px;
  max-width: 95%;
  margin-top: 30px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  gap: 16px;
  transition: all 0.3s ease;
}

.search-bar:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.search-bar .location-icon {
  font-size: 1.3rem;
  color: #ff5722;
  background-color: #ffe6dc;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(255, 87, 34, 0.1);
  transition: transform 0.2s ease;
}

.search-bar .location-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Input field */
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.1rem;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: transparent;
}

.search-bar input::placeholder {
  color: #999;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.search-bar input:focus::placeholder {
  opacity: 0.4;
}

/* Search button */
.search-bar .search-button {
  background: linear-gradient(to right, #007bff, #00c6ff);
  border: none;
  padding: 12px 15px;
  border-radius: 30px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.search-bar .search-button:hover {
  background: linear-gradient(to right, #0056b3, #009dff);
  transform: translateY(-2px);
}



.headline-slider h1 {
  font-size: 40px;
  font-weight: 1000;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #ffcb22;
}

.slider-words {
  display: inline-block;
  height: 69px;
  overflow: hidden;
  vertical-align: middle;
  position: relative;
}

/* Stack all words vertically */
.slider-words span {
  display: block;
  animation: slideWords 6s ease-in-out infinite;
}

/* Make each word the same height */
.slider-words span > span {
  display: block;
  height: 40px;
  line-height: 40px;
}

/* Animation */
@keyframes slideWords {
  0%, 20% {
    transform: translateY(0%);
  }
  25%, 45% {
    transform: translateY(-100%);
  }
  50%, 70% {
    transform: translateY(-200%);
  }
  75%, 100% {
    transform: translateY(0%);
  }
}




@media (max-width: 768px) {
  .headline-slider h1 {
    font-size: 24px; /* Smaller font for mobile */
  }

  .slider-words {
    height: 28px; /* Match new line-height */
  }

  .slider-words span {
    height: 28px;
    line-height: 28px;
  }

  @keyframes slideWords {
    0%, 20% {
      transform: translateY(0%);
    }
    25%, 45% {
      transform: translateY(-100%);
    }
    50%, 70% {
      transform: translateY(-200%);
    }
    75%, 100% {
      transform: translateY(0%);
    }
  }
}




/* Container for tabs + search bar */
.search-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  margin-top: 10px; /* Move search bar slightly lower for professional spacing */
}

/* Tabs */
.tabs {
  display: flex;
  z-index: 2;
  position: relative;
}

.tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  margin-right: 6px; /* Gap between "Trip Packages" and "Travel Guides" */
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  background-color: #1d3fa4; /* default = blue */
  color: white;
  transition: 0.3s;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: none;
  position: relative;
  z-index: 2;
}

/* Inactive tab becomes blue */
.tab:not(.active) {
  background-color: #1d3fa4;
  color: white;
}

/* Active tab becomes white */
.tab.active {
  background-color: white;
  color: #1d3fa4;
  z-index: 3;
  border-bottom: none;
}

/* Round only outer corners */
.left-tab {
  border-right: 1px solid #ddd;
}

.right-tab {
  border-left: 1px solid #ddd;
  margin-left: -1px;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 14px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  top: -1px;
  width: 100%;
  z-index: 1;
  border-top: 1px solid #1d3fa4;
  transition: border-radius 0.3s ease;
}

/* Icons */
.icon-left, .icon-right {
  font-size: 20px;
  color: #000;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
}

.icon-left {
  margin-right: 14px;
}

.icon-right {
  margin-left: 14px;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  flex: 1;
  background: transparent;
}

/* Connected to LEFT tab (Trip Packages) */
.search-box.left-connected {
  border-top-left-radius: 0;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* Connected to RIGHT tab (Travel Guides) */
.search-box.right-connected {
  border-top-left-radius: 0;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

@media (max-width: 768px) {
  .search-box input {
    font-size: 12px;
    font-weight: 600;
  }

  .search-box input::placeholder {
    font-size: 10px;
  }
}









* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
}

.container {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.left-section,
.right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-section {
  flex-direction: column;
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
}

.left-section h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.left-section .highlight {
  color: #f97316;
  font-weight: 700;
}

.subtext {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

.tour-form {
  width: 100%;
  max-width: 360px;
}

.input-group {
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
}

.input-group .icon {
  font-size: 1.9rem;
  color: #ffffff;
  margin-right: 10px;
  min-width: 24px;
  text-align: center;
}

.input-group input,
.input-group textarea {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 1rem;
}


.input-group textarea {
  resize: none;
  height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(to right, #f97316, #f59e0b);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: linear-gradient(to right, #fb923c, #facc15);
  transform: translateY(-2px);
}

.right-section {
  flex: 1;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.illustration-box {
  background-color: #e7f6ee;
  border-radius: 1rem;
  padding: 1rem;
  max-width: 100%;
  width: 420px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.illustration-box img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.illustration-box .caption {
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
  line-height: 1.4;
}

.callback-section {
  padding: 80px 20px;
  background: #fefcf8;
  display: flex;
  justify-content: center;
  align-items: center;
}


.callback-container {
  max-width: 1280px; /* Was probably 1000px or 1100px */
  width: 100%;
  min-height: 700px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin: auto;
}


.callback-form {
  flex: 1;
  padding: 60px;
  background: linear-gradient(135deg, #e3e6e4, #f7ddce);
}


.callback-form h2 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.callback-form h2 span {
  color: #f97316;
}

.input-group {
  background: #f7f7f7;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.input-group:focus-within {
  border-color: #f97316;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.3);
}

.input-group .icon {
  color: #666;
  font-size: 1.2rem;
  margin-right: 10px;
}

.input-group input,
.input-group textarea {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  width: 100%;
  resize: none;
}

.callback-btn {
  background: linear-gradient(to right, #f97316, #f59e0b);
  border: none;
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.callback-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #fb923c, #facc15);
}

.callback-illustration {
  flex: 1.3; /* ✅ make right side bigger */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end; /* ✅ push text to bottom */
  justify-content: center;
  background: #000;
  padding: 40px 20px;
  min-height: 100%;
}

.callback-illustration img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.callback-illustration p {
  display: none;
}




/* ====== Enhanced Mobile Responsive (Below 768px) ====== */
@media (max-width: 768px) {

  .container {
    flex-direction: column;
    margin: 20px;
    border-radius: 12px;
  }

  .left-section,
  .right-section {
    flex: none;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
  }

  .left-section h1 {
    font-size: 1.4rem;
  }

  .subtext {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .tour-form {
    max-width: 100%;
  }

  .input-group {
    padding: 0.65rem 1rem;
    margin-bottom: 1rem;
  }

  .submit-btn {
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
  }

  .illustration-box {
    width: 100%;
    padding: 1rem;
  }

  .illustration-box .caption {
    font-size: 0.9rem;
  }

  /* ==== Callback Section ==== */
  .callback-section {
    padding: 40px 20px;
  }

  .callback-container {
    flex-direction: column;
    min-height: unset;
    border-radius: 16px;
  }

  .callback-form {
    padding: 30px 20px;
    width: 100%;
  }

  .callback-form h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .callback-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 12px;
  }

  .callback-illustration {
    min-height: 300px;
  }

  .callback-illustration p {
    font-size: 1rem;
    padding: 1rem;
    max-width: 90%;
  }

  .callback-illustration img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

}


.perfect-escape {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.escape-container {
  max-width: 1240px;
  margin: 0 auto;
}

.escape-heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Wrapper must control full view space */
/* Wrapper */
.escape-slider-wrapper {
  position: relative;
  max-width: 1240px;
  margin: auto;
  overflow: hidden; /* ✅ important for transform sliding */
}

/* Scrollable area */
.escape-slider {
  display: flex;
  gap: 20px;
  transition: transform 1.0s ease;
}

/* Cards – fixed width ensures alignment */
.escape-card {
  flex: 0 0 240px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.escape-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.escape-card h3 {
  margin: 12px 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.escape-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}



/* Mobile */
@media (max-width: 768px) {
  .escape-card {
    width: 240px;
  }
  .escape-arrow.left {
    left: 5px;
  }
  .escape-arrow.right {
    right: 5px;
  }
}


/* Card Grid Layout */
/* Card Grid Layout */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1320px; /* 220px x 6 = 1320px for 6 cards */
  margin: 0 auto;
  justify-items: center;
  padding: 20px;
}




.card {
  display: block;
  aspect-ratio: 3 / 4; /* maintains the vertical shape */
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.card-section {
  padding: 30px 0px;
}

.card-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0px;
  color: #333;
}

/* =======================
   Responsive Fixes
========================= */

/* Tablets and small desktops */
@media (max-width: 768px) {
  .card-container {
    grid-template-columns: 1fr;
    padding: 20px 10px;
    gap: 20px;
  }

  .card {
    max-width: 360px;
    margin: 0 auto;
  }
}





.package-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #333;
}

.package-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px;
}

/* 5 cards per row */
.image-box {
  flex: 0 1 calc(20% - 24px); /* 100% / 5 = 20%, subtracting gap */
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect stays the same */
.image-box:hover {
  transform: translateY(-12px);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(0, 0, 0, 0.1),
    0 0 15px rgba(255, 165, 0, 0.3);
}

/* Image stays full */
.image-box img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
}

/* Desktop: 3 per row */
@media (max-width: 992px) {
  .image-box {
    flex: 0 1 calc(33.33% - 20px);
  }
}

/* Tablet: 2 per row */
@media (max-width: 768px) {
  .image-box {
    flex: 0 1 calc(50% - 20px);
  }
}

/* Mobile: 1 per row, full width */
@media (max-width: 480px) {
  .image-box {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* ensure full image is shown */
  }
}



.footer-contact .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px; /* was probably too big before */
}

.footer-contact .social-icons a {
  text-decoration: none;
  color: #003B5B;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;       /* optional: equal sizing */
  height: 40px;
}

.footer-contact .social-icons a:hover {
  color: #0077b5;
}




/* Search results container */
#results {
  max-height: 330px;
  overflow-y: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  display: none;
  z-index: 999;
  padding: 8px 0;
  font-family: Arial, sans-serif;
}

/* Hide scrollbar but keep scroll functionality */
#results::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
#results {
  scrollbar-width: none; /* Firefox */
}


/* Each result styled like the glossy pill */
#results p {
  margin: 8px auto;
  padding: 12px 18px;
  max-width: 90%;
  background: linear-gradient(145deg, #1a1a1a, #333333);
  border-radius: 50px;
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.08),
              inset 2px 2px 6px rgba(0, 0, 0, 0.5),
              4px 4px 10px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
}

/* Hover effect */
#results p:hover {
  transform: translateY(-2px);
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.1),
              inset 2px 2px 6px rgba(0, 0, 0, 0.6),
              6px 6px 12px rgba(0, 0, 0, 0.4);
}

/* Links inside results */
#results a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Icon at the right */
.suggestion-icon {
  background: white;
  color: black;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Mobile optimization */
@media (max-width: 600px) {
  #results p {
    font-size: 14px;
    padding: 10px 15px;
  }
}


.package-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 12px auto;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.package-box:hover {
  transform: translateY(-4px);
}

.package-box h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

.package-box a {
  display: inline-block;
  padding: 8px 14px;
  background: #d4a017;
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
}

.package-box a:hover {
  background: #f0b930;
}
















/* Valentine Special Section Styling */
.valentine-section {
  background:
    radial-gradient(circle at 80% 40%, #ffd1dc 0%, transparent 45%),
    radial-gradient(circle at 20% 70%, #ffc1cc 0%, transparent 50%),
    linear-gradient(
      135deg,
      #fff0f4 0%,
      #ffe2ea 35%,
      #ffd6e2 65%,
      #fff6f8 100%
    );
  padding: 90px 20px;
  color: #4a1f2a;
  text-align: center;
}


.valentine-container {
  max-width: 900px;
  margin: 0 auto;
}

.valentine-section h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.valentine-section .subtitle {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 40px;
}

.valentine-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.valentine-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.valentine-card p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.valentine-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #d72638;
  color: #ffffff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.valentine-btn:hover {
  background: #b81f2f;
}

.date-note {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.7;
}

.valentine-section {
  position: relative;
  overflow: hidden;
}

.valentine-container {
  position: relative;
  z-index: 2;
}

.floating-hearts {
  z-index: 1;
}

/* Floating Hearts Layer */
.floating-hearts {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Heart Shape */
.heart {
  position: absolute;
  bottom: -60px;
  width: 28px;
  height: 28px;
  background: #ff5c8a;
  transform: rotate(45deg);
  animation: floatRealistic 10s ease-in-out infinite;
  opacity: 0;
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: inherit;
  border-radius: 50%;
}

.heart::before {
  top: -14px;
  left: 0;
}

.heart::after {
  left: -14px;
  top: 0;
}

/* Variations */
.heart:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  transform: scale(0.8) rotate(45deg);
}

.heart:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
  transform: scale(1) rotate(45deg);
}

.heart:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
  transform: scale(0.6) rotate(45deg);
}

.heart:nth-child(4) {
  left: 70%;
  animation-delay: 1s;
  transform: scale(1.1) rotate(45deg);
}

.heart:nth-child(5) {
  left: 90%;
  animation-delay: 3s;
  transform: scale(0.9) rotate(45deg);
}

/* Animation */
@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-110vh) rotate(45deg);
    opacity: 0;
  }
}

@keyframes floatRealistic {
  0% {
    transform: translate(0, 0) rotate(45deg) scale(0.9);
    opacity: 0;
  }

  10% {
    opacity: 0.85;
  }

  25% {
    transform: translate(12px, -25vh) rotate(46deg) scale(1);
  }

  50% {
    transform: translate(-10px, -55vh) rotate(44deg) scale(1.05);
  }

  75% {
    transform: translate(8px, -85vh) rotate(46deg) scale(0.98);
  }

  100% {
    transform: translate(-6px, -115vh) rotate(45deg) scale(0.95);
    opacity: 0;
  }
}


.heart:nth-child(1) { animation-duration: 9s; }
.heart:nth-child(2) { animation-duration: 11s; }
.heart:nth-child(3) { animation-duration: 8.5s; }
.heart:nth-child(4) { animation-duration: 12s; }
.heart:nth-child(5) { animation-duration: 10.5s; }

.heart {
  box-shadow: 0 0 18px rgba(255, 92, 138, 0.45);
}






















.explore-section {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background: #ff5757;
    overflow: hidden;
}

.explore-section::before,
.explore-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.explore-section::before {
    top: -100px;
    left: -100px;
}

.explore-section::after {
    bottom: -120px;
    right: -120px;
}

/* Container */

.explore-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT SIDE IMAGES */

.explore-images {
    display: flex;
    align-items: center;
    gap: 20px;
}

.explore-images .img-small,
.explore-images .img-big {
    border-radius: 100px;
    overflow: hidden;
    background: #fff;
    padding: 6px;
}

.explore-images .img-small {
    width: 160px;
    height: 260px;
}

.explore-images .img-big {
    width: 220px;
    height: 340px;
}

.explore-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
}

/* RIGHT CONTENT */

.explore-content {
    max-width: 500px;
}

.explore-top {
    letter-spacing: 2px;
    font-size: 14px;
}

.explore-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.explore-content h2 span {
    display: block;
    font-size: 28px;
}

.explore-tags {
    margin-bottom: 20px;
}

.explore-tags span {
    border: 1px solid #fff;
    padding: 6px 14px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 14px;
}

.explore-call {
    margin: 20px 0;
    font-size: 20px;
}

.explore-btn {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
}






/* ============================= */
/* MOBILE RESPONSIVE (≤768px)   */
/* ============================= */

@media (max-width: 768px) {

  .explore-section {
    padding: 50px 20px;
    text-align: center;
  }

  .explore-container {
    flex-direction: column-reverse; /* Content first */
    gap: 30px;
  }

  /* ===== CONTENT FIRST ===== */

  .explore-content {
    max-width: 100%;
  }

  .explore-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .explore-content h2 span {
    font-size: 20px;
  }

  .explore-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .explore-tags span {
    margin: 0;
    font-size: 12px;
  }

  .explore-call {
    font-size: 16px;
  }

  .explore-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
  }

  /* ===== IMAGES ===== */

  .explore-images {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* Show only big image for cleaner layout */
  .explore-images .img-small {
    display: none;
  }

  .explore-images .img-big {
    width: 100%;
    max-width: 320px;
    height: 420px;
    border-radius: 60px;
  }

}