/* ==========================================================================
   Hero Banner / Home Slider — custom design
   ========================================================================== */

/* Mobile header fix: style.min.css hides ALL "ul" inside .navbar at <=991px
   (".navbar ul{display:none}") to collapse the menu, but that selector also
   catches .sigma_header-controls-inner (the toggler/search list), hiding the
   mobile hamburger button. Restore it while leaving the menu collapse intact. */
@media (max-width: 991px) {
  .navbar .sigma_header-controls-inner {
    display: flex !important;
  }

  /* Same ".navbar ul{display:none}" rule also hides the HI/EN language
     switch (it's wrapped in its own .navbar-nav). Keep it visible without
     re-showing the actual menu list. */
  .navbar ul.navbar-nav:has(.switch-container) {
    display: flex !important;
    align-items: center;
    margin: 0 8px;
  }
}

/* Simple hamburger icon for the mobile menu toggle (instead of the dot-grid) */
.mobile-menu-icon i {
  display: none;
}

@media (max-width: 991px) {
  .mobile-menu-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .mobile-menu-icon span {
    display: none !important;
  }

  .mobile-menu-icon i {
    display: block;
    font-size: 22px;
    color: #ff5206;
  }
}

.hero-banner.sigma_banner {
  border-radius: 0;
  overflow: visible;
}

.hero-banner .sigma_banner-slider {
  position: relative;
}

.hero-banner .slick-track,
.hero-banner .slick-list {
  overflow: hidden;
}

/* Slide ---------------------------------------------------------------- */
.hero-slide {
  position: relative;
  display: flex !important;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
}

.hero-slide-media {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.hero-slide-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 8, 13, 0.78) 0%, rgba(18, 8, 13, 0.55) 32%, rgba(18, 8, 13, 0.15) 60%, rgba(18, 8, 13, 0) 78%);
  z-index: 2;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Reverse layout (image left, content right) ------------------------------ */
.hero-slide.hero-slide-reverse .hero-slide-media::before {
  background: linear-gradient(270deg, rgba(18, 8, 13, 0.78) 0%, rgba(18, 8, 13, 0.55) 32%, rgba(18, 8, 13, 0.15) 60%, rgba(18, 8, 13, 0) 78%);
}

.hero-slide.hero-slide-reverse .hero-content-inner {
  margin-left: auto;
}

@media (max-width: 991px) {
  .hero-slide.hero-slide-reverse .hero-content-inner {
    margin-left: 0;
  }
}

.hero-content-inner {
  max-width: 560px;
}

.hero-title {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}

.hero-title .row-1,
.hero-title .row-2 {
  display: block;
}

.hero-title .row-1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-title .row-2 {
  color: #ff8a3d;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  margin: 0 0 22px;
}

.hero-divider span {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65) 50%, transparent);
}

.hero-divider i {
  color: #ff8a3d;
  font-size: 15px;
}

.hero-banner .hero-text {
  color: #f3e7df !important;
  font-size: 16px;
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 32px !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
}

.hero-btn i {
  margin-left: 10px;
}

/* Arrows ----------------------------------------------------------------- */
.hero-banner .slick-prev,
.hero-banner .slick-next {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(126, 69, 85, 0.18);
  z-index: 5;
  transition: 0.3s;
}

.hero-banner .slick-prev {
  left: 26px;
}

.hero-banner .slick-next {
  right: 26px;
}

.hero-banner .slick-prev:hover,
.hero-banner .slick-next:hover {
  background-color: #ff5206;
}

.hero-banner .slick-prev::before,
.hero-banner .slick-next::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 16px;
  color: #ff5206;
  opacity: 1;
  transition: 0.3s;
}

.hero-banner .slick-prev:hover::before,
.hero-banner .slick-next:hover::before {
  color: #fff;
}

.hero-banner .slick-prev::before {
  content: "\f104";
}

.hero-banner .slick-next::before {
  content: "\f105";
}

/* Marquee ticker (shared keyframes) ---------------------------------------- */
@keyframes hero-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Top marquee bar (above header) -------------------------------------------- */
.top-marquee-bar {
  display: flex;
  align-items: stretch;
  min-height: 42px;
  background-color: #5c2338;
  overflow: hidden;
}

