/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;

    background:
        radial-gradient(circle at 20% 30%, rgba(123, 89, 255, 0.35), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(91, 157, 255, 0.25), transparent 45%),
        radial-gradient(circle at center, #2b145f, #05010f);
}


/* NAVBAR */
nav {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: transparent;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

nav a:hover {
    color: #b388ff;
}

/* HERO SECTION */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO CONTENT */
.hero-content {
    max-width: 900px;
    text-align: left;
    padding: 20px;
}

/* HEADLINE */
.hero h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* SUBTEXT */
.hero p {
    font-size: 18px;
    color: #d1c7ff;
    max-width: 600px;
    line-height: 1.6;
}

/* BUTTON */
.hero-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: linear-gradient(90deg, #7f5cff, #5b9dff);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

/* NORMAL CONTENT (OTHER PAGES) */
.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section {
    padding: 80px 20px;
}

.features-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 250px;
    backdrop-filter: blur(10px);
}

}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #b388ff;
}

/* ...existing styles for hero, navbar, sections, cards... */

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 40px auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #7f5cff, #5b9dff);
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(127, 92, 255, 0.5);
}
/* Flash messages */
.flash {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.flash.success {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.flash.danger {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}