/* ================= GLOBAL VARIABLES ================= */
:root {
  --primary: #f7941d;
  --dark: #111;
  --light-bg: #fdebd3;
}

/* ================= KEY ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= ABOUT HERO ================= */
.about-hero {
  position: relative;
  height: 60vh;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.18),
      rgba(0,0,0,0.08)
    ),
    url("../images/services/customfab.jpg") center/cover no-repeat;

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

  /* Image clarity */
  filter: contrast(1.12) saturate(1.18);
  image-rendering: -webkit-optimize-contrast;
}




.about-hero h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-align: center;

  text-shadow:
    0 3px 12px rgba(0,0,0,0.65),
    0 18px 40px rgba(0,0,0,0.6);

  animation: fadeUp 1s ease forwards;
}

.about-hero p {
  position: relative;
  z-index: 2;
  color: #f1f1f1;
  font-size: 1.05rem;
  text-align: center;
}


/* ================= INTRO ================= */
.about-intro {
  padding: 90px 15px;
  text-align: center;
  animation: fadeUp 1s ease forwards;
}

.about-intro h2 {
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 30px;
  position: relative;
}

.about-intro h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin: 15px auto 0;
}

.about-intro p {
  max-width: 900px;
  margin: 0 auto 15px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ================= SECTIONS ================= */
.about-section {
  padding: 90px 15px;
}

.about-section h3 {
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
}

.about-section h3::before {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--primary);
  position: absolute;
  bottom: -10px;
  left: 0;
}

.about-section p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
}

.about-section img {
  border-radius: 6px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-section img:hover {
  transform: scale(1.05) rotate(-0.5deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* ================= LIGHT BACKGROUND ================= */
.light-bg {
  background: var(--light-bg);
  position: relative;
}

.light-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(0,0,0,0.02),
    rgba(0,0,0,0.02) 10px,
    transparent 10px,
    transparent 20px
  );
}

/* ================= CTA ================= */
.about-cta {
  background: var(--dark);
  color: #fff;
  padding: 80px 15px;
  text-align: center;
}

.about-cta h3 {
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 10px;
  animation: fadeUp 1s ease forwards;
}

.about-cta p {
  font-size: 1.1rem;
  color: #ddd;
}

/* ================= SCROLL EFFECT (NO JS) ================= */
.about-section,
.about-intro {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 991px) {

  .about-hero {
    height: 50vh;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-section {
    text-align: center;
  }

  .about-section h3::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-section img {
    margin-top: 25px;
  }

}

@media (max-width: 576px) {

  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-intro,
  .about-section {
    padding: 60px 10px;
  }

}
/* ================= INDUSTRIAL ENHANCEMENTS ================= */

/* HARD STEEL TEXT LOOK */
.about-hero h1,
.about-intro h2,
.about-section h3,
.about-cta h3 {
  text-shadow: 
    0 2px 0 rgba(0,0,0,0.5),
    0 6px 15px rgba(0,0,0,0.6);
}

/* METAL STRIP DECORATION */
.about-intro h2::before,
.about-section h3::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    transparent
  );
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}

/* HEAVY SECTION DIVIDER */
.about-section {
  border-top: 1px solid rgba(0,0,0,0.08);
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 4px;
  background: var(--primary);
  transform: translateX(-50%);
}

/* STEEL PANEL EFFECT */
.light-bg {
  background:
    linear-gradient(0deg, rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    repeating-linear-gradient(
      45deg,
      #e6e6e6,
      #e6e6e6 8px,
      #f5f5f5 8px,
      #f5f5f5 16px
    );
}

/* IMAGE = HEAVY FABRICATION FEEL */
.about-section img {
  filter: contrast(1.05) saturate(0.95);
  border: 3px solid rgba(0,0,0,0.05);
}

/* WELD-LIKE HOVER GLOW */
.about-section img:hover {
  box-shadow:
    0 25px 50px rgba(0,0,0,0.35),
    0 0 20px rgba(247,148,29,0.3);
}

/* INDUSTRIAL CTA */
.about-cta {
  background:
    linear-gradient(
      135deg,
      #0f0f0f,
      #1a1a1a
    );
  border-top: 5px solid var(--primary);
}

/* CTA BUTTON STYLE (IF ANY) */
.about-cta button,
.about-cta a {
  background: var(--primary);
  color: #111;
  font-weight: 800;
  padding: 12px 30px;
  border: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.about-cta button:hover,
.about-cta a:hover {
  background: #d97e12;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* INDUSTRIAL SCROLL FEEL */
.about-section,
.about-intro {
  transform-origin: center;
}

/* ================= MOBILE FABRICATION TWEAKS ================= */
@media (max-width: 576px) {

  .about-hero::after {
    background: rgba(0,0,0,0.75);
  }

  .about-hero h1 {
    letter-spacing: 1px;
  }

  .about-section::before {
    width: 60px;
  }
}
/* TEAM SLIDER IMAGE */
.team-img {
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.25);

  /* Image clarity */
  filter: contrast(1.08) saturate(1.1);
}

/* Mobile */
@media (max-width: 768px) {
  .team-img {
    height: 280px;
    margin-bottom: 25px;
  }
}
.team-img {
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

/* Pause autoplay shadow effect */
.carousel-inner {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
