.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

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

.main-bg, .hero, .about, .services, .why-choose, .contact, .footer {
  text-align: center;
}

.main-bg {
  background: #101522;
  color: #f4f8fb;
  min-height: 100vh;
  font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 40px 20px;
  background: linear-gradient(120deg, #1a237e 0%, #101522 100%);
}
.logo-circle {
  background: #1976d2;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 24px 0 #1976d2aa;
}
.hero h1 {
  font-size: 2.8rem;
  margin: 0 0 10px 0;
  letter-spacing: 2px;
}
.tagline {
  font-size: 1.2rem;
  color: #90caf9;
  margin-bottom: 24px;
}
.cta-btn {
  background: #1976d2;
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0 2px 8px #1976d288;
  transition: background 0.2s;
  cursor: pointer;
  display: inline-block;
}
.cta-btn:hover {
  background: #1565c0;
}

.about, .services, .why-choose, .contact {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}
.about h2, .services h2, .why-choose h2, .contact h2 {
  color: #90caf9;
  margin-bottom: 12px;
  font-size: 2rem;
}
.about p {
  font-size: 1.1rem;
  color: #cfd8dc;
}

.services {
  margin-top: 60px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.service-card {
  background: #1a2236;
  border-radius: 18px;
  box-shadow: 0 2px 12px #1976d244;
  padding: 1px 12px 10px 12px;
  min-width: 240px;
  max-width: 300px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.service-card h3 {
  color: #42a5f5;
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-align: center;
}
.service-card ul {
  padding-left: 18px;
  margin: 0 0 6px 0;
  color: #b0bec5;
  font-size: 1rem;
  text-align: left;
}
.service-note {
  color: #90caf9;
  font-size: 0.95rem;
  margin-top: 6px;
  line-height: 1.4;
}

.why-choose {
  margin-top: 60px;
}
.why-list {
  list-style: disc inside;
  color: #b0bec5;
  font-size: 1.1rem;
  margin: 0;
  padding-left: 18px;
  text-align: left;
  display: inline-block;
}
.why-list li {
  margin-bottom: 8px;
}

.contact {
  margin-top: 20px;
  margin-bottom: 0;
  background: #151a2b;
  border-radius: 32px;
  box-shadow: 0 2px 12px #1976d244;
  padding: 10px 8px 10px 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
  color: #b0bec5;
  font-size: 1.05rem;
}
.contact-details a {
  color: #42a5f5;
  text-decoration: underline;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
  margin: 0 auto;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #263159;
  background: #232b45;
  color: #fff;
  font-size: 1rem;
  resize: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid #1976d2;
}
.contact-form button {
  align-self: flex-end;
}
.thank-you {
  margin-top: 18px;
  color: #42a5f5;
  font-weight: 600;
  text-align: center;
}

.footer {
  margin-top: 60px;
  padding: 18px 0 10px 0;
  text-align: center;
  color: #90caf9;
  background: #101522;
  font-size: 1rem;
  border-top: 1px solid #232b45;
}

@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 40px 10px 24px 10px;
  }
  .about, .services, .why-choose, .contact {
    padding: 0 8px;
  }
  .service-card {
    padding: 18px 10px 12px 10px;
  }
  .contact {
    padding: 18px 6px 14px 6px;
  }
}
