body{
    overflow-x: hidden;
    background-color:aliceblue;
   }
   .head{
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
   }
   .top:hover {
    transform: scale(1.1);
    cursor: pointer;
   }
   .img{
    box-shadow:  0px 10px 10px black;
    border-radius: 20px 20px;
   }
   .site{
    margin-top: 30px;
   }
   
   .container{
    margin-top: 20px;
   }
   .navbar-brand{
    font-size: 30px;
    padding: 10px;
    color: white;
   }
   .nav-item {
    color: white;
    font-size: 20px;
   }  
   .top1{
    margin-top: -20%;
   }
   .down{
    margin-top: -20px;
   }
   button{
    margin-top: -15px;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: darkblue;
    color: white;
    border: none;
    cursor: pointer;
    margin-left: 20px;
   }
   button a{
    color: white;
    text-decoration: none;

   }
    .navbar-nav{
    margin-left: 150px;
    margin-top: -15px;
   }
    .navbar-nav li{
    margin-right: 20px;
   }
   .travel{
    width: 80px;
    height: 80px;
    border-radius: 150px;
    margin-left: 50px;
   }
   /* Hero Section */
   .hero {
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.hero h1 {
    font-size: 3rem;
}
.hero p {
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

/* booking section */
.container1 {
    max-width: 600px;
    margin: 2rem auto;
    background: linear-gradient(90deg, #f8ff00 0%, #3ad59f 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.title {
    text-align: center;
    color: #333;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.form-group textarea {
    resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.ton {
    display: block;
    width: 90%;
    padding: 0.8rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 30px;
  
}
.ton:hover {
    background-color: #0056b3;
}
.response-message {
    margin-top: 1rem;
    text-align: center;
    font-size: 1rem;
    display: none;
    color: green;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #007BFF;
    color: black;
    position: relative;
    bottom: 0;
    width: 100%;
}
::-webkit-scrollbar{
    width: 5px;
}

::-webkit-scrollbar-thumb{
    background: #0cc1e1;
    border-radius: 30px;
}
   .animate-right {
        animation: rightToLeft 4.5s ease-in-out infinite ;
    }
      .animate-left{
        animation: leftToRight 4.5s ease-in-out infinite;
    }

    