/* =====================
   GLOBAL IDENTITY
===================== */
:root {
  --primary: #f7941d;
  --dark: #0f0f0f;
  --steel: #1a1a1a;
  --steel-light: #2a2a2a;
  --light-gray: #f5f5f5;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* NAV OFFSET */
.nav-spacer {
  height: 82px;
}

/* =====================
   HERO SECTION
===================== */
.hero-section {
  position: relative;
  height: 92vh;
  background:
    linear-gradient(
      120deg,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.12)
    ),
    url("../images/hero/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}



.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  color: #fff;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.45),
    0 8px 18px rgba(0,0,0,0.35);
}
.hero-content h1 {
  color: #fff;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.45),
    0 8px 18px rgba(0,0,0,0.35);
}


.hero-content p {
  font-size: 1.2rem;
  color: #e5e5e5;
  max-width: 750px;
  margin: 12px auto 0;
}

/* =====================
   SECTION TITLES
===================== */
.section-title {
  text-align: center;
  margin: 80px 0 45px;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background:
    linear-gradient(
      to right,
      transparent,
      var(--primary),
      transparent
    );
  display: block;
  margin: 14px auto 0;
}
/* =====================
   SERVICES DROPDOWN (FINAL)
===================== */

/* COMMON STYLES */
.services-dropdown {
  position: relative;
}

.services-dropdown .custom-dropdown {
  min-width: 260px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 0;
  border: none;
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
  z-index: 9999;
}

.custom-dropdown .dropdown-item {
  padding: 12px 22px;
  font-weight: 600;
  color: #111;
  transition: background 0.25s ease, color 0.25s ease;
}

.custom-dropdown .dropdown-item:hover {
  background: var(--primary);
  color: #000;
}

/* =====================
   DESKTOP (HOVER)
===================== */
@media (min-width: 992px) {

  .services-dropdown .custom-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .services-dropdown:hover .custom-dropdown {
    display: block;
  }

  .services-dropdown > .nav-link::after {
    margin-left: 6px;
  }
}

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

  .services-dropdown .custom-dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding-left: 14px;
    background: transparent;
  }

  .services-dropdown.open .custom-dropdown {
    display: block;
  }

  .custom-dropdown .dropdown-item {
    padding: 10px 16px;
  }
}


/* =====================
   SERVICES SECTION
===================== */
.services-section {
  padding-bottom: 50px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  border-top: 5px solid var(--primary);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.25);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card h5 {
  margin: 20px 0 8px;
  font-weight: 900;
  letter-spacing: 1px;
}

.service-card p {
  padding: 0 20px 24px;
  font-size: 0.95rem;
  color: #555;
}

/* =====================
   CTA SECTION
===================== */
.cta-section {
  background:
    linear-gradient(
      135deg,
      #0d0d0d,
      #1a1a1a
    );
  text-align: center;
  padding: 80px 20px;
  border-top: 5px solid var(--primary);
  border-bottom: 5px solid var(--primary);
}

.cta-section h3 {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 2px;
}

.cta-section p {
  font-size: 1.05rem;
  color: #ccc;
}

/* =====================
   ABOUT SECTION
===================== */
.about-section {
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.8),
      rgba(0,0,0,0.8)
    ),
    url("../images/hero/about.jpg") center/cover no-repeat;
  padding: 100px 20px;
}

.about-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-section h2 {
  font-weight: 900;
  letter-spacing: 2px;
}

.about-section p {
  max-width: 900px;
  margin: 15px auto 0;
  font-size: 1rem;
  color: #e5e5e5;
}

/* =====================
   TESTIMONIALS
===================== */
.testimonials {
  padding-bottom: 80px;
}

.testimonial-card {
  background:
    linear-gradient(
      135deg,
      #f7941d,
      #e68615
    );
  color: #111;
  padding: 35px 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.testimonial-card h6 {
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: var(--dark);
  color: #bbb;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* =====================
   BUTTONS
===================== */
.call-btn {
  background: var(--steel);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: var(--primary);
  color: #000;
}

.lang-btn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-size: 14px;
  margin-left: 5px;
  font-weight: 600;
}

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

.service-link {
  display: block;
  text-decoration: none;
  color: inherit;
}


/* COMMON */
.services-dropdown .custom-dropdown {
  min-width: 260px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 0;
  border: none;
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.custom-dropdown .dropdown-item {
  padding: 12px 22px;
  font-weight: 600;
  color: #111;
  transition: background 0.25s ease, color 0.25s ease;
}

.custom-dropdown .dropdown-item:hover {
  background: #f6f6f6;
  color: #000;
}

/* =====================
   DESKTOP (HOVER)
===================== */
@media (min-width: 992px) {

  .services-dropdown {
    position: relative;
  }

  .services-dropdown .custom-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
  }

  .services-dropdown:hover .custom-dropdown {
    display: block;
  }

  /* Remove bootstrap arrow animation issues */
  .services-dropdown > .nav-link::after {
    margin-left: 6px;
  }
}

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

  .services-dropdown .custom-dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding-left: 12px;
    display: none;
  }

  .services-dropdown.open .custom-dropdown {
    display: block;
  }

  .custom-dropdown .dropdown-item {
    padding: 10px 16px;
  }
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .call-btn {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 75vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    margin: 50px 0 30px;
    font-size: 1.4rem;
  }

