#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    background-color: #6B4F29; /* wood-tone color */
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: #8B5E3C;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family:"poppins" , "serif";
}
body{
    background-color:#FFFFFF;
}
header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem auto;
    padding:0 0.5rem;
    max-width: 1200px;
}
.navigation ul{
    display: flex;
    list-style-type:none;
    gap:2rem;
}
.navigation a{
    text-decoration: none;
    color:#eeeeee;
}
.navigation a:hover{
    color:#00adb5;
}
hr{
    opacity: 10%;
}
.hero{
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem auto;
    max-width: 1200px;
}
.arrow{
    position: absolute;
    transform: translateX(-5.5rem) translateY(1.5rem);
}
.heroSub{
    display:flex;
    flex-direction: column;
    gap: 0.5rem;
}
.name{
    font-size: 3rem;
    color:#eeeeee;
}
.title{
    font-size: 4rem;
    color:#00adb5;
}
.herobtn{
    display:flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.hireMe{
    background-color: #00adb5;
    color:#eeeeee;
    border-radius: 24px;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}
.cv{
    background-color:rgba(57 , 62 , 70 , 0.75);
    color:#eeeeee;
    border-radius: 24px;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    display:flex;
    align-items:center;
    gap:0.5rem;
    backdrop-filter: blur(4px);
}
.aboutUs{
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem auto;
    max-width: 1200px;
    gap:10rem;
}
.textContainer {
    display:flex;
    flex-direction: column;
}
.texttitle {
    display:flex;
    align-items:center;
    gap:5px;
    font-size:2rem;
}
.aboutName{
    color:#eeeeee;
}
.aboutTitle{
    color:#00adb5;
}
.AboutUsPar{
    text-align:justify;
    color:rgba(238 , 238 , 238 , 0.75);
}
.products{
    background-image: url("asset/svg/background.svg");
    padding: 10rem 10rem;
    margin: 5rem 0rem;
}
.productscontainer{
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: left;
    margin: 5rem auto;
    max-width: 1200px;
}
.projecttitle{
    display:flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    font-size: 2rem;
}
.works ul{
    display:flex;
    list-style-type:none;
    flex-wrap:wrap ;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}
.works li{
   border-radius:16px;
   background-color:rgba(57 , 62 , 70 , 0.5);
    backdrop-filter: blur(4px);
    padding: 1rem 4rem;
}
.works li img{
    width:200px;
    height:200px;
    object-fit: contain;
    transition:transform 0.2s;
}
.works li :hover{
    transform:scale(0.3);
}
.Prices{
    align-items:center;
    display:flex;
    justify-content:center;
}
.contactcontainer{
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content: space-around;
    gap:2rem;
    margin: 2rem auto;
    max-width: 1200px;
}
.contacttitle{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 2rem;
}
.contact{
    display:flex;
    align-items: center;
    justify-content: center;
    margin-right: 5rem;
    gap: 20rem;
}
.contact h3, .contact a{
    color:#eeeeee;
    text-decoration: none;
}
.emailAndPhone{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.socialMedia{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.socialMedia a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color:rgba(57 , 62 , 70 , 0.5);
    backdrop-filter: blur(4px);
    padding: 1rem;
}
.socialMedia img{
    width: 24px;
    height:24px;
}
footer{
    color:#eeeeee;
    padding: 2rem;
    text-align: center;   
}
@media(max-width:1023px){
    header{
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .hero{
        flex-direction: column;
        align-items:center;
        gap: 2rem;
    }
    .heroImg{
        width: 400px;
    }
    .name, .title{
        font-size:2rem;
    }
    .arrow{
        display:none;
    }
    .aboutUs{
        flex-direction: column;
        align-items:center;
        gap: 2rem;
    }
    .textcontainer{
        align-items:center;
        margin: 0rem 5rem;
        gap:2rem;
    }
    .aboutName,.aboutTitle{
        font-size:2rem;
    }
    .light{
        width: 60px;
    }
    .aboutUsimg{
        width: 400px;
    }
    .products{
        padding:0;
    }
    .productscontainer{
        padding: 5rem 0rem;
        gap:3rem;
    }
    .projecttitle{
        margin-left:1rem;
    }
    .works ul{
        flex-direction: column;
        gap:1rem;
    }
    .contactcontainer{
        margin: 10rem 5rem;
    }
    .contact{
        flex-direction: column;
        gap: 1rem;
        margin-right: 0;
    }
}
