/* Global Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #fff;
  scroll-padding-top: 80px; /* offset for sticky header */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff6600;
}

/* Highlight and enlarge login link */
.login-link {
  font-size: 1.2em;
  color: #ff6600;
  font-weight: 700;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ff6600 0%, #ff9966 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 400px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* About Us Section */
.about {
  padding: 4rem 0;
  background-color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
  box-shadow: 0 4px 15px rgba(255, 153, 102, 0.3);
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background-color: #f9f9f9;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* FAQ Section */
.faq {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
  box-shadow: 0 4px 15px rgba(255, 153, 102, 0.15);
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.25);
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* Contact Us Section */
.contact {
  padding: 4rem 0;
  background-color: #f9f9f9;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
  box-shadow: 0 4px 15px rgba(255, 153, 102, 0.1);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #fff;
  color: #ff6600;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #ffccbb;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background-color: #f9f9f9;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* About Us Section */
.about {
  padding: 4rem 0;
  background-color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* FAQ Section */
.faq {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* Contact Us Section */
.contact {
  padding: 4rem 0;
  background-color: #f9f9f9;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #ff6600;
}

.card p {
  font-size: 1rem;
  color: #666;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-container p {
  margin: 0.5rem 0;
}

/* Contact Form */
#contact-form {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

#contact-form label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

#contact-form input,
#contact-form textarea {
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

#contact-form button {
  align-self: center;
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact-form button:hover {
  background-color: #e65c00;
}

/* FAQ Section */
.faq {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: left;
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #555;
  line-height: 1.5;
}

/* About Us Section */
.about {
  padding: 4rem 0;
  background-color: #fff;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Us Section */
.contact {
  padding: 4rem 0;
  background-color: #f9f9f9;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact p {
  font-size: 1rem;
  color: #555;
  margin: 0.5rem 0;
  text-align: left;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
  }
  .nav-links li {
    margin-left: 0;
    margin-bottom: 1rem;
  }
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 1rem;
  }
  .btn-primary {
    padding: 0.5rem 1.5rem;
  }
  .logo img {
    height: 25px;
  }
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 4rem 0;
}

.cta h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
}

.cta .btn-primary {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
}
