*{
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Background video styling */
#bgVideo {
    position: fixed; /* Keeps the video in the background */
    top: 50%;
    left: 50%;
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    object-fit: cover; /* Ensures the video fills the screen */
    transform: translate(-50%, -50%);
    z-index: -2; /* Puts the video at the very back */
  }
body{
    /* background-color: #2f423b; */
    background-image: url(./assets/bgimage.jpg);
    background-size: cover; 
    background-repeat: no-repeat; 
    background-attachment: fixed;
    background-position: center;
}
.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);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity (0.5) as needed */
    z-index: -1; /* Keep it behind other content */
}
#menubar{
    display: none;
}
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;
    
}
.menubar{
    display: none;
}
.list ul{
    padding-right: 20px;
    display: flex;
    text-decoration: none;
    list-style: none;
    padding-top: 30px;
 

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

    }
}
header{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2f423b;
    h1{
        font-size: 50px;
        font-family: 'Times New Roman', Times, serif;
        color: white;
    }
    .headerButton{
        border: none;
        background-color: #967744;
        font-size: 18px;
        padding: 10px 20px;
        margin-top: 30px;
        color: white;
    }
}
section{
    a{
        text-decoration: none;
        color: #fff;
    }
}
.aboutus{
    height: 100vh;
    background: none;   
    display: flex;
    flex-direction: column;
    justify-content: center;
    .aboutusContent{
        width: 60%;
        padding-left: 30px;
        color: white;
    }
   p{
    padding-top: 20px;
    font-size: 18px;
   }
   li{
    font-size: 15px;
   }
   .buttonsAboutus{
    display: flex;
   }
   .headerButton{
    border: none;
    background-color: #967744;
    font-size: 18px;
    padding: 10px 20px;
    margin-top: 30px;
    color: white;
    margin-left: 20px;
}

}

/* meet The Team */
.meetTheTeam{
    background-color: white;
    padding-bottom: 50px;
    .heading{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 30px;
        padding-bottom: 30px;
        .hrline{
            width: 100%;
            background-color: #967744;
            height: 2px;
            margin-left: 20px;
            margin-right: 20px;
        }
        h2{
            width: 500px;
            color: #967744;
            text-align: center;
        }
    }
    .profileContent{
        display: flex;
      
        width: 100%;
        justify-content: center;
        .insideContent{
            padding-top: 30px;
            padding-bottom: 30px;
            border: #967744 2px solid;
            border-top-left-radius: 50px;
            border-bottom-right-radius: 50px;
            display: flex;
            width: 600px;
            justify-content: center;
            img{
                width: 150px;
                border-radius: 50%;
            }
            .textContent{
                display: flex;
                flex-direction: column;
                padding-left: 20px;
                justify-content: center;
                h1{
                    padding-bottom: 10px;
                    color: #967744;
                }
                .readMore{
                    background-color: #967744;
                    border-radius: 30px;
                    border: none;
                    margin-top: 5px;
                    padding: 5px 5px;
                    color: white;
                }
            }
        }
    }
}

.testimonial{
    background-color: #f0dbbb;
    padding-bottom: 50px;
    .heading{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 30px;
        padding-bottom: 30px;
        .hrline{
            width: 100%;
            background-color: #967744;
            height: 2px;
            margin-left: 20px;
            margin-right: 20px;
        }
        h2{
            width: 1000px;
            color: #967744;
            text-align: center;
        }
    }
    .testimonialcontent{
        display: flex;
        .singletesticontent{
            width: 500px;
            padding: 10px 20px;
            border: #2f423b 1px solid;
            margin-left: 50px;
            margin-right: 50px;
            border-radius: 50px;
            display: flex;
            justify-content: center;
            .testilogo{
                display: flex;
                flex-direction: column;
                justify-content: center;
                img{
                    height: 80px;
                    border-radius: 50%;
                    object-fit: cover;
                    margin-right: 20px;
                }
            }
            .sidecontent{
                align-items: center;
                justify-content: center;

                p{
                    font-style: italic;
                    font-size: 15px;
                }
            }
        }

    }
}

