 .testimonials-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 30px;
   margin-top: 40px;
 }

 .testimonial-card:nth-child(even) {
   margin-top: 80px;
 }

 .testimonial-card:nth-child(odd) {
   margin-bottom: 80px;
 }

 .testimonial-card {
   background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
   border: 1px solid #333;
   border-radius: 20px;
   padding: 0;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }

 .testimonial-card::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, #a855f7);
   transform: scaleX(0);
   transition: transform 0.3s ease;
   z-index: 1;
 }

 .testimonial-card:hover {
   transform: translateY(-5px);
   border-color: #a855f7;
   box-shadow: 0 10px 20px rgba(168, 85, 247, 0.4);
 }

 .testimonial-card:hover::before {
   transform: scaleX(1);
 }

 .testimonial-card .video-container {
   position: relative;
   width: 100%;
   padding-bottom: 56.25%;
   /* 16:9 Aspect Ratio */
   background: #000;
   overflow: hidden;
 }

 .testimonial-card .video-container iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: none;
 }

 .testimonial-content {
   padding: 30px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
 }

 .quote-icon {
   font-size: 48px;
   color: #a855f7;
   opacity: 0.3;
   line-height: 1;
   margin-bottom: 20px;
 }

 .testimonial-text {
   font-size: 16px;
   line-height: 1.6;
   color: #e0e0e0 !important;
   margin-bottom: 30px;
   flex-grow: 1;
 }

 .author-info {
   display: flex;
   flex-direction: column;
   gap: 5px;
 }

 .author-name {
   font-size: 18px;
   font-weight: 600;
   color: #fff;
 }

 .author-title {
   font-size: 14px;
   color: #999;
 }

 @media (max-width: 768px) {

   .testimonials-grid {
     grid-template-columns: 1fr;
   }

   .testimonial-card:nth-child(even),
   .testimonial-card:nth-child(odd) {
     margin-top: 0;
     margin-bottom: 0;
   }

   .testimonial-content {
     padding: 25px;
   }
 }