.navabar{
    position:fixed;
    display:flex;
    top: 0;
    background-color: black;
    color: white;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    z-index: 1;
}
.navabar a{
    text-decoration: none;
}
.navabar div {
  color: white;
  padding: 10px;
  cursor: pointer;
}
.navabar div:hover{
    background-color: lightgray;
}
.container{
    position: relative;
    width: 100%;
    height: auto;
}
.container img{
    width: 100%;
}
.container .text{
    position: absolute;
    top: 50%;
    left:50%;
    bottom: 50%;
    font-size:x-large;
    transform: translate(-60% -60%);
    color:white;
}
.container .text1{
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: white;
    background-color:black ;
}
.container .text2{
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: black;
    color:yellow;
    
}    
.navabar1{
    align-self: center;
    justify-content: center;
    background-color: black;
    width: 15%;
}
.navabar1 div{
    color: white;
}
.container1{
    display: flex;
    align-self: center;
    justify-content: center;
}
.container2 {
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 0;
    background-color: lightblue;
    width: 600px;
}

.image{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 600px;
    height: 300px;
    
}
.container3 div{
    display: flex;
    align-self: center;
    justify-content: center;
    background-color: black;
    color: white;
    width: 80px;
}

.container123 {
      width: 90%;
      max-width: 600px;
      box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
      padding: 20px;
    }

    .tabs {
      display: flex;
      border: 1px solid #ccc;
    }

    .tab {
      flex: 1;
      text-align: center;
      padding: 10px;
      background-color: #f8f8f8;
      cursor: pointer;
    }

    .tab.active {
      background-color: #444;
      color: white;
    }

    .menu {
      margin-top: 20px;
    }

    .menu-item {
      margin-bottom: 25px;
    }

    .menu-title {
      font-weight: bold;
      font-size: 16px;
      margin-bottom: 5px;
    }

    .menu-description {
      color: #777;
      font-size: 14px;
    }

    .hidden {
      display: none;
    }
 .image2{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width=800px;
    height: 400px;
 }
 .container4{
    display: flex;
    align-self: center;
    justify-content: center;
    background-color: black;
    color: white;
    width: 150px;
 }
 .para1{
     display: flex;
     align-self: center;
     justify-content: center;
     margin-right: 280px;
 }
 .para2{
    display: flex;
    align-self: center;
    justify-content: center;
    margin-right: 280px;
    margin-left: 200px;
 }
 .para3{
    display: flex;
    align-self: center;
    justify-content: center;
    margin-left:5px ;
    margin-right: 110px;
    
 }
 .container5{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 540px;
    height: 300px;
 }
  .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 450px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-size: 16px;
            color: #333;
            font-weight: 600;
        }
        
        input, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            box-sizing: border-box;
            transition: border-color 0.3s;
        }
        
        input:focus, textarea:focus {
            border-color: #4a90e2;
            outline: none;
        }
        
        textarea {
            height: 120px;
            resize: vertical;
        }
        
        .datetime-container {
            display: flex;
            gap: 5px;
        }
        
        .datetime-local {
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            background-color: white;
            color: #999;
        }
        
        .datetime-local-input {
            width: 120px;
        }    
        .submit-btn {
            background-color:black;
            color: white;
            border: none;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .submit-btn:hover {
            background-color:lightgrey;
            color: black;
        }