/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 33, 50, 0.6), rgba(0, 0, 0, 0.9)),
                url('../assets/portfolio_background.jpeg'); /* Replace with a relevant portfolio image */
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: #ff015b;
    text-shadow: 2px 2px 10px #000;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Project Highlights */
.projects {
    padding: 4rem 2rem;
    background: #181d2a;
    text-align: center;
}

.projects h2 {
    color: #ff015b;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.project-card {
    display: flex;
    align-items: center;
    background: #1e2536;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    max-width: 900px;
    gap: 2rem;
}

.project-card img {
    max-width: 300px;
    border-radius: 10px;
}

.project-details {
    color: #fff;
    text-align: left;
}

.project-details h3 {
    font-size: 1.8rem;
    color: #ff015b;
    margin-bottom: 1rem;
}

.project-details p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #ff015b;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
    background: #d10048;
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    background: #ff015b;
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
        text-align: center;
    }

    .project-card img {
        max-width: 100%;
    }

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

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

    .projects h2, .cta h2 {
        font-size: 2rem;
    }
}
