.carousel-container {
  max-width: 1200px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
   gap: 1rem;
  position: relative;
}

.review-box {
  border: 1px solid #ddd;
   background: #f9f9f9;
  padding:1rem;
  border-radius:8px;
  flex: 1 1 calc(25% - 1rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 15px;
  height:auto;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.header{
    display:flex; 
    align-items:center;  
    font-size: 20px;
    font-weight: 400;
}

.review-box img {
	width:40px; 
	height:40px; 
	border-radius:50%; 
	object-fit:cover;
}

.arrow {
  position: relative;   
  color: #008ECF;
  border: none;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  background-color: #ffffff00 !important;
  font-size: 1rem;
   z-index: 10;
  line-height: 28px;
}
.arrow:focus{
    outline-style: none !important;
}


.dots {
  text-align: center;
  margin-top: 1rem;
  display: flex;
   justify-content: center;
  gap: 0.5rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #008ECF;
   cursor: pointer;
}

.dot.active { background: #c2c2c2; }
.navig{
    display: flex;
    margin-top: 15px;
}

button{
	background-color: #008ecf00 !important;
    border: none !important;
    color: #008ECF !important;
    line-height: 26px !important;
}
.heading{
	font-size: 30px; 
	font-weight: bold; 
	margin-top: 0px; 
	text-align: center;
	font-style: italic;
	font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .review-box { flex: 1 1 100%; height:auto; }
}