.services{
    background-color: white;
    .heading{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 30px;
        padding-bottom: 30px;
        .hrline{
            width: 100%;
            background-color: #967744;
            height: 2px;
            margin-left: 20px;
            margin-right: 20px;
        }
        h2{
            width: 500px;
            color: #967744;
            text-align: center;
        }
    }
    .serviceContents{
        display: flex;
        justify-content: center;
        padding-bottom: 50px;
        .servicesSingleContent{
            margin-left: 20px;
            width: 200px;
            background-color: #967744;
            .serviceImages{
                width: 200px;
                height: 130px;
                
            }
            p{
                text-align: center;
                color: #fff;
                padding-bottom: 10px;
            }
           
        }
    }
}
.takeAction{
    background-color: #fff;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 50px;
   h1{
    color: #967744;
    font-size: 30px;
   }
   p{
    padding-bottom: 20px;
   }
   .takeActionButton{
    background-color: #967744;
    border-radius: 30px;
    border: none;
    margin-top: 5px;
    padding: 5px 15px;
    color: white;
}
}
.articles{
    background-color: #dab579;
    .heading{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 30px;
        padding-bottom: 30px;
        .hrline{
            width: 100%;
            background-color: #ffffff;
            height: 2px;
            margin-left: 20px;
            margin-right: 20px;
        }
        h2{
            width: 700px;
            color: #ffffff;
            text-align: center;
        }
    }
    .articleContents{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding-bottom: 50px;
        .articleSingleContent{
           
            width: 300px;
            .articleImages{
                width: 300px;
                height: 200px;
            }

        }
    }
    .buttonDiv{
        display: flex;
        justify-content: center;
        padding-bottom: 20px;
        .button{
            background-color: #2f423b;
            color: #fff;
            padding: 10px 15px;
            border-radius: 50px;
        }
    }
}
.threebutton{
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    .button{
        background-color: #967744;
        color: #fff;
        padding: 10px 20px;
        width: 300px;
        text-align: center;
        
    }
}
.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;

                    img{
                        height: 20px;
                        padding-right: 10px;
                    }
                }
            }
        }
    }
}
#menubar{
    display: none;
}
.copyright{
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #2f423b;
    border-top: #fff 1px solid;
    text-align: center;
    p{
        color: #fff;
    }
}


/* Mobile responsive styles */
@media (max-width: 768px) {
    .whatsapp-button a img {
        width: 50px; /* Slightly smaller on mobile */
        height: 50px;
    }
    body{
        /* width: 100%; */
    }

    /* Nav */
    nav {
        flex-direction: column;
        /* align-items: center; */
        padding: 10px 0;
       
    }
    .menubar{
        display: block !important;
    }

    .logo img {
        width: 200px;
        padding-left: 0;
    }
    /* #menubar img{
        display: none;
    } */

    .list ul {
        flex-direction: column;
        align-items: center;
        padding-top: 10px;
        /* display: none; */
    }

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

    /* Header */
    body{
        width: 100%;
    }
    header h1 {
        font-size: 30px;
        text-align: center;

    }
    .buttonsAboutus{
        display: flex;
        flex-direction: column;
    }
    .heading{
        h2{
            font-size: 16px !important;
        }
        .hrline{
            width: 10px !important;
        }
    }

    header .headerButton {
        font-size: 10px;
        padding: 8px 15px;
    }

    /* About Us */
    .aboutus {
        height: auto;
        padding: 20px;
    }

    .aboutus .aboutusContent {
        width: 90%;
        padding: 0;
    }

    .aboutus .headerButton {
        font-size: 16px;
        margin-top: 15px;
        padding: 8px 15px;
    }

    /* Meet The Team */
    .meetTheTeam .heading h2 {
        width: auto;
        font-size: 24px;
    }

    .meetTheTeam .profileContent {
        flex-direction: column;
        align-items: center;
    }

    .meetTheTeam .insideContent {
        max-width: 250px;
        display: flex;
        flex-direction: column;
        align-items: center;
        img{
            width: 70px !important;
            height: 70px;
        }
      
    }

    /* Testimonial */
  
    .testimonial .heading h2 {
        width: auto;
        font-size: 24px;
    }

    .testimonial .testimonialcontent {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .testimonial .singletesticontent {
        display: flex;
        /* flex-direction: column; */
        width: 300px;
        max-width: 300px;
        margin: 10px 0;
        margin-left: 20px;

    }

    /* Services */
    .services .heading h2 {
        width: auto;
        font-size: 24px;
    }

    .services .serviceContents {
        flex-direction: column;
        align-items: center;
    }

    .services .servicesSingleContent {
        width: 80%;
        margin: 10px 0;
    }

    /* Take Action */
    .takeAction h1 {
        font-size: 24px;
    }

    .takeAction p {
        font-size: 14px;
        padding: 0 10px;
    }

    /* Articles */
    .articles .heading h2 {
        width: auto;
        font-size: 24px;
    }

    .articles .articleContents {
        flex-direction: column;
        align-items: center;
    }

    .articles .articleSingleContent {
        width: 90%;
        margin: 10px 0;
    }

    /* Three Button Section */
    .threebutton {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .threebutton .button {
        width: 80%;
    }

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