/* ==========================================================================
   BACKUP PARTS INDIA — Main Stylesheet
   ========================================================================== */

:root {
  --color-primary: #0a2342;
  --color-primary-light: #123a6b;
  --color-accent: #ffc107;
  --color-accent-dark: #e0a800;
  --color-bg: #ffffff;
  --color-bg-light: #f5f7fa;
  --color-heading: #111827;
  --color-paragraph: #4b5563;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-paragraph);
  background: var(--color-bg);
  overflow-x: hidden;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; display: block; }

.section-pad { padding: 60px 0;background-color: #dddeea; }
@media (max-width: 768px) { .section-pad { padding: 60px 0; } }

.bg-light-section { background: var(--color-bg-light); }

.eyebrow {
  display: inline-block;
  color: var(--color-accent-dark);
  background: rgba(255, 193, 7, 0.12);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
  position: relative;
}

.section-title span { color: var(--color-accent-dark); }

.section-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.text-center-wrap { text-align: center; margin-bottom: 60px; }

/* ---------- Buttons ---------- */
.btn-industrial {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.btn-yellow {
  background: var(--color-accent);
  color: var(--color-primary);
}
.btn-yellow:hover {
  background: var(--color-accent-dark);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.35);
}

.btn-navy {
  background: var(--color-primary);
  color: #fff;
}
.btn-navy:hover {
  background: var(--color-primary-light);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 35, 66, 0.35);
}

.btn-outline-light-industrial {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.btn-outline-light-industrial:hover {
  background: #fff;
  color: var(--color-primary);
  transform: translateY(-3px);
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.loader-gear {
  width: 70px;
  height: 70px;
  border: 6px solid rgba(255,193,7,0.2);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Scroll progress bar ---------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: var(--color-accent);
  z-index: 10000;
  transition: width 0.1s ease-out;
}

/* ---------- Header ---------- */
#mainHeader {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 22px 0;
  background: transparent;
  transition: var(--transition);
}
#mainHeader.scrolled {
  background: var(--color-primary);
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.navbar-brand-custom {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff !important;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand-custom .brand-accent { color: var(--color-accent); }
.navbar-brand-custom small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  font-weight: 400;
}

#mainHeader .nav-link {
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  padding: 8px 0 !important;
}
#mainHeader .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}
#mainHeader .nav-link:hover::after,
#mainHeader .nav-link.active::after { width: 100%; }

.dropdown-menu-industrial {
  background: var(--color-primary);
  border: none;
  border-top: 3px solid var(--color-accent);
  border-radius: 0 0 6px 6px;
  padding: 10px 0;
}
.dropdown-menu-industrial .dropdown-item {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 24px;
  font-family: var(--font-body);
}
.dropdown-menu-industrial .dropdown-item:hover {
  background: rgba(255,193,7,0.12);
  color: var(--color-accent);
}

.navbar-toggler-custom {
  border: none;
  background: transparent;
  width: 34px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}
.navbar-toggler-custom span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  left: 0;
  transition: var(--transition);
}
.navbar-toggler-custom span:nth-child(1) { top: 0; }
.navbar-toggler-custom span:nth-child(2) { top: 10px; }
.navbar-toggler-custom span:nth-child(3) { top: 20px; }
.navbar-toggler-custom.active span:nth-child(1) { top: 10px; transform: rotate(45deg); background: var(--color-accent); }
.navbar-toggler-custom.active span:nth-child(2) { opacity: 0; }
.navbar-toggler-custom.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); background: var(--color-accent); }

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 78%; max-width: 340px; height: 100vh;
  background: var(--color-primary);
  z-index: 1050;
  padding: 100px 30px 30px;
  transition: right 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.4);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:hover { color: var(--color-accent); padding-left: 8px; }
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1040;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero-swiper { width: 100%; height: 100vh; min-height: 600px; }
.hero-slide {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,35,66,0.92) 20%, rgba(10,35,66,0.55) 65%, rgba(10,35,66,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}
.hero-content .eyebrow-line {
  display: flex; align-items: center; gap: 12px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-content .eyebrow-line::before {
  content: '';
  width: 40px; height: 3px;
  background: var(--color-accent);
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: #fff;
  background: rgba(255,255,255,0.12);
  width: 54px; height: 54px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover { background: var(--color-accent); color: var(--color-primary); }
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 18px; }
.hero-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  width: 10px; height: 10px;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--color-accent);
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}
.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-cue .mouse {
  width: 26px; height: 42px;
  border: 2px solid #fff;
  border-radius: 20px;
  margin: 10px auto 0;
  position: relative;
}
.scroll-cue .mouse::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: scrollDown 1.6s infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- Marquee ---------- */
.marquee-section {
  background: var(--color-primary);
  padding: 24px 0;
  overflow: hidden;
  border-top: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 24px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.5);
}
.marquee-track span.filled {
  color: var(--color-accent);
  -webkit-text-stroke: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(10,35,66,0.25);
}
.about-badge {
  position: absolute;
  bottom: -30px; right: -20px;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 24px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(255,193,7,0.35);
}
.about-badge h3 { font-size: 2.4rem; margin: 0; color: var(--color-primary); }
.about-badge span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
@media (max-width: 991px) { .about-badge { bottom: -20px; right: 10px; padding: 16px 20px; } }

