/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    min-height: 70vh;
}

.hero-content {
    max-width: 550px;
}

.hero .intro {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.hero-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(62, 193, 230, 0.2);
}

/* Projects Section */
.projects {
    padding: 80px 10%;
    background-color: #0A1530;
}

.projects h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #E6E6E6;
}

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

.project-card {
    background-color: #0D1F3C;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(62, 193, 230, 0.3);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-card h3 {
    font-size: 1.5rem;
    margin: 20px;
    color: #3EC1E6;
}

.project-card p {
    margin: 0 20px 20px 20px;
    line-height: 1.6;
    color: #B0B0B0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 30px 5%;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .intro {
        font-size: 1rem;
    }

    .hero-image img {
        width: 200px;
        height: 200px;
    }

    .projects {
        padding: 50px 5%;
    }

    .projects h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .projects h2 {
        font-size: 1.6rem;
    }
}