/* On pages where the header floats absolutely over the content (header-3 /
   header-absolute inner pages), push it down below the marquee bar instead
   of letting it overlap. Home page uses header-2 (static), so this is a
   no-op there. */
.top-marquee-bar + .sigma_header.header-absolute {
  top: 42px;
}

.top-marquee-bar .marquee-track {
  flex: 1 1 auto;
  display: flex;
  overflow: hidden;
  min-width: 0;
}

.top-marquee-bar .marquee-content {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  color: #f6e9df;
  font-size: 13px;
  padding: 10px 0;
  animation: hero-marquee-scroll 26s linear infinite;
}

.top-marquee-bar .marquee-content .HI,
.top-marquee-bar .marquee-content .EN {
  white-space: nowrap;
}

.top-marquee-bar .marquee-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background-color: rgba(0, 0, 0, 0.12);
}

.top-marquee-bar .marquee-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
  transition: 0.3s;
}

.top-marquee-bar .marquee-btn.call {
  background-color: #ff5206;
}

.top-marquee-bar .marquee-btn.whatsapp {
  background-color: #00873f;
}

.top-marquee-bar .marquee-btn:hover {
  opacity: 0.85;
  color: #fff;
}

@media (max-width: 767px) {
  .top-marquee-bar .marquee-btn span {
    display: none !important;
  }
}

/* Floating WhatsApp / Call buttons (self-contained so they work on every
   page, even ones that don't load style.min.css) --------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 4000;
  width: 50px;
  height: 50px;
}

.whatsapp-btn .logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #00873f;
  color: #fff;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 4000;
  width: 50px;
  height: 50px;
}

@media screen and (min-width: 768px) {
  .call-btn {
    bottom: 20px;
    right: 80px;
  }
}

.call-btn .logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #de0f00;
  color: #fff;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-btn .logo i {
  font-size: 20px;
}

/* Feature strip ------------------------------------------------------------ */
.hero-feature-strip {
  position: relative;
  z-index: 4;
  margin: -55px auto 0;
  max-width: 1290px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(126, 69, 85, 0.15);
  overflow: hidden;
}

.feature-ticker {
  background: linear-gradient(90deg, #ff5206, #ff7a3d);
  overflow: hidden;
}

.feature-ticker-track {
  display: flex;
  overflow: hidden;
}

.feature-ticker-content {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 9px 0;
  animation: hero-marquee-scroll 20s linear infinite;
}

.feature-ticker-content .HI,
.feature-ticker-content .EN {
  white-space: nowrap;
}

.hero-feature-items {
  display: flex;
  flex-wrap: wrap;
  padding: 26px 6px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 190px;
  padding: 10px 18px;
  border-right: 1px solid #f1e6dd;
}

.hero-feature-item:last-child {
  border-right: 0;
}

.hero-feature-item i {
  font-size: 32px;
  color: #ff5206;
  flex-shrink: 0;
}

.hero-feature-item h6 {
  font-size: 14.5px;
  font-weight: 700;
  color: #5c2338;
  margin: 0 0 3px;
}

.hero-feature-item span {
  font-size: 12.5px;
  color: #8a7268;
}

/* Responsive --------------------------------------------------------------- */
@media (max-width: 1199px) {
  .hero-feature-item {
    min-width: 180px;
  }
}

@media (max-width: 991px) {
  .hero-slide {
    min-height: 520px;
  }

  .hero-content-inner {
    max-width: 100%;
    padding: 0 24px;
  }

  .hero-feature-strip {
    margin-top: 30px;
    border-radius: 12px;
  }

  .hero-feature-item {
    flex: 1 1 50%;
    min-width: 50%;
    border-right: 0;
    border-bottom: 1px solid #f1e6dd;
    justify-content: center;
    padding: 14px 10px;
  }
}

@media (max-width: 575px) {
  .hero-feature-item {
    flex: 1 1 100%;
    justify-content: flex-start;
  }
}
