/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #4CAF50;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #45a049;
}

/* Header Section */
header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.background-slide.active {
  opacity: 1;
}

.background-slide img,
.background-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-content {
  z-index: 1;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* About Section */
#about {
  background: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

#about p {
  max-width: 800px;
  margin: 0 auto;
}

/* Services Section */
#services {
  padding: 50px 0;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Contact Section */
#contact {
  background: #4CAF50;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

#contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact input, #contact textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

#contact button {
  background: #fff;
  color: #4CAF50;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}