
:root {
  --color_8: #ffffff;
  --about-padding-x: 6vw;
  --about-padding-y: 72px;
  --about-max-width: 900px;
}

.about-excell-section {
  position: relative;
  width: 100%;
  padding: var(--about-padding-y) var(--about-padding-x);
  background-color: #2e2e2e;
  background-image: url('https://lirp.cdn-website.com/7ae2b340/dms3rep/multi/opt/gun-metal-2880w.png');
  background-size: 10px;
  background-position: center center;
  overflow: hidden;
}

.about-excell-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--about-max-width);
  margin: 0 auto;
}

.about-excell-group,
.about-excell-content-group {
  display: flex;
  flex-direction: column;
}

.about-excell-heading-group {
  margin-bottom: 28px;
}

.about-excell-content-group {
  gap: 18px;
}

.about-excell-h1 {
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color_8);
  text-align: left;
  letter-spacing: 0.01em;
}

.about-excell-h2 {
  font-weight: 400;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--color_8);
  text-align: left;
  margin-bottom: 8px;
}

.about-excell-body-wrapper {
  display: flex;
  flex-direction: column;
}

.about-excell-body-wrapper p {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color_8);
  margin-bottom: 18px;
}

.about-excell-body-wrapper p:last-child {
  margin-bottom: 0;
}

/* Entrance animation */
.about-anim-group {
  opacity: 0;
  transform: translateY(18px);
  animation: aboutFadeInCombo 1.3s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.about-anim-group.about-anim-delay-1 { animation-delay: 0.15s; }
.about-anim-group.about-anim-delay-2 { animation-delay: 0.35s; }

@keyframes aboutFadeInCombo {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  :root {
    --about-padding-x: 6vw;
    --about-padding-y: 48px;
  }
}

/* Secrtion 2 */
:root {
  --color_7: #1a1a1a;
  --exp-bg: #b0b5b5;
  --exp-btn-bg: #1a1a1a;
  --exp-btn-text: #ffffff;
  --exp-btn-hover-bg: #333333;
}

.exp-section {
  width: 100%;
  background-color: var(--exp-bg);
  overflow: hidden;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

/* LEFT: Image — slides in from far left */
.exp-image-col {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  height: 100%;          /* ADD THIS */
  transform: translateX(-110vw);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.exp-image-col img {
  width: 100%;
  height: 100%;           /* already there — keep it */
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;     /* ADD THIS */
  top: 0;
  left: 0;
}
.exp-image-col.exp-animate-in {
  transform: translateX(0);
  opacity: 1;
}

/* RIGHT: Text — slides in from far right */
.exp-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
  background-color: var(--exp-bg);
  transform: translateX(110vw);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.exp-text-col.exp-animate-in {
  transform: translateX(0);
  opacity: 1;
}

.exp-heading {
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.2;
  color: var(--color_7);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.exp-body {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.exp-body p {
  font-size: clamp(13px, 1.15vw, 15px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color_7);
  margin-bottom: 16px;
}

.exp-body p:last-child {
  margin-bottom: 0;
}

.exp-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.exp-btn {
  display: inline-block;
  background-color: var(--exp-btn-bg);
  color: var(--exp-btn-text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 16px 48px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background-color 0.25s ease, transform 0.2s ease;
  min-width: 180px;
}

.exp-btn:hover {
  background-color: var(--exp-btn-hover-bg);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr; }

  .exp-image-col {
    order: 1;
    min-height: 260px;
    transform: translateY(-60px);
  }
  .exp-image-col.exp-animate-in { transform: translateY(0); }

  .exp-text-col {
    order: 2;
    padding: 40px 24px;
    transform: translateY(60px);
  }
  .exp-text-col.exp-animate-in { transform: translateY(0); }
}

/* ── QUALITY SECTION ─────────────────────────────── */
.quality-section {
  position: relative;
  width: 100%;
  padding: 72px 6vw;
  overflow: hidden;

  /* PARALLAX BACKGROUND */
  background: url(https://lirp.cdn-website.com/7ae2b340/dms3rep/multi/opt/20250410_181840-37d7bc6e-2880w.jpg)
              center / cover no-repeat fixed;
}



/* ── DARK OVERLAY ───────────────────────────────── */
.quality-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

/* ── CONTENT ────────────────────────────────────── */
.quality-inner {
  position: relative;
  z-index: 1;

  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quality-header {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.3s ease, transform 1.3s ease;
}

.quality-header.quality-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.quality-heading {
  color: #ffffff;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 18px;
}

.quality-intro {
  color: #ffffff;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.7;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.quality-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.quality-card:last-child {
  grid-column: 1 / -1;
}

.quality-card {
  background: rgba(185, 190, 190, 0.85);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
}

.quality-card.quality-from-left {
  transform: translateX(-110vw);
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.quality-card.quality-from-right {
  transform: translateX(110vw);
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.quality-card.quality-from-up {
  transform: translateY(80px);
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.quality-card.quality-animate-in {
  opacity: 1;
  transform: translate(0, 0);
}

.quality-card p {
  color: #1a1a1a;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.quality-footer {
  margin-top: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.3s ease 0.3s, transform 1.3s ease 0.3s;
}

.quality-footer.quality-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.quality-footer p {
  color: #ffffff;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .quality-cards-grid { grid-template-columns: 1fr; }
  .quality-card:last-child { grid-column: 1; }
  .quality-card.quality-from-left,
  .quality-card.quality-from-right,
  .quality-card.quality-from-up {
    transform: translateY(40px);
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .quality-card.quality-animate-in {
    transform: translateY(0);
    opacity: 1;
  }
}