@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: poppins;
}
.banner {
  width: 100%; /* Make the container take full width */
  height: auto; /* Adjust the height according to image aspect ratio */
  overflow: hidden; /* Hide any content overflowing the container */
}

.banner img {
  width: 100%; /* Make the image fill the width of the container */
  height: auto; /* Maintain the aspect ratio */
  object-fit: cover; /* Ensure the image covers the container without distortion */
}
@media screen and (max-width: 600px) {
  .banner img {
      object-fit: contain;
      /* Adjust image scaling for small screens */
      
  }
}
@media only screen and (min-width: 1200px) {
  .banner img {
      object-fit: contain;
      height: auto; /* Adjust image scaling for small screens */
      width:100%;
      
  }
}
/* html{
  scroll-behavior: smooth;
} */
 /*marquee start*/
.marquee {
  height: 350px; /* Set height of the notice column */
  overflow: hidden;
  position: relative;
  background-color: #f8f9fa; /* Light background */
  border: 1px solid #dee2e6; /* Border for notice area */
  border-radius: 5px;
  padding: 10px;
}
.marquee-content {
  display: inline-block;
  position: absolute;
  animation: marquee-vertical 8s linear infinite;
  animation-play-state: running; /* Play animation on hover */
  width: 100%;
}
.marquee:hover .marquee-content {
  animation-play-state: paused; /* Stop animation on hover */
}
@keyframes marquee-vertical {
  from {
    top: 100%;
  }
  to {
    top: -100%;
  }
}
@media (max-width: 768px) {
  .marquee-content {
    animation: marquee-vertical 8s linear infinite; /* Speed up scrolling */
  }
}
.marquee-content li {
  padding: 5px 0;
  border-bottom: 1px solid #dee2e6; /* Separation line */
}
.marquee-content li:last-child {
  border-bottom: none; /* Remove the line after the last item */
}
/*marquee end*/
.hero-image{
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
@media (max-width: 768px) {
  .hero-image h1 {
    min-width: 250px;
  }
}
.card-body h3{
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    color: white;
}
.card-body p{
    position: absolute;
    top:60%;
    left: 40%;
    transform: translate(-50%, -50%);
    color: white;
}
@media (max-width: 768px) {
  .card {
    min-height: 50vh; /* Adjust as needed */
  }
}
/*back to top*/
 
          /*end of back to top*/
.centered{
    position: absolute;
    top: 50%;
    left:50% ;
    transform: translate(-50%, -50%);
    color: white;
}

/* slider autoplay */
/* Container of the slider */
.slider {
    height: 100px; /* Set height based on your image height */
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 95%; /* Adjust to container size */
  }
  
  /* Track for the images */
  .slide-track {
    display: flex;
    width: calc(250px * 14); /* Width of all images combined (7 images + 7 duplicates) */
    animation: scroll 50s linear infinite; /* Animation for infinite scroll */
    gap: 0;
  }
  
  /* Individual slide (image container) */
  .slide1 {
    height: 100px; /* Match the height of the image */
    width: 200px; /* Width of each image */
    flex-shrink: 0; /* Prevent shrinking of individual slides */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  
  /* Ensure images scale properly inside the slide container */
  .slide1 img {
    max-height: 100% ; /* Scale images to fit the slide height */
    width: 150px; /* Maintain aspect ratio */
  }
  
  /* Animation for the scrolling effect (right to left) */
  @keyframes scroll {
    0% {
      transform: translateX(0); /* Start from the beginning */
    }
    100% {
      transform: translateX(-50%); /* Move the track to the left by 50% of its width */
    }
  }
  @media (max-width: 700px) {
    .slider {
      height: 100px; /* Reduce height on smaller screens */
    }
  
    .slide1 {
      width: 200px; /* Adjust width for mobile */
    }
  
    .slide-track {
      width: calc(200px * 14); /* Adjust width calculation */
      animation-duration: 30s; /* Faster animation on mobile */
    }
  }
  
@media (max-width: 700px){
    html, body{
        min-width: 250px;
    }
}
.progress-container {
  width: 100%;
  height: 5px;
  background: whitesmoke;
}

.progress-bar {
  height: 5px;
  background: #f31847;
  width: 0%;
}

::-webkit-scrollbar {
  scroll-behavior: smooth;
  display: none; /* for Chrome, Safari, and Opera */
}
@media (max-width: 700px){
        ul .list-group{
          min-height: 100vh;

        }
}
.title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.content {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 750px;
  text-align: justify;
}

.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.image-container {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
      flex-direction: row;
      align-items: flex-start;
  }

  .content {
      text-align: left;
  }
}

/* slider */
 /* Default styles */
 .swiper {
  width: 50%;
  height: 50%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%; /* Ensure the image doesn't exceed its container width */
  height: auto; /* Ensure the image doesn't exceed its container height */
  object-fit: cover; 
}

/* Responsive styles */

/* For small screens (e.g., mobile devices) */
@media (max-width: 768px) {
  .swiper {
    width: 100%; /* Make it full-width on small screens */
    height: 60%; /* Adjust the height */
  }

  .swiper-slide {
    font-size: 14px; /* Reduce font size for smaller screens */
  }
}

/* For medium screens (e.g., tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
  .swiper {
    width: 75%; /* Adjust the width for tablets */
    height: 60%; /* Adjust the height */
  }

  .swiper-slide {
    font-size: 16px; /* Slightly larger font size */
  }
}

/* For larger screens (e.g., desktops) */
@media (min-width: 1025px) {
  .swiper {
    width: 60%; /* Slightly larger width for desktops */
    height: 50%; /* Keep height proportional */
  }

  .swiper-slide {
    font-size: 18px; /* Default font size */
  }
}
/* @dhmti slider */
.scroll-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  /* border: 2px solid black; */
}

.scroll-images {
  display: flex;
  animation: scroll-left 20s linear infinite;
}

.scroll-images img {
  margin-right: 10px;
  height: 100%;
  width: auto;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}
@keyframes scroll-left {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .scroll-container {
      height: auto;  /* Adjust height on smaller screens */
  }

  .scroll-images img {
      max-width: 200px;  /* Adjust max width on smaller screens */
  }
}

@media (max-width: 480px) {
  .scroll-container {
      height: auto;  /* Adjust height on very small screens */
  }

  .scroll-images img {
      max-width: 150px;  /* Adjust max width on very small screens */
  }
}
#btn-back-to-top {
  position:fixed;
  bottom: 20px;
  right: 20px;
  display: none;
} 
@keyframes blink {
  0% {
    text-shadow: 0px 0px 10px#f31847;
  }

  50% {
    text-shadow: none;
  }

  100% {
    
    text-shadow: 0px 0px 10px#f31847;
  }
}
.blinking-text {
  animation: blink 1s infinite;
}
/* splide image text */
.thumbnail {
  position: relative;
}
.caption {
  background: #CCC;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
  position: absolute;
  top: 85%;
  left: 0;
  width: 100%;
}
.caption p {
  color: black;
}
/* splide progress bar */
.splide__progress__bar {
  height: 4px;
  background: #f31847;
}
/* splide Change the arrow background color */
.sample-slider .splide__arrow {
  background: #f31847;
}
/* Change the arrows color */
.sample-slider .splide__arrow svg {
  fill: white;
}
