@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

.animate-scroll {
  animation: scroll 30s linear infinite;
}

.animate-scroll:hover {
  animation-play-state: paused;
}

html {
  scroll-behavior: smooth;
}

.floating-button {
  transition: all 0.3s ease-out;
  transform: scale(0.95) translateY(-8px);
  opacity: 0;
  pointer-events: none;
}

.floating-button.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.gradient-text {
  background: linear-gradient(135deg, #ff914d 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  backdrop-filter: blur(8px);
}

.feature-icon {
  background: linear-gradient(135deg, #fff8f5 0%, #fff5f0 100%);
  border: 1px solid rgba(255, 145, 77, 0.15);
}

/* Navigation overlay */
.nav-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Font classes to match React version */
.font-poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.font-poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.font-poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* Industry card hover effects */
.industry-card {
  transition: all 0.3s ease-out;
}

.industry-card:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
}

/* Icon container hover effects */
.icon-container {
  transition: all 0.3s ease-out;
}

.industry-card:hover .icon-container {
  background-color: #ff914d;
  box-shadow: 0px 6px 20px rgba(255, 145, 77, 0.3);
}

.industry-card:hover .icon-container svg {
  color: white;
}

/* Background video styles */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

/* Responsive grid styles */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}

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

/* Feature list styles */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vh, 12px);
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 1vw, 12px);
}

.check-icon {
  width: clamp(16px, 1.8vw, 20px);
  height: clamp(16px, 1.8vw, 20px);
  color: #10b981;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.4vw, 16px);
  color: #6b7280;
  text-align: left;
  line-height: 1.4;
}

/* Feature card hover effects */
.feature-card {
  transition: all 0.5s ease-out;
  transform: scale(1);
}

.feature-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0px 20px 40px rgba(255, 145, 77, 0.2),
    0px 8px 25px rgba(255, 145, 77, 0.1);
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 245, 238, 0.4) 50%,
    rgba(255, 145, 77, 0.05) 100%
  );
  border-color: rgba(255, 145, 77, 0.2);
}

/* Icon container hover effects */
.icon-container {
  transition: all 0.3s ease-out;
}

.feature-card:hover .icon-container {
  background-color: #e8823d;
  box-shadow: 0px 8px 20px rgba(255, 145, 77, 0.3);
  transform: scale(1.05);
}

.feature-card:hover .icon-container svg {
  transform: scale(1.1);
}

/* Text hover effects */
.feature-card:hover .feature-title {
  color: #ff914d;
}

.feature-card:hover .feature-description {
  color: #374151;
}

/* Stats card effects */
.stat-card {
  transition: all 0.3s ease-out;
}

.stat-card:hover {
  transform: translateY(-2px);
}

/* Background SVG positioning */
.background-svg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: clamp(60px, 8vh, 120px);
  z-index: 0;
}

/* Grid special positioning for 5th card */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}

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

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

  .feature-card-5 {
    grid-column: 2;
  }
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  background-image: url("https://res.cloudinary.com/dhkpwhwby/image/upload/v1752650714/9ab23ed8a6_gw7hpg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgb(250 239 232) 0%,
    rgb(236 228 224 / 61%) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-out;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.12),
    0px 8px 25px rgba(255, 145, 77, 0.15);
  border-color: rgba(255, 145, 77, 0.3);
}

.company-logo {
  transition: all 0.3s ease-out;
  filter: grayscale(1) opacity(0.7);
}

.company-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

#pricing-section {
  padding-top: 50px;
}

.star-rating {
  color: #fbbf24;
}

.quote-icon {
  background: linear-gradient(135deg, #ff914d 0%, #ff6b35 100%);
}

.profile-image {
  transition: all 0.3s ease-out;
}

.testimonial-card:hover .profile-image {
  transform: scale(1.1);
}

.floating-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coming-soon-modal-btn {
  background: #ff914d;
  padding: clamp(16px, 2vh, 20px) clamp(24px, 3vw, 32px);
  border-radius: 16px;
  color: #fffef8;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  display: inline-block;
}
.coming-soon-modal-btn:hover {
  background: #e8823d;
  box-shadow: 0px 8px 20px rgba(255, 145, 77, 0.3);
  transform: scale(1.02);
}

.book-btn {
  background: #fffef8;
  padding: clamp(16px, 2vh, 20px) clamp(24px, 3vw, 32px);
  border-radius: 16px;
  color: #111115;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  display: inline-block;
}
.book-btn:hover {
  background: #f5f5f5;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 50;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

/* Modal Content */
.modal-content {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 100%;
}

/* Modal Visible */
.modal-overlay.show {
  display: flex;
}
.modal-overlay.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #888;
  font-size: 24px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn:hover {
  color: #555;
}

/* Form Styles */
.modal-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}
.modal-content p {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  margin-left: 5px;
  text-align: left;
  color: #333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff914d;
  box-shadow: 0 0 0 2px rgba(255, 145, 77, 0.2);
}
.submit-btn {
  width: 100%;
  padding: 12px;
  background: #ff914d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.submit-btn:hover {
  background: #e8823d;
}

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

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mobile-nav-toggle {
    display: block !important;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ff914d;
    cursor: pointer;
    z-index: 200;
    position: fixed;
    right: 20px;
    top: 20px;
  }

  .mobile-nav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 150;
    padding: 80px 24px 24px 24px;
    gap: 32px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-nav.open {
    transform: translateY(0);
  }

  .mobile-nav-link {
    font-size: 1.25rem;
    color: #111115;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
  }

  .mobile-nav-link:last-child {
    border-bottom: none;
  }

  .desktop-nav {
    display: none !important;
  }

  #floating-button {
    top: 16px !important;
    right: 16px !important;
  }

  #floating-button > div {
    padding: 10px 18px !important;
    font-size: 15px !important;
    border-radius: 8px !important;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.delay-700 {
  animation-delay: 0.7s;
}
.delay-1000 {
  animation-delay: 1s;
}
