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

:root {
  --primary-color: #2563eb;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --neutral-color: #64748b;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
}

/* Header */
header {
  /* background: linear-gradient(135deg, var(--primary-color), #1d4ed8); */
  /* color: var(--white); */
  padding: 0.5rem 0;
  /* box-shadow: var(--shadow); */
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  /* mix-blend-mode: difference; */
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.726);
  height: auto;
  min-height: 70px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  /* mix-blend-mode: difference; */
  padding: 0 20px;
  height: 60px;
}

.logo img {
  height: 45px;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  /* mix-blend-mode: difference */
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  font-family: "Parkinsans";
  transition: all 0.3s ease;
  /* mix-blend-mode: difference; */
  position: relative;
}

nav ul li a:hover {
  color: var(--accent-color);
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* nav bar code ends  here  */









/*tour packages code starts here */


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

  .tour-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

  .tour-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    margin: 7px 7px 0px 7px;
  }

  .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
    transition: transform 0.5s ease;
  }

  .tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    border-radius: 10px;
  }

  .tour-content {
    padding: 20px;
    color: white;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .tour-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    margin: 0;
    font-size: 1.2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  /* Hover Effects */
  .tour-item:hover .tour-image img {
    transform: scale(1.1);
    border-radius: 10px;
  }

  .tour-item:hover .tour-overlay {
    opacity: 1;
  }

  .tour-item:hover .tour-content {
    transform: translateY(0);
    opacity: 1;
  }

  .tour-item:hover .tour-title {
    transform: translateY(0);
  }
  
  
.h3-div{
    text-align: center;
    /* font-size: 1.2rem; */
    padding: 10px 0;
    background: #fff;
    font-family: "Parkinsans";
    
}

h2{
    font-family: "Parkinsans";
}

.h3-div h3{
    font-size: 1.2rem !important;
    color: #1e293b; 
    font-size: 1.5rem;
    margin-bottom: 0px !important;
}



/*tour packages code ends here */










.hero-upper {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  gap: 2rem;
}



.image-box {
  width: 40%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
    justify-self: center;
    align-self: center;
}

.image-box img {
    /* justify-self: center; */
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content {
  width: 50%;
}

.content h1 {
  font-size: 2.2rem;
  color: #e63946;
  margin-bottom: 1rem;
  font-family: "Parkinsans";
}

.content p {
  line-height: 1.8;
  margin-bottom: .5rem;
  color: #444;
  font-family: "Parkinsans";
}












/* my hero section code starts here  */

/* Hero-specific styles */
#home.hero {
  min-height: 80vh;
  background: linear-gradient(
      180deg,
      rgba(5, 20, 40, 0.55),
      rgba(5, 20, 40, 0.55)
    ),
    url("/images/8.jpg") center/cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

#home .row{
    justify-self: center;
    align-self: center;
}
#home .hero-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#home .hero-title {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 0.6rem;
  background: linear-gradient(90deg, #fff 0%, #bde6ff 50%, #ffd9a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 20px rgba(2, 6, 23, 0.45);
}
#home .hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  max-width: 60ch;
}
#home .btn-cta {
  min-width: 150px;
}
#home .hero-meta {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
#home .trust-pill {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font-size: 0.875rem;
  color: #eaf6ff;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
/* subtle floating animation for CTA area */
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
#home .cta-wrap {
  animation: floatY 6s ease-in-out infinite;
}
/* down arrow */
#home .scroll-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.35rem;
  opacity: 0.9;
  text-align: center;
  cursor: pointer;
}
#home .scroll-down .dot {
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
#home .scroll-down svg {
  transform: translateY(0);
  animation: floatY 1.8s ease-in-out infinite;
}

/* my hereo section code ends here  */







/* Hero section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 100px 20px;
  position: relative;
  margin-top: 70px;
}


/* Contact section */
.contact {
  background: var(--light-bg);
  padding: 5rem 0;
}

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

.contact h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact > .container > p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--text-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info-item p {
  color: var(--text-light);
  font-size: 1rem;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section p {
  color: var(--text-light);
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--neutral-color);
  color: var(--white);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-color);
  padding-top: 1rem;
  text-align: center;
  color: var(--text-light);
}
/* Testimonials section */
.testimonials {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(16, 185, 129, 0.05)
  );
  z-index: 1;
}

.testimonials > .container {
  position: relative;
  z-index: 2;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonials-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: var(--white);
  margin: 10% auto;
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close {
  color: var(--text-light);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--text-dark);
}

#booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#booking-form input {
  padding: 0.8rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#booking-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

#booking-form button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

#booking-form button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(45deg, #f8fafc, #e2e8f0);
}

.slider-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.slider-container .slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-container a {
  width: 100%;
  height: 100%;
  display: inline-block;
  flex-shrink: 0;
}

.slider-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  padding: 2rem;
  z-index: 1;
}

.slide-overlay h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-overlay p {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider .prev,
.slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  font-weight: 600;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.slider .prev {
  left: 20px;
}

.slider .next {
  right: 20px;
}

.slider .prev:hover,
.slider .next:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.slider-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.slider-indicator.active {
  background: var(--white);
  transform: scale(1.3);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Tour Detail Styles */
.tour-detail {
  padding: 2rem 0;
  margin-top: 70px;
}

.tour-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}

.tour-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 3rem 2rem 2rem;
  color: var(--white);
}

.tour-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tour-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.meta-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.tour-content {
  max-width: 800px;
  margin: 0 auto;
}

.tour-description,
.tour-itinerary,
.tour-includes,
.booking-section {
  margin-bottom: 3rem;
}

.tour-includes h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-includes h2::before {
  content: "✅";
  font-size: 1.5rem;
}

.tour-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.tour-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-hero{
  margin-top: 30px !important;
}

.itinerary-day {
  background: var(--light-bg);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  font-weight: 500;
}

.includes-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.includes-list li {
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
  box-shadow: var(--shadow);
  position: relative;
  padding-left: 2.5rem;
}

.includes-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.booking-section {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-content {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-hero h1 {
  font-size: 2.5rem;
}

.about-hero p {
  font-size: 1.1rem;
}

.values-grid {
  grid-template-columns: 1fr;
}

.team-grid {
  grid-template-columns: 1fr;
}

.stats-grid {
  grid-template-columns: repeat(2, 1fr);
}
/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
  color: var(--white);
  padding: 8rem 0 6rem;
  text-align: center;
  margin-top: 70px;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.about-section {
  padding: 5rem 0;
}

.about-section:nth-child(2) {
  background: var(--light-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.mission-values {
  text-align: center;
}

.mission-values h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

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

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.team-section {
  background: var(--white);
  text-align: center;
}

.team-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.team-section > p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.member-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text-dark);
}

.member-role {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), #dce0e4);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.booking-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Tour Detail Additional Sections */
.tour-excludes {
  margin-bottom: 3rem;
}

.tour-excludes h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-excludes h2::before {
  content: "❌";
  font-size: 1.5rem;
}

.excludes-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.excludes-list li {
  background: #fef2f2;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  padding-left: 2.5rem;
  border-left: 4px solid #ef4444;
}

.excludes-list li::before {
  content: "✗";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ef4444;
  font-weight: bold;
  font-size: 1.2rem;
}

.tour-why-choose-us {
  margin-bottom: 3rem;
}

.tour-why-choose-us h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-why-choose-us h2::before {
  content: "⭐";
  font-size: 1.5rem;
}

.why-choose-us-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.why-choose-us-list li {
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  padding-left: 2.5rem;
}

.why-choose-us-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.tour-contact {
  margin-bottom: 3rem;
}

.tour-contact h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-contact h2::before {
  content: "📞";
  font-size: 1.5rem;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .tour-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .first-one{
      display: none !important;
  }
  
  .mobile-container{
      align-items: start !important;
  }
  
  .hero-upper{
      display: flex;
      flex-direction: column;
  }
  
  .image-box{
      grid-template-columns: 1fr 1fr 1fr 1fr;
      width: 90%;
  }
  
  .content{
      width: 90%;
      align-self: center;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  nav {
    padding: 0 1rem;
  }

  nav ul {
    gap: 1rem;
  }

  .slider {
    height: 400px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .tour-list {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1rem;
  }

  .tour-hero {
    height: 50vh;
  }

  .tour-hero h1 {
    font-size: 2rem;
  }

  .tour-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .tour-content h2 {
    font-size: 1.5rem;
  }

  .includes-list {
    grid-template-columns: 1fr;
  }

  .booking-section {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
  
  .content {
      width: 100%;
  }
  
  .content h1{
      font-size: 1.7rem !important;
  }
  
  .image-box{
      width: 100%;
      grid-template-columns: 1fr 1fr;
  }

  .slider {
    height: 300px;
  }
  
  .content p{
      font-size: .8rem;
  }

  .slider .prev,
  .slider .next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .tours h2,
  .contact h2 {
    font-size: 2rem;
  }
}













