/* ========================= */
/* MAIN BANNER */
/* ========================= */
.custom-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ========================= */
/* SLIDER */
/* ========================= */
.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.8s ease-in-out;
}

/* ACTIVE SLIDE */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================= */
/* OVERLAY (FIXED ISSUE) */
/* ========================= */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* ========================= */
/* TEXT */
/* ========================= */
.banner-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 700px;
}

/* HEADING (LIKE YOUR IMAGE) */
.banner-content h1 {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

/* ========================= */
/* ARROWS */
/* ========================= */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  background: #e53935;
}

/* ========================= */
/* DOTS */
/* ========================= */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  opacity: 1;
  background: #e53935;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {
  .custom-banner {
    height: 70vh;
  }

  .banner-content {
    left: 5%;
    right: 5%;
  }

  .banner-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .custom-banner {
    height: 60vh;
  }

  .banner-content h1 {
    font-size: 24px;
  }
}

.brochure-link i {
  color: #e53935;
  margin-right: 6px;
}

.main-menu__list li {
  margin-right: 20px; /* menu items ke beech gap */
}

/*brand logo section*/

.laxmi-brand {
  padding: 60px 0;
  background: #f7f9fc;
}

/* ITEM FIX */
.laxmi-brand__item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

/* IMAGE FIX (MAIN ISSUE SOLVED) */
.laxmi-brand__item img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* HOVER CLEAN */
.laxmi-brand__item:hover img {
  transform: scale(1.1);
}

/* REMOVE UGLY BOX EFFECT */
.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

/* DOTS REMOVE (optional) */
.owl-dots {
  display: none;
}

/* ---------------- */
/* RESPONSIVE */
/* ---------------- */

@media (max-width: 768px) {
  .laxmi-brand__item img {
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .laxmi-brand__item img {
    max-height: 35px;
  }
}

/*working hours section*/
.working-hours-box {
  /* border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px; */
  margin-top: 15px;
  border-radius: 8px;
}

/* TOP TEXT */
.working-text {
  color: #ccc;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

/* LIST */
.working-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: #ccc;
  font-size: 15px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

/* REMOVE LAST BORDER */
.working-hours-list li:last-child {
  border-bottom: none;
}

/* RIGHT SIDE */
.working-hours-list li span:last-child {
  color: #fff;
  font-weight: 500;
}

/* SUNDAY */
.working-hours-list li.closed span:first-child {
  color: #e31e24;
  font-weight: 600;
}
.working-hours-list li span:last-child {
  color: #4caf50; /* green highlight */
  font-weight: 600;
}

/* ---------------- */
/* 📱 TABLET */
/* ---------------- */
@media (max-width: 768px) {
  .working-hours-box {
    padding: 18px;
  }

  .working-hours-list li {
    font-size: 14px;
    padding: 8px 0;
  }
}

/* ---------------- */
/* 📱 MOBILE */
/* ---------------- */
@media (max-width: 480px) {
  .working-hours-box {
    padding: 15px;
  }

  /* STACK LAYOUT */
  .working-hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .working-hours-list li span:last-child {
    font-size: 13px;
    color: #ddd;
  }

  .working-text {
    font-size: 13px;
  }
}

/*footer section*/
.site-footer-three__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* CENTER TEXT */
.footer-credit {
  text-align: center;
  flex: 1;
  color: #ccc;
  font-size: 14px;
}

/* LINK STYLE */
.footer-credit a {
  color: #1e88d3;
  font-weight: 600;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #e31e24;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .site-footer-three__bottom-inner {
    flex-direction: column;
    gap: 10px;
  }

  .footer-credit {
    order: 2;
  }
}

/*contact  footer section*/

.footer-contact-box {
  padding: 0; /* remove box feel */
  background: transparent;
  border: none;
}

/* TITLE */
.footer-contact-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

/* LIST */
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #ccc;
}

/* ICON SIMPLE */
.footer-contact-list i {
  font-size: 14px;
  color: #ccc;
  margin-top: 4px;
}

/* TEXT */
.footer-contact-list span {
  line-height: 1.6;
}

/* LINKS */
.footer-contact-list a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: #fff; /* simple hover */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-contact-title {
    font-size: 20px;
  }

  .footer-contact-list li {
    font-size: 13px;
  }
}
