/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

header {
  background: #1b1b1b;
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 3px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #f39c12;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

/* Hero */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background: #f7f7f7;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 400px;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #222;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.btn-primary {
  background: #f39c12;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #d48806;
}

.hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 15px;
}

/* Services */
.services-overview {
  padding: 4rem 2rem;
  text-align: center;
  background: white;
}

.services-overview h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
}

.service-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #f7f7f7;
  padding: 1.5rem;
  border-radius: 15px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.75rem;
  color: #f39c12;
}

.card p {
  color: #555;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  background: #1b1b1b;
  color: white;
  padding: 3rem 2rem;
  gap: 4rem;
  flex-wrap: wrap;
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #f39c12;
}

.stat p {
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  background: #f7f7f7;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
}

.testimonial h4 {
  font-weight: 700;
  color: #333;
}

/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
  background: #f7f7f7;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.contact-section p {
  margin-bottom: 2rem;
  color: #555;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f39c12;
}

.contact-form button {
  background: #f39c12;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #d48806;
}

/* Footer */
footer {
  background: #1b1b1b;
  color: white;
  text-align: center;
  padding: 1rem 2rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #1b1b1b;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}
/* Footer Link Row Styling */
.row-links {
  background-color: #1b1b1b;
  padding: 1rem 0;
  text-align: center;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-item {
  display: inline-block;
  margin: 0 15px;
}

.footer-menu-item a {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-menu-item a:hover {
  color: #f39c12;
}
#privacy-policy {
  scroll-margin-top: 80px; /* Helps account for fixed/sticky header */
}
