body {
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #111;
}

nav a {
    margin-left: 20px;
    color: #4da3ff;
    text-decoration: none;
    font-weight: bold;
}

.logo {
    height: 120px;
    width: auto;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: url('../img/banner.png') center/cover no-repeat;
}

.current-project {
    text-align: center;
    padding: 60px 20px;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #4da3ff;    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #777;
}

/* PROJECTS GRID */
.projects-grid {
    padding: 80px 60px;
    background: #0a0a0a;
    text-align: center;
}

.projects-grid h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.projects-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: #111;
    border: 1px solid #1f1f1f;
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(127, 212, 255, 0.25);
}

.project-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

.project-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.project-card p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-small {
    display: inline-block;
    padding: 10px 20px;
    background: #7FD4FF;
    color: #000;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.2s;
}

.cta-small:hover {
    background: #4FA3C8;
}
