/* Hero Slider Styles */
#hero-slider {
    position: relative;
    width: 100%;
    height: 768px; /* Full viewport height */
    overflow: hidden;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
  
  #hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 10px;
  }
  
  #hero-slider .slide.active {
    opacity: 1;
  }
  
  #hero-slider .slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin-bottom: 20px;
  }

  
  #hero-slider .slide button {
    background-color: #ffb300;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
    position: relative;
  }
  
  #hero-slider .slide button:hover {
    background-color: #e6a000;
  }

  #hero-slider .slide .blog-visuals {
    position: relative; /* Add this to allow absolute positioning of the author image */
    width: 100%; /* Make the image responsive */
    max-width: 600px; /* Limit the maximum width */
    margin: 0 auto; /* Center the image container */
}

#hero-slider .slide .author-image {
    position: absolute;
    top: 10px; /* Adjust vertical position as needed */
    left: 10px; /* Adjust horizontal position as needed */
    width: 100px; /* Adjust width as needed */
    height: 100px; /* Adjust height as needed */
    object-fit: cover; /* Cover the entire circle area */
    border-radius: 50%; /* Optional: Make the image circular */
}

#hero-slider .slide .service,
#hero-slider .slide .blog-post,
#hero-slider .slide .episode,
#hero-slider .slide .testimonial,
.hero-content {
  /* Center the content within each slide */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* Ensure text is also centered */
}

#hero-slider .slide .content-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px; /* Adjust the gap value as needed */
}

#hero-slider .slide .blog-post .content-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px; /* Adjust the gap value as needed */
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10; /* Increase this value */
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}

.slider-dots .dot.active {
  opacity: 1;
}
