* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .hero {
    background-image: url(view8.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  .hero-image img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
    z-index: -1;
  }
  .hero-content{
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }
  
  /* Navbar */
  .navbar {
    background-color: #0077b6;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo-title {
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 50px;
    margin-right: 15px;
  }
  
  .site-title {
    color: white;
    font-size: 24px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Hero */
  .hero {
    background: url('travel-banner.jpg') center/cover no-repeat;
    height: 700px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }
  
  .hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px #000;
  }
  
  .hero .button {
    display: inline-block;
    background-color: #ffb703;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    border-radius: 20px;
    margin-top: 40px;
    transition: all ease 0.3s;
  }
  
  .hero .button:hover{
    background-color: #043c5b;
    color: #f5f5f5;
  }
  
  /* Destinations Section */
  .destinations {
    padding: 50px 20px;
    text-align: center;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 30px;
  }
  
  .card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  /* Footer */
  footer {
    background-color: #023e8a;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .hero h2 {
      font-size: 28px;
    }
  
    .nav-links {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }
  }
   .about{
    text-align: center;
    padding:100px;
  }
  .about h3{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size:2rem;
    text-align: center;
  }
  .about p{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size:1.2rem;
    line-height:3;
  }
.team-members{
    display: flex;
    flex-wrap: wrap;
  }
.team-member img{
    width:200px;
    height:200px;
    margin:30px;
    object-fit: cover;
}
.contact{
    padding:80px;
    text-align:center;
    background-color:#023e8a;
}
.contact h3{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size:3rem;
    color: white;

}
.contact p{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
    font-size:1rem;
    margin-bottom:20px;
    margin-top: 20px;
}
.form{
    width:100%;
    

}
input,textarea{
    width:70%;
    padding: 10px;
    margin:20px 0;
    border:none;
    box-shadow:0 0 5% rgb(0,0,0, 0.1);
    border-radius:20px;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.form-group{
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-area{
    height:200px;
}
.form button{
    display: inline-block;
    background-color: #ffb703;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    border-radius: 20px;
    margin-top: 40px;
    transition: all ease 0.3s;
    border: none;
    text-align: center;
  }
  .form button:hover{
    background-color: #043c5b;
    color: #f5f5f5;}
.btn{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}