/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-600),
    var(--razorpay-accent)
  );
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-700),
    var(--razorpay-accent-light)
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--primary-600);
  border: 2px solid var(--primary-600);
}

.btn-secondary:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn svg {
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(2px);
}

/* Testimonials */
.testimonials {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  background: white;
  padding: 3rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--neumorphic-light);
  border: 1px solid var(--gray-200);
  text-align: center;
}
.testimonial-card-h {
  min-height: 30rem;
}

.testimonial-card.active {
  display: block;
  animation: fadeInSlide 0.5s ease;
}

.quote-icon {
  margin: 0 auto 2rem;
  color: var(--primary-200);
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.7;
}
#testimonialSlider2 {
  margin-top: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.author-info h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.author-info p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: white;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-btn:hover {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: background 0.2s ease;
}

.testimonial-dot.active {
  background: var(--primary-600);
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.contact-content {
  display: flex;
  justify-content: center;
  /* grid-template-columns: 1fr 1fr; */
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--neumorphic-light);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
  font-size: 1rem;
}

.contact-details p a {
  color: var(--primary-600);
  font-weight: 500;
}

.contact-details span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.social-links {
  margin-top: 2rem;
  grid-column: 1/3;
}

.social-links h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-900);
  justify-self: center;
}

.social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-align: center;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.social-btn.whatsapp {
  background: #25d366;
}

.social-btn.whatsapp:hover {
  background: #22c55e;
}

.social-btn.linkedin {
  background: #0077b5;
}

.social-btn.linkedin:hover {
  background: #005885;
}

.social-btn.email {
  background: var(--gray-600);
}

.social-btn.email:hover {
  background: var(--gray-700);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-brand {
  max-width: 300px;
}

.footer-description {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a {
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin: 0;
}

.footer-contact a {
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin: 0;
}

.back-to-top {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary-600);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 1.125rem;
  }

  .testimonial-author {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .social-buttons {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-content {
    display: flex;
    flex-direction: column;
    text-align: left;

    align-items: flex-start;
  }
  .footer-links {
    align-items: flex-start;
  }
  .footer-contact {
    align-items: flex-start;
  }
  .footer-bottom {
    text-align: left;
  }
}
@media (max-width: 820px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    text-align: left;

    align-items: flex-start;
  }
  .footer-links {
    align-items: flex-start;
  }
  .footer-contact {
    align-items: flex-start;
  }
  .footer-bottom {
    text-align: left;
  }
  .testimonials {
    padding: 0;
    padding-top: 3rem;
  }
}

@media (max-width: 640px) {
  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .testimonial-controls {
    gap: 1rem;
  }
  .testimonial-card-h {
    min-height: 35rem;
  }
  .contact-info {
    display: flex;
  }

  .contact-card {
    padding: 1rem;
  }

  .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .footer-content {
    display: flex;
    flex-direction: column;
    text-align: left;

    align-items: flex-start;
  }
  .footer-links {
    align-items: flex-start;
  }
  .footer-contact {
    align-items: flex-start;
  }
  .footer-bottom {
    text-align: left;
  }
  .testimonials {
    padding: 0;
    padding-top: 3rem;
  }
}
.btn-ourteam {
  font-size: 1.5rem;
}