.about-list { list-style: none; padding: 0; margin: 30px 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--color-heading);
}
.about-list li i {
  color: var(--color-primary);
  background: rgba(10,35,66,0.08);
  min-width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* ---------- Why Choose Us ---------- */
.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border: 1px solid #eef0f3;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(10,35,66,0.12);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 74px; height: 74px;
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 22px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: rotate(8deg) scale(1.05);
}
.feature-card h4 { font-size: 1.1rem; margin-bottom: 12px; }
.feature-card p { font-size: 0.92rem; margin: 0; }

/* ---------- Products ---------- */
/* .product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(10,35,66,0.08);
  height: 100%;
  transition: var(--transition);
  border: 1px solid #eef0f3;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(10,35,66,0.18); }
.product-img { position: relative; overflow: hidden; height: 260px; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img img { transform: scale(1.1); }
.product-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.product-body { padding: 26px; }
.product-body h4 { font-size: 1.2rem; margin-bottom: 12px; }
.product-body p { font-size: 0.92rem; margin-bottom: 20px; line-height: 1.6; }
.product-link {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-link i { transition: var(--transition); }
.product-link:hover { color: var(--color-accent-dark); }
.product-link:hover i { transform: translateX(5px); }

.products-swiper { padding-bottom: 60px !important; }
.products-swiper .swiper-pagination-bullet-active { background: var(--color-primary); }


 */
























/* ===================== PRODUCTS SECTION — CSS ===================== */
.products-section {
  --accent: #f5a623;
  --dark: #14181f;
}

/* NEW: outer wrapper — no overflow:hidden, buttons sit safely here */
.products-swiper-outer {
  position: relative;
  margin-top: 40px;
  padding: 0 44px 56px;   /* side padding so absolute buttons have room, no clipping */
}

.products-swiper {
  position: relative;
  --swiper-navigation-color: transparent;
  --swiper-theme-color: #f5a623;
}

.swiper-slide { height: auto; }

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.14);
}

.product-img { position: relative; overflow: hidden; height: 220px; }

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-img img { transform: scale(1.1); }

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-body h4 { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.product-body p { color: #5b6472; font-size: 0.92rem; line-height: 1.6; margin-bottom: 18px; flex: 1; }

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.35s ease;
}
.product-link i { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.product-link:hover { color: var(--accent); }
.product-link:hover i { transform: translateX(6px); }

.products-swiper .swiper-pagination { bottom: 0; }
.products-swiper .swiper-pagination-bullet {
  width: 9px; height: 9px; background: #d8dce2; opacity: 1;
  transition: background 0.35s ease, width 0.35s ease; border-radius: 20px;
}
.products-swiper .swiper-pagination-bullet-active { background: var(--accent); width: 26px; }

/* ---- navigation arrows — ab outer wrapper ke bounds me, koi clipping nahi ---- */
.products-swiper-outer .products-prev,
.products-swiper-outer .products-next {
  position: absolute;
  top: 45%;
  width: 48px !important;
  height: 48px !important;
  margin-top: -24px !important;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 10;
}

.products-swiper-outer .products-prev::after,
.products-swiper-outer .products-next::after {
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  font-size: 16px !important;
  color: var(--dark) !important;
  transition: color 0.35s ease;
}

.products-swiper-outer .products-prev::after { content: '\f060'; }
.products-swiper-outer .products-next::after { content: '\f061'; }

.products-swiper-outer .products-prev:hover,
.products-swiper-outer .products-next:hover {
  background: var(--accent) !important;
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(245, 166, 35, 0.35) !important;
}
.products-swiper-outer .products-prev:hover::after,
.products-swiper-outer .products-next:hover::after { color: var(--dark) !important; }

.products-swiper-outer .products-prev { left: 0; }
.products-swiper-outer .products-next { right: 0; }

.products-swiper-outer .products-prev.swiper-button-disabled,
.products-swiper-outer .products-next.swiper-button-disabled {
  opacity: 0.35 !important;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .products-swiper-outer { padding-left: 16px; padding-right: 16px; }
  .products-swiper-outer .products-prev,
  .products-swiper-outer .products-next { display: none !important; }
  .product-img { height: 190px; }
}

/* ---------- Industries ---------- */
/* .industry-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}
.industry-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,35,66,0.1) 30%, rgba(10,35,66,0.92) 100%);
  transition: var(--transition);
}
.industry-card:hover::before { background: linear-gradient(180deg, rgba(255,193,7,0.15) 20%, rgba(10,35,66,0.95) 100%); }
.industry-card:hover { transform: translateY(-6px); }
.industry-card h5 {
  position: relative; z-index: 2;
  color: #fff;
  font-size: 1.05rem;
  margin: 0;
}
.industry-card i {
  position: relative; z-index: 2;
  color: var(--color-accent);
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
} */













/* ===================== INDUSTRIES WE SERVE — CSS ===================== */
.industries-section {
  --card-radius: 16px;
  --accent: #f5a623;
  --overlay-dark: rgba(8, 10, 16, 0.88);
  --overlay-light: rgba(8, 10, 16, 0.15);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.industry-card {
  position: relative;
  height: 270px;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

  /* entrance animation (before scroll into view) */
  opacity: 0;
  transform: translateY(40px) scale(0.92) rotate(-1.5deg);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}

.industry-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

/* image lives in its own layer so it can zoom independently */
.industry-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--overlay-dark) 10%, var(--overlay-light) 60%, transparent 100%);
  transition: background 0.5s ease;
}

