
.star {
    color: #F4C006;
}

.client {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.client-area{
    width: 30%;
    transition: 0.4s;
}

.client-area:hover .client-top{
    background-color: #DCD7D7;
}
.client-area:hover{
    background-color: #163050;
    transform: translateY(-5%);
}
.client-area:hover .client-bot h1{
   color: #FFFFFF;
}
.client-area:hover .star {
    color: #fff;
}
.client-area:hover .client-top p{
    color: #222; 
}

.client-top {
    background-color: #fff;
    padding: 25px 15px;
    border: 1px solid red;
}

.client-top p {
    color: #444444;
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    line-height: 29px;
}

.client-bot {
    gap: 15px;
    display: flex;
    padding: 20px 20px 0;
    align-items: center;
}
.client-bot h1{
    padding-top: 10px;
    margin-bottom: 5px;
    color: #181818;
    font-size: 20px;
    font-weight:500;
    font-family: "Roboto", sans-serif;
}
.testimonials-area{
    display: none;
}

.testimonials-area{
    margin-bottom: 50px;
    
}
.client-main-ar{
    text-align: center;
}
.testimonials{
    padding: 80px 0;
}
.ban-b:hover {
    background-color: rgb(41, 76, 234);
    color: #FFFFFF;
}

.ban-b:hover .right {
    color: #FFFFFF;
}


.ban-b {
    padding: 10px 40px;
    color: #fff;
    background-color: #DB0000;
    display: inline-block;
    transition: all ease 0.4s;
    box-shadow: 0px 3px 5px #989797;
    border-radius: 20px;
}
/* ===== MOBILE FIX FOR TESTIMONIALS ===== */
@media (max-width: 768px) {

  .client {
    width: 100% !important;
  }

  .client-area {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .client-top,
  .client-bot {
    width: 100%;
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
  }

}
/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {

  .carousel,
  .slider,
  .mobile-slider {
    display: block !important;
    overflow: hidden;
  }

  .carousel img,
  .slider img {
    width: 100% !important;
    height: auto !important;
    display: block;
    margin-bottom: 10px;
  }

}











