@media only screen and (min-width:300px) and (max-width:600px) {

    .main {
        width: 100%;
        height: 100%;
    }


    .header {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
        
      }
    
      .header img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: slide 10s infinite;
       
      }
    
      @keyframes slide {
        0%, 100% {
          opacity: 1;
          transform: scale(1);
        }
        25% {
          opacity: 0;
          transform: scale(1.1);
        }
        75% {
          opacity: 0;
          transform: scale(1.1);
        }
      }
    
    
      .header h1 {
        padding-top: 150px;
        color: black;
        font-size: 35px;
        text-align: center;
        margin-top: 30px;
      }
      .header h2 {
        color: gold;
        text-align: center;
      }
    
      .header h3 {
        color: #ff9933;
        font-size: 25px;
        font-family: sans-serif;
        text-align: center;
      }
    
    
    
    .welcome {
        width: 95%;
        height: 800px;
        box-shadow: 2px 3px 5px -2px black;
        margin-left: 10px;
        background-color: white;
        margin-top: 30px;

    }

    .welcome h1 {
        text-align: center;
        font-size: 18px;
    }

    .welcome h2 {
        text-align: center;
        font-size: 16px;

    }


    .welcome p {
        font-size: 13px;
        padding-top: 10px;
        margin-left: 10px;
    }

    .col-one {
        width: 100%;
        height: 800px;
        flex-direction: column;
        display: flex;
        margin-top: 100px;
    }

    .cols2 {

        width: 100%;
        height: 400px;
    }

    .cols2 h1 {
        margin-left: 10px;
    }

    .cols2 h2 {
        margin-left: 10px;
        font-size: 18px;
        padding-top: 20px;
    }

    .cols2 p {
        margin-left: 10px;
        padding-top: 10px;
    }

    .cols2 img {
        height: 100%;
        width: 100%;
    }

    .banquit {
        width: 100%;
        height: 720px;
        background-color: #f5f5f5;
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        margin-left: 0px;
    }

    .bant2 {
        width: 100%;
        height: 350px;

    }

    .name {
        width: 95%;
        height: 45px;
        background-color: #bdb489;
    }

    .name p {
        padding-top: 08px;
        margin-left: 40px;
        font-weight: bold;
    }

    .bant2 p {
        margin-left: 10px;
        font-size: 16px;
        padding-top: 10px;
    }

    .bant2 img {
        width: 100%;
        height: 90%;
    }

    .col2 {
        width: 100%;
        height: 500px;
        background-color: gray;
        margin-top: 100px;
    }

    .col2 h1 {
        text-align: center;
        padding-top: 60px;
        color: white;
        font-size: 45px;
    }

    .col2 p {
        text-align: center;
        padding-top: 40px;
        font-size: 25px;
        color: white;
    }

    .col2 button {
        margin-left: 30%;
        margin-top: 60px;
        height: 70px;
        width: 180px;
        border-radius: 30px;
        color: black;
        border: none;
        background-color: white;
    }



    .serve {
        width: 100%;
        height: 400px;
        margin-top: 70px;
    }

    .serve p {

        padding-top: 20px;
    }

    .serve h1 {
        text-align: center;
    }

    .facelity {
        width: 100%;
        height: 1000px;
        display: flex;
        flex-direction: column;
        margin-left: 0px;
    }

    .facelity2 {
        width: 100%;
        height: 450px;

    }

    .facelity2 p {
        margin-left: 20px;
        padding-top: 20px;
    }

    .cants {
        width: 90%;
        height: 950px;
        flex-direction: column;
        display: flex;
        flex-direction: column;
        margin-left: 10px;
    }

    .conts2 {
        width: 100%;
        height: 450px;
        margin-left: 10px;
        box-shadow: 1px 3px 5px -2px black;
    }

    .conts2 h1 {
        padding-top: 40px;
        margin-left: 70px;
    }



    .conts2 p {
        padding-top: 20px;
        margin-left: 70px;
    }


    .form-container {
        max-width: 400px;
        height: 400px;
        /* Set the height to 400px */
        margin: 0 auto;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .form-group {
        margin-bottom: 15px;
        text-align: left;
    }

    .form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .form-group textarea {
        height: 100px;
    }

    .submit-button {
        background-color: #007bff;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
    }


    .footer {
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 10px;
        margin-top: 100px;
        bottom: 0;
        width: 100%;
    }

    .footer img {
        max-width: 100px;
        /* Set the maximum width of your logo */
        height: auto;
        /* Allow the logo to scale proportionally */
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        display: inline;
        margin: 0 10px;
    }

    .footer-links li a {
        color: #fff;
        /* Set the color to white */
        text-decoration: none;
        /* Remove underline */
    }

    .footer-address {
        margin-top: 10px;
        font-size: 14px;
    }
}