.slider-section {
    padding: 0px 0;
}

.slider-title {
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.carousel-inner {
    padding: 10px 0px 40px;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.item-card {
    height: 100%;
    overflow: hidden;
    border: none;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding:7px;
}

    .item-card:hover {
        transform: translateY(-5px);
    }

    .item-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .item-card .card-body {
        padding: 20px;
    }

    .item-card .card-title {
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 700;
    }

    .item-card .card-text {
        margin-bottom: 0;
        color: #666666;
    }

.carousel-control-prev,
.carousel-control-next {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 1;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    margin-bottom: 0;
}

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border: none;
        border-radius: 50%;
        background-color: #666666;
    }

    .carousel-indicators .active {
        background-color: #0d6efd;
    }

@media (max-width: 767.98px) {
    .slider-section {
        padding: 0px 0;
    }

    .carousel-inner {
        padding-right: 35px;
        padding-left: 35px;
    }

    .item-card img {
        height: 220px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 34px;
        height: 34px;
    }
}
.carousel-indicators {
    display:none;
}
.carousel-control-prev{
    display:none;
}
.carousel-control-next {
    display: none;
}
