.slider-home{
    background: url(/user/assets/image/home/slider-home/Blurz.jpg);
    background-size: cover;
    padding: 20px 5%;
}
.container-slider{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* SLIDER BOX */
.slider-box {
    background-color: #f8eee7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.103);
    flex: 1 1 350px;
    max-width: 610px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* width: 300%; */
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    background-color: #11395e;
    border-radius: 50%;
}

.dots {
    text-align: center;
    padding: 10px 0;
    background: #f8eee7;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}
/* SMALL CARDS */
.small-cards {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 350px;
    gap: 15px;
    max-width: 750px;
}

.small-card {
    flex: 1 1 130px;
    min-width: 130px;
    padding: 15px;
    border-radius: 12px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.219);
}
.repairs-hre{
    text-decoration: none;
    color: white;
}
.small-card img{
    width: 150px;
    right: 0;
    bottom: 0;
    position: absolute;
    transition: .5s;
}
.small-card:hover img{
    right: 7px;
    bottom: 10px;
    transform: scale(1.09);
}
.small-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
    transform: scale(1);
    transition: .5s;
}
.small-card:hover h3{
    transform: scale(1.1);
}

.small-card p {
    font-size: 13px;
}

.b2b { background-color: #0072ce; }
.repairs { background-color: #084c90; }
.real-estate { background-color: #8540d5; }
.doctors { background-color: #008a68; }

.arrow-slider {
    background: rgb(243, 250, 255);
    border-radius: 0px 3px 3px 0px;
    position: absolute;
    left: -43px;
    bottom: 20px;
    font-size: 12px;
    color: #0d4069aa;
    padding: 3px;
    transition: .5s;
}
.small-card:hover .arrow-slider{
    left: 0px;
}
@media (max-width: 840px) {
    .slider-box {
        max-width: 715px;
    }
}
@media (max-width: 768px) {
    .slider-home{
    padding: 20px 30px;
    }
    .slider-box {
        max-width: max-content;
    }
    .slide {
    flex-direction: column;
    text-align: center;
    }
    /* .slide img {
    margin-bottom: 10px;
    } */
    /* .container {
    flex-direction: column;
    align-items: stretch;
    } */
}
@media (max-width: 600px) {
    .slider-home{
    padding:10px;
    }
    .container-slider{
    gap: 5px;
    }
    .small-cards {
    gap: 5px;
    }
}
/*--------------------- search-box -------------------*/
.search-box {
    border-radius: 10px;
    width: 100%;
    max-width: 1380px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.103);
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
}

.search-form div,
.search-form input,
.search-form select {
    border: none;
    padding: 15px;
    font-size: 14px;
    flex: 1;
    min-width: 150px;
    outline: none;
}

.search-label {
    background-color: #f4aa1c;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.search-button {
    background-color:  #143a78;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    flex: 1;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.search-button:hover {
    background-color: #d98c00;
}

@media (max-width: 600px) {
    .search-form {
    flex-direction: column;
    }
}
.search-button .animation {
  border-radius: 100%;
  animation: ripple 0.6s linear infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}





















