.count-text.small-text {
    font-size: 22px;
}

.counter-item.style-three{
    padding: 40px 30px;
    height: 390px;
}

.overlay::before{
    opacity: 0.5;
}

.main-menu .navbar-collapse{
    padding-right: 120px;
}

.whatsapp-link {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  z-index: 1000; /* Ensures it's on top of other content */
}

.whatsapp-icon {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures the image scales correctly */
}



/* widget */

.slider-wrapper {
  width: 100%;
  height: 100vh !important;
  background-color: #34495e;
  display: flex;          /* Use Flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center;    /* Center vertically */
}

.slider-wrapper .content {
  height: 390px; /* Adjusted height to fit 6 items with increased font size */
  overflow: hidden;
  font-family: "Lato", sans-serif;
  font-size: 50px; /* Increased font size */
  line-height: 70px; /* Adjusted line-height */
  color: #ecf0f1;
  position: relative; /* Remove absolute positioning */
  padding-top: 75px;
}

.slider-wrapper .content__container {
  font-weight: 600;
  overflow: hidden;
  height: 70px; /* Adjusted height */
  padding: 0 40px;
}

.slider-wrapper .content__container:before {
  content: "[";
  left: 0;
}

.slider-wrapper .content__container:after {
  content: "]";
  position: absolute;
  right: 0;
}

.slider-wrapper .content__container:after,
.slider-wrapper .content__container:before {
  position: absolute;
  top: 0;
  color: #16a085;
  font-size: 72px; /* Adjusted font size */
  line-height: 70px; /* Adjusted line-height */
  -webkit-animation-name: opacity;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: opacity;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  padding-top: 75px;
}

.slider-wrapper .content__container__list {
  margin-top: 0;
  text-align: center; /* Center align the text */
  
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align items */
  -webkit-animation-name: change;
  -webkit-animation-duration: 15s; /* Adjusted for 6 items */
  -webkit-animation-iteration-count: infinite;
  animation-name: change;
  animation-duration: 15s; /* Adjusted for 6 items */
  animation-iteration-count: infinite;
}

.slider-wrapper .content__container__list__item {
  line-height: 70px; /* Adjusted line-height */
  margin: 0;
}

@-webkit-keyframes opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes change {
  0%, 13.33%, 100% {
    transform: translate3d(0, 0, 0);
  }
  16.66%, 30% {
    transform: translate3d(0, -16.66%, 0);
  }
  33.33%, 46.66% {
    transform: translate3d(0, -33.33%, 0);
  }
  50%, 63.33% {
    transform: translate3d(0, -50%, 0);
  }
  66.66%, 80% {
    transform: translate3d(0, -66.66%, 0);
  }
  83.33%, 96.66% {
    transform: translate3d(0, -83.33%, 0);
  }
}

@keyframes opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes change {
  0%, 13.33%, 100% {
    transform: translate3d(0, 0, 0);
  }
  16.66%, 30% {
    transform: translate3d(0, -16.66%, 0);
  }
  33.33%, 46.66% {
    transform: translate3d(0, -33.33%, 0);
  }
  50%, 63.33% {
    transform: translate3d(0, -50%, 0);
  }
  66.66%, 80% {
    transform: translate3d(0, -66.66%, 0);
  }
  83.33%, 96.66% {
    transform: translate3d(0, -83.33%, 0);
  }
}

@media (max-width: 768px) {
  .slider-wrapper .content {
    font-size: 25px; /* Adjust font size for mobile devices */
    line-height: 30px; /* Adjust line-height for mobile devices */
  }
  
  
}

@media only screen and (min-width: 1200px) {
  .main-footer.footer-one .widget-links {
    
    margin-left: 0;
    
  }
}


/* carousel */

.carousel {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.carousel-slide.active {
  display: block;
  position: relative;
  animation: fadeIn 1s;
}

.carousel img {
  width: 100vw;
  height: 690px;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 200px;
  right: 40px;
  left: auto;
  top: auto;
  transform: none;
  width: 50%;
  text-align: left;
  color: #fff;
  font-size: 1.5rem; /* Smaller font size */
  background: #1700004d;
  padding: 24px 32px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
  border-radius: 12px;
}

.carousel-caption p.founder-quote {
  font-size: 24px !important;
  line-height: 30px !important;
  margin-top: 3%;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0 18px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.carousel-control:hover {
  background: transparent
}

.carousel-control.prev {
  left: 20px;
}

.carousel-control.next {
  right: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}