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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #FFC126;
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFC126;
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
 
  padding: 10px 2rem 2rem;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  background-color: #f3d439;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  animation: fadeInLeft 1s ease-out;
  margin-bottom: 200px;
  margin-left: -120px;

}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.highlight {
  color: #FFC126;
  font-size: 3rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-button {
  background: #2c3e50;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: #FFC126;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.hero-images {
  flex: 1;
  position: relative;
  height: 600px;
  margin-left: 2rem;
}

.hero-image-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.hero-image-card:hover img {
  transform: scale(1.1);
}

.card-1 {
  width: 280px;
  height: 350px;
  top: 0;
  left: -8px;
  animation-delay: 0s;
}

.card-2 {
  width: 200px;
  height: 360px;
  top: 100px;
  right: 120px;
  animation-delay: 2s;
}

.card-3 {
  width: 250px;
  height: 320px;
  bottom: 50px;
  right: -160px;
  animation-delay: 4s;
}
/*laptop 1440px responsive*/
@media (max-width: 1440px){
  .hero-content {
    margin-left: -50px;
    bottom: 200px;
  }
  .card-1{
    width: 250px;
    height: 320px;
    
  }
  .card-2{
    width: 180px;
    height: 320px;
    right: 130px;
  }
  .card-3{
    width: 220px;
    height: 290px;
    right: -120px;
    margin-top: 20px;
    bottom: 120px;
}
}
/*mobile views*/
/* Mobile Hero Section */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 1rem 2rem;
  }

  .hero-content {
    margin-top: -300px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    line-height: 1.2;
  
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .hero-image-card {
    position: relative; /* reset absolute */
    width: 45%;
    min-width: 140px;
    height: auto;
  }

  .hero-image-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  /* Reset old absolute card classes */
  .card-1, .card-2, .card-3 {
    all: unset;
    width: 45%;
    height: auto;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-images {
    flex-direction: column;
    align-items: center;
  }
  .hero-image-card,
  .card-1,
  .card-2,
  .card-3 {
    width: 100%;
  }
  .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
}

/*laptop 1024px responsive*/
@media (max-width: 1024px){
  .nav-menu {
    margin-left: -40px;
  }
  .hero-content {
    margin-left: 25px;
    text-size-adjust: 80%;
    margin-bottom: 50px;
  }
  .card-1{
    width: 180px;
    height: 250px;
    bottom: 35px;
  }
  .card-2{
    width: 150px;
    height: 260px;
    right: 180px;
  }
  .card-3{
    width: 180px;
    height: 230px;
    right: -15px;
    margin-top: 20px;
    bottom: 120px;
}
.section-title{
  text-align: -20px;
}
}
/* Destinations Section */
.destinations {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.section-title.white {
  color: white;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.destination-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.destination-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

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

.destination-info {
  padding: 30px;
}

.destination-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.destination-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFC126;
  margin-bottom: 10px;
}

.destination-duration,
.destination-location {
  color: #666;
  margin-bottom: 5px;
}

/* Packages Section */
.packages {
  padding: 100px 0;
  background: #2c3e50;
  text-align: center;
}

.packages-slider {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 60px 0 40px;
}

.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  width: 400px;
  transition: all 0.3s ease;
  opacity: 0.7;
  transform: scale(0.9);
}

.package-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.package-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.package-image {
  height: 250px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.package-info {
  padding: 30px;
  text-align: left;
}

.package-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  background: #f8f9fa;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.testimonial-card.featured {
  transform: scale(1.05);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.testimonial-card.featured:hover {
  transform: scale(1.1) translateY(-10px);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid #FFC126;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
}

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

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.rating {
  color: #ffd700;
  font-size: 1.2rem;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: white;
}

.faq-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-item {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-item:hover {
  border-color: #FFC126;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.05), transparent);
  transition: left 0.5s;
}

.faq-item:hover::before {
  left: 100%;
}

.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2c3e50;
  position: relative;
  z-index: 1;
}

.faq-content {
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ...About styles starts... */

    .animated-text {
      display: inline-block;
      animation: fadeInUp 1s ease;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px);}
      to { opacity: 1; transform: translateY(0);}
    }

    .hover-img {
      width: 100%;
      max-width: 400px;
      border-radius: 16px;
      transition: transform 0.4s, box-shadow 0.4s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    }
    .hover-img:hover {
      transform: scale(1.05) rotate(-2deg);
      box-shadow: 0 8px 24px rgba(26,35,126,0.15);
    }

    .mission-section {
      background: #fff;
      padding: 60px 0;
    }
    .mission-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }
    .mission-image {
      flex: 1 1 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .mission-text {
      flex: 1 1 300px;
    }

    .team-section {
      background: #f8f9fa;
      padding: 60px 0;
      text-align: center;
    }
    .team-members {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin-top: 30px;
    }
    .team-member {
      background: #fff;
      border-radius: 16px;
      padding: 24px 16px;
      width: 220px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .team-img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      margin-bottom: 16px;
      border: 3px solid #1a237e;
      object-fit: cover;
      transition: border-color 0.3s;
    }
    .hover-card:hover, .team-member:hover .team-img {
      transform: translateY(-8px) scale(1.04);
      box-shadow: 0 8px 24px rgba(26,35,126,0.13);
      border-color: #ff9800;
    }

    @media (max-width: 900px) {
      .about-content, .mission-content, .team-members {
        flex-direction: column;
        text-align: center;
      }
      .about-image, .mission-image {
        margin-top: 30px;
      }
    }

.about-section {
  margin-top: 60px;
  padding: 60px 0;
  background: #f8f9fa;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.about-text {
  flex: 1 1 300px;
}
.about-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    margin-top: 30px;
  }
}

