.wp-plain-card-container {
  display: flex;
  justify-content: space-between; /* Ensures wp-plain-cards are spaced evenly */
  width: 100%;
  max-width: 1000px; /* Limit the total width of the container */
  padding: 5px;
  box-sizing: border-box;
  gap: 5px; /* Adds consistent spacing between wp-plain-cards */
}

.wp-plain-card {
  flex: 1; /* Ensures all wp-plain-cards take equal width */
  margin: 0;
  padding: 20px;
  background-color: #f8f9fa;
  color: #17153b;
  border-radius: 8px;
  text-align: start;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column; /* Ensures content stacks vertically */
  justify-content: space-between; /* Ensures consistent spacing inside */
}
@media screen and (max-width: 768px) {
  .wp-plain-card {
    text-align: left !important;
  }
}

.wp-plain-card:hover {
  background-color: #17153b;
  color: #ffffff;
}

.wp-plain-card:hover .wp-plain-card-button {
  background-color: #ffffff; /* Change button background color on hover */
  color: #17153b; /* Change button text color on hover */
}

.wp-plain-card-title {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
}

.wp-plain-card-button {
  width: auto !important;
  box-shadow: none;
  border: none;
  background-color: #17153b;
  color: white;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
}

.no-decoration-pointer {
  text-decoration: none;
  cursor: pointer !important;
}



  /* .wp-plain-card h2, .wp-plain-card p {
    margin: 0;
    color: #ffffff;
}
  .wp-plain-card h5 {
    font-size: 24px;
} */

:root{
  --awb-hover-color:#e2e2e2 !important;
  }




  .wp-testimonial-card {
    background-color: #f0f4ff;
    border-radius: 12px;
    padding: 40px;
    max-width: 100%;
    position: relative;
  }
  
  /* Header Section */
  .wp-testimonial-header {
    display: flex;
    margin-bottom: 20px;
  }
  
  .wp-profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .wp-testimonial-info {
    color: #333;
  }
  
  .wp-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
  }
  
  .wp-designation {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
  }
  
  /* Body Section */
  .wp-testimonial-body {
    position: relative;
    padding-left: 30px;
  }
  
  .wp-testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    margin-top: 1.5rem;
  }
  
  /* Quote Icon Styles */
  .wp-quote-icon-left {
    font-size: 4rem;
    color: #b6c7ff;
    position: absolute;
    /* top: 0; */
    left: 0;
    bottom: 0;
  }
  
  .wp-quote-icon-right {
    font-size: 7rem;
    color: #b6c7ff;
    position: absolute;
    top: 0;
    right: 30px;
    transform: rotate(180deg);
  }