.projects-page {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(5,33,48,0.08);
    transition: 0.35s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(5,33,48,0.14);
}

.project-card__image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.project-card:hover .project-card__image img {
    transform: scale(1.06);
}

.project-card__content {
    padding: 26px;
}

.project-card__location {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.project-card__content h3 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-dark);
}

.project-card__content p {
    font-size: 15px;
    line-height: 1.65;
    color: #5c6b74;
}

@media (max-width: 1200px) {

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .projects-page {
        padding: 50px 0;
    }

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

    .project-card {
        border-radius: 20px;
    }

    .project-card__image {
        height: 220px;
    }

    .project-card__content {
        padding: 20px;
    }

    .project-card__content h3 {
        font-size: 21px;
    }

    .project-card__content p {
        font-size: 14px;
        line-height: 1.55;
    }

}

.home-projects {
    overflow: hidden;
}

.projects-slider {
    overflow: hidden;
}

.projects-slider .swiper-slide {
    height: auto;
}

.projects-slider .project-card {
    height: 100%;
}

.projects-pagination {
    position: relative !important;
    margin-top: 42px;
    text-align: center;
}

.projects-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d6d6d6;
    opacity: 1;
}

.projects-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.15);
}

.projects-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 34px;
    border-radius: 16px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
}

.projects-all-btn:hover {
    background: #052130;
    color: #ffffff;
    transform: translateY(-2px);
}

.projects-mobile-btn {
    display: none;
}

@media (max-width: 768px) {

    .section-head .projects-all-btn {
        display: none;
    }

    .projects-pagination {
        margin-top: 28px;
    }

    .projects-mobile-btn {
        display: flex;
        justify-content: center;
        margin-top: 26px;
    }

    .projects-all-btn {
        width: 100%;
        max-width: 260px;
        height: 52px;
        border-radius: 14px;
        font-size: 15px;
    }

}


.project-card {
    display: block !important;
}