/* Reviews Section Styles */
.reviews-section {
  background-color: white;
  padding-top: 0 !important;
}

.reviews-section .row {
  row-gap: 20px;
}

.review-card {
  background-color: #fff;
  box-shadow: 0px 4px 80px rgba(8, 15, 30, 0.06);
  border-radius: 12px;
  padding: 30px;
  transition: all .3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.reviewer-info {
  display: flex;
  align-items: center;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin-right: 15px;
  flex-shrink: 0;
}

.reviewer-details h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
  color: #02021E;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffc107;
  font-size: 16px;
}

.google-icon {
  color: #4285f4;
  font-size: 24px;
  flex-shrink: 0;
}

.review-text {
  color: #617686;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 767px) {
  .review-card {
    padding: 25px 20px;
  }
  
  .avatar {
    width: 45px;
    height: 45px;
    font-size: 16px;
    margin-right: 12px;
  }
  
  .reviewer-details h4 {
    font-size: 16px;
  }
  
  .review-text {
    font-size: 15px;
  }
  
  .google-icon {
    font-size: 20px;
  }
} 

.reviews-btn-container {
  margin-top: 60px !important;
}