.reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
  }
  @media (max-width:991px){
    .reviews-section{
      padding: 30px 0;
    }
  }
  .reviews-section::before{
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: linear-gradient(45deg, rgba(66, 153, 225, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 50%;
    z-index: 0;
  }
  
  .reviews-header {
    text-align: center;
    margin-bottom: 60px;
  }
  @media (max-width:991px){
    .reviews-header{
      margin-bottom: 30px;
    }
  }
  .reviews-subtitle {
    color: #4299e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .reviews-title {
    color: #2d3748;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  @media (max-width:991px){
    .reviews-title{
      margin-bottom: 15px;
    }
  }
  .reviews-description {
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.6;
  }
  
  .review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(66, 153, 225, 0.15);
  }
  
  .review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4299e1, #667eea);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .review-card:hover::before {
    transform: scaleX(1);
  }
  
  .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .reviewer-image {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #4299e1;
    padding: 2px;
    transition: all 0.3s ease;
  }
  
  .review-card:hover .reviewer-image {
    transform: rotate(5deg);
  }
  
  .reviewer-info h4 {
    color: #2d3748;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
  }
  
  .reviewer-info p {
    color: #718096;
    font-size: 14px;
    margin: 0;
  }
  
  .review-rating {
    color: #f6ad55;
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .review-content {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    padding-left: 25px;
  }
  
  .review-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 40px;
    color: #4299e1;
    opacity: 0.2;
    font-family: Georgia, serif;
  }
  
  .review-date {
    color: #a0aec0;
    font-size: 12px;
    margin-top: 20px;
    display: block;
  }
  
  .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease;
  }
  
  .owl-nav button:hover {
    background: #4299e1 !important;
  }
  
  .owl-nav button span {
    color: #4299e1;
    font-size: 24px;
    line-height: 40px;
    transition: all 0.3s ease;
  }
  
  .owl-nav button:hover span {
    color: white;
  }
  
  .owl-prev {
    left: -20px;
  }
  
  .owl-next {
    right: -20px;
  }
  
  .owl-dots {
    margin-top: 30px !important;
  }
  
  .owl-dot span {
    background: #cbd5e0 !important;
    transition: all 0.3s ease !important;
  }
  
  .owl-dot.active span,
  .owl-dot:hover span {
    background: #4299e1 !important;
    transform: scale(1.2);
  }

  .owl-dots {
    text-align: center;
    margin-top: 30px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.owl-dot {
    display: inline-block;
    zoom: 1;
    outline: none;
}

.owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0;
    background: #93a1b4 !important;
    display: block;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Active dot and hover state */
.owl-dot.active span {
    width: 24px !important;
    background: #4299E1 !important;
}

.owl-dot:hover span {
    background: #90CDF4 !important;
}

/* Optional: Add pulsing animation to active dot */
@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.owl-dot.active span {
    animation: dotPulse 2s infinite;
}

/* Optional: Add smooth transition when dots change */
.owl-dots .owl-dot span {
    transition: all 0.3s ease-in-out;
}