@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: #0d1117;
    color: #ffffff;
}

.contact-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background: linear-gradient(145deg, #1f2937, #0d1117);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    border-radius: 10px;
    text-align: center;
}

.contact-section h1 {
    font-size: 2.5rem;
    color: #0ff;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
    margin-bottom: 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.contact-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 items per row with spacing */
    min-width: 250px;
    background: rgba(0, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    text-shadow: 0 0 3px #0ff;
}

.contact-item label {
    display: block;
    font-weight: bold;
    color: #0ff;
    text-shadow: 0 0 3px #0ff, 0 0 5px #0ff;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 1.2rem;
    color: #ffffff;
}

.contact-item:hover {
    background: rgba(0, 255, 255, 0.2);
    transition: background 0.3s ease;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        flex: 1 1 100%; /* Full width for mobile */
        max-width: 400px;
    }
}