* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


body {
    background: radial-gradient(circle at center, rgba(0,225,180,0.3),
                rgba(180,0,225,0.2),
                #05070a 70%);
    color: white;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.glow-text {
    background: linear-gradient(90deg, #00ffcc, #00aaff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s infinite alternate;
}
    

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
}

.login-btn {
    padding: 10px 18px;
    border-radius: 20px;
    border: none;
    background: linear-gradient(90deg, #00ffcc, #00aaff);
    cursor: pointer;
}

.nav-center a {
    margin: 0 15px;
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.nav-center a:hover {
    color: white;
}

.nav-left {
    font-weight: bold;
    letter-spacing: 1px;
}
 
.nav-right .login {
    margin-right: 20px;
    color: #aaa;
    text-decoration: none;
}

.signup {
    padding: 8px 18px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    text-align: center;
    margin-top: 80px;
}

.logo-hero {
    width: 150px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 25px rgba(0,255,180,0.5))
            drop-shadow(0 0 50px rgba(180,0,225,0.3));
} 

h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

p {
    color: #aaa;
    margin-bottom: 30px;
}

button {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(90deg, #00ffcc, #00aaff);
    color: black;
    transition: 0.3s ease;
}

button:hover {
    transform: scale(1.05);
}

.primary {
    background: linear-gradient(135deg, #00ffb4, #00cfff);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.secondary {
    background: transparent;
    border: 1px solid #555;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
}

.features-hero {
    text-align: center;
    padding: 80px 20px 40px;
}

.features-hero h1 {
    font-size: 3rem;
}

.features-hero p {
    opacity: 0.7;
    margin-top: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px;
}

.features-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0,255,204, 0.15);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.features-card:hover {
    transform: translateY(-5px);
    border-color: #00ffcc;
    box-shadow: 0 10px 20px rgba(0,255,204, 0.2);
}

.cta {
    text-align: center;
    padding: 60px 20px;
}

.about-hero {
    text-align: center;
    padding: 80px 20px 40px;
}

.about-hero h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, #00ffcc, #00aaff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    opacity: 0.7;
    margin-top: 10px;
}

.about-mission, .about-story, .about-values {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card {
    max-width: 700px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0,255,204, 0.15);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #00ffcc;
    box-shadow: 0 10px 20px rgba(0,255,204, 0.2);
}

.about-cta {
    text-align: center;
    padding: 60 px 20px;
}

.contact-hero {
    text-align: center;
    padding: 80px 20px 40px;
}

.contact-hero h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, #00ffcc, #00aaff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero p {
    opacity: 0.7;
    margin-top: 10px;
}

.contact-container {
    display: flex;
    justify-content: center;
    padding:20px;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #00ffcc;
    box-shadow: 0 0 10px rgba(0,255,204, 0.3);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.contact-card {
    width: 250px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0,255,204, 0.15);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #00ffcc;
    box-shadow: 0 0px 20px rgba(0,255,204, 0.2);
}

.auth-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-box {
    width: 340px;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0,255,204, 0.15);
    backdrop-filter: blur(10px);
    text-align: center;
}

.auth-box h1 {
    margin-bottom: 5px;
}

.auth-box p {
    opacity: 0.7;
}

.auth-box input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
    color: white;
    outline: none;
}

.auth-box input:focus {
    border-color: #00ffcc;
    box-shadow: 0 0 10px rgba(0,255,204, 0.2);
}

.auth-box button {
    width: 100%;
    margin-top: 10px;
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 10px;
}

.small-text a {
    color: #00ffcc;
    text-decoration: none;
}

.small-text a:hover {
    text-decoration: underline;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.modal-box {
    width: 320px;
    padding: 30px;
    background: rgba(0,0,0,0.7);
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}