:root {
  --primary-color: #00c2de;
  --secondary-color: #049eb4;
  --secondary: #049eb4;
  --accent-color: #e74c3c;
  --bg: #0c8185;
  --text-color: #34495e;
  --font-family: "Poppins", sans-serif;
  --transition-speed: 0.3s ease;
}

/* Prevent double dots and center them */
.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 30px !important;
}

/* Styling for each dot */
.owl-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* Dot inside button */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Hover effect */
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--accent-color);
  box-shadow: 0 0 5px rgba(243, 62, 7, 0.5);
  width: 14px;
  height: 14px;
}

/* Active dot effect */
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary-color);
  width: 14px;
  height: 14px;
  box-shadow: 0 0 7px rgba(243, 62, 7, 0.6);
}

.owl-nav {
  display: flex !important;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-prev,
.owl-next {
  background: var(--primary-color) !important;
  color: white !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.owl-prev:hover,
.owl-next:hover {
  background: rgba(10, 201, 214, 0.8) !important;
  outline: 0.3rem solid rgba(8, 196, 209, 0.333);
}
.slider-testimonials .owl-nav {
  display: none !important;
}
