/* ============================================================
   index.css — Original Editorial Design for MORE ECOM
   ============================================================ */

/* ---------- Hero — Cinematic Slider ---------- */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #0a0f1a;
  padding: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 600px;
  min-height: 500px;
  max-height: 650px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 800ms ease, visibility 800ms ease;
  z-index: 1;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* Dark gradient overlay for text readability */
.hero-slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Slide overlay content */
.hero-slide-overlay {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 5;
  max-width: 480px;
}
.hero-slide-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.hero-slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-slide-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.5;
}
.hero-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}
.hero-slide-cta:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero counter indicator */
.hero-counter {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #fff;
  font-family: var(--font-heading);
}
.hero-counter .current {
  font-size: 2rem;
  font-weight: 700;
}
.hero-counter .divider {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin: 0 4px;
}
.hero-counter .total {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}
.hero-progress-bar {
  height: 100%;
  background: var(--color-primary);
  width: 0%;
  transition: width 0.3s linear;
}

/* Hero nav — pill-shaped */
.hero-slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 44px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.hero-slider-control:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}
.hero-slider-control.prev { left: 24px; }
.hero-slider-control.next { right: 24px; }

/* Hide old-style indicators */
.hero-slider-indicators { display: none; }

/* Hide old floating cards */
.hero-float-card-wrapper { display: none !important; }


/* ---------- Marquee Strip ---------- */
.marquee-strip {
  background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
  color: rgba(255,255,255,0.65);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.marquee-track i { color: var(--color-primary); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ---------- Editorial Section Utilities ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.section-heading-editorial {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: 0;
}
.accent-line {
  width: 50px;
  height: 3px;
  background: var(--color-text-dark);
  margin-top: 16px;
}


/* ---------- About / Company — Numbered Editorial ---------- */
.about-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about-section .section-watermark {
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(0,0,0,0.02);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.about-large-img-box {
  background: #ffffff;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  max-width: 100%;
}
.about-large-img-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}
.about-large-img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.about-large-img-box:hover img {
  transform: scale(1.02);
}
.about-content-block {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.about-content-block:last-child {
  border-bottom: none;
}
.about-content-block:hover {
  padding-left: 8px;
}
.about-block-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-text-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.about-block-img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
}
.about-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.about-content-block:hover .about-block-img img {
  transform: scale(1.06);
}
.about-block-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}
.about-block-text p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0;
}


/* ---------- Our Product — Showcase Strip ---------- */
.product-section {
  background: var(--color-bg);
}
.product-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.product-section-header .view-all {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}
.product-section-header .view-all:hover {
  color: var(--color-primary);
  gap: 10px;
}

