/* ===== Global Styles ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  margin: 0 0 15px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

.btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e6b800;
}

/* ===== Hero Section ===== */
.hero {
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 25px;
}

/* ===== About Section ===== */
.about-section {
  background: #f9f9f9;
  text-align: center;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Services Section ===== */
.services-section {
  background: #fff;
  text-align: center;
}

.services-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.service {
  flex: 1 1 calc(33.333% - 20px);
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-5px);
}

.service img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* ===== Projects Section ===== */
.projects-section {
  background: #f9f9f9;
  text-align: center;
}

.projects-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.project {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.project img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  background: #fff;
  text-align: center;
}

.testimonial {
  max-width: 700px;
  margin: 0 auto 30px;
  font-style: italic;
  position: relative;
}

.testimonial::before {
  content: "“";
  font-size: 60px;
  color: #ffcc00;
  position: absolute;
  left: -30px;
  top: -10px;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
  color: #444;
  font-style: normal;
}

/* ===== CTA Section ===== */
.cta-section {
  background: #ffcc00;
  color: #000;
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  margin-bottom: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .services-grid, .projects-grid {
    flex-direction: column;
  }

  .service, .project {
    flex: 1 1 100%;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}
