/* hero section start  */
.about-hero-section {
  position: relative;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url("/assets/images/home-slidder-3.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

/* Dark overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 16px;
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
  color: #ffffff;
}

.about-hero-title {
    font-size: 46px;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: 0.03em;
}

.about-hero-breadcrumb {
  margin: 0;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
}

.about-hero-link,
.about-hero-breadcrumb-text {
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.about-hero-link-home {
  color: #ffc933; /* Yellow Home */
  font-weight: 500;
}

.about-hero-link:hover {
  opacity: 0.8;
}

.about-hero-breadcrumb-separator {
  margin: 0 4px;
  color: #ffffff;
  opacity: 0.8;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 768px) {
  .about-hero-section {
    min-height: 220px;
  }

  .about-hero-content {
    padding: 30px 16px;
  }
  .about-hero-title {
    font-size: 38px;
  }
}

@media (min-width: 1200px) {
  .about-hero-section {
    min-height: 300px;
  }
}

/* about hero section end  */

/* top text section strat  */
.products-simple-section {
  padding: 50px 16px;
  font-family: "Poppins", sans-serif;
}

.products-simple-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Heading */
.products-simple-heading {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block; /* So underline stays under heading only */
}

/* Centered yellow line under heading */
.products-simple-heading::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 10px auto 0; /* Auto makes it centered under heading */
  background: #ffc107;
  border-radius: 50px;
}

/* Text under heading */
.products-simple-text {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* Responsive */
@media (min-width: 768px) {
  .products-simple-heading {
    font-size: 40px;
  }
  .products-simple-text {
    font-size: 16px;
  }
}

/* top text section end  */

/* products card section strat  */
.card-products-only-section {
  padding: 40px 16px;
}

.card-products-only-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* =============== CARD BOX =============== */
.cps-card-item {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.cps-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.cps-card-item:hover .cps-card-title {
  color: #f2b300;
}

/* =============== IMAGE SLIDER =============== */
.cps-card-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.cps-card-img-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s ease-in-out;
  background: #ddd;
}

.cps-card-img {
  width: auto;
  height: 100%;
  /* object-fit: contain; */
  margin: auto;
}

/* =============== CARD TITLE =============== */
.cps-card-title {
  margin: 0;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: 0.3s ease;
}

/* =============== RESPONSIVE =============== */
@media (min-width: 768px) {
  .card-products-only-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .cps-card-title {
    font-size: 17px;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .card-products-only-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .cps-card-title {
    font-size: 18px;
    text-align: center;
  }
}

/* prodcts card section end  */

.about-hero-content{
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 0px;
  text-align: left;
}
.about-hero-content .about-hero-title {
    font-size: 32px;
    margin: 0 0 0px;
    letter-spacing: 0.03em;
}
.about-hero-breadcrumb {
    margin: 0;
    font-size: 13px;
}