* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #b4c9ff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HERO */
.hero {
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SLIDER */
.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* TEXT */
.hero-content {
  position: relative;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 45px;
  font-weight: 900;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero-content p {
  margin-top: 10px;
}

.hero button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff6b4a;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* ABOUT */
.about {
  display: flex;
  gap: 50px;
  padding: 60px 0;
  align-items: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 120px);
  gap: 15px;
}

.image-grid img {
  width: 100%;
  border-radius: 10px;
}

.about-text span {
  color: white;
}

.about-text h2 {
  margin: 10px 0;
}

.about-text p {
  margin: 10px 0;
}

/* SERVICES */
.services {
  text-align: center;
  padding: 60px 0;
}

.service-boxes {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.box {
  flex: 1;
  padding: 20px;
  color: white;
  border-radius: 10px;
}

.blue { background: #4a5d73; }
.gray { background: #9e8c7a; }
.orange { background: #ff6b4a; }

/* CTA */
.cta {
  height: 250px;
  background: url('https://images.unsplash.com/photo-1509062522246-3755977927d7') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
}

/* FOOTER */
footer {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background: #eee;
}

/* RESPONSIVE */
@media(max-width: 768px) {

  .about {
    flex-direction: column;
    text-align: center;
  }

  .service-boxes {
    flex-direction: column;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}