/* 🔹 HERO */
.sec1 {
    background-image: linear-gradient(to bottom, rgba(239, 239, 239, 0.8), rgba(230, 229, 229, 0.8)), url("../img/workspace2.webp");
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

/* 🔹 PROJECTES */
.project-card {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.project-card .project-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project-card .project-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-card .project-info {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-info {
    opacity: 1;
}