/* animated accent line at the bottom, draws in on hover */
.industry-card::after {
  content: '';
  position: absolute;
  left: 22px;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}

.industry-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.18);
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 12px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.industry-content h5 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0;
  line-height: 1.3;
  transition: letter-spacing 0.4s ease;
}

/* ===== Hover state ===== */
.industry-card:hover {
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.28);
}

.industry-card:hover .industry-image {
  transform: scale(1.14) rotate(0.5deg);
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 25%, rgba(0,0,0,0.3) 70%, transparent 100%);
}

.industry-card:hover .industry-content {
  transform: translateY(0);
}

.industry-card:hover .industry-icon {
  background: var(--accent);
  color: #111;
  transform: rotate(360deg) scale(1.1);
}

.industry-card:hover h5 {
  letter-spacing: 0.8px;
}

.industry-card:hover::after {
  width: calc(100% - 44px);
}

/* ===== Responsive ===== */
@media (max-width: 1199px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .industry-card { height: 200px; }
  .industry-icon { width: 36px; height: 36px; font-size: 15px; }
  .industry-content h5 { font-size: 0.9rem; }
}

@media (max-width: 420px) {
  .industry-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .industry-card,
  .industry-image,
  .industry-content,
  .industry-icon {
    transition: none !important;
    animation: none !important;
  }
  .industry-card { opacity: 1; transform: none; }
}
/* ---------- Mission Vision Commitment ---------- */
/* ===================== MISSION / VISION / COMMITMENT — CSS ===================== */
.mvc-section {
  --accent: #f5a623;
  --accent-soft: rgba(245, 166, 35, 0.18);
  --dark: #14181f;
}

.mvc-card {
  text-align: center;
  padding: 46px 28px 38px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;

  /* entrance: 3D flip-in with bounce, not just fade */
  opacity: 0;
  transform: perspective(900px) rotateY(-70deg) translateY(30px);
  transition: opacity 0.7s ease,
              transform 0.8s cubic-bezier(0.34, 1.4, 0.4, 1),
              box-shadow 0.4s ease;
  transform-origin: left center;
}

.mvc-card.in-view {
  opacity: 1;
  transform: perspective(900px) rotateY(0deg) translateY(0);
}

.mvc-card:hover {
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
}

/* ---- circle + rotating ring ---- */
.mvc-ring {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* the spinning dashed/gradient ring, sits around the circle */
.mvc-ring-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent) 0deg, transparent 70deg, transparent 290deg, var(--accent) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  animation: mvc-spin 6s linear infinite;
  transition: filter 0.4s ease;
}

@keyframes mvc-spin {
  to { transform: rotate(360deg); }
}

/* soft pulsing glow behind everything */
.mvc-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: 0.5;
  animation: mvc-pulse 2.6s ease-in-out infinite;
}

@keyframes mvc-pulse {
  0%, 100% { transform: scale(0.92); opacity: 0.35; }
  50% { transform: scale(1.08); opacity: 0.6; }
}

.mvc-icon {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.4s ease, color 0.4s ease;
}

/* on hover: ring spins faster + glows brighter, icon pops and inverts colors */
.mvc-card:hover .mvc-ring-spin {
  animation-duration: 1.4s;
  filter: drop-shadow(0 0 8px var(--accent));
}

.mvc-card:hover .mvc-ring::before {
  animation-duration: 1s;
}

.mvc-card:hover .mvc-icon {
  transform: scale(1.1) rotate(8deg);
  background: var(--accent);
  color: var(--dark);
}

.mvc-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.mvc-divider {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 16px;
  transition: width 0.4s ease;
}

.mvc-card:hover .mvc-divider {
  width: 60px;
}

