*{
    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: 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;
        font-size: 14px;
        border-right: #fff 1px solid;
        a{
            text-decoration: none;
           color: #fff;
        }
        

    }
}
.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;
    }
}
.servicebox{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    .content{
        padding-right: 100px;
        h1{
            margin-top: 10px;
            color: #fff;
            background: linear-gradient(90deg, rgba(47,66,59,1) 49%, rgba(0,212,255,0) 100%);
            
        }
        p{
            padding-top: 10px;
        }
        ul{
            padding-left: 20px;
            padding-top: 10px;
        }
    }
    img{
        width: 300px;
    }
}


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


.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;
    }
}
.menubar{
    display: none;
}
/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-button a img {
        width: 50px; /* Slightly smaller on mobile */
        height: 50px;
    }
    .logo img {
        width: 150px;
    }
    .menubar{
        display: block;
    }
    .list ul {
        flex-direction: column;
        align-items: center;
    }

    .list ul li {
        padding: 5px 0;
        border-right: none;
    }

    .topcontent {
        padding: 100px 10px 10px 10px;
    }

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

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

    .servicebox {
        flex-direction: column;
        padding: 0;
        /* img{
            display: none;
        } */
        .content{
            margin-left: 0 !important;
        }
    }
    .servicebox.one.three.five{
        /* flex-direction: column !important;  */
        padding: 0;
    }
    .servicebox.two{
        flex-direction: column-reverse !important;
    }
    .servicebox.four{
        flex-direction: column-reverse !important;
    }
    .servicebox.six{
        flex-direction: column-reverse !important;
    }


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

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


    /* Copyright */
    .copyright p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    .list ul {
        padding: 0;
    }

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

    .servicebox .content {
        padding: 10px 20px;
    }
}