/* Base Styles */
body {
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  background: #121212;
  color: #f2f2f2;
}

/* Logo Wrapper for Centering */
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.centered-logo {
  height: 200px;
}

/* Hero Section */
.hero {
  background-color: #1e1e1e;
  padding: 2rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.hero p {
  font-size: 1.2rem;
  color: #cccccc;
}

/* General Section Styling */
section {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: auto;
}

h2 {
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

p.center {
  text-align: center;
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat-box {
  background-color: #1a1a1a;
  border-left: 4px solid #0a84ff;
  padding: 1rem;
  border-radius: 6px;
  font-size: 1rem;
}

.cta-button-large {
  background-color: #0a84ff;
  color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  width: fit-content;
  margin: 1rem auto;
  transition: background 0.3s ease;
  text-align: center;
}

.cta-button-large:hover {
  background-color: #0066cc;
}

.services-wrapper {
  display: flex;
  justify-content: center;
}

.services {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  text-align: center;
}

.service-box {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1rem;
}

/* Testimonials */
.testimonial-placeholder {
  font-style: italic;
  color: #aaa;
  text-align: center;
  padding: 1.5rem;
  background: #1e1e1e;
  border-radius: 8px;
}

/* Contact Form */
.contact-form {
  margin-top: 2rem;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #444;
  border-radius: 4px;
}

button {
  background: #0a84ff;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1rem;
}

button:hover {
  background: #0066cc;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  color: #aaa;
  background: #121212;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .centered-logo {
    height: 140px;
  }

  .services {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}