/* HOME START */
.home {
  background-color: #fff;
  min-height: 150vh;
  padding-top: 60px;
  overflow: hidden;
}

/* HERO STATS START */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5%;
  gap: 40px;
}

.hero-left {
  flex: 1;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 500px;
}

.black-text {
  color: black;
}

.gradient-text {
  background: linear-gradient(to right, #29c96c, #112f1d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-left p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: clamp(10px, 1vw, 12px) clamp(20px, 3vw, 30px);
  border: none;
  cursor: pointer;
  font-size: clamp(0.8rem, 1vw, 1rem);
  transition: background 0.3s;
  border-radius: clamp(30px, 5vw, 50px);
  text-decoration: none;
  display: inline-block;
  color: white;
}

.btn.gradient-btn {
  background: linear-gradient(to right, #29c96c 30%, #1a5038 80%);
  color: white;
  transition: background-position 0.4s ease;
  background-size: 200%;
  background-position: left;
}

.btn.gradient-btn:hover {
  background-position: right;
}

.btn.orange {
  background-color: orange;
  color: white;
  transition: background-color 0.3s ease;
}

.btn.orange:hover {
  background-color: #29c96c;
}

.hero-right {
  position: relative;
  width: 100%;
  max-width: 50%;
  height: 500px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: visible;
}

.circle-mask {
  position: absolute;
  top: -135px;
  right: clamp(-180px, -15vw, -10px);
  width: 600px;
  height: 1000px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.circle-spinner {
  width: clamp(400px, 80vw, 1000px);
  height: clamp(400px, 80vw, 1000px);
  border-radius: 50%;
  background: linear-gradient(to right, #29c96c, #0d1a0d);
  position: absolute;
  animation: spin 12s linear infinite;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.15);
}

.circle-before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: absolute;
  top: 160px;
  right: 100px;
  width: clamp(300px, calc(25vw + 50px), 600px);
  transition: width 0.3s ease;
  z-index: 3;
}

.small-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-small {
  position: absolute;
  z-index: 4;
  transition: width 0.3s ease, top 0.3s ease, right 0.3s ease;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.hero-small-1 {
  width: clamp(60px, calc(10vw + 20px), 200px);
  top: clamp(240px, 25vw, 300px);
  right: clamp(-10px, 2vw, 10px);
}

.hero-small-2 {
  width: clamp(60px, calc(10vw + 20px), 200px);
  top: clamp(60px, 10vw, 100px);
  right: clamp(200px, 32vw, 500px);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes floatX {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Responsivitas */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-left {
    margin-top: 300px;
    flex: 1;
  }

  .hero-title {
    max-width: 800px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right {
    width: 100%;
    justify-content: center;
    height: 400px;
    margin-top: 40px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .circle-mask {
    top: -135px;
    right: -300px;
    width: 400px;
    height: 800px;
  }

  .circle-spinner {
    width: 800px;
    height: 800px;
  }

  .circle-before {
    width: 300px;
    height: 300px;
  }

  .hero-image {
    padding: 15px;
    right: 0px;
    width: 400px;
  }

  .hero-small-1 {
    width: 150px;
    padding: 8px;
    top: 320px;
    right: -80px;
  }

  .hero-small-2 {
    width: 150px;
    padding: 8px;
    top: 100px;
    right: 320px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    width: 300px;
    right: -10px;
  }

  .hero-small-1 {
    top: 270px;
    width: 100px;
  }

  .hero-small-2 {
    top: 110px;
    right: 230px;
    width: 100px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-image {
    width: 200px;
  }

  .hero-small-1 {
    top: 250px;
    right: -50px;
    width: 70px;
  }

  .hero-small-2 {
    top: 130px;
    right: 170px;
    width: 70px;
  }
}

/* === ANIMASI MASUK VIEWPORT SEKALI === */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.animate.show {
  opacity: 1;
  transform: none;
}

/* Hero Title: animasi kanan-kiri beberapa kali */
@keyframes shakeX {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-8px);
  }

  40% {
    transform: translateX(8px);
  }

  60% {
    transform: translateX(-6px);
  }

  80% {
    transform: translateX(6px);
  }

  100% {
    transform: translateX(0);
  }
}

.hero-title.animate.show {
  animation: shakeX 1.2s ease-in-out;
}

/* Hero P: zoom in dari center */
.hero-left p.animate {
  transform: scale(0.8);
  opacity: 0;
  transition: all 1s ease;
}

.hero-left p.animate.show {
  transform: scale(1);
  opacity: 1;
}

/* Buttons: slide dari bawah + fade */
.hero-buttons.animate {
  transform: translateY(40px);
  opacity: 0;
  transition: all 1s ease;
}

.hero-buttons.animate.show {
  transform: translateY(0);
  opacity: 1;
}

/* Gambar: dari kanan ke kiri */
.hero-image.animate,
.hero-small.animate {
  transform: translateX(60px);
  opacity: 0;
  transition: all 1s ease;
}

.hero-image.show,
.hero-small.show {
  transform: translateX(0);
  opacity: 1;
}

/* Animasi infinite untuk gambar kecil setelah muncul */
.hero-small-1.show {
  animation: floatX 4s ease 1s infinite;
  /* Delay 1s */
}

.hero-small-2.show {
  animation: floatY 4s ease 1s infinite;
  /* Delay 1s */
}

/* Spinner: hanya fade */
.circle-spinner.animate {
  opacity: 0;
  transition: opacity 1s ease;
}

.circle-spinner.show {
  opacity: 1;
}

/* Responsive adjustments for animations */
@media (max-width: 992px) {
  .hero-small-1.show {
    animation: floatX 4s ease 1s infinite;
  }

  .hero-small-2.show {
    animation: floatY 4s ease 1s infinite;
  }
}
/* HERO STATS END*/










/* SECTION STATS START */
.stats-section {
  text-align: center;
  padding: 80px 20px;
  background: transparent;
}

.stats-title {
  font-size: 2.5rem;
  color: #1c1c1c;
  margin-bottom: 40px;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-box {
  min-width: 150px;
}

.stat-number {
  font-size: 3rem;
  color: orange;
  font-weight: bold;
}

.stat-label {
  font-size: 1.2rem;
  color: #1c1c1c;
  margin-top: 10px;
}

/* Animasi saat muncul */
.stats-section.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.stats-section.animate.show {
  opacity: 1;
  transform: none;
}

/* Responsif */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
}
/* SECTION STATS END */










/* SECTION FITUR START */
.fitur-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.fitur-heading {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 100px;
  color: #222;
}

.fitur-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  /* 3 card dengan lebar mengikuti isi */
  gap: 24px;
  /* Jarak antar card */
  justify-content: center;
  /* Posisi grid di tengah */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .fitur-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fitur-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


/* CARD WRAPPER */
.fitur-card-wrapper {
  width: 350px;
  max-width: 100%;
  height: 400px;
  position: relative;
  border-radius: 20px;
  perspective: 1000px;
  overflow: visible;
  margin-bottom: 200px;
}

/* SKEW BACKGROUND + GRADIENT HOVER EFFECT DARI TENGAH */
.fitur-card-bg {
  background: white;
  height: 100%;
  border-radius: 20px;
  transform: skewY(10deg);
  transition: all 0.6s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* efek gradient dari tengah ke luar */
.fitur-card-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  background: linear-gradient(-46deg, #1a5038 30%, #29c96c 60%);
  transition: all 1.3s ease;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  z-index: 0;
}

.fitur-card-wrapper:hover .fitur-card-bg::before {
  width: 300%;
  height: 300%;
}

.fitur-card-wrapper:hover .fitur-card-bg {
  transform: skewY(-10deg);
}

/* CARD CONTENT */
.fitur-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* GAMBAR */
.fitur-image-wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 170px;
  overflow: visible;
  z-index: 3;
}

.fitur-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* TEXT */
.fitur-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 100px;
}

.fitur-title {
  text-align: center;
  max-width: 200px;
  font-size: 28px;
  font-weight: 500;
  color: #222;
  transition: color 0.3s ease;
}

.fitur-sub {
  text-align: center;
  max-width: 250px;
  font-size: 18px;
  color: #555;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.fitur-card-wrapper:hover .fitur-title,
.fitur-card-wrapper:hover .fitur-sub {
  color: white;
}

/* ARROW */
.fitur-arrow-wrapper {
  position: absolute;
  bottom: -30px;
  /* setengah dari tinggi arrow (60px) */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.arrow-outer {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-inner {
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #29c96c 30%, #1a5038 80%);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-position 0.4s ease;
  background-size: 200%;
  background-position: left;
}

.arrow-inner:hover {
  background-position: right;
}

.arrow-inner .material-icons {
  font-size: 20px;
  color: white;
}
/* SECTION FITUR END */










/* PROPERTY SLIDER START */
.property-slider-section {
  display: flex;
  justify-content: center;
  padding: 60px 0 0;
  background: transparent;
  margin-bottom: 100px;
}

.property-slider-container {
  width: 95%;
  max-width: 1300px;
  background: linear-gradient(to bottom, #ffa726, #e53935);
  padding: 40px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.property-slider-title {
  font-size: 40px;
  color: white;
  margin-bottom: 10px;
  font-weight: 700;
  margin-top: -30px;
}

.property-slider-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-bottom: 140px;
}

.property-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
  user-select: none;
}

.property-slide {
  flex: 0 0 calc(100% / 3 - 13.33px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.property-slide img {
  display: block;
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  z-index: 10;
  cursor: pointer;
}

.slider-arrow.prev {
  left: 10px;
}

.slider-arrow.next {
  right: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  background: orange;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: -40px;
}

.slider-dots .dot.active {
  background: #29c96c;
  transform: scale(1.4);
}

.custom-wave {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 110%;
  overflow: hidden;
  pointer-events: none;
}

.custom-wave img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .property-slide {
    flex: 0 0 calc(100% / 2 - 10px);
  }
}

@media (max-width: 640px) {
  .property-slider-container {
    width: 98%;
  }

  .property-slide {
    flex: 0 0 100%;
  }

  .property-slide img {
    max-width: 140px;
  }

  .property-slider-wrapper {
    margin-bottom: 50px;
  }

  .property-slider-title {
    font-size: 30px;
  }

  .slider-dots .dot {
    width: 8px;
    height: 8px;
    background: orange;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 5px;
  }

}
/* PROPERTY SLIDER END */










/* GUEST START */
.text-image-section {
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background-color: #fff;
}

.text-image-container {
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.text-image-title {
  font-size: 45px;
  font-weight: 700;
  color: orange;
  margin-bottom: 16px;
}

.text-image-wrapper img {
  max-width: 80%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .text-image-title {
    font-size: 35px;
  }

  .text-image-subtitle {
    font-size: 16px;
  }

  .text-image-section {
    padding: 60px 16px;
  }
}
/* GUEST END */










/* MULTI POINT ACCESS START */
.multi-point-access-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  background: transparent;
  user-select: none;
}

.multi-point-access-title {
  font-size: 36px;
  color: orange;
  text-align: center;
  font-weight: 700;
}

.multi-point-access-container {
  background-color: #073f36;
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  clip-path: polygon(0 15%, 50% 25%, 100% 15%, 100% 100%, 0 100%);
}

.multi-point-access-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 120px;
  /* Geser ke bawah */
  padding-bottom: 60px;
  /* Tambahan ruang bawah */
}

.multi-point-access-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.multi-point-access-slide {
  flex: 0 0 33.3333%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.multi-point-access-slide img {
  max-width: 100%;
  height: auto;
  max-height: 130px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* Tablet */
@media (max-width: 1024px) {
  .multi-point-access-slide {
    flex: 0 0 50%;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .multi-point-access-slide {
    flex: 0 0 100%;
  }

  .multi-point-access-title {
    font-size: 26px;
  }

  .multi-point-access-wrapper {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
/* MULTI POINT ACCESS END */










/* SYNC SLIDER START */
.sync-slider-section {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  margin-bottom: 80px;
}

.sync-slider-outer {
  position: relative;
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.sync-slider-container {
  width: 90%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.sync-slider-title {
  font-size: 35px;
  color: orange;
  margin-bottom: 40px;
  font-weight: 700;
}

.sync-slider-wrapper {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.sync-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
  user-select: none;
  align-items: center;
}

.sync-slide {
  flex: 0 0 calc(25% - 15px);
  /* 4 gambar */
  display: flex;
  justify-content: center;
  align-items: center;
}

.sync-slide img {
  max-width: 250px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.sync-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #333;
  background: transparent;
  border: none;
  z-index: 90;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sync-slider-arrow.prev {
  left: 0px;
  /* Jarak bisa kamu atur sesuai kebutuhan */
}

.sync-slider-arrow.next {
  right: 0px;
}

.sync-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.sync-slider-dots .dot {
  width: 6px;
  height: 6px;
  background: orange;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sync-slider-dots .dot.active {
  background: #29c96c;
  transform: scale(1.4);
}

@media (max-width: 1024px) {
  .sync-slider-arrow {
    top: 55%;
    font-size: 36px;
  }

  .sync-slider-arrow.prev {
    left: 40px;
  }

  .sync-slider-arrow.next {
    right: 40px;
  }

  .sync-slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .sync-slider-arrow {
    top: 55%;
    font-size: 32px;
  }

  .sync-slider-arrow.prev {
    left: 40px;
  }

  .sync-slider-arrow.next {
    right: 40px;
  }

  .sync-slide {
    flex: 0 0 100%;
  }

  .sync-slider-title {
    font-size: 28px;
  }

  .sync-slide img {
    max-width: 250px;
  }
}
/* SYNC SLIDER END */










/* TESTIMONIAL START */
.testimonial-section {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  margin-bottom: 80px;
}

.testimonial-outer {
  position: relative;
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.testimonial-section-title {
  font-size: 35px;
  color: orange;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}

.testimonial-slider {
  position: relative;
  width: 95%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  box-sizing: border-box;
  padding:  20px 13px 20px 10px;
  box-sizing: content-box;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  user-select: none;
  align-items: start;
}

.testimonial-track {
  display: flex;
}

.testimonial-card {
  margin-right: 20px;
}

/* hilangkan margin di elemen terakhir */
.testimonial-track > .testimonial-card:last-child {
  margin-right: 0;
}

.testimonial-card {
  flex: 0 0 calc(20% - 15px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px 20px;
  position: relative;
  box-shadow: 0 8px 24px rgba(146, 118, 194, 0.25);
  overflow: visible;
}

/* LOGO */
.logo-wrapper {
  position: absolute;
  top: 20px;
  left: -5%;
  width: 60px;
  height: 60px;
}

.logo-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  height: 1px;
  width: 250%;
  background: black;
}

.logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

/* CONTENT */
.testimonial-content {
  margin-top: 90px;
  text-align: left;
}

.testimonial-content .nama {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.testimonial-content .jabatan {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 24px;
}

.testimonial-content .pesan {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

/* ARROWS */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: black;
  background: transparent;
  border: none;
  z-index: 100;
  cursor: pointer;
  padding: 0;
  display: none;
}

.testimonial-arrow.prev {
  left: 0px;
}

.testimonial-arrow.next {
  right: 0px;
}

/* DOTS */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  background: orange;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
}

.testimonial-dots .dot.active {
  transform: scale(1.4);
  background: #29c96c;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .testimonial-arrow {
    font-size: 36px;
    top: 55%;
  }

  .testimonial-arrow.prev {
    left: 40px;
  }

  .testimonial-arrow.next {
    right: 40px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .testimonial-slider {
    width: 80%;
  }
  .testimonial-section-title {
    font-size: 28px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .logo-wrapper {
    left: 0; 
  }

  .testimonial-content {
    text-align: center;
  }
}
/* TESTIMONIAL START */











