* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
}
body { 
    background: #0f111a; 
    color: #fff; 
    line-height: 1.6; 
}

/* Header */
header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 50px; 
    background: #121429; 
}
header h1 { 
    font-weight: 800; 
    font-size: 1.8rem; 
    letter-spacing: 2px; 
    color: #00e0ff; 
}
nav a { 
    color: #fff; 
    margin-left: 25px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: 0.3s; 
}
a{
    color: #00e0ff;
    text-decoration: none;
}
nav a:hover { 
    color: #00e0ff; 
}

img{
    width: 50px;
    height:auto;
    aspect-ratio: 1/1;
}
/* Hero Section */
.hero { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    height: 90vh; background: 
    linear-gradient(135deg, #0f111a, #1c1f33); 
}
.hero h2 { 
    font-size: 3rem; 
    margin-bottom: 20px; 
    color: #00e0ff; 
}
.hero p { 
    font-size: 1.2rem; 
    max-width: 600px; 
    margin-bottom: 40px; 
    color: #ccc; 
}
.hero button { 
    padding: 15px 30px; 
    font-size: 1rem; 
    font-weight: 600; 
    color: #0f111a; 
    background: #00e0ff; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: 0.3s;
}
.hero button:hover { 
    background: #00b8cc; 
}

/* Features Section */
.features { 
    padding: 80px 50px; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 50px; 
    background: #121429;
}
.feature-card { 
    background: #1c1f33; 
    padding: 30px; 
    border-radius: 12px; 
    transition: 0.3s; 
    text-align: center; 
}
.feature-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 10px 20px rgba(0, 224, 255, 0.3); 
}
.feature-card h3 { 
    margin-bottom: 15px; 
    color: #00e0ff; 
}
.feature-card p { 
    color: #ccc; 
    font-size: 0.95rem; 
}

/* Footer */
footer { 
    padding: 30px 50px; 
    text-align: center; 
    background: #121429; 
    color: #777; 
    font-size: 0.9rem; 
}
footer a { 
    color: #00e0ff; 
    text-decoration: none; 
    margin: 0 10px; 
}

footer .creator,footer .creator a{
    font-weight: 900;
    color: grey;
}