/* Product card — new design */
.carousel-track-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track-container::-webkit-scrollbar { display: none; }
.carousel-track {
  display: flex;
  gap: 20px;
  padding: 4px 2px;
}
.our-product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}
@media (max-width: 991px) { .our-product-card { flex: 0 0 calc(33.333% - 14px); } }
@media (max-width: 767px) { .our-product-card { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 479px) { .our-product-card { flex: 0 0 100%; } }

.product-card-v2 {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}
.product-card-v2-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1f5f9;
}
.product-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card-v2:hover .product-card-v2-img img {
  transform: scale(1.08);
}
.product-quick-pill {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: bottom 0.35s ease;
  z-index: 3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-card-v2:hover .product-quick-pill {
  bottom: 14px;
}
.product-card-v2-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-v2-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-v2-sub {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-v2-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-card-v2-price .dp {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
}
.product-card-v2-price .mrp {
  font-size: 0.82rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

/* Carousel navigation — pill style */
.carousel-nav-pill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 40px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  outline: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.carousel-nav-pill:hover {
  background: var(--color-text-dark);
  color: #fff;
  border-color: var(--color-text-dark);
}
.carousel-nav-pill.prev-btn { left: -22px; }
.carousel-nav-pill.next-btn { right: -22px; }
@media (max-width: 575px) {
  .carousel-nav-pill { width: 36px; height: 34px; }
  .carousel-nav-pill.prev-btn { left: -12px; }
  .carousel-nav-pill.next-btn { right: -12px; }
}


/* ---------- Core Values — Side Timeline & Image ---------- */
.core-values-section {
  background: linear-gradient(180deg, #fff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}
.cv-side-timeline {
  position: relative;
  padding-left: 45px;
}
.cv-side-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 17px;
  width: 2px;
  background: var(--color-border);
}
.cv-side-item {
  position: relative;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.cv-side-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
.cv-side-node {
  position: absolute;
  left: -45px;
  top: 6px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-text-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.cv-side-content {
  background: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.cv-side-content:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateX(4px);
}
.cv-side-content h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}
.cv-side-content p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin-bottom: 0;
}

.core-values-img-box {
  position: sticky;
  top: 110px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 36px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.core-values-img-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.07);
}
.core-values-img-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* Timeline mobile */
@media (max-width: 991px) {
  .core-values-img-box {
    position: static;
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .cv-side-timeline {
    padding-left: 35px;
  }
  .cv-side-timeline::before {
    left: 14px;
  }
  .cv-side-node {
    left: -35px;
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  .cv-side-content {
    padding: 14px 16px;
  }
  .core-values-img-box {
    padding: 16px;
  }
}


/* ---------- Achievers — Spotlight Circles ---------- */
.achievers-section {
  background: #fff;
}
.achievers-carousel-track-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.achievers-carousel-track-container::-webkit-scrollbar { display: none; }
.achievers-carousel-track {
  display: flex;
  gap: 28px;
  padding: 8px;
}
.achiever-carousel-card {
  flex: 0 0 calc(16.666% - 23px);
  min-width: 0;
  text-align: center;
}
@media (max-width: 1199px) { .achiever-carousel-card { flex: 0 0 calc(20% - 22px); } }
@media (max-width: 991px) { .achiever-carousel-card { flex: 0 0 calc(25% - 21px); } }
@media (max-width: 767px) { .achiever-carousel-card { flex: 0 0 calc(33.333% - 19px); } }
@media (max-width: 479px) { .achiever-carousel-card { flex: 0 0 calc(50% - 14px); } }

.achiever-card-v2 {
  position: relative;
  aspect-ratio: 1 / 1.15;
  width: 100%;
  max-width: 160px;
  margin: 0 auto 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}
.achiever-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--color-primary);
}
.achiever-card-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.achiever-card-v2:hover img {
  transform: scale(1.04);
}
.achiever-name-v2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-text-dark);
  margin: 0;
  transition: color 0.25s ease;
}
.achiever-carousel-card:hover .achiever-name-v2 {
  color: var(--color-primary);
}


/* ---------- Latest News — Editorial Quote ---------- */
.news-section {
  background: var(--color-bg);
  position: relative;
}
.news-carousel-track-container {
  overflow: hidden;
  width: 100%;
}
.news-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.news-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  padding: 1rem 0;
}
.news-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.8;
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: 10px;
  user-select: none;
}
.news-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.6;
  max-width: 740px;
  margin: 0 auto 24px;
}
.news-stars-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
}
.news-stars-pill i {
  color: #F59E0B;
  font-size: 0.85rem;
}

/* News nav — text based */
.news-nav-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.news-nav-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  padding: 8px 0;
}
.news-nav-btn:hover {
  color: var(--color-text-dark);
}
.news-nav-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}


/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.in-view > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.stagger-children.in-view > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.stagger-children.in-view > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.stagger-children.in-view > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.stagger-children.in-view > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.stagger-children.in-view > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
.stagger-children.in-view > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.47s; }










/*Bhavesh CSS Start*/

  /* =========================================
   RESPONSIVE HERO SLIDER
========================================= */
/* ============================================================
   HERO SLIDER — RESPONSIVE / FULL IMAGE / NO CROPPING
============================================================ */

/* ------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------ */

.hero-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
}


/* ------------------------------------------------------------
   HERO VISUAL
------------------------------------------------------------ */

.hero-visual {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}


/* ------------------------------------------------------------
   HERO SLIDER
------------------------------------------------------------ */

.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}


/* ------------------------------------------------------------
   SLIDE
------------------------------------------------------------ */

.hero-slide {
    position: relative !important;

    display: none;

    width: 100%;
    height: auto !important;
    min-height: 0 !important;

    margin: 0;
    padding: 0;

    overflow: hidden;
}


/* Active slide */

.hero-slide.active {
    display: block !important;

    position: relative !important;

    width: 100%;
    height: auto !important;
    min-height: 0 !important;
}


