* {
    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;
}
.list ul {
    padding-right: 10px;
    display: flex;
    text-decoration: none;
    list-style: none;
    padding-top: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.menubar{
    display: none;
}
.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);
}


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

.list ul li a {
    text-decoration: none;
    color: #fff;
}
.gallery{
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}
.gallery .container {
    padding-top: 100px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    width: 80%;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Popup styling */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.popup .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}

.popup .close-btn:hover {
    color: #ff6347;
}
.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;
}


@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; */
    }

    .aboutushead {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .aboutushead img {
        margin: 0 auto 10px;
    }

    .chooseus p {
        padding: 0 20px;
    }

    .darkgreen {
        padding: 10px;
    }

    .darkgreen h1 {
        font-size: 18px;
    }

    .bookasession {
        padding: 20px;
    }

    /* Footer */
    .footer {
        flex-direction: column;
        align-items: center;
    }

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

}

