body {
    background-color: #0a0a0a;
    color: white;
    font-family: Arial, sans-serif;
}

.hero {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 80px 20px;
    margin-bottom: 50px;
    text-align: center;
}

.hero-subtext {
    font-size: 18px;
    margin-top: 10px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.btn-neon {
    background: #ff0099;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 0 10px #ff0099, 0 0 40px #ff0099;
    transition: 0.3s;
}

.btn-neon:hover {
    box-shadow: 0 0 20px #ff0099, 0 0 60px #00ffff;
    transform: scale(1.1);
}

section {
    padding: 60px 20px;
}

.skills h2, .projects h2, .contact h2 {
    text-shadow: 0 0 10px #00ff00;
    text-align: center;
    margin-bottom: 30px;
}

.skills .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.skills .col-md-4 {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 15px #00ffff;
    text-align: center;
    flex: 1 1 150px;
    max-width: 180px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: bold;
    letter-spacing: 1px;
}

.skills .col-md-4:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #ff0099;
}

.projects .d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #00ff00;
    text-align: center;
    width: 100%;
    max-width: 350px;
    transition: 0.3s;
}

.project-card:hover {
    box-shadow: 0 0 20px #ff0099;
    transform: scale(1.05);
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #00ffff;
}

.contact-details, .contact-form {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.contact-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff0099;
}

.contact-form input, .contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid #ff0099;
    box-shadow: 0 0 10px #ff0099;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
}

.contact-form input:focus, .contact-form textarea:focus {
    border: 1px solid #00ffff;
    box-shadow: 0 0 15px #00ffff;
    outline: none;
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 15px;
    }
    .skills .row, .projects .d-flex {
        flex-direction: column;
        align-items: center;
    }
    .skills .col-md-4 {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .project-card {
        max-width: 100%;
    }
    .contact-section {
        flex-direction: column;
        text-align: center;
    }
    .contact-details, .contact-form {
        max-width: 100%;
    }
}