/* ------------------------------------------------------------
   HERO IMAGE
   IMPORTANT: ORIGINAL IMAGE RATIO MAINTAIN
------------------------------------------------------------ */

.hero-slide img {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: center center;

    transform: none !important;

    animation: none !important;
}


/* ------------------------------------------------------------
   REMOVE OLD KEN BURNS ANIMATION
------------------------------------------------------------ */

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1);
    }
}


/* ------------------------------------------------------------
   REMOVE IMAGE OVERLAY
   This prevents bottom portion from looking hidden/dark.
------------------------------------------------------------ */

.hero-slide::after {
    display: none !important;
    content: none !important;
}


/* ============================================================
   HERO NAVIGATION ARROWS
============================================================ */

.hero-slider-control {
    position: absolute !important;

    top: 50% !important;
    transform: translateY(-50%) !important;

    z-index: 50 !important;

    width: 48px !important;
    height: 48px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #ffffff !important;

    color: #071d49 !important;

    border: 1px solid #d9dce2 !important;

    border-radius: 6px !important;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18) !important;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Previous */

.hero-slider-control.prev {
    left: 20px !important;
}


/* Next */

.hero-slider-control.next {
    right: 20px !important;
}


/* Arrow icon */

.hero-slider-control i {
    color: #071d49 !important;

    font-size: 20px !important;

    line-height: 1 !important;
}


/* Hover */

.hero-slider-control:hover {
    background: #071d49 !important;

    border-color: #071d49 !important;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25) !important;
}


.hero-slider-control:hover i {
    color: #ffffff !important;
}


/* ============================================================
   HERO COUNTER
============================================================ */

.hero-counter {
    position: absolute !important;

    right: 25px !important;
    bottom: 45px !important;

    z-index: 50 !important;

    display: flex;

    align-items: center;

    gap: 6px;

    color: #ffffff;
}


/* Current number */

.hero-counter .current {
    font-size: 24px;

    font-weight: 700;

    line-height: 1;
}


/* Divider */

.hero-counter .divider {
    font-size: 16px;

    color: rgba(255, 255, 255, 0.65);
}


/* Total */

.hero-counter .total {
    font-size: 14px;

    color: rgba(255, 255, 255, 0.85);
}


/* ============================================================
   PROGRESS BAR
============================================================ */

.hero-progress {
    position: absolute !important;

    left: 20px !important;
    right: 20px !important;
    bottom: 15px !important;

    z-index: 50 !important;

    width: calc(100% - 40px) !important;

    height: 3px;

    margin: 0;
    padding: 0;

    background: rgba(255, 255, 255, 0.35);

    overflow: hidden;
}


/* Progress */

.hero-progress-bar {
    width: 20%;

    height: 100%;

    margin: 0;
    padding: 0;

    background: #ffffff;

    transition: width 0.4s ease;
}


/* ============================================================
   OLD INDICATORS HIDE
============================================================ */

.hero-slider-indicators {
    display: none !important;
}


/* ============================================================
   DESKTOP
   1200px+
============================================================ */

