/* Global Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
  }
  body {
    background-color: #FFFFFF;
    color: #F15025;
    text-align: center;
    line-height: 1.6;
  }
  /* Header */
  .navbar{
    position:fixed;
    z-index: 9;
    width: 100%;
    top: 0;
  }
  /* Hero Section */
  .hero {
    margin-top: 80px;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero h1{
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    font-size: 32px;
  }
  .carousel-caption{
    bottom: 25%;
  }
  /* Holiday Search Section */
  .holiday-search {
    background: #fff;
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  .holiday-search .search-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .holiday-search .search-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  .holiday-search .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .holiday-search .form-group label {
    margin-bottom: 5px;
    font-weight: bold;
  }
  .holiday-search .form-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  /* Special Offers Section */
  .special-offers {
    padding: 60px 20px;
    background: #fff;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  .special-offers h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .special-offers p {
    margin-bottom: 40px;
    color: #777;
  }
  .special-offers .offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .special-offers .offer-item {
    width: 220px;
  }
  .special-offers .offer-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  .special-offers .offer-item img:hover {
    transform: scale(1.05);
  }
  .special-offers .offer-item p {
    margin-top: 10px;
    font-weight: bold;
  }

  /* Happy Clients Section */
  .happy-clients {
    padding: 60px 20px;
    background: #fff;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  .happy-clients h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .happy-clients p {
    margin-bottom: 40px;
    color: #777;
  }
  .happy-clients .clients-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .happy-clients .client-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 220px;
    max-width: 220px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .happy-clients .client-item p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .happy-clients .client-item strong {
    display: block;
    margin-bottom: 5px;
  }
  .happy-clients .client-item span {
    font-size: 12px;
    color: #555;
  }
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }