/*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;
  }
}

.brochure-link i {
  color: #e53935;
  margin-right: 6px;
}

/*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;
  }
}

/*contact   get in touch 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;
  }
}

.shivam-whyus-2 {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

/* Title */
.shivam-whyus-2 .title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.shivam-whyus-2 .title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #e53935;
  display: block;
  margin: 10px auto 0;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.why-box {
  background: rgb(240, 239, 239);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 16px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Icon (NO CUT FIX) */
.why-box i {
  font-size: 32px;
  color: #e53935;
  margin-bottom: 15px;
  display: inline-block;
}

/* Text */
.why-box h3 {
  font-size: 18px;
  color: #2c2c2c;
}

/* Hover Effect */
.why-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Animated Border */
.why-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(120deg, #e53935, #e53935);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.why-box:hover::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