@media (min-width: 1200px) {

    .hero-section {
        width: 100%;
        height: auto;
        min-height: 0;
    }

    .hero-visual {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .hero-slider {
        width: 100%;
        height: auto;
        min-height: 0;
    }

    .hero-slide,
    .hero-slide.active {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-slide img {
        width: 100% !important;
        height: auto !important;

        min-height: 0 !important;
        max-height: none !important;

        object-fit: contain !important;
    }

}


/* ============================================================
   LAPTOP
   992px - 1199px
============================================================ */

@media (min-width: 992px) and (max-width: 1199px) {

    .hero-section,
    .hero-visual,
    .hero-slider,
    .hero-slide,
    .hero-slide.active {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .hero-slide img {
        width: 100% !important;

        height: auto !important;

        min-height: 0 !important;
        max-height: none !important;

        object-fit: contain !important;
    }

}


/* ============================================================
   TABLET
   768px - 991px
============================================================ */

@media (min-width: 768px) and (max-width: 991px) {

    .hero-section,
    .hero-visual,
    .hero-slider,
    .hero-slide,
    .hero-slide.active {
        width: 100%;

        height: auto !important;

        min-height: 0 !important;
        max-height: none !important;
    }

    .hero-slide img {
        width: 100% !important;

        height: auto !important;

        min-height: 0 !important;
        max-height: none !important;

        object-fit: contain !important;
    }


    /* Tablet arrows */

    .hero-slider-control {
        width: 44px !important;
        height: 44px !important;
    }

    .hero-slider-control.prev {
        left: 15px !important;
    }

    .hero-slider-control.next {
        right: 15px !important;
    }

}


/* ============================================================
   MOBILE
   767px and below
============================================================ */

@media (max-width: 767px) {

    .hero-section {
        width: 100% !important;

        height: auto !important;

        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;
    }


    .hero-visual {
        position: relative !important;

        width: 100% !important;

        height: auto !important;

        min-height: 0 !important;

        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;
    }


    .hero-slider {
        position: relative !important;

        width: 100% !important;

        height: auto !important;

        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;
    }


    .hero-slide {
        position: relative !important;

        width: 100% !important;

        height: auto !important;

        min-height: 0 !important;

        display: none;

        margin: 0 !important;
        padding: 0 !important;
    }


    .hero-slide.active {
        display: block !important;

        position: relative !important;

        width: 100% !important;

        height: auto !important;

        min-height: 0 !important;
    }


    /* Mobile image */

    .hero-slide img {
        display: block !important;

        width: 100% !important;

        max-width: 100% !important;

        height: auto !important;

        min-height: 0 !important;

        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: contain !important;
    }


    /* --------------------------------------------------------
       MOBILE ARROWS
    -------------------------------------------------------- */

    .hero-slider-control {
        width: 42px !important;

        height: 42px !important;

        top: 50% !important;

        transform: translateY(-50%) !important;

        background: #ffffff !important;

        border: 1px solid #d9dce2 !important;

        border-radius: 6px !important;

        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.20) !important;
    }


    .hero-slider-control.prev {
        left: 12px !important;
    }


    .hero-slider-control.next {
        right: 12px !important;
    }


    .hero-slider-control i {
        color: #071d49 !important;

        font-size: 17px !important;
    }


    /* --------------------------------------------------------
       MOBILE COUNTER
    -------------------------------------------------------- */

    .hero-counter {
        right: 12px !important;

        bottom: 28px !important;
    }


    .hero-counter .current {
        font-size: 18px !important;
    }


    .hero-counter .divider,
    .hero-counter .total {
        font-size: 12px !important;
    }


    /* --------------------------------------------------------
       MOBILE PROGRESS
    -------------------------------------------------------- */

    .hero-progress {
        left: 10px !important;

        right: 10px !important;

        bottom: 8px !important;

        width: calc(100% - 20px) !important;

        height: 2px !important;
    }

}


/* ============================================================
   SMALL MOBILE
   480px and below
============================================================ */

@media (max-width: 480px) {

    .hero-section,
    .hero-visual,
    .hero-slider,
    .hero-slide,
    .hero-slide.active {
        width: 100% !important;

        height: auto !important;

        min-height: 0 !important;

        max-height: none !important;
    }


    .hero-slide img {
        width: 100% !important;

        height: auto !important;

        min-height: 0 !important;

        max-height: none !important;

        object-fit: contain !important;
    }


    /* Arrows */

    .hero-slider-control {
        width: 38px !important;

        height: 38px !important;
    }


    .hero-slider-control.prev {
        left: 8px !important;
    }


    .hero-slider-control.next {
        right: 8px !important;
    }


    .hero-slider-control i {
        font-size: 15px !important;
    }


    /* Counter */

    .hero-counter {
        right: 10px !important;

        bottom: 25px !important;
    }


    .hero-counter .current {
        font-size: 16px !important;
    }


    .hero-counter .divider,
    .hero-counter .total {
        font-size: 11px !important;
    }


    /* Progress */

    .hero-progress {
        left: 8px !important;

        right: 8px !important;

        bottom: 7px !important;

        width: calc(100% - 16px) !important;

        height: 2px !important;
    }

}


/* ============================================================
   EXTRA SMALL MOBILE
   360px and below
============================================================ */

@media (max-width: 360px) {

    .hero-slider-control {
        width: 34px !important;

        height: 34px !important;
    }


    .hero-slider-control.prev {
        left: 6px !important;
    }


    .hero-slider-control.next {
        right: 6px !important;
    }


    .hero-slider-control i {
        font-size: 14px !important;
    }


    .hero-counter {
        right: 8px !important;

        bottom: 22px !important;
    }

}
