.banner-style {
  font-size: 60px;
}
.banner-style-1 {
  margin-top: 15px;
  margin-bottom: 25px;
}
.lc-card-content {
  height: auto; /* Total fixed height */
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.lc-dz-media {
  height: 425px; /* Image section height */
  overflow: hidden;
  background-color: #f7f7f7; /* Optional: background for gaps */
}

.lc-dz-media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Show full image without cutting */
  display: block;
  background-color: #f7f7f7;
}

.lc-dz-info {
  height: 130px; /* Remaining height for text */
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
}

.lc-dz-info h5 {
  font-size: 18px;
}

/* Header */

@media screen and (max-width: 1024px) {
  .lc_logo_header_container {
    width: 100px !important;
  }
}

/* sidebar */

.lc_contact_box {
  align-items: center;
}

.contact-sidebar .contact-box1 .contact-address li:after {
  display: none;
}

.contact-address {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-address li {
  margin-bottom: 15px;
}

.contact-address .title {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.contact-address a {
  text-decoration: none;
  font-size: 16px;
}

.contact-address a:hover {
  text-decoration: underline;
}

.lc_sidebar_label {
  font-size: 16px;
  font-weight: bold;
}

.lc_sidebar_text {
  font-size: 17px;
  margin-top: 10px;
}

/* Contact us page */

.contact-block-theme {
  background-color: transparent;
  padding: 20px;
  border-radius: 16px;
  max-width: 480px;
  /* margin: auto; */
}

.contact-theme-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-theme-icon {
  font-size: 29px;
  color: #f06543; /* or #d24d2d for more warmth */
  margin-top: 4px;
}

.contact-theme-text h6 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.contact-theme-text p {
  font-size: 21px;
  color: #000;
  margin: 0;
  line-height: 1.6;
}

.contact-theme-text a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-theme-text a:hover {
  text-decoration: underline;
  color: #f06543;
}

/* Mobile responsive */
@media screen and (max-width: 480px) {
  .contact-block-theme {
    padding: 15px;
  }

  .contact-theme-icon {
    font-size: 20px;
  }

  .contact-theme-text h6 {
    font-size: 22px;
  }

  .contact-theme-text p {
    font-size: 17.5px;
  }
}

/* Footer */

.lc_footer_slogan,
.lc_footer_widget li,
.lc_footer_address li {
  font-size: 17px !important;
  line-height: 2 !important;
}

.lc_footer_address .title {
  font-weight: bold !important;
}

.lc_footer_address .title a {
  font-weight: normal !important;
}

/* Responsive */

@media (max-width: 425px) {
  .logo-header img {
    height: 60px;
  }
}

/* Video Play button */

.play-button-wrapper {
  width: 60px;
  height: 60px;
  position: relative;
}

.play-button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #e50914;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
}

.play-button::before,
.play-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 2px solid #e6424a;
  border-radius: 50%;
  z-index: 0;
  animation: ripple 2s infinite ease-out;
}

.play-button::after {
  animation-delay: 0.5s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.play-icon {
  position: relative;
  width: 0;
  height: 0;
  border-left: 14px solid white;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  z-index: 1;
}

/* Carousel */

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .carousel-button {
  font-size: 25px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  cursor: pointer;
  padding: 4px 15px;
  border-radius: 50%;
} */

.carousel-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  padding: 10px;
  text-align: center;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: black;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
  width: 70px;
  height: 70px;
  opacity: 0.9;
}

.carousel-button:hover {
  background: rgba(0, 0, 0, 0.8);
  color: white;
}

/* Position each button separately */
.carousel-button.prev {
  left: 10px; /* stays on left edge */
}

.carousel-button.next {
  right: 10px; /* moves to right edge */
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.slide-content {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

@media (min-width: 426px) and (max-width: 1024px) {
  .carousel-slide {
    min-width: 50%;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .carousel-slide {
    min-width: 25%;
  }
}

@media (min-width: 1441px) {
  .carousel-slide {
    min-width: 20%;
  }
}
