/* =======================
   TESTIMONIALS SLIDER
   ======================= */
.testimonial-slider-wrapper {
  position: relative;
  padding: 0 20px;
}

.testimonial-slider-container {
  overflow: hidden;
  border-radius: 24px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 16px;
}

.testimonial-slide > div {
  transition: transform 0.3s ease;
}

.testimonial-slide > div:hover {
  transform: translateY(-4px);
}

.testimonial-prev,
.testimonial-next {
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  transform: translateY(-50%) scale(1.05);
  background-color: #2563eb !important;
}

.testimonial-prev {
  left: -10px;
}

.testimonial-next {
  right: -10px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  width: 28px;
  border-radius: 12px;
  background-color: #3b82f6;
}

.testimonial-dot:hover {
  background-color: #3b82f6;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .testimonial-prev {
    left: -5px;
  }
  .testimonial-next {
    right: -5px;
  }
  .testimonial-prev,
  .testimonial-next {
    width: 32px;
    height: 32px;
  }
  .testimonial-slide > div {
    padding: 20px;
  }
  .testimonial-slide p {
    font-size: 1rem;
  }
}







.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background-color: #222;
            color: #fff;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
            box-sizing: border-box;
            text-align: center;
            border-radius: 10px 10px 0 0;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .cookie-banner.show {
            opacity: 1;
        }
        .cookie-banner p {
            margin: 0;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .cookie-banner button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .cookie-banner button:hover {
            background-color: #218838;
        }
* {
    background-size: cover;
    background-position: center center;
}
body {
	margin: 0px;
}
