/* 시공후기 */
    .review-card{
    background:white;
    padding:30px;
    border-radius:6px;
    box-shadow:0 8px 25px rgba(0,0,0,0.07);
    height:220px;
    transition:0.3s;
}

.review-card:hover{
    transform:translateY(-10px);
}

.star{
    color:#ffc107;
    font-size:20px;
    margin-bottom:10px;
}

.review-card p{
    font-size:15px;
    color:#555;
    margin-bottom:15px;
}


.swiper-slide img{
    width:100%;
    height:260px;
    object-fit:cover;
}

        .hero-slider {
position: relative;
height: 100vh;

}

.hero-slide {
height: 100vh;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

/* 어두운 오버레이 */
.hero-slide::before {
content: "";
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.45);
}

/* 중앙 텍스트 */
.hero-content {
position: absolute;
inset: 0;
z-index: 10;

display: flex;
flex-direction: column;
justify-content: center;
align-items: center;

 padding-right: 8%;  /* 텍스트 위치조정 */
    padding-bottom: 8%;
}
    
#case .row img {
    width: 100%;        /* 컬럼 폭에 맞춤 */
    height: 250px;      /* 고정 높이 */
    object-fit: cover;  /* 이미지 비율 유지 + 영역 꽉 채우기 */
}


.floating-btn{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    background:#111;
    color:white;
    padding:16px 40px;
    border-radius:50px;
    font-weight:bold;
    font-size:18px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    z-index:9999;
    transition:0.3s;
}

@media (hover:hover){
    .floating-btn:hover{
        background:#333;
        transform:translateX(-50%) scale(1.05);
    }
}
.cta-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:20px 50px;
    font-size:22px;
    font-weight:bold;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
    margin-bottom: 20px;
}

.cta-btn:hover{
    background:#222;
    transform:scale(1.05);
}


.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}