.mvc-card p {
  color: #5b6472;
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .mvc-card { padding: 38px 22px 30px; }
  .mvc-ring { width: 92px; height: 92px; }
  .mvc-icon { width: 70px; height: 70px; font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .mvc-card, .mvc-ring-spin, .mvc-ring::before, .mvc-icon, .mvc-divider {
    animation: none !important;
    transition: none !important;
  }
  .mvc-card { opacity: 1; transform: none; }
}

/* ---------- Stats ---------- */
.stats-section {
  background: linear-gradient(rgba(10,35,66,0.93), rgba(10,35,66,0.93)), url('https://picsum.photos/seed/factorybg/1600/500') center/cover fixed;
  padding: 90px 0;
}
.stat-item { text-align: center; color: #fff; }
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--color-accent);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}
.stat-item p {
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

/* ---------- Gallery ---------- */
/* ===================== GALLERY — CSS ===================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 34px 0 40px;
}

.gallery-filters button {
  border: 1px solid #e2e5ea;
  background: #fff;
  color: #5b6472;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.3s ease;
}

.gallery-filters button:hover {
  transform: translateY(-2px);
  border-color: #f5a623;
}

.gallery-filters button.active {
  background: #f5a623;
  border-color: #f5a623;
  color: #14181f;
}

/* ---- bento grid: 4 cols, fixed row height, spans sum to full rows (no gaps) ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
   grid-auto-flow: dense;  
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  grid-column: span 1;
  grid-row: span 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.4s ease;
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item.fade-out {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,20,0.85) 0%, rgba(10,14,20,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.gallery-overlay i {
  color: #f5a623;
  font-size: 22px;
  transform: translateY(12px) scale(0.8);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-overlay span {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1rem;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.45s ease 0.05s, opacity 0.45s ease 0.05s;
}

.gallery-item:hover {
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.gallery-item:hover img {
  transform: scale(1.12);
  filter: brightness(0.85);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px;   grid-auto-flow: dense; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
}

@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; gap: 12px; grid-auto-flow: dense;   }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item, .gallery-item img, .gallery-overlay, .gallery-overlay i, .gallery-overlay span {
    transition: none !important;
  }
}
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(10,35,66,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox-overlay.show { display: flex; }
.lightbox-overlay img { max-width: 90%; max-height: 85vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 30px; right: 40px;
  color: #fff; font-size: 30px; cursor: pointer;
}

/* ---------- FAQ ---------- */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 16px;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(10,35,66,0.06);
}
.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-heading);
  background: #fff;
  padding: 22px 26px;
  font-weight: 600;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--color-primary);
  color: #fff;
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after { filter: none; }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.faq-accordion .accordion-body {
  padding: 24px 26px;
  background: var(--color-bg-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact-info-card {
  background: var(--color-primary);
  border-radius: 10px;
  padding: 40px;
  color: rgba(255,255,255,0.85);
  height: 100%;
}
.contact-info-card h3 { color: #fff; margin-bottom: 26px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-item i {
  min-width: 44px; height: 44px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.contact-info-item strong { display: block; color: #fff; font-size: 14px; margin-bottom: 4px; }
.contact-info-item span, .contact-info-item a { color: rgba(255,255,255,0.75); font-size: 14px; }
.contact-info-item a:hover { color: var(--color-accent); }
.map-wrap { border-radius: 10px; overflow: hidden; margin-top: 24px; filter: grayscale(0.3); }
.map-wrap iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(10,35,66,0.1);
  height: 100%;
}
.form-control-industrial {
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 20px;
  transition: var(--transition);
  width: 100%;
  font-family: var(--font-body);
}
.form-control-industrial:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(255,193,7,0.15);
}
textarea.form-control-industrial { resize: vertical; min-height: 130px; }

/* ---------- Footer ---------- */
footer {
  background: #071a30;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}
footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 14px;
}
footer h5::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 40px; height: 3px;
  background: var(--color-accent);
}
footer p { font-size: 0.9rem; line-height: 1.8; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 12px; }
footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
footer ul li a:hover { color: var(--color-accent); padding-left: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 15px;
}
.footer-social a:hover { background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); }
.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
}
.footer-bottom a { color: var(--color-accent); }

/* ---------- Floating Buttons ---------- */
#scrollTopBtn {
  position: fixed;
  bottom: 90px; right: 26px;
  width: 48px; height: 48px;
  background: var(--color-primary);
  color: var(--color-accent);
  border: none;
  border-radius: 50%;
  z-index: 900;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
#scrollTopBtn.show { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTopBtn:hover { background: var(--color-accent); color: var(--color-primary); }

#whatsappBtn {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  z-index: 900;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Misc / AOS friendly ---------- */
.divider-accent {
  width: 70px; height: 4px;
  background: var(--color-accent);
  margin: 0 auto 24px;
  border-radius: 2px;
}














