/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    overflow: hidden;
   height: 430px;
    background: #000;
    width: 100%;
    min-height: calc(100vh - 112px);
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  
}

.carousel-container {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 30%;
    
    right:30%;
    color: #fff;
    background:#dd8705ad;
    padding: 0px;
    border-radius: 2px;
}

.carousel-caption h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 1.2rem;
}

.hero .container {
  z-index: 3;
}

.hero .welcome h2 {

  margin: 0;
  font-size: 38px;
  font-weight: 700;
  color:#fff;
}

.hero .about h2 {

  margin: 0;
  font-size: 70px;
  font-weight: 700;
  text-align: center;
  
  color:#fff;
}

.hero .welcome p {
  font-size: 24px;
  margin: 0;
  font-weight: 300;
  color:#fff;
}

.hero .content {
  margin-top: 40px;
}

.hero .content .why-box {
  color: var(--contrast-color);
  background: #a9782eb8;
  padding: 10px;
  border-radius: 4px;
}

.hero .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero .content .why-box p {
  margin-bottom: 10px;
   font-size: 21px;
}

.hero .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero .content .why-box .more-btn i {
  font-size: 14px;
}

.hero .content .why-box .more-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .content .icon-box {
  text-align: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.hero .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}


/* Active Slide */
.carousel-slide:not(.active) {
    display: none;
}
