/* Focus-in-expand animation */
.focus-in-expand {
  -webkit-animation: focus-in-expand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: focus-in-expand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

/* Update intro styling to work with the animation */
.intro-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f5f3;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-content {
  position: relative;
  width: 80%;
  max-width: 1100px;
  text-align: center;
}

.intro-title {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 1.4;
  opacity: 0; /* Start invisible */
}
.color-a {
  color: #e41f4d;
  font-family: "PT Sans", sans-serif !important;
  text-transform: capitalize;
  font-weight: 500 !important;
  font-style: italic;
}
.bold-a {
  font-weight: 900 !important;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .intro-title {
    font-size: 85px;
  }
}

@media (max-width: 767px) {
  .intro-title {
    font-size: 50px;
  }
}

@media (max-width: 480px) {
  .intro-title {
    font-size: 42px;
  }
}

/* Testimonials Section */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #f4f4f4;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  margin: 15px;
}

.testimonial-item:hover {
  box-shadow: 0 5px 20px rgba(228, 31, 77, 0.1);
  transform: translateY(-2px);
}

.testimonial-video {
  width: 100%;
  position: relative;
}

.video-wrapper {
  position: relative;
  padding-bottom: 0; /* Overriding the default aspect ratio */
  height: 200px;
  overflow: hidden;
}

.testimonial-content {
  padding: 25px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  min-height: 100px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
  color: #1c1c1c;
}

.testimonial-author-info p {
  margin: 0;
  font-size: 14px;
  color: #e41f4d;
  font-weight: 500;
}

/* Owl Carousel Customizations for Testimonials */
.testimonials-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonials-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.testimonials-carousel .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.testimonials-carousel .owl-dot.active span {
  background: #e41f4d;
  transform: scale(1.3);
}

