*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:linear-gradient(135deg,#667eea,#764ba2);
    min-height:100vh;
}

nav{
    background:rgba(0,0,0,0.25);
    backdrop-filter:blur(10px);
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.hero{
    text-align:center;
    margin-top:90px;
}

.hero h1{
    color:white;
    font-size:55px;
    text-shadow:2px 2px 15px rgba(0,0,0,0.3);
}

.hero p{
    color:white;
    margin-top:20px;
    font-size:20px;
}

button{
   margin-top:20px;
    padding:12px 30px;
    border:none;
    background:linear-gradient(45deg,#2e1065,#5b21b6);
    color:white;
    font-weight:bold;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(76,29,149,0.4);#2e1065,#5b21b6
}
button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(76,29,149,0.6);
}
   
.about{
    width:80%;
    margin:60px auto;
    background:white;
    color:#222;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.about h2{
    margin-bottom:20px;
}

.about p{
    margin-top:15px;
    font-size:18px;
    line-height:1.7;
}

form{
    max-width:400px;
    margin:30px;
    background:white;
    padding:20px;
    border-radius:10px;
}

input, textarea{
    border:1px solid #ddd;
    border-radius:8px;
    width:100%;
    padding:10px;
    margin-bottom:10px;
}

h2, h3{
    margin:20px 30px;
}

.task-card, div{
    background:white;
    margin:20px 30px;
    padding:15px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

@media(max-width:768px){
    nav{
        flex-direction:column;
        padding:20px;
    }

    nav ul{
        margin-top:15px;
        flex-direction:column;
        text-align:center;
    }

    nav ul li{
        margin:10px 0;
    }

    .hero h1{
        font-size:32px;
    }

    .about{
        width:90%;
        padding:25px;
    }
}
body{
    color:#111;
}

form{
    max-width:420px;
    margin:40px auto;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.18);
}

form input,
form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:15px;
    font-size:15px;
}

form textarea{
    min-height:120px;
}

form button{
    width:100%;
    background:linear-gradient(45deg,#2e1065,#5b21b6);
}

h2{
    color:white;
    text-align:center;
    margin-top:40px;
    font-size:34px;
}
.features{
    width:90%;
    margin:50px auto;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.feature-card{
    width:300px;
    background:white;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card h3{
    margin-bottom:15px;
    color:#5b21b6;
}