  /* Service Card Start */
body{
  background-color: rgba(95, 158, 160, 0.61);
}
  .service-container {
    display: flex;
    margin-top: 60px;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.3), rgba(231, 187, 190, 0.2));
  
    border-radius: 15px; /* ✅ Smooth Rounded Corners */
  }

  .service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 5px;
    width: 280px;
    height: 370px;
    flex-shrink: 0;
  }

  .service-card img {
    width: 100%;
    height: 270px; /* ✅ Increased Image Height */
    object-fit: cover;
    border-radius: 10px;
  }

  .service-card h3 {
    font-size: 20px; /* ✅ Bigger Text */
    margin: 15px 0 8px;
  }

  .service-card .price {
    font-size: 18px; /* ✅ Bigger Price Text */
    color: #e74c3c;
    font-weight: bold;
  }



  /* Service Card End */


  /* 🌟 Service Container */
.service-container-2{
  display: flex;
  margin-top: 60px;
  margin-bottom: 70px;
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
  background: linear-gradient(45deg, rgba(13, 110, 253, 0.3), rgba(231, 187, 190, 0.2));
  border-radius: 15px;
}

/* ✅ Individual Card Styles */
.service-card-one,
.service-card-two,
.service-card-three,
.service-card-four,
.service-card-five,
.service-card-six,
.service-card-seven,
.service-card-eight {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 5px;
  width: 280px;
  height: 370px;
  flex-shrink: 1;
}

.service-card-one img,
.service-card-two img,
.service-card-three img,
.service-card-four img,
.service-card-five img,
.service-card-six img,
.service-card-seven img,
.service-card-eight img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 10px;
}

/* ✅ Unique Text & Price Styling */
.service-card-one h3,
.service-card-two h3,
.service-card-three h3,
.service-card-four h3,
.service-card-five h3,
.service-card-six h3,
.service-card-seven h3,
.service-card-eight h3 {
  font-size: 20px;
  margin: 15px 0 8px;
}

.price-one, .price-two, .price-three, .price-four,
.price-five, .price-six, .price-seven, .price-eight {
  font-size: 18px;
  color: #e74c3c;
  font-weight: bold;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
  .service-container {
    justify-content: center;
  }

  .service-card-one,
  .service-card-two,
  .service-card-three,
  .service-card-four,
  .service-card-five,
  .service-card-six,
  .service-card-seven,
  .service-card-eight {
    width: 45%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .service-card-one,
  .service-card-two,
  .service-card-three,
  .service-card-four,
  .service-card-five,
  .service-card-six,
  .service-card-seven,
  .service-card-eight {
    width: 90%;
    height: auto;
  }
}
