@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.text-green {
    color: #c8da29;
}

/* Service Slider Card Design */
h2.like-h5{
    font-size: 1.5rem;
    font-weight: 600;
    color: #153a58;
    margin-bottom: 10px;
}
.like-h4{
    font-size: 1.25rem;
    font-weight: 600;
    color: #153a58;
    margin-bottom: 10px;
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.service-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #c0cbd3;
}
.service-card-content {
    padding: 20px 24px;
}
h3.service-card-title {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 24px;
    margin:20px 0px;
}
.service-card-excerpt {
    color: #77808c;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px;
}

/* Optional: padding for Swiper container */
.service-swiper {
    padding: 40px 0;
}

.product-card {
                position: relative;
                overflow: hidden;
            }
.product-card img {
    transition: transform 0.4s ease;
}
.product-card:hover img {
    transform: scale(1.1);
}
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
}
.my-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
}
.product-card:hover .product-overlay {
    opacity: 1;
}
.sidebar-menu li{
    background: #fff;
    border-radius: 5px
}
.sidebar-menu li:hover{
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.custom-crop {
    height: 250px !important;
    width: auto;
    object-fit: cover !important;
}