* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --blue: #2563eb;
    --sky-blue: #0ea5e9;
    --orange: #f97316;
    --gray: #334155;
    --light-gray: #f1f5f9;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    --radius: 0.75rem;
  }
  
  html {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
  }
  
  body {
    line-height: 1.6;
    color: var(--gray);
    background-color: var(--white);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .co{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-color: transparent; */
    background-color: rgb(183, 248, 248);
    padding: 2% 10%;
    position: relative;
    z-index: 6;
  }
  .nav {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

div.l {
    list-style: none;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    gap: 3em;
}
/* Testimonials */
.testimonials {
    padding: 5rem 1rem;
  }
  
  .testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-slider::-webkit-scrollbar {
    display: none;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid var(--blue);
  }
  
  .testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-rating {
    margin-bottom: 1rem;
  }
  
  .testimonial-rating i {
    margin: 0 0.1rem;
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
  }
  
  .testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray);
  }
  
  .testimonial-author p {
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .dot.active {
    background-color: var(--blue);
  }
  /* Media Queries */
  @media (min-width: 640px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .destination-grid, .package-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
      flex-direction: row;
      text-align: left;
    }
    
    .testimonial-img {
      margin-right: 1.5rem;
      margin-bottom: 0;
    }
    
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    .search-grid {
      grid-template-columns: 2fr 1fr 1fr;
    }
    
    .hero-title {
      font-size: 3rem;
    }
    
    .newsletter-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1fr;
    }
  }
  
  @media (min-width: 1024px) {
    .nav-links {
      display: flex;
      align-items: center;
    }
    
    .mobile-menu-btn {
      display: none;
    }
    
    .hero-title {
      font-size: 3.5rem;
    }
    
    .search-btn {
      width: auto;
    }
    
    .destination-grid, .package-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-slider {
      overflow-x: visible;
    }
    
    .testimonial-card {
      padding: 2rem;
    }
  }
