body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
 .banner-carousel {
    position: relative;
    overflow: hidden;
    height: 400px;
  }
  .carousel-wrapper {
    position: relative;
    height: 100%;
  }
  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
  }
  .carousel-slide.active {
    opacity: 1;
    z-index: 2;
  }
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .carousel-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
  }
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
  }
  .carousel-btn.prev {
    left: 10px;
  }
  .carousel-btn.next {
    right: 10px;
  }
  
h2 {
  text-align: center;
  color: #b30000;
  margin-bottom: 40px;
  font-size: 2em;
  position: relative;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

form button {
  background-color: #b30000;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #990000;
}

/* Testimonials */
#testimonials .service-item {
  flex: 1;
  background: #fff;
  border-left: 4px solid #b30000;
  padding: 20px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid, #testimonials div {
    flex-direction: column;
    align-items: center;
  }

  .service-item {
    width: 90%;
  }
}
 