/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header */
header {
  background: #000;
  padding: 20px 0;
}
header .logo {
  height: 40px;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Banner */
.banner {
  overflow: hidden;
}
.slider {
  display: flex;
  animation: slide 25s infinite ease-in-out;
  width: 300%;
}
.slide {
  width: 100%;
  flex-shrink: 0;
}
.slide img {
    height: 400px;
  object-fit: cover;
}

@keyframes slide {
  0% {transform: translateX(0);}
  33% {transform: translateX(-100%);}
  66% {transform: translateX(-200%);}
  100% {transform: translateX(0);}
}

/* Services */
.services {
  padding: 50px 0;
  text-align: center;
}
.services h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.card {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  width: 30%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.05);
}

/* Contact */
.contact {
  background: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}
.contact h2 {
  margin-bottom: 20px;
}
.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.contact input, .contact button {
  padding: 10px 15px;
  width: 300px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.contact button {
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  padding: 30px 0;
}
footer .logo {
  height: 30px;
}
footer nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}
footer nav a {
  color: #fff;
  text-decoration: none;
}
