/* Services Tile container */
.services-tile {
  background-color: #fff; /* White background */
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0.1, 0.1, 0.1, 0.3); /* Subtle shadow */
  text-align: center;
  /* position: relative; */
  max-width: 800px;
  margin: 20px;
  background: linear-gradient(145deg, #fafafa, #f3f3f3); /* Subtle gradient effect */
  opacity: 0; /* Initially invisible for the transition effect */
  transform: translateY(30px); /* Start position for smooth animation */
  transition: all 0.6s ease-out; /* Smooth transition */
}

.services-tile.visible {
  opacity: 1;
  transform: translateY(0); /* Final position */
}

/* Navigation arrows */
.services-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrow-button {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #7b3130;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-button:hover {
  color: #e5af68; /* Hover effect */
}

/* Service Content */
.service-content {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-icon i {
  font-size: 4rem; /* Adjust icon size */
  color: #7b3130;
  margin-bottom: 15px;
}

.service-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.service-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

/* CTA Button */
.cta-button {
  background-color: #7b3130;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px; /* Rounded button */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #e5af68;
}

.package-section {
  display: flex;
  flex-direction: column;
}

.values-icon i {
  font-size: 2rem; /* Adjust icon size */
  color: #7b3130;
}

.values-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.values-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #666;
}

/* Make the tile responsive */
@media screen and (max-width: 600px) {
  .service-icon i {
    font-size: 3rem; /* Adjust icon size for smaller screens */
  }

  .service-name {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 768px) {
    .services-tile {
        margin: auto;
        margin-top: 50px;
    }

    .package-section {
        display: flex;
        flex-direction: row;
        border-radius: 15px; /* Rounded corners for the tile */
        box-shadow: 0 4px 10px rgba(0.1, 0.1, 0.1, 0.3);
        margin: 60px;
        padding: 60px;
      }

}