
.hero {
  position: relative;
  width: auto;
  /* margin:  0 30px 10px 30px; */
  height: 90vh;
  background-image: url("../img/products/ALL\ SEALS\ -\ 2.png"); /* 🔥 same image */
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* dark to transparent gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0) 75%
  );
}

/* text */
.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  color: #fff;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-content p {
  font-size: 17px;
  color: #e5e7eb;
}

.hero-content span {
  color: #f59e0b;
  font-weight: 600;
}

/* ✅ RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    background-position: center;
    /* margin: 0 10px 10px 10px; */
  }

  .hero-content {
    padding-left: 24px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}

/* =========================
   About / Pusher Section
========================= */
.aboutt {
  padding: 50px 20px;
  background: #ffffff;
}

.pusher-container {
  max-width: 1100px;
  margin: auto;
}

/* =========================
   Top Line Heading
========================= */
.topLine {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--tertiary-color);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
  line-height: 1.4; /* important */
}
.topLine::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 30px;
  height: 2px;
  background: var(--tertiary-color);
  /* transform: translateY(-50%); */
}


/* =========================
   Main Heading
========================= */
.pusher-container h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 14px;
}

/* =========================
   Paragraphs
========================= */
.pusher-container p {
  font-size: 18px;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 14px;
  text-align: justify;
}

.pusher-container .intro {
  font-size: 18px;
  font-weight: 500;
  color: #555;
}
.pusher-container h1{
  color: #42464c;
}

/* =========================
   Sub Headings
========================= */
.pusher-container h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 26px 0 10px;
}

/* =========================
   Lists
========================= */
.pusher-container ul {
  margin: 10px 0 18px 20px;
  padding: 0;
}

.pusher-container ul li {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #374151;
}

.pusher-container ul li strong {
  color: #111827;
  font-weight: 600;
}

/* =========================
   Strong Highlights
========================= */
.pusher-container strong {
  color: #111827;
  font-weight: 600;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .aboutt {
    padding: 36px 16px;
  }

  .top-line{
    font-size: 15px;
  }

  .pusher-container h1 {
    font-size: 26px;
  }

  .pusher-container h3 {
    font-size: 18px;
  }

  .pusher-container p,
  .pusher-container li {
    font-size: 14.5px;
  }
  .topLine {
    font-size: 16px;
  }

  .topLine::before {
    top: 11px;
  }
}

@media (max-width: 480px) {
  .topLine {
    font-size: 15px;
  }

  .topLine::before {
    top: 10px;
  }
  .pusher-container h1 {
    font-size: 23px;
  }

  .top-line {
    gap: 10px;
  }

  .pusher-container p{
    font-size: 16px;
  }
}



.productt {
  padding: 22px 14px;
}

.light-bg {
  background: #f2f2f2;
}

.dark-bg {
  background: #ffffff;
}

.product-grid {
  max-width: 1050px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* content slightly wider */
  gap: 20px;
  align-items: center; 
}

.product-content {
  font-size: 16px;
  line-height: 1.5;
}

.product-content h2{
  color: #555;
  font-weight: 700;
}

.product-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img img {
  width: 100%;
  max-width: 500px;   
  height: auto;     
  border: 1px solid #dadada; 
  border-radius: 8px;
}

.code {
  color: #f59e0b;
  font-weight: 700;
  font-size: 25px;
}

/* Scoped to product-content to avoid global conflicts */
.product-content h2 {
  font-size: 25px;
  margin: -2px 0 8px;
}

.product-content h4 {
  font-size: 25px;
  margin: 10px 0 4px;
}

.product-content p {
  margin-bottom: 6px;
  font-size: 16px;
  color: #555;
}

.product-content ul {
  /* padding-left: 17px; */
  list-style-type: none;
  color: #555;
}

.product-content ul li {
  margin-bottom: 2px;
}

.btn-group {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  text-align: center;
}

.btn {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  background: #f59e0b;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn:last-child {
  border: 2px solid #f59e0b;
  background-color: transparent;
}

.btn:last-child:hover {
  background: #f59e0b;
  color: #000;
}

/* ✅ MOBILE FIX */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .reverse {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .product-img {
    margin-top: 12px;
  }

  .product-img img {
    max-width: 400px; /* 🔥 smaller on mobile */
  }
  .btn-group {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}
}

.seal-section {
  background: #f3f3f3;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-head h2 {
  color: #f7931e;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-head p {
  color: #333;
  line-height: 1.4;
  font-size: 16px;
  text-align: justify;
}

/* Row */
.seal-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.seal-row.reverse {
  flex-direction: row-reverse;
}

/* Image */
.seal-img img {
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dadada;
}

/* Content */
.seal-content {
  flex: 1;
}

.seal-content h3 {
  color: #f7931e;
  font-size: 26px;
  margin-bottom: 10px;
}

.seal-content p {
  color: #333;
  line-height: 1.4;
  margin-bottom: 15px;
  font-size: 16px;
  text-align: justify;
}

.btn {
  display: inline-block;
  background: #f7931e;
  color: #000;
  padding: 10px 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .seal-row,
  .seal-row.reverse {
    flex-direction: column;
    text-align: left;
  }

  .seal-row {
    gap: 30px;
  }

  .seal-content {
    order: 1;
  }

  .seal-image {
    order: 2;
  }

  .seal-intro h2 {
    font-size: 24px;
  }
}

