*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    background:#1F1F1F;
    color:white;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    transition:0.4s;
}

.page{
    min-height:100vh;
    padding:80px 8%;
    position:relative;
}

.background-logo{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    pointer-events:none;
    z-index:-1;
}

.background-logo img{
    width:70%;
    opacity:0.04;
}

.hero{
    min-height:80vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.main-logo{
    width:170px;
    margin-bottom:25px;
}

.hero h1{
    font-size:60px;
    font-weight:700;
}

.hero-text{
    margin-top:18px;
    max-width:700px;
    color:#bdbdbd;
    line-height:1.8;
    font-size:18px;
}

.section-title{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:60px;
}

.orange-line{
    width:8px;
    height:42px;
    background:#E79517;
    border-radius:20px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
}

.features-container{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.feature-card{
    background:#2A2A2A;
    border-radius:34px;
    padding:40px;
    width:350px;
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card img{
    width:60px;
    margin-bottom:30px;
}

.feature-card h3{
    font-size:28px;
    margin-bottom:16px;
}

.feature-card p{
    color:#c7c7c7;
    line-height:1.8;
}

.contact-container{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.contact-box{
    background:#2A2A2A;
    padding:35px;
    border-radius:28px;
    width:320px;
    text-decoration:none;
    color:white;
    transition:0.3s;
}

.contact-box:hover{
    transform:translateY(-6px);
}

.contact-box h3{
    font-size:26px;
    margin-bottom:10px;
}

.contact-box p{
    color:#cfcfcf;
}

.bottom-nav{
    position:fixed;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    background:#2A2A2A;
    padding:14px 24px;
    border-radius:100px;
    display:flex;
    gap:20px;
    align-items:center;
    z-index:999;
}

.nav-link{
    text-decoration:none;
    color:white;
    transition:0.3s;
    font-weight:500;
}

.nav-link:hover,
.active{
    color:#E79517;
}

#themeToggle{
    background:#E79517;
    border:none;
    color:white;
    padding:10px 18px;
    border-radius:30px;
    cursor:pointer;
    font-family:'Poppins',sans-serif;
}

footer{
    margin-top:100px;
    text-align:center;
    color:#9f9f9f;
}

.light-mode{
    background:#F4F4F4;
    color:black;
}

.light-mode .feature-card,
.light-mode .contact-box,
.light-mode .bottom-nav{
    background:#dfdfdf;
}

.light-mode .feature-card p,
.light-mode .contact-box p,
.light-mode .hero-text,
.light-mode footer{
    color:#4b4b4b;
}

.light-mode .nav-link{
    color:black;
}

@media(max-width:900px){

    .hero h1{
        font-size:42px;
    }

    .hero-text{
        font-size:16px;
    }

    .section-title h2{
        font-size:28px;
    }

    .feature-card{
        width:100%;
    }

    .contact-box{
        width:100%;
    }

    .bottom-nav{
        width:90%;
        justify-content:center;
        flex-wrap:wrap;
    }

}