
.service-2-slide-area {
    background-color: #f0f0f0; /* Light grey background */
    border: 2px solid var(--theme-color); /* Orange border color */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-2-slide-area .image {
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.service-2-slide-area .content {
    padding: 8px;
}

.service-2-slide-area .icon-box {
    font-size: 40px;
    color: #ff5e3a;
    margin-bottom: 20px;
}

.service-2-slide-area h5 {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.service-2-slide-area p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-2-slide-area a.btn-box {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5e3a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.service-2-slide-area a.btn-box:hover {
    background-color: #ff3f17;
}
.service-2-slide-area h5 a {
    color: #000000; /* Black color */
}
.separator {
    border-top: 2px solid #ccc; /* Separator line style */
    margin: 10px 0; /* Adjust the margin as needed */
}
/* Custom styles for Swiper navigation arrows */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 34%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    color: #333;
    z-index: 1000;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #333;
    color: #fff;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}


