/* Services Section */
.services-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-section .sec-title {
    text-align: center;
    margin-bottom: 20px;
}

.services-section .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.why-choose-us-section-title{
 margin-bottom: 30px !important;
}

.services-section .sec-title p {
    color: #6c757d;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Item */
.service-item {
    margin: 20px 0;
    background: #232323;
    /* padding: 30px; */
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-item img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    /* border-radius: 8px; */
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item .icon-box {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-item:hover .icon-box {
    background: #2c3e50;
}

.service-item .icon-box i {
    font-size: 28px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.service-item:hover .icon-box i {
    color: #ffffff;
}

.service-item .content {
    position: relative;
    padding: 20px;
    height: 200px;
}

.service-item .content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #dddddd;;
    margin-bottom: 5px;
}

.service-item .content p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-item .read-more {
    color: #c8a97e;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-item .read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-item:hover .read-more {
    color: #c8a97e;
}

.service-item:hover .read-more i {
    transform: translateX(5px);
}

/* Owl Carousel Custom Styles */
.services-slider {
    position: relative;
    margin: 0 -15px;
}

.services-slider .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
    margin: 0;
}

.services-slider .owl-nav button {
    width: 40px;
    height: 40px;
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.services-slider .owl-nav button:hover {
    background: #2c3e50 !important;
    border-color: #2c3e50 !important;
}

.services-slider .owl-nav button i {
    color: #2c3e50;
    font-size: 16px;
    line-height: 38px;
    transition: all 0.3s ease;
}

.services-slider .owl-nav button:hover i {
    color: #ffffff;
}

.services-slider .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.services-slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: #e5e5e5 !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.services-slider .owl-dots .owl-dot.active {
    background: #2c3e50 !important;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .sec-title h2 {
        font-size: 32px;
    }
    
    .service-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-section .sec-title h2 {
        font-size: 28px;
    }
    
    .services-slider .owl-nav {
        position: relative;
        top: 0;
        right: 0;
        text-align: center;
        margin-top: 30px;
    }
    
    .service-item {
        padding: 25px;
    }
    
    .service-item .icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-item .icon-box i {
        font-size: 24px;
    }
}
