:root {
  /* --primary-color: #0d1b2a;
  --secondary-color: #1b263b; */
  --accent-color: #f4a100;
  /* --text-color: #4b5563; */
  /* --heading-color: #111827; */
  --light-bg: #f8fafc;
  --white: #ffffff;
  --border-color: #e5e7eb;
}
.section-padding {
  padding: 60px 0;
}
.hero-section {
  position: relative;
  background: linear-gradient(rgba(13, 27, 42, 0.10), rgba(13, 27, 42, 0.78)),
    url("../images/inner-pages/life-at-minmax/life-at-minmax-breadcum.webp")
      center center / cover no-repeat;
  color: #fff;
  padding: 135px 0 40px;
}

.hero-section h1,
.hero-section p,
.hero-section .breadcrumb a,
.hero-section .breadcrumb-item,
.hero-section .breadcrumb-item.active {
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: rgba(244, 161, 0, 0.15);
  border: 1px solid rgba(244, 161, 0, 0.35);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
}

.btn-theme {
  background-color: var(--accent-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-theme:hover {
  background-color: #d98d00;
  color: #fff;
}

.btn-outline-theme {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline-theme:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.section-title {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-title .sub-title {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  font-size: 14px;
}

.feature-card,
.value-card,
.gallery-card,
.testimonial-card,
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.feature-card:hover,
.value-card:hover,
.gallery-card:hover,
.testimonial-card:hover,
.benefit-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(244, 161, 0, 0.12);
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.feature-card h5 {
  margin-bottom: 5px;
}
.about-img,
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 420px;
  height: 100%;
}

.about-floating-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 260px;
}

.about-floating-card h5 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.stats-section {
  background: var(--primary-color);
  color: #fff;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: #FFF;
  border-radius: 10px;
}

.stat-box h3 {
  color: #ffaa17;
  font-size: 40px;
  margin-bottom: 8px;
}

.stat-box p {
  margin-bottom: 0;
  color: rgb(0 0 0 / 85%);
}

.light-bg {
  background: var(--light-bg);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}

.list-check li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
  font-size: 18px;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-content {
  padding: 22px;
}

.cta-section {
  background:
    linear-gradient(rgba(13, 27, 42, 0.88), rgba(13, 27, 42, 0.88)),
    url("../images/inner-pages/life-at-minmax/be-part.webp")
      center center / cover no-repeat;
  color: #fff;
  border-radius: 24px;
  padding: 60px 40px;
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-user {
  font-weight: 700;
  color: var(--heading-color);
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-section {
    padding: 90px 0;
  }

  .hero-section h1 {
    font-size: 34px;
  }

  .about-img-wrap {
    min-height: 320px;
    margin-top: 30px;
  }

  .about-floating-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .cta-section {
    padding: 40px 24px;
  }
}