card img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-section h3 {
    font-size: 1.4rem;
  }

  .testimonial-card {
    padding: 25px 20px;
  }
}
/* ======================================================
   INDUSTRIAL DEPTH & STEEL SOUL (FINAL LAYER)
====================================================== */

/* --------- Steel Grain Texture --------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      rgba(0,0,0,0.025) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* --------- HERO POWER GLOW --------- */
.hero-content h1 {
  animation: heroPulse 6s ease-in-out infinite;
}

@keyframes heroPulse {
  0%,100% {
    text-shadow:
      0 3px 0 rgba(0,0,0,0.6),
      0 12px 35px rgba(0,0,0,0.9);
  }
  50% {
    text-shadow:
      0 3px 0 rgba(0,0,0,0.6),
      0 18px 55px rgba(247,148,29,0.45);
  }
}

/* --------- SECTION CUT STEEL LINE --------- */
.section-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.2),
    transparent
  );
  z-index: -1;
}

/* --------- SERVICE CARD HEAVY METAL FEEL --------- */
.service-card {
  position: relative;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.15),
    inset 0 -10px 30px rgba(0,0,0,0.15);
  pointer-events: none;
}

/* --------- WELD SPARK SHINE --------- */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,0.45),
    transparent 65%
  );
  opacity: 0;
  transform: translateX(-120%);
}

.service-card:hover::before {
  opacity: 1;
  transform: translateX(120%);
  transition: transform 0.8s ease;
}

/* --------- IMAGE STEEL FINISH --------- */
.service-card img {
  filter: contrast(1.05) saturate(1.05);
}

.service-card:hover img {
  filter: contrast(1.1) saturate(1.15);
}

/* --------- CTA = METAL PLATE --------- */
.cta-section {
  position: relative;
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.03) 10px,
      transparent 10px,
      transparent 20px
    );
  pointer-events: none;
}

/* --------- TESTIMONIAL FORGED BLOCK --------- */
.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.25),
    transparent 35%,
    rgba(0,0,0,0.2)
  );
  pointer-events: none;
}

/* --------- FOOTER INDUSTRIAL EDGE --------- */
.footer {
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
}

/* --------- BUTTON WEIGHT & PRESS --------- */
.call-btn:active {
  transform: scale(0.96);
  box-shadow: inset 0 3px 8px rgba(0,0,0,0.4);
}

/* --------- SCROLL SMOOTH HEAVY --------- */
html {
  scroll-behavior: smooth;
}

/* --------- MOBILE INDUSTRIAL POLISH --------- */
@media (max-width: 576px) {

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

  .service-card {
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  }

  .testimonial-card {
    box-shadow: 0 14px 32px rgba(0,0,0,0.28);
  }
}
/* ================= HERO SLIDER ================= */
.hero-section {
  position: relative;
  height: 92vh;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.20),
    rgba(0,0,0,0.5)
  );
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;

}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 rgba(0,0,0,0.6),
    0 10px 35px rgba(0,0,0,0.9);
}

.hero-content p {
  font-size: 1.2rem;
  color: #e5e5e5;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    height: 75vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
/* ================= NAVBAR BRAND ================= */

.navbar {
  padding: 14px 0; /* increase navbar height */
}

.navbar-logo {
  height: 64px;       /* 🔥 MAIN FIX */
  width: auto;
}

.brand-text {
  font-size: 1.25rem; /* bigger text */
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #111;
  text-transform: uppercase;
}

/* LAPTOP / LARGE SCREEN */
@media (min-width: 992px) {
  .navbar-logo {
    height: 72px;     /* perfect for desktop */
  }

  .brand-text {
    font-size: 1.4rem;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-logo {
    height: 50px;     /* not too big for mobile */
  }

  .brand-text {
    font-size: 1rem;
  }
}