/*why asr*/
.why-section {
  background: #fff;
  padding: 60px 0 30px 0;
}
.why-section .section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.why-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  margin: 0 auto;
  gap: 32px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 1.18rem;
  font-family: 'Inter', sans-serif;
  color: #222;
  font-weight: 500;
  margin-bottom: 0;
}
.why-icon {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.07);
  transition: background 0.3s, transform 0.3s;
}
.why-item:hover .why-icon {
  background: #e9ecef;
  transform: scale(1.08) rotate(-6deg);
}
.why-icon img {
  width: 32px;
  height: 32px;
  display: block;
}
.why-text {
  color: #222;
  font-size: 1.13rem;
  font-weight: 500;
}
.why-highlight {
  color: #d32f2f;
  font-weight: 700;
  font-size: 1.15em;
}
@media (max-width: 700px) {
  .why-list {
    gap: 18px;
    max-width: 100%;
  }
  .why-item {
    font-size: 1rem;
    gap: 16px;
  }
  .why-icon {
    min-width: 40px;
    min-height: 40px;
    padding: 8px;
  }
    .why-icon img {
      width: 24px;
      height: 24px;
      display: block;
    }
  }
  /* Services Section */
  .services-section {
      background: #f8f9fa;
      padding: 60px 0 30px 0;
    }
    .services-section .section-title {
      text-align: center;
      margin-bottom: 18px;
    }
    .services-intro {
      max-width: 900px;
      margin: 0 auto 36px auto;
      text-align: center;
      color: #333;
      font-size: 1.08rem;
      line-height: 1.7;
    }
    .services-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      justify-content: center;
    }
    .service-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 2px 12px rgba(26,35,126,0.07);
      padding: 32px 22px 28px 22px;
      width: 270px;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .service-card:hover {
      transform: translateY(-10px) scale(1.04);
      box-shadow: 0 8px 32px rgba(26,35,126,0.13);
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    .service-icon {
      width: 54px;
      height: 54px;
      margin-bottom: 18px;
      transition: transform 0.3s;
    }
    .service-card:hover .service-icon {
      transform: scale(1.18) rotate(-8deg);
    }
    .service-card h4 {
      color: #1a237e;
      margin-bottom: 10px;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .service-card p {
      color: #444;
      font-size: 1rem;
      line-height: 1.5;
    }
    @media (max-width: 1100px) {
      .services-grid {
        gap: 24px;
      }
      .service-card {
        width: 45%;
        min-width: 220px;
      }
    }
    @media (max-width: 700px) {
      .services-grid {
        flex-direction: column;
        gap: 18px;
      }
      .service-card {
        width: 100%;
        min-height: 220px;
      }
    }

.why-section .section-title {
  text-align: center;
  margin-left: 0 !important;
}
.why-flex-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.why-list-col {
  flex: 2 1 400px;
  min-width: 320px;
}
.why-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 1.18rem;
  font-family: 'Inter', sans-serif;
  color: #222;
  font-weight: 500;
}
.why-icon {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.07);
  transition: background 0.3s, transform 0.3s;
}
.why-item:hover .why-icon {
  background: #e9ecef;
  transform: scale(1.08) rotate(-6deg);
}
.why-icon img {
  width: 32px;
  height: 32px;
  display: block;
}
.why-text {
  color: #222;
  font-size: 1.13rem;
  font-weight: 500;
}
.why-highlight {
  color: #d32f2f;
  font-weight: 700;
  font-size: 1.15em;
}
.why-video-col {
  flex: 1 1 340px;
  max-width: 420px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.why-video {
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26,35,126,0.10);
  background: #000;
}
@media (max-width: 900px) {
  .why-flex-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .why-video-col, .why-list-col {
    max-width: 100%;
    width: 100%;
  }
  .why-video {
    max-width: 100%;
  }
}

  /* About styles ends... */

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: #FFC126;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #FFC126;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px;
}

