
* {
    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;
}
/* Newsletter */
.newsletter {
    padding: 5rem 1rem;
    background-color: rgba(14, 165, 233, 0.1);
  }
  
  .newsletter-box {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  
  .newsletter-info {
    background-color: var(--blue);
    color: var(--white);
    padding: 2rem;
  }
  
  .newsletter-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .newsletter-info p {
    margin-bottom: 1.5rem;
  }
  
  .newsletter-features {
    list-style: none;
  }
  
  .newsletter-features li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .newsletter-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--orange);
    border-radius: 50%;
  }
  
  .newsletter-form {
    padding: 2rem;
  }
  
  .newsletter-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gray);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .subscribe-btn {
    display: block;
    width: 100%;
    background-color: var(--orange);
    color: var(--white);
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
  }
  
  .subscribe-btn:hover {
    background-color: #ea580c;
  }
  
  .form-disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
    text-align: center;
  }
  /* 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;
    }
  }
