@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"); /* Base styles */
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  background-color: #0a0a0a;
  color: #e5e5e5;
} /* Form styling */
.contact-form input,
.contact-form textarea {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff3d3d;
  box-shadow: 0 0 0 3px rgba(255, 61, 61, 0.2);
}
.contact-info i {
  color: #ff3d3d;
} /* Custom animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slide-up {
  animation: slideUp 0.8s ease-out;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} /* Section spacing */
section {
  padding: 6rem 0;
  scroll-margin-top: 80px;
}
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
} /* Button hover effects */
.btn-hover-effect {
  transition: all 0.3s ease;
  transform: translateY(0);
}
.btn-hover-effect:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} /* Service card hover effect */
.service-card {
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
} /* Form input focus styles */
input:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(177, 18, 26, 0.2);
} /* Responsive typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  p {
    font-size: 1rem;
  }
}
.icon-white svg {
  stroke: black;
} /* ===== MARQUEE WRAPPER ===== */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* ===== REVIEW CARD ===== */
.review-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.review-card.alt {
  background: #f1f5f9;
}
.review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.review-card span {
  font-weight: 600;
  font-size: 0.9rem;
} /* ===== STARS ===== */
.stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 10px;
} 


/* ===== MARQUEE ===== */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ===== TRACK ===== */
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation-fill-mode: both;
}
