*{
    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;
}
.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);
}

.logo img{
    width: 300px;
    padding-left: 20px;
}
.list ul{
    padding-right: 20px;
    display: flex;
    text-decoration: none;
    list-style: none;
    padding-top: 20px;
    
 

    li{
        padding-right: 20px;
        padding-left: 20px;
        color: white;
        font-weight: 500;
        border-right: #fff 1px solid;
        font-size: 14px;
        a{
            text-decoration: none;
           color: #fff;
        }
        

    }
}
.menubar{
    display: none;
}
.topcontent{
    padding-top: 100px;
    padding-left: 50px;
    padding-right: 60px;
    h1{
        padding-bottom: 6px;
        color: #967744;
    }
    hr{
        width: 200px;
        height: 5px;
        background-color: #967744;
       
    }
    p{
        padding-top: 10px;
        font-style: italic;
        
    }
    img{
        width: 300px;
    }
}
.spcontainer{
    display: flex;
    justify-content: center;
    .box{
        max-width: 40%;
        margin-left: 20px;
        /* border: #967744 1px solid; */
        border: #967744 2px solid;
            border-top-left-radius: 50px;
            border-bottom-right-radius: 50px;
            margin-top: 20px;
            padding-bottom: 30px;
            img{
                width: 100%;
                height: 250px;
                border-top-left-radius: 50px;
                object-fit: cover;
            }
            h3{
                padding-top: 10px;
                margin-top: -4px;
                padding-left: 10px;
                padding-right: 10px;
                background-color: #2f423b;
                padding-bottom: 10px;
                color: #fff;
                span{
                    margin-right: 5px;
                }
            }
            p{
                padding-top: 15px;

                padding-left: 20px;
                padding-right: 20px;
            }
            ul{
                padding-left: 40px;
                padding-right: 20px;
                font-style: italic;
                padding-top: 10px;
                
            }
    }
}

.bottomcontent{
    padding-left: 50px;
    padding-right: 60px;
    padding-top: 20px;
    background-color: #967744;
    padding-bottom: 30px;
    
    h1{
        color: #fff;
        padding-top: 10px;
    }
    hr{
            margin-top: 5px;
            width: 200px;
            height: 5px;
            background-color: #fff;
    }
    ul{
        padding-top: 20px;
        padding-left: 20px;
        color: #fff;
    }
    p{
        padding-top: 20px;
        /* padding-left: 20px; */
        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-top: 10px;
    padding-bottom: 10px;
    background-color: #2f423b;
    border-top: #fff 1px solid;
    text-align: center;
    p{
        color: #fff;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-button a img {
        width: 50px; /* Slightly smaller on mobile */
        height: 50px;
    }
    nav{
        flex-direction: column;
        text-align: center;
    }
    .logo img {
        width: 150px;
    }
    .menubar{
        display: block;
    }
    .list ul {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        li{
            border-right: none;
        }
    }

    .topcontent {
        padding: 100px 20px 20px;
        display: flex;
        flex-direction: column;
    }

    .topcontent h1 {
        font-size: 20px;
    }

    .topcontent p {
        font-size: 14px;
    }

    .spcontainer {
        flex-direction: column;
        gap: 10px;
        .box {
            min-width: 84% !important;
            margin-right: 10px;
        }
    }

   

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

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

}