/* Custom Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 0.8s ease-out;
}

.animate-scaleIn {
  animation: scaleIn 0.8s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom hover effects */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Orange gradient background */
.bg-orange-gradient {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
}

/* Custom focus styles */
.focus-orange:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

/* Loading animation for buttons */
.btn-loading {
  position: relative;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive text sizes */
@media (max-width: 640px) {
  .text-responsive-lg {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  
  .text-responsive-xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  
  .text-responsive-2xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ff8c00;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e67300;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
}

/* Page transitions */
.page-content {
  transition: opacity 0.3s ease-in-out;
}

.page-content.hidden {
  display: none;
}

/* Mobile menu animation */
.mobile-menu-open {
  max-height: 16rem !important;
  opacity: 1 !important;
}

/* Testimonals Starts*/
.testimonial-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1f2937;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 2px solid #ffe0c2;
  text-align: left;
}

.quote-icon {
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fdbf61;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
}

.author h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2px;
}

.author .role {
  color: #f97316;
  font-weight: 500;
  font-size: 0.9rem;
}

.author .company {
  color: #6b7280;
  font-size: 0.85rem;
}

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #d1d5db; /* gray-300 */
    opacity: 0.6;
    margin: 0 6px;
    border-radius: 9999px;
    transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
    background-color: #f97316; /* orange-500 */
    opacity: 1;
  }
/* Testimonals Ends*/

/*Calculator Starts*/
.form-input,
.form-select {
  width: 100%;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background-color: white;
  font-size: 0.95rem;
}
.form-input:disabled {
  background-color: #f3f4f6;
}
/* Calculator Ends*/
/* START: Gear animations for loader */
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 3s linear infinite;
}

.animate-spin-reverse {
  animation: spin-reverse 2s linear infinite;
}
/* END: Gear animations for loader */




