*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}

body{
    background:#f7f8fc;
}

nav{
    width:100%;
    padding:20px 10%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.logo h2{
    color:#6C63FF;
}

nav ul{
    display:flex;
    list-style:none;
    gap:20px;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.btn{
    background:#6C63FF;
    color:white;
    padding:10px 20px;
    border-radius:30px;
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 10%;
    min-height:85vh;
}

.hero-text{
    width:50%;
}

.hero-text h1{
    font-size:60px;
    color:#222;
}

.hero-text span{
    color:#6C63FF;
}

.hero-text p{
    margin:25px 0;
    line-height:1.8;
    color:#555;
}

.start-btn{
    text-decoration:none;
    background:#6C63FF;
    color:white;
    padding:15px 40px;
    border-radius:40px;
    transition:.3s;
}

.start-btn:hover{
    background:#4b42f2;
}

.hero-image{
    width:45%;
}

.hero-image img{
    width:100%;
}

.features{
    padding:80px 10%;
    text-align:center;
}

.features h2{
    margin-bottom:40px;
    color:#333;
}

.cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.card{
    background:white;
    width:300px;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    margin-bottom:15px;
}

footer{
    text-align:center;
    padding:30px;
    background:#6C63FF;
    color:white;
}

@media(max-width:900px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-text{
    width:100%;
}

.hero-image{
    width:90%;
    margin-top:40px;
}

.hero-text h1{
    font-size:42px;
}

nav{
    flex-direction:column;
    gap:15px;
}

}
.frontLogo {
    width: 430px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 768px) {

    .frontLogo {
        width: 280px;
        max-width: 85%;
    }

}