/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a192f; /* Dark Blue background */
    color: #ccd6f6; /* Light Blue text */
    line-height: 1.8;
    overflow-x: hidden;
}

/* Header Styling */
.header {
    width: 100%;
    padding: 20px 0;
    background: #112240;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar a {
    color: #ccd6f6;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.navbar a:hover {
    background-color: #64ffda; /* Light Green on hover */
    color: #0a192f; /* Dark Blue text */
}

/* Skills Section Styling */
.skills-section {
    padding: 50px 20px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.container h1 {
    font-size: 3rem;
    color: #64ffda;
    margin-bottom: 40px;
}

.skills-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.skill {
    background: #112240;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.skill:hover {
    transform: translateY(-10px);
}

.skill h2 {
    font-size: 1.8rem;
    color: #64ffda;
    margin-bottom: 10px;
}

.skill p {
    font-size: 1rem;
}

/* Footer Styling */
.footer {
    text-align: center;
    padding: 20px;
    background: #112240;
    color: #64ffda;
}

.footer p {
    font-size: 1rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .skills-content {
        grid-template-columns: 1fr;
    }
}
