*{
    margin: 0;
    padding: 0;
    font-family:Arial, Helvetica, sans-serif;
}
.header{
    min-height: 80vh;
    width: 100%;
    background-image: url(images/background2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 3% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: darkslategrey;
    border-radius: 10%;
    height: 15px;
    opacity: 80%;
        }
nav img{
    width: 150px;
    margin-top: 17px;
    height: 150px;
 }
 .nav-links{
    flex: 1;
    text-align: right;
 }
 .text-box{
    width: 100%;
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    text-align: center;
    color:#fff
 }
 .title{
    font-size: 50px;
    line-height: 100px;
    font-weight: bold;
    height: 100px;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
 }
 .slider{
    color: rgb(1, 57, 104);
    margin: 12px;
    box-sizing: border-box;
    animation: slider 5s linear infinite;
}
@keyframes slider{
0%{margin-top: -400px;}
5%{margin-top: -200px;}
30%{margin-top: -200px;}
35%{margin-top: 0px;}
65%{margin-top: 0px;}
70%{margin-top: 200px;}
100%{margin-top: 200px;}
}

 .nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
 }
 .nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
 }
 .nav-links ul li::after{
    content: '';
    height: 2px;
    width: 0;
    background: #009688;
    position: absolute;
    display: block;
    margin: auto;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 60%;
    left: 50;
    text-align: center;
    justify-content: center;

}
.text-box h1{
    font-size: 52px;
}

h4{
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}
h4::after{
    content: "";
    position: absolute;
   justify-content: center;
    width: 13%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #4caf50;
    margin-left: 40rem;
}
/*
h3{
    font-style: italic;
    font-size: 15px;
  text-align: center;
}
*/
.text-box p{
    margin: 10px 0 40px;
    font-size: 30px;
    color: white;
    margin-top: 20px;
}
.hero-btn{
   display: inline-block;
   text-decoration: none;
   color: white;
   border: 1px solid white;
   padding: 12px 34px;
   font-size: 13px;
   background: transparent;
   position: relative;
   cursor: pointer;
}
.hero-btn:hover{
    border: 1px solod rgb(2, 213, 237);
    background: #009688;
    transition: 1s;
}
nav .fa{
    display: none;
}
@media(max-width: 700px){
    .text-box h1{
   font-size: 30px;
}
.nav-links ul li{
    display: block;
}
.nav-links{
    position: absolute;
    background:#750b0b;
    height: 100vh;
    width: 200px;
    top: 0;
    right:-260px;
    text-align: left;
    z-index: 2;
    transition: 1.5s;
}
nav .fa{
    display: block;
    color: rgb(248, 3, 3);
    margin: 20px;
    font-size: 30px;
    cursor: pointer;
    }
.nav-links{
    padding: 30px;
}
nav img{
    margin-top: 40px;
    margin-bottom: 5px;
    width: 130px;
}
.head h4{
    margin-top: 40px;
}
}
/* for booking */
.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    margin-top: 10px;
    background-color:#2e2b2b;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-right: 400px;
    justify-content:center;
  
}

h1 {
    text-align: center;
    color:#fff;
}
h1::after{
    content: "";
    position: absolute;
    width: 30%;
    height: 4px;
    display: block;
    margin: 0px 74px;
    background-color: #4caf50;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color:#fff;
}

input[type="text"],
input[type="contact"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

.button {
    display:block;
    width: 40%;
    background-color: #00ff37;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: center;
}

.button:hover {
    background-color: #eb0404;
}
.contact-details {
    flex: 0 0 50%;
    padding: 10px;
    text-align: center;
  }
  .contact-details h2 {
    margin-top: 0px;
    margin-bottom: 20px;
    color: white;
  }
  .contact-details p {
    font-size: 15px;
    margin: 5px 0px;
    color: white;
    margin-top: 10px;
  }
  .contact-details i{
    width: 20px;
    color: #00ff37;
    margin-right: 10px;
  }
  .images{
    display:flex;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  
  
  }
.images img{
    width: 200px;
    margin-left: 20px;
    margin-right: 40px;
    margin-top: 50px;
    border-radius: 50%;
    border: 2px solid #00ff37;
    border-width: 5px;
}
.images p{
    font: 15px;
    color: white;
    text-align:left;
    justify-content: left;
    margin-right: 0px;
    margin-top: 10px;
}
.image1:hover img{
    transform: scale(1.2);
    border-color: #007bff;
    
}
.image2:hover img{
    transform: scale(1.2);
    border-color: #bcee19;
}
.image3:hover img{
    transform: scale(1.2);
    border-color: #d105ac;
}
.image4:hover img{
    transform: scale(1.2);
    border-color: #1603c1;
}
.head{
    justify-content: center;
    align-items: center;  
    margin-top: 10px;
}
.head h4{
    text-align: center;
    font-family: arial;
    font-size: 28px;
    color: white;
}
.head p{
    text-align: center;
    font-family: arial;
    font-size: 15px;
    color: white;
}
#selectedPromo {
    display: none; /* Hide the input */
}
.form-group span{
    color:rgb(34, 169, 248);
}
.form-groupdate .form-grouptime {
    display: flex;
}

.form-groupdate .form-grouptime {
    flex: 1;
    margin-right: 10px;
}
@media (max-width: 768px){
    .images{
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* footer */
.hero {
    background-image: url(images/back3.jpg);
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 3px;
}

.btn {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #555;
}

.footer {
    background-color: #333;
    color:white;
    padding: 50px 0;
  
    
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-section {
    padding: 20px;
    flex: 1;
}

.footer-section h2 {
    color: #009688;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.footer-section p {
    font-size: 12px;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
    font-size: 12px;
    margin-left: 20px;
    text-align: center;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
    color: #00ff37;
}

.footer-bottom {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 10px 0;
    margin-top: 0px;
    margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}



  
  .form{
    display: flex;

  }




h2{
    color: #ccc;
    text-align: center;
    font-size: 15px;
}
@media (max-width:800px){
    .container{
        width: 100vw;
    }
}
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    appearance: none; /* Remove default arrow */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23333"><path d="M10 12l-8-8-2 2 10 10 10-10-2-2z"/></svg>'); /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Style the dropdown options */
select option {
    padding: 10px;
}

/* Style the dropdown when it's focused */
select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

