body {
  background-color: rgb(253 242 248);
  font-family: cursive;
}

.home-container {
  background-image: url(images/background_imagePink.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 55px;
  background-position-y: top;
  background-position-x: center;
}

.navbar-brand>span>img {
  height: 7vh;
  width: auto;
  margin: -1vh;
}

h1 {
  /* color: whitesmoke;
  text-shadow: 0 0 5px #CC5500, 0 0 10px #CC5500, 0 0 15px #CC5500, 0 0 20px #CC5500; */
  color: azure;
  text-shadow: 0 0 5px #FFAEBC, 0 0 10px #FFAEBC, 0 0 15px #FFAEBC, 0 0 20px #FFAEBC;
  font-family: fangsong;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 8vh;
}

h2 {
  /* color: whitesmoke;
  text-shadow: 0 0 5px #CC5500, 0 0 10px #CC5500, 0 0 15px #CC5500, 0 0 20px #CC5500; */
  color: azure;
  text-shadow: 0 0 5px #FFAEBC, 0 0 10px #FFAEBC, 0 0 15px #FFAEBC, 0 0 20px #FFAEBC;
  font-family: fangsong;
  text-align: center;
  font-weight: bold;
  font-size: 3.0vh;
}

.homepage-nav-buttons {
  margin: auto;
}

.homepage-nav-buttons .btn {
  background: repeating-radial-gradient(hot-pink, transparent 100px);
  border-radius: 9999px;
  color: white;
  font-weight: bold;
  font-size: 2.5vh;
  font-family: emoji;
  background: hotpink;

  &:hover {
    background: deeppink;
  }
}

.home-text {
  display: flex;
  flex-direction: column;
  padding: 168px 0 130px 0;
}

.text-center {
  text-align: center;
  color: floralwhite;
}

.home-container {
  min-height: calc(100vh - 80px);
  .home-row{
    margin-top: calc(30vh - 175px);
  }
}

/* General Styling for Testimonials */
.testimonial {
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;

  &:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
  }
}

/* Styling for Customer Images */
.testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for Testimonial Text */
.testimonial h3 {
  margin-bottom: 10px;
  color: #333;
}

.testimonial p {
  font-style: italic;
  color: #555;
}

/* Section Title Styling */
.section-title {
  margin: 2vh;
  color: black;
  font-size: x-large;
  font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: whitesmoke;
  ;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #333;
}

.feature-card {
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  background-color: rgb(253 242 248);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 50px;
  color: #ff6f61;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.feature-card p {
  font-size: 1rem;
  color: #666;
}

