/* Testimonials & Partners section-specific styles and animations */

@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes partnerCardHover {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-5px) scale(1.02);
  }
}

@keyframes starGlow {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
  }
  50% {
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
  }
}

/* Testimonials wrapper */
.testimonials-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow: visible;
}

.testimonials-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Testimonial cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff00cc, #00fff7, #ff00cc);
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 0, 0.2);
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Testimonial content */
.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
  position: relative;
  padding-left: 1rem;
  text-align: center;
  color: #00fff7;
}

.quote-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(255, 105, 180, 0.5));
}

/* Testimonial author */
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.author-info {
  flex: 1;
  text-align: center;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neon-green);
  text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
  margin-bottom: 0.3rem;
}

.author-title {
  font-size: 0.9rem;
  color: var(--neon-pink);
  text-shadow: 0 0 6px rgba(255, 105, 180, 0.5);
  margin-bottom: 0.2rem;
}

.author-project {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.8;
}

/* Rating stars */
.rating {
  display: flex;
  gap: 0.2rem;
  flex-shrink: 0;
  justify-content: center;
}

.star {
  font-size: 1.2rem;
  animation: starGlow 2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.2s);
}


/* Partners section */
.partners-section {
  margin-top: 4rem;
  text-align: center;
}

.partners-section h2 {
  color: var(--neon-orange);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.partners-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Partners grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Partner cards */
.partner-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff00cc, #00fff7, #ff00cc);
  border-radius: 13px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 105, 180, 0.2);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.partner-category {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.8;
}

/* Animation classes */
.testimonial-animate {
  animation: testimonialFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.partner-animate {
  animation: testimonialFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Responsive design */
@media (max-width: 768px) {
  .testimonials-wrapper {
    padding: 0 1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .partner-card {
    padding: 1.5rem 1rem;
  }
  
  .partners-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 1.2rem;
  }
  
  .testimonial-quote {
    font-size: 0.95rem;
  }
}

.trusted-logos-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0 1rem 0;
  box-sizing: border-box;
  background: none;
  border: none;
  z-index: 1000;
}

.trusted-logo {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  height: 48px;
  width: auto;
  max-width: 120px;
  filter: drop-shadow(0 0 8px rgba(0,255,247,0.12));
  opacity: 0.85;
  transition: transform 0.2s, opacity 0.2s;
  background: transparent;
  border-radius: 8px;
  object-fit: contain;
}

.trusted-logo:hover {
  opacity: 1;
  transform: scale(1.07) translateY(-2px);
  filter: drop-shadow(0 0 16px #00fff7);
}

@media (max-width: 900px) {
  .trusted-logos-bar {
    gap: 1.5rem;
  }
  .trusted-logo {
    height: 38px;
    max-width: 90px;
  }
}

@media (max-width: 600px) {
  .trusted-logos-bar {
    gap: 1rem;
  }
  .trusted-logo {
    height: 28px;
    max-width: 70px;
  }
} 
.testimonials-header {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #00fff7;
  text-shadow: 0 0 8px #00fff7, 0 0 16px #ff00cc;
  letter-spacing: 2px;
  text-align: center;
}
.testomonials-color {
  color: #e0e0e0;
}