* {
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {}


nav {
    display: flex;
    justify-content: space-between;
    border-bottom: white 1px solid;
    padding-bottom: 10px;
    position: fixed;
    width: 100%;
    background-color: #2f423b;
    z-index: 999;
}
/* .logo img {
    width: 200px;
    padding-left: 10px;
} */
.list ul {
    padding-right: 10px;
    display: flex;
    text-decoration: none;
    list-style: none;
    padding-top: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.list ul li {
    padding-right: 20px;
    padding-left: 20px;
    border-right: #fff 1px solid;
    color: white;
    font-weight: 500;
    font-size: 14px;
}
.menubar{
    display: none;
}

.list ul li a {
    text-decoration: none;
    color: #fff;
}



.footer{
    display: flex;
    justify-content: center;
    background-color: #2f423b;
    padding-bottom: 10px;
    .footercol{
        color: #fff;
        margin-left: 20px;
        margin-right: 20px;
        min-width: 300px;
        .footerhead{
            margin-top: 20px;
            margin-bottom: 20px;
            padding-top: 5px;
            padding-bottom: 5px;
            border-top: #967744 2px solid;
            border-bottom: #967744 2px solid;
        }
        ul{
            padding-left: 20px;
        }
        .footercontent{
            ul{
                li{
                    display: flex;
                    padding-top: 10px;
                    padding-bottom: 10px;
                    a{
                        text-decoration: none;
                        color: #fff;
                    }

                    img{
                        height: 20px;
                        padding-right: 10px;
                    }
                }
            }
        }
    }
}

.copyright {
    padding: 10px;
    background-color: #2f423b;
    border-top: #fff 1px solid;
    text-align: center;
}

.copyright p {
    color: #fff;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button a img {
    width: 60px; /* Adjust size for responsiveness */
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button a img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}


.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contactform{
    padding-top: 80px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    resize: vertical;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #3e8e41;
}
/* Media Queries */
@media (max-width: 768px) {
    .whatsapp-button a img {
        width: 50px; /* Slightly smaller on mobile */
        height: 50px;
    }
    nav {
        flex-wrap: wrap;
        padding: 10px;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
    }
.menubar{
    display: block;
}
    .logo img {
        width: 150px;
        margin-bottom: 10px;
    }

    .list ul {
        /* justify-content: center; */
        padding: 0;
        margin: 0;
        flex-direction: column;
        align-items: center;
        /* display: none; */
        
    }
    .list ul li{
        border-right: none;
        padding: 5px 0;
        /* flex-direction: column; */
    }
/* Footer */
.footer {
    flex-direction: column;
    align-items: center;
}

.footer .footercol {
    min-width: auto;
    width: 90%;
    text-align: center;
    margin: 10px 0;
}



}