/*=====================================================
 Sifency Services Widget
===================================================== */
.sifency-service-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 35px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    height: 100%;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.sifency-service-item:hover {
    border-color: transparent;
}
.sifency-service-icon i {
    font-size: 46px;
    line-height: 1;
    color:  var(--sifency-addons-themecolor);
    margin-bottom: 25px;
}
.sifency-service-image {
    margin: -35px -35px 25px -35px;
    overflow: hidden;
    position: relative;
}
.sifency-service-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ffffff;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}
.sifency-service-item:hover .sifency-service-image::after {
    opacity: 0;
}
.sifency-service-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}
.sifency-service-item:hover .sifency-service-image img {
    transform: scale(1.05);
}
/* Title styling */
.sifency-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.sifency-service-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
.sifency-service-item:hover .sifency-service-title a {
    color: var(--sifency-brand, var(--sifency-addons-themecolor));
}
.sifency-service-excerpt {
    line-height: 1.7;
    margin: 0 0 30px 0;
    flex-grow: 1;
}
.sifency-service-button {
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background-color: var(--sifency-brand, var(--sifency-addons-themecolor));
    padding: 12px 25px;
    border-radius: 8px;
    align-self: flex-start;
    opacity: 1;
    transform: translateY(0);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sifency-service-button:hover {
    background-color: var(--sifency-addons-themecolor);
    transform: translateY(-2px);
    color: #fff;
}
.sifency-services-grid {
    display: grid;
}
.sifency-carousel-wrapper .swiper-slide {
    height: auto;
}