/* Reset some default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  padding-bottom: 40px;
}



/* NAVBAR */
.navbar {
  background-color: #222;
  padding: 15px 30px;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ffd700;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
  background: #f0f0f0;
}

.hero h1 {
  font-size: 3rem;
  color: #222;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* STATISTICS / IMAGES SECTION */
.stats {
  text-align: center;
  padding: 40px 20px;
}

.stats img {
  margin: 10px;
  border-radius: 10px;
}

.stats h1 {
  font-size: 2rem;
  color: #444;
  margin-top: 20px;
}

.stats p {
  margin-bottom: 20px;
  color: #777;
}

.stats button {
  background-color: #222;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.stats button:hover {
  background-color: #444;
}

/* SERVICES */
#services {
  padding: 60px 20px;
  background-color: #fafafa;
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.service-item {
  max-width: 250px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.service-item h3 {
  margin-top: 15px;
  color: #222;
}

.service-item p {
  color: #666;
  margin-top: 10px;
}

/* ABOUT SECTION */
#about {
  padding: 60px 20px;
  text-align: center;
}

#about .project-examples {
  margin-top: 30px;
}

#about img {
  margin: 10px;
  border-radius: 8px;
}

#about button {
  margin-top: 20px;
  background-color: #222;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

#about button:hover {
  background-color: #333;
}

/* HOW IT WORKS */
#how-it-works {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}

.steps {
  list-style-type: decimal;
  margin: 20px auto;
  padding-left: 20px;
  max-width: 600px;
  text-align: left;
}

#how-it-works img {
  margin-top: 20px;
  border-radius: 10px;
}

/* TESTIMONIALS */
#testimonials {
  padding: 60px 20px;
  text-align: center;
}

.testimonial {
  background-color: #fff;
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.testimonial img {
  border-radius: 50%;
  margin-top: 10px;
}

.testimonial .author {
  font-style: italic;
  margin-top: 10px;
  color: #555;
}

/* NEWSLETTER */
#newsletter {
  background-color: #fdf7e8;
  text-align: center;
  padding: 60px 20px;
}

#newsletter input[type="email"] {
  padding: 10px;
  margin-top: 15px;
  width: 250px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

#newsletter button {
  padding: 10px 20px;
  background-color: #222;
  color: #fff;
  border: none;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
}

#newsletter button:hover {
  background-color: #000;
}

/* FOOTER */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
}

footer ul.social-media {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  padding: 0;
}

footer ul.social-media li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul.social-media li a:hover {
  color: #fff;
}





/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
  }
}