/* ==========================================================================
   Testimonial Section
   ========================================================================== */

.testimonial {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  background: #0a0a0a;
  margin-bottom: 6rem;
}

/* Left side styling with dark blue background and testimonial content */
.testimonial-left {
  background: #000096;
  padding: 8rem 15em;;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.quotation-mark {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.quotation-mark svg {
  width: 50px;
  height: 50px;
  fill: #00d4ff;
  opacity: 0.9;
}

.testimonial-text {
  font-size: 21px;
  line-height: 42px;
  color: #ffffff;
  margin-bottom: 3rem;
  font-weight: 100;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4.author-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.author-title {
  font-size: 1rem;
  font-weight: 400;
  width: 250px;
  color: #C4CDEC;
  margin: 0.3rem 0 0 0;
}

/* Right side with glass pattern background and vertical striped effect */
.testimonial-right {
  position: relative;
  background-image: url('/images/Glass-Pattern-BG.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Content positioning on right side */
.testimonial-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.testimonial-content h3 {
  font-size: 45px;
  font-weight: 100;
  line-height: 58px;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.5px;
}
.testimonial-content a{
    text-decoration: none;
}
.discover-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  border: none;
  padding: 14px 3.1rem;
  border-radius: 30px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.discover-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(5, 0, 239, 0.3), transparent);
  transition: left 0.5s ease;
}

.discover-button:hover::before {
  left: 100%;
}

.discover-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0500EF 0%, #2FFFFF 100%);
  box-shadow: 0 8px 25px rgba(5, 0, 239, 0.4);
}

.button-icon {
  background: #ffffff;
  color: rgb(0, 0, 0);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.discover-button:hover .button-icon{
  color: linear-gradient(135deg, #0500EF 0%, #2FFFFF 100%);;
}

