/* Babun Components - Specific Styles Only */

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Satoshi:wght@300;400;500;600;700;800;900&display=swap");

/* Babun Specific Card Style */
.babun-card {
  background: #fff;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.02);
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.babun-card .babun-media {
  position: relative;
}

.babun-card .babun-media:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(41, 89, 75, 0.3);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}

.babun-card .babun-round-btn {
  position: absolute;
  font-size: 25px;
  width: 55px;
  height: 55px;
  background: #0C3A30;
  color: #fff;
  opacity: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out 0s;
  border: none;
  cursor: pointer;
}

.babun-card .babun-round-btn:hover {
  background: #CFFF45;
  color: #19352D;
}

.babun-card:hover .babun-media::before, 
.babun-card:hover .babun-round-btn {
  opacity: 1;
}

.babun-card .babun-title {
  font-size: 22px;
  color: #19352D;
  margin: 20px 0 10px;
  font-weight: 500;
  font-family: "Satoshi", sans-serif;
}

.babun-card .babun-text {
  color: #B6B6B6;
  margin: 0;
  padding: 0 20px;
  font-family: "Satoshi", sans-serif;
}

/* Babun Feedback Section */
.babun-feedback-section {
  position: relative;
  z-index: 1;
}

.babun-icon-container {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.babun-icon-container:before, 
.babun-icon-container:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #000;
  width: calc(50% - 65px);
  top: 50%;
  left: 0;
}

.babun-icon-container:after {
  left: auto;
  right: 0;
}

.babun-icon-container .babun-icon {
  width: 70px;
  height: 70px;
  padding: 15px;
  background: #CFFF45;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.babun-blockquote {
  font-size: 48px;
  line-height: 1.3125em;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.5px;
  margin: 0;
  font-family: "Satoshi", sans-serif;
}

.babun-name {
  font-size: 22px;
  color: #19352D;
  font-weight: 500;
  font-family: "Satoshi", sans-serif;
}

/* Babun Buttons */
.babun-btn-one {
  font-weight: 700;
  font-size: 18px;
  line-height: 48px;
  padding: 0 30px;
  text-align: center;
  border-radius: 40px;
  color: #000;
  background-color: #CFFF45;
  transition: all 0.3s ease-in-out 0s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  font-family: "Satoshi", sans-serif;
}

.babun-btn-one:hover {
  background-color: #29594B;
  color: #fff;
  text-decoration: none;
}

.babun-btn-four {
  font-weight: 700;
  font-size: 18px;
  line-height: 50px;
  padding: 0 38px;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  background-color: #29594B;
  transition: all 0.3s ease-in-out 0s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  font-family: "Satoshi", sans-serif;
}

.babun-btn-four:hover {
  background-color: #CFFF45;
  color: #000;
  text-decoration: none;
}

/* Feedback Navigation */
.babun-feedback-prev, .babun-feedback-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  color: #19352D;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.babun-feedback-prev {
  left: -25px;
}

.babun-feedback-next {
  right: -25px;
}

.babun-feedback-prev:hover, .babun-feedback-next:hover {
  background: #DC2626;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.babun-feedback-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid #DC2626;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 0 4px;
}

.babun-feedback-dot.active {
  background: #DC2626;
  transform: scale(1.2);
}

/* Utility Classes */
.babun-tran3s {
  transition: all 0.3s ease-in-out;
}

.babun-fw-500 {
  font-weight: 500;
}

.babun-fw-700 {
  font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
  .babun-blockquote {
    font-size: 28px;
  }
  
  .babun-card .babun-title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .babun-blockquote {
    font-size: 22px;
  }
  
  .babun-feedback-prev {
    left: -15px;
  }
  
  .babun-feedback-next {
    right: -15px;
  }
}