.pt_sd_banner{
height:500px;
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),
    url('../images/service.jpg');
    background-size: cover;        /* Makes image cover the section */
    background-position: top;   /* Keeps image centered */
    background-repeat: no-repeat;  /* Prevents repeating */
    display:flex;
    align-items:center;
    justify-content:center;
}

.pt_sd_banner h1{
color:#fba931;
font-size:42px;
}


.pt_sd_description_wrap{
padding:70px 6%;
background:#111;
}

.pt_sd_desc_box{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
color:white;
}

.pt_sd_desc_box img{
width:100%;
border-radius:20px;
}


.pt_sd_benefits_section{
padding:70px 6%;
background:#0d0d0d;
}

.pt_sd_benefit_grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.pt_sd_benefit_card{
background:rgba(61,66,47,0.3);
padding:25px;
border-radius:15px;
color:white;
text-align:center;
}


.pt_sd_related_section{
padding:70px 6%;
background:#111;
}

.pt_sd_slider{
display:flex;
gap:20px;
overflow-x:auto;
}

.pt_sd_slide_card{
min-width:200px;
background:#1b1b1b;
padding:15px;
border-radius:15px;
text-decoration:none;
color:white;
}

.pt_sd_slide_card img{
width:100%;
border-radius:12px;
}

.pt_sd_cta{
padding:80px;
text-align:center;
background:#3d422f;
}

.pt_sd_cta a{
background:#fba931;
color:black;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}

/* RELATED SLIDER */

.pt_service_related_slider{
    position:relative;
    overflow:hidden;
    padding:40px 0;
}

.pt_service_related_track{
    display:flex;
    gap:20px;
    transition:0.5s ease;
}

.pt_service_related_card{
    min-width:300px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    border-radius:15px;
    text-decoration:none;
    color:white;
    padding:15px;
    transition:0.4s;
}

.pt_service_related_card img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:10px;
}

.pt_service_related_card:hover{
    transform:translateY(-8px);
}

/* Slider Buttons */

.pt_related_prev,
.pt_related_next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#fba931;
    border:none;
    width:45px;
    height:45px;
    border-radius:50%;
    cursor:pointer;
    font-size:22px;
    z-index:2;
}

.pt_related_prev{ left:0; }
.pt_related_next{ right:0; }

.pt_sd_desc_text{
    text-align: justify;
}

.pt_sd_cta h2{
   margin-bottom: 2rem !important;
}
@media(max-width:768px){
    .pt_service_related_card{
        min-width:250px;
    }
}
