/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-padding, 50px);
}

/* Basic styling */
body {
    font-family: 'Droid Serif', serif;
    /*padding: 7.5rem;*/
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 8rem;
    z-index: 1000;
    background: #1a365df2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    color: #000;
    /*border-bottom: 1px solid #ccc;
    /*backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);*/
}

.header_top {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.logo {
    text-align: left;
    transition: all 0.6s ease;
}

.logo img {
    height: 40px;
    width: 300px;
}

.logo:hover {
    scale: 1.05;
}

.under_construction {
    color: #000;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    background-color: #f1d6d6;
    border: 1px solid red;
    text-align: center;
    width: 60%;
}

.under_construction span {
    font-size: 30px;
}

.under_construction marquee {
    color: red;
    font-size: 30px;    
    font-weight: 600;
    border-top: 1px solid red;
    direction: ltr;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


nav {
    display: flex;
    margin-bottom: 1rem;
    justify-content: flex-end;
    align-items: center;
}

.social ul, nav ul, #services ul, #team ul, #sitemap ul {
    list-style: none;
    
}


.social ul li, nav ul li, #services ul li, #team ul li {
    display: inline-block;
    margin-right: 1rem;
}

.social ul li a {
    font-size: 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.6s ease;

}

#whatsapp:hover {
    background-color: #25D366;
    color: #fff;
    border-radius: 5px;
    padding: 4px;

}

#twitter:hover {
    background-color: #1DA1F2;
    color: #fff;
    border-radius: 5px;
    padding: 4px;

}

#linkedin:hover {
    background-color: #0077B5;
    color: #fff;
    border-radius: 5px;
    padding: 4px;

}

#facebook:hover {
    background-color: #1877F2;
    color: #fff;
    border-radius: 5px;
    padding: 4px 8px;

}

nav ul li a, #sitemap ul li a {
    display: block;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.5rem;
    text-decoration: none;
    color: #000;
    transition: all 0.6s ease;
}

nav ul li.active a, nav ul li:hover a {
    background-color: #1DA1F2;
    color: #fff;
    border-radius: 5px;
    padding: 0.5rem 1rem;

}

main {
    position: relative;
    /*margin-top: 8.3rem;*/
    margin-top: 14.8rem;
}


section {
    position: relative;
    margin: 4rem;
    text-align: center;
}

/*
#about, #services, #team, #testimonials, #contact, #qna, #sitemap {
    text-align: center;
}*/

#about h2, #services h2, #team h2, #testimonials h2, #contact h2, #qna h2, #sitemap h2 {
   margin: 2rem;
}

.bottom-border::after{
    content: ""; 
    display: block;
    margin: 0 auto;
    width: 120px; 
    padding-top: 10px; 
    border-bottom: 4px solid #e2b979;
    

}


/* Add more styles for other sections */

footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: #fff;
}


@media  screen and (max-width: 900px) {
    /*header{
        padding: 20px 50px;
    }*/

    /* Mobile Menu */
    .menuToggle{
        position: relative;
        width: 30px;
        height: 20px;
        padding-top: 20px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menuToggle::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #0000FF;
        transform: translateY(-10px);
        box-shadow: 0 10px #0000FF;
        transition: 0.5s;
    }
    .menuToggle::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #0000FF;
        transform: translateY(10px);
        transition: 0.5s;
    }
    .nav.active .menuToggle::before{
        transform: translateY(0) rotate(45deg);
        box-shadow: 0 0 #0000FF;
    }
    .nav.active .menuToggle::after{
        transform: translateY(0) rotate(315deg);
    }
    .nav ul{
        display: none;
    }
    .nav.active ul{
        position: fixed;
        left: 0;
        top: 8rem;
        width: 100%;
        height: calc(100vh - 8rem);
        background: #000000f0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }
    /*
    .nav.active ul a{
        font-size: 1.4em;
    }
    */
}

@media  screen and (max-width: 700px) {
    header {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 0.5rem;
    }

    .logo img {
    height: 26px;
    width: 200px;
    }

    .social ul li {
    margin-right: 0.5rem;
    }

    .social ul li a {
    font-size: 23px;
    }

    /*
    #home{
        padding: 150px 30px;
    }
    #about,
    #services,
    #portfolio,
    #contact{
        padding: 50px 30px;
    }
    #home .content h2{
        font-size: 3em;
    }
    #home::before{
        width: 60vw;
        height: 30vw;
        background: #ff0199;
        border-radius: 80vw 80vw 0 0;
    }
    #home .men{
        position: absolute;
        height: 40vh;
        right: 30px;
    }
    #services .content,
    #portfolio .content,
    #contact .content{
        grid-template-columns: repeat(1, 1fr);
    }
        */
}