* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", Arial, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50;
  padding: 20px 40px;
}

.header-left .logo {
  font-size: 30px;
  font-weight: bold;
  color: white;
}

.header-right nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.header-right nav ul li {
  margin-left: 20px;
}

.header-right nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.header-right nav ul li a:hover {
  color: #ff6347;
}

/* Responsive Design for Header */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .header-right nav ul {
    justify-content: center; /* Centers the menu items in a single line */
    gap: 15px;
  }

  .header-right nav ul li {
    margin-left: 0;
  }
}

/* Carousel Section */
.carousel {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.carousel-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.carousel-overlay h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.carousel-overlay p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.carousel-btn {
  background-color: #ff6347;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
}

.carousel-btn:hover {
  background-color: #e53e30;
}

@media (max-width: 768px) {
  .carousel {
    height: 50vh;
  }

  .carousel-overlay h2 {
    font-size: 2rem;
  }

  .carousel-overlay p {
    font-size: 1.2rem;
  }

  .carousel-btn {
    font-size: 16px;
  }
}

/* About Section */
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-content {
  max-width: 800px;
  text-align: center;
  color: #333;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about p {
  font-size: 1.2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 2rem;
  }

  .about p {
    font-size: 1rem;
  }
}

/* Our Services Section */
.services {
  padding: 60px 20px;
  background-color: #2c3e50;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #e53e30;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.service-card {
  flex: 1 1 calc(33.33% - 40px);
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #333;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 992px) {
  .service-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .services h2 {
    font-size: 2rem;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px 0;
}

