/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ---------------- Background ---------------- */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("img/background.jpg") center center / cover no-repeat;
    z-index: -1;
    filter: brightness(0.6);
    animation: zoom 20s infinite alternate ease-in-out;
}

.background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    pointer-events: none;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

/* ---------------- Navigation ---------------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
}

nav img {
    height: 45px;
}

nav .links a {
    color: #00ffff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 5px #00ffff;
    transition: all 0.3s;
}

nav .links a:hover {
    text-shadow: 0 0 15px #ff00ff;
    color: #ff00ff;
}

/* ---------------- Content ---------------- */
.content {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    min-height: 100vh;
    color: white;
}

#home {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Cards & Neon */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.card,
.neon-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 0 20px #00ffff;
    transition: 0.3s all;
}

.card:hover,
.neon-card:hover {
    box-shadow: 0 0 30px #ff00ff;
}

.accent-text {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.edu-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.edu-item {
    flex: 1;
    min-width: 250px;
}

.projects {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.project,
.neon-project {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 0 10px #00ffff;
    transition: 0.3s;
}

.project:hover,
.neon-project:hover {
    box-shadow: 0 0 20px #ff00ff;
}

.project-link {
    color: #00ffff;
    text-decoration: none;
    transition: 0.3s;
}

.project-link:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.site-footer {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px #00ffff;
}

.contact-group {
    margin: 10px 0;
}

.contact-links a {
    color: #00ffff;
    text-decoration: none;
    margin-right: 10px;
    transition: 0.3s;
}

.contact-links a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

/* Services Section */
#services {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

#services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff;
}

.form-group {
    margin: 15px 0;
    text-align: left;
    max-width: 500px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #00ffff;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #00ffff;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1rem;
    box-shadow: 0 0 5px #00ffff;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff00ff;
    box-shadow: 0 0 10px #ff00ff;
    outline: none;
}

.payment-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffff;
}

.payment-info h3 {
    color: #00ffff;
    margin-bottom: 10px;
}

.payment-info p {
    margin: 10px 0;
}

.payment-info img {
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffff;
}

/* Buttons */
.neon-button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #00ffff;
    color: #00ffff;
    border-radius: 10px;
    text-decoration: none;
    text-shadow: 0 0 5px #00ffff;
    box-shadow: 0 0 10px #00ffff;
    transition: 0.3s;
}

.neon-button:hover {
    color: #ff00ff;
    border-color: #ff00ff;
    box-shadow: 0 0 20px #ff00ff;
    text-shadow: 0 0 15px #ff00ff;
}

/* Responsive */
@media(max-width:768px) {

    .edu-grid,
    .projects {
        flex-direction: column;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav .links {
        margin-top: 10px;
    }
}
