.hero-wrap {
    height: 80vh; /* Full viewport height */
    position: relative;
    overflow: hidden;
  }

  .carousel-img-container {
    position: relative;
}
.heading-section h4 {
  font-size: 19px;
  text-align: justify;
  font-weight: 500;
}

.button-style {
  display: inline-block;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background-color: #460a34; /* Change to desired button color */
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button-style:hover {
  background-color: #550a3e; /* Change to desired hover color */
  color: #fff;
}


.carousel-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); /* Adjust the alpha (opacity) value as needed */
    z-index: 1;
}

  
  .carousel-inner{
    background-color: rgba(0, 0, 0, 0.55); 
    height: 80vh;
  }
  .carousel-item {
    height: 100vh; /* Ensure carousel items occupy full viewport height */
}

.carousel-item img {
    object-fit: cover; /* Ensure images cover the entire carousel */
}
  .carousel-item,
  .carousel-item img {
    height: 80vh; /* Ensure all carousel items occupy full viewport height */
    
  }
  
  .carousel-caption {
    position: absolute;
    top: 40%;
    left: 50%;
    /* transform: translate(50%, 50%); */
    text-align: left;
    color: #fff;
    font-weight: bold;
    z-index: 2;
}
.carousel-caption h3{
    text-align: left;
    font-size: medium;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption {
        font-size: 14px; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        font-size: 12px; /* Further adjust font size for extra small screens */
    }
}
  
  /* Responsive Adjustments */
  @media (max-width: 1200px) {
    .carousel-caption {
      bottom: 25%;
      left: 5%;
      right: 5%;
    }
  }
  
  @media (max-width: 992px) {
    .carousel-caption {
      bottom: 30%;
      left: 5%;
      right: 5%;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .hero-wrap {
      height: 75vh; /* Adjust height for smaller screens */
    }
  
    .carousel-caption {
      bottom: 35%;
      left: 5%;
      right: 5%;
      font-size: 0.9em; /* Adjust font size for smaller screens */
    }
  }
  
  @media (max-width: 576px) {
    .hero-wrap {
      height: 30vh; /* Adjust height for extra small screens */
    }
  
    .carousel-caption {
      bottom: 60%;
      left: 5%;
      right: 5%;
      font-size: 1.0em; /* Adjust font size for extra small screens */
    }
  }

  #ftco-navbar {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  
  #ftco-navbar .navbar-brand img {
    height: 30px; /* Adjust the logo height */
  }
  
  /* #ftco-navbar .nav-link {
    padding: 0.5rem 1rem;
  } */
  
  #ftco-navbar {
    background-color: white;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  
  #ftco-navbar .navbar-brand img {
    height: 30px; /* Adjust the logo height */
  }
  
  #ftco-navbar .navbar-brand span {
    color: #7D7D7D; /* Ash color for the text span */
  }
  
  #ftco-navbar .nav-link {
    color: #7D7D7D; /* Ash color for the nav links */
    padding: 0.5rem 1rem;
  }
  
  #ftco-navbar .nav-link:hover {
    color: #581845; /* Darker shade on hover */
    font-weight: bold;
  }
  
  #ftco-navbar .navbar-toggler {
    border-color: rgba(0,0,0,.1);
  }
  
  /* TOP navbar */
  .top-bar {
    font-size: 0.9rem;
    background-color: #581845;
  }
  
  .top-bar a {
    color: #fff;
    text-decoration: none;
  }
  
  .top-bar a:hover {
    text-decoration: underline;
  }

  .fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Add media query for responsiveness */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: #fff; /* Change background color */
        position: fixed;
        top: 56px; /* Adjust this based on your navbar height */
        width: 100%;
        overflow-y: auto;
        max-height: calc(100vh - 56px); /* Adjust this based on your viewport height and navbar height */
    }
}

.carousel-inner .carousel-item {
    transition-duration: 1s; /* Adjust the duration as needed */
}
