/* Hero Section Styles */
.hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;

}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Featured project */
.featured-project {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 50px;
    color: beige;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.featured-project::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
    border-radius: 50px;
}

.featured-project-content {
    position: relative;
    z-index: 1;
}