/* HERO SECTION */
.services-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    font-family: "Montserrat", sans-serif;
}

/* OVERLAY */
.services-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* CONTENT */
.services-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.services-content h1 {
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.services-content p {
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .services-content h1 {
        font-size: 36px;
    }

    .services-content p {
        font-size: 16px;
    }

    .services-hero {
        height: 50vh;
    }
}


.services-section {
    padding: 80px 0;
    background: #f3f3f3;
}

.services-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;

    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* SIDEBAR */
.services-sidebar {
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    overflow: hidden;
    background: #fafafa;
}

.service-tab {
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #cccccc;
    transition: 0.3s;
    font-weight: 500;
}

.service-tab:hover,
.service-tab.active {
    background: #bd8305;
    color: #fff;
}

.services-content-area {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #acacac;
}

/* RIGHT SIDE */
.service-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* align-items: center; */
    align-items: flex-start;
}

.list-descrip {
    grid-column: 1 / -1;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.service-list li {
    margin-bottom: 20px;
}

.service-list li strong {
    margin-bottom: 10px;

}

.left-sideofservices {
    display: flex;
    flex-direction: column;
    /* padding-right: 20px; */
}

.service-main-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.service-main-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    max-width: 500px;
    margin-bottom: 25px;
}

/* SWIPER */
.serviceSwiper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    align-self: flex-start;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
}

.serviceSwiper img,
.serviceSwiper video {
    width: 100%;
    height: 400px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

.service-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    background: #242424;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;

    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;

    border: 1px solid #242424;
}

/* BUTTON */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 50%;
    color: #fff;
    z-index: 10;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.service-btn::before {
    background: #ffffff;

}

.service-btn:hover {
    color: #242424;
    border: 1px solid #242424;

}

/* NAV BUTTON */
/* SMALL NAV BUTTON */
.swiper-button-next,
.swiper-button-prev {
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.648);
    border-radius: 50%;
    color: #fff;
}

/* arrow icon size */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px;
    /* default ~20px → now smaller */
    font-weight: bold;
}

/* hover effect (optional nice UX) */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* MOBILE */
@media (max-width: 768px) {
    .services-wrapper {
        grid-template-columns: 1fr;
        padding: 10px;
    }


    .services-sidebar {
        display: flex;
        overflow-x: auto;
    }

    .service-tab {
        white-space: nowrap;
    }

    .service-single {
        grid-template-columns: 1fr;
    }

    .service-btn {
        grid-column: span 1;
    }

    .services-section {
        padding: 60px 0;

    }

    .services-content-area {
 
        padding: 15px;
        border: none;
      
    }

}