.social-link:hover {
  color: #FFC126;
  border-color: #FFC126;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #555;
  color: #bbb;
}
.footer-section .social-link {
          color: #8c8c8e;
          padding: 8px;
          display: inline-flex;
          align-items: center;
          border-radius: 100px;
          justify-content: center;
        }
        .footer-section .social-link:hover {
          color: #f9ce24;
          box-shadow: 0 0 18px 4px #ffe066, 0 0 8px 2px #f9ce24;
        }
/*footer styles ends... */

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 1rem 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-images {
    margin-left: 0;
    margin-top: 3rem;
    height: 400px;
    width: 100%;
  }
  
  .card-1 {
    width: 200px;
    height: 250px;
  }
  
  .card-2 {
    width: 150px;
    height: 200px;
    right: 50px;
  }
  
  .card-3 {
    width: 180px;
    height: 230px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .packages-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .package-card {
    width: 100%;
    max-width: 400px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .destination-card {
    margin: 0 10px;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #FFC126;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Responsive Design for All Laptops and Screens */
/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 1rem 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-images {
    margin-left: 0;
    margin-top: 3rem;
    height: 400px;
    width: 100%;
  }
  
  .card-1 {
    width: 200px;
    height: 250px;
  }
  
  .card-2 {
    width: 150px;
    height: 200px;
    right: 50px;
  }
  
  .card-3 {
    width: 180px;
    height: 230px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .packages-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .package-card {
    width: 100%;
    max-width: 400px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .destination-card {
    margin: 0 10px;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #FFC126;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Responsive Design for All Laptops and Screens */

/* === Mobile fixes override (Appended) === */

/* 1) Hero: kill the negative inline margin on small screens */
@media (max-width: 768px) {
  .hero-content {
    margin-top: 0 !important;
  }
}

/* 2) Hero images: force the intended responsive grid, override later conflicting rules */
@media (max-width: 768px) {
  .hero-images {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    height: auto !important;
    width: 100% !important;
    margin: 1rem 0 0 !important;
  }
  .hero-image-card {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 16px !important;
  }
  .hero-image-card img {
    width: 100% !important;
    height: auto !important;
    border-radius: 16px !important;
    object-fit: cover !important;
    aspect-ratio: 4 / 5; /* keeps a tidy box on phones */
  }

  /* Hard override any card-specific absolute sizes set elsewhere */
  .card-1, .card-2, .card-3 {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 16px !important;
  }
}

/* 3) Ultra-small phones: stack hero images single column */
@media (max-width: 480px) {
  .hero-images {
    grid-template-columns: 1fr !important;
  }
}

/* 4) Section titles: center on mobile and remove inline left margins */
@media (max-width: 768px) {
  .section-title {
    margin-left: 0 !important;
    text-align: center !important;
  }
}

/* 5) Mobile nav menu: enable slide-down menu */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* default hidden on mobile */
  }
  .nav-menu.open {
    display: flex !important;
    position: absolute;
    top: 64px; /* below navbar */
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    padding: 1rem 1.25rem;
    border-top: 1px solid #eee;
    z-index: 1001;
  }
  .nav-link {
    padding: 0.25rem 0;
  }
}

