/* line 4, C:/Users/SPN Graphics/Desktop/CL September/209/HTML/scss/_slider.scss */
.slider_area {
  background-size: cover;
  background-position: center  center;
  background-repeat: no-repeat;
 /* padding-top: 300px;
  padding-bottom: 100px;*/
}

@media (max-width: 767px) {
  /* line 4, C:/Users/SPN Graphics/Desktop/CL September/209/HTML/scss/_slider.scss */
  .slider_area {
    /*padding-top: 140px;*/
    padding-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 4, C:/Users/SPN Graphics/Desktop/CL September/209/HTML/scss/_slider.scss */
  .slider_area {
    padding-top: 140px;
    padding-bottom: 30px;
  }
}


/* COUNT DOWN TIMER CSS */
.countdown-timer {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.time {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0,0, 0.6);
  padding: 20px;
  border-radius: 8px;
  min-width: 80px;
  transition: transform 0.2s ease;
}

.time:hover {
  transform: scale(1.1);
}

.time span {
  font-size: 5rem;
  font-weight: bold;
  color: #FFFFFF; /* Light Blue for numbers */
}

.time small {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF; /* Mustard for labels */
  text-transform: uppercase;
  margin-top: 5px;
}


@media (max-width: 768px) {
  .time {
    padding: 15px;
    min-width: 70px;
  }

  .time span {
    font-size: 1.8rem;
  }

}
/* END OF COUNT DOWN TIMER */

/* START OF VIDEO BACKGROUND */

/* Parallax container settings */

/* Parallax container */
.parallax-container {
  position: relative;
  height: 50vh; /* Full viewport height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#parallax-video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100vw; /* Full screen width */
  min-height: 100vh; /* Full screen height */
  object-fit: cover; /* Ensures the video fills the viewport */
  z-index: -1; /* Send video to the background */
}

.foreground-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
}
.foreground-content h2{
  color: #FFFFFF;
  font-size: 4rem;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
}

/* Responsive design */
@media (max-width: 768px) {
  .foreground-content h2 {
    font-size: 2rem;
  }

  #countdown .time {
    width: 60px;
    padding: 10px;
  }

  .time span {
    font-size: 1.5rem;
  }

  .time small {
    font-size: 0.7rem;
  }
}

/* END OF VIDEO BACKGROUND */


.social-links a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}


/* CSS for the home page Slider*/
.carousel-container {
          max-width: 600px; /* Max width for the carousel */
          width: 30%; /* Responsive width */
          margin: auto; /* Center the container */
          border-radius: 1rem; /* Rounded corners */
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Subtle shadow */
          overflow: hidden; /* Ensure rounded corners apply to images */
      }

.carousel-item img {
    width: 100%; /* Make images fill the carousel item */
    height: auto; /* Maintain aspect ratio */
    border-radius: 1rem; /* Apply rounded corners to images as well */
    object-fit: cover; /* Ensure images cover the area without distortion */
}

/* Custom styling for carousel controls for better visibility */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    border-radius: 50%; /* Make them circular */
    padding: 15px; /* Add some padding */
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%; /* Increase clickable area */
}



/*---------------CARD SLIDER--------------------------------------------------------*/
.carousel-container {
          max-width: 600px; /* Max width for the carousel */
          width: 65%; /* Responsive width */
          margin: auto; /* Center the container */
          border-radius: 1rem; /* Rounded corners */
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Subtle shadow */
          overflow: hidden; /* Ensure rounded corners apply to images */
      }

.carousel-item img {
    width: 100%; /* Make images fill the carousel item */
    height: auto; /* Maintain aspect ratio */
    border-radius: 1rem; /* Apply rounded corners to images as well */
    object-fit: cover; /* Ensure images cover the area without distortion */
}

/* Custom styling for carousel controls for better visibility */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    border-radius: 50%; /* Make them circular */
    padding: 15px; /* Add some padding */
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%; /* Increase clickable area */
}
/*------------------------------------------------------------------------------------------------*/











