
.projects-section {
    padding: 80px 0;
    background-color: var(--light-bg, #f9f9f9);
}

.projects-section .section-title {
    margin-bottom: 50px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 450px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: white;
}

.project-name {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.project-area {
    font-family: var(--font-body, 'Roboto', sans-serif);
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .project-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 50px 0;
    }
    .project-card {
        height: 350px;
    }
    .project-banner{
    background-image: url(../images/banner-img/mobile-project-screen.png);
    background-size: cover;
    background-position: center;
    align-items: center;
    text-align: left;
    color: var(--white);
}
}

.project-banner{
    background-image: url(../images/banner-img/project-banner.png);
    background-size: cover;
    background-position: center;
    align-items: center;
    text-align: left;
    color: var(--white);
    padding-bottom: 40px;
}
@media (max-width:480px){
    .project-banner{
    background-image: url(../images/banner-img/mobile-project-screen.png);
    background-size: cover;
    background-position: center;
    align-items: center;
    text-align: left;
    color: var(--white);
}

}