/*.latest-projects-section {
    background: #f1faff;
    padding: 60px 30px;
    border-radius: 25px;
}*/
 
.swiper-wrapper {
    overflow: visible !important;
} 

 .latest-projects-section {
    overflow: visible;
} 

.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.top-section h2 {
    font-size: 32px;
    margin: 0;
}

.top-section .highlight {
    color: #0094ff;
}

.top-section p {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
}

.nav-and-button {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    font-size: 20px;
    cursor: pointer;
}

.view-all-btn {
    background: #0094ff;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
}

.projects-slider {
/*     overflow: visible; */
	    padding-top: 50px;
    margin-top: -50px !important;
}

.swiper-slide.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.swiper-slide.project-card:hover {
     transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.card-image img {
    width: 100%;
/*    height: 270px;*/
    object-fit: cover;
    border-radius: 20px;
     transition: transform 0.3s ease;
}

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

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 20px;
}

.project-card:hover .card-overlay {
    opacity: 1;
    visibility: visible;
}

.card-overlay h3 {
    font-family: 'Nexa-Bold', sans-serif !important;
    font-weight: 700;
    font-size: 30px;
    line-height: 130%;
    vertical-align: middle;
    margin: 0;
}

.card-overlay p {
    font-family: 'Nexa-Bold', sans-serif !important;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin: 0;

}

.arrow-link {
    color: white;
    font-size: 50px;
    text-decoration: none;
    margin-top: 5px;
    display: inline-block;
}
.arrow-link:hover {
    color: white;
}

.bottom-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-blue, .btn-dark {
    padding: 20px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    font-family: 'Nexa-Bold', sans-serif !important;
    font-size: 18px;
    line-height: 16px;
}

.btn-blue {
    background: #0094ff;
    color: white;
}

.btn-dark {
    background: #000;
    color: white;
}
