/* =============================================
   GANESH DECOR INDIA — Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1a2e5a;
  --primary-dark: #0f1c3a;
  --primary-light: #2a4080;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dark: #a87c10;
  --safe-color: #1a3a5c;
  --safe-accent: #2d6a9f;
  --furniture-color: #2d4a1e;
  --furniture-accent: #5a8a35;
  --solar-color: #7a3800;
  --solar-accent: #f0820a;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --bg-light: #f7f9fc;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.fw-600 { font-weight: 600; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.75;
}
.section-sub.centered { margin: 0 auto; }
.title-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 24px;
}
.title-line.centered { margin: 0 auto 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,46,90,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,46,90,0.45); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,160,23,0.5); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 20, 50, 0.0);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(10, 20, 50, 0.97);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(212,160,23,0.4);
  overflow: hidden;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}
.nav-logo-tagline { font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}
.nav-links .btn-nav {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(212,160,23,0.4);
}
.nav-links .btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,160,23,0.5); background: rgba(255,255,255,0.08); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.menu-open { overflow: hidden; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,20,50,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 28px 28px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:last-child { border-bottom: none; color: var(--gold); }

/* ===== HERO ===== */
/* OLD HERO STYLE - DISABLED
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1428 0%, #1a2e5a 40%, #0d2144 70%, #0a1428 100%);
  overflow: hidden;
  display: flex; align-items: center;
}
*/
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(42,64,128,0.5) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(26,46,90,0.8) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-visual { position: relative; }
.hero-cards-stack { position: relative; height: 420px; }
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s;
}
.hero-card:nth-child(1) { top: 0; right: 0; width: 240px; animation: floatCard1 4s ease-in-out infinite; }
.hero-card:nth-child(2) { top: 100px; left: 0; width: 220px; animation: floatCard2 4.5s ease-in-out infinite; }
.hero-card:nth-child(3) { bottom: 0; right: 60px; width: 230px; animation: floatCard3 5s ease-in-out infinite; }
@keyframes floatCard1 { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
@keyframes floatCard2 { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }
@keyframes floatCard3 { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
.hero-card-icon { font-size: 32px; margin-bottom: 12px; }
.hero-card-title { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.hero-card-text { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(6px); } }
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.4); border-bottom: 2px solid rgba(255,255,255,0.4); transform: rotate(45deg); }

/* ===== BUSINESS STRIP ===== */
.business-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 0;
}
.business-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.business-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}
.business-item:last-child { border-right: none; }
.business-item:hover { background: rgba(255,255,255,0.05); }
.business-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.business-item.safe::before { background: linear-gradient(90deg, #2d6a9f, #5ba3d9); }
.business-item.furniture::before { background: linear-gradient(90deg, #5a8a35, #8bc34a); }
.business-item.solar::before { background: linear-gradient(90deg, #f0820a, #ffc107); }
.business-item:hover::before { transform: scaleX(1); }
.business-icon { font-size: 38px; margin-bottom: 14px; }
.business-name { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.business-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ===== CARD ===== */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,46,90,0.15);
}
.card-body { padding: 28px; }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.card-title { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 600; color: var(--primary-dark); margin-bottom: 10px; }
.card-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ===== WHY US ===== */
.why-us { background: var(--bg-light); }
.feature-item { display: flex; gap: 18px; }
.feature-icon-wrap {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.feature-content {}
.feature-title { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; color: var(--primary-dark); margin-bottom: 6px; }
.feature-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ===== PRODUCTS GRID ===== */
.product-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: all 0.35s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.product-img.safe-bg { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.product-img.furniture-bg { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.product-img.solar-bg { background: linear-gradient(135deg, #fef9c3, #fde68a); }
.product-info { padding: 22px; }
.product-cat {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 8px;
}
.product-cat.safe { color: var(--safe-accent); }
.product-cat.furniture { color: var(--furniture-accent); }
.product-cat.solar { color: var(--solar-accent); }
.product-name { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; color: var(--primary-dark); margin-bottom: 8px; }
.product-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.product-link { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 5px; }
.product-link:hover { color: var(--gold-dark); }

/* ===== SERVICES ===== */
.service-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 36px 28px; transition: all 0.35s; position: relative; overflow: hidden; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card.s1::before { background: linear-gradient(90deg, var(--safe-color), var(--safe-accent)); }
.service-card.s2::before { background: linear-gradient(90deg, var(--furniture-color), var(--furniture-accent)); }
.service-card.s3::before { background: linear-gradient(90deg, var(--solar-color), var(--solar-accent)); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 42px; margin-bottom: 18px; }
.service-title { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; color: var(--primary-dark); margin-bottom: 12px; }
.service-list li { font-size: 14px; color: var(--text-mid); padding: 5px 0; display: flex; gap: 8px; align-items: flex-start; }
.service-list li::before { content: '✓'; color: var(--gold-dark); font-weight: 600; margin-top: 1px; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-light); }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.author-name { font-weight: 600; font-size: 14px; color: var(--primary-dark); }
.author-role { font-size: 12px; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,160,23,0.08) 0%, transparent 50%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; padding: 80px 24px; }
.cta-title { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 600; color: #fff; margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info-card { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: var(--radius-lg); padding: 40px 32px; color: #fff; }
.contact-info-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.contact-info-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-item-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.contact-item-value { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.contact-social { display: flex; gap: 12px; margin-top: 32px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); transform: translateY(-2px); }
.contact-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 40px 36px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.form-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 600; color: var(--primary-dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,46,90,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero-tag {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.page-hero-title { font-family: 'Poppins', sans-serif; font-size: clamp(32px, 5vw, 54px); font-weight: 600; color: #fff; margin-bottom: 16px; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 550px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== ABOUT ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-img-main {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 600; }
.about-badge-text { font-size: 12px; opacity: 0.9; }
.value-card { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius); background: var(--bg-light); border: 1px solid var(--border); margin-bottom: 16px; }
.value-icon { font-size: 28px; flex-shrink: 0; }
.value-title { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--primary-dark); margin-bottom: 4px; }
.value-text { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }
.team-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: all 0.35s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #fff;
  margin: 0 auto 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.team-name { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 600; color: var(--primary-dark); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--gold-dark); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ===== POLICY PAGES ===== */
.policy-body { max-width: 820px; margin: 0 auto; padding: 60px 24px 80px; }
.policy-section { margin-bottom: 40px; }
.policy-section h2 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 600; color: var(--primary-dark); margin-bottom: 14px; border-left: 4px solid var(--gold); padding-left: 14px; }
.policy-section h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 600; color: var(--primary); margin: 20px 0 10px; }
.policy-section p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 12px; }
.policy-section ul { padding-left: 20px; margin-bottom: 12px; }
.policy-section ul li { font-size: 15px; color: var(--text-mid); line-height: 1.8; list-style: disc; margin-bottom: 6px; }
.policy-last-updated { font-size: 13px; color: var(--text-light); margin-bottom: 36px; padding: 12px 16px; background: var(--bg-light); border-radius: 8px; border-left: 3px solid var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #060e1f, #0c1a3a);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.footer-logo-name { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; color: #fff; }
.footer-logo-tag { font-size: 10px; color: var(--gold); letter-spacing: 2px; }
.footer-about { font-size: 13.5px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 13.5px; }
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 999;
  animation: pulse 2.5s ease-in-out infinite;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Call button — stacked above WhatsApp */
.call-float {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #2979ff 0%, #1a3a7a 100%);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(41,121,255,0.45);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(41,121,255,0.6);
}
.call-float svg { display: block; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.75); }
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.6s ease; }
.fade-in.visible { opacity: 1; }

/* ===== TABS ===== */
.tab-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text-mid);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}
.tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.tab-btn:hover:not(.active) { border-color: var(--primary); color: var(--primary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ===== STATS BAR ===== */
.stats-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 32px 0; }
.stats-bar-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 24px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 600; color: var(--primary-dark); }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section-pad { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .business-strip-inner { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-divider { display: none; }
  .stats-bar-inner { gap: 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .btn-lg { padding: 13px 26px; font-size: 14px; }
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* =============================================
   HERO SLIDESHOW
   ============================================= */
.hero-slideshow {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.4s ease;
  transform: scale(1.04);
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-slide.prev {
  opacity: 0;
  transform: scale(0.98);
  z-index: 0;
}

/* Slide backgrounds */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 6s linear;
  will-change: transform;
}
.hero-slide.active .slide-bg { transform: scale(1.08); }

/* Slide overlays */
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.slide-overlay-1 {
  background: linear-gradient(125deg,
    rgba(10,20,50,0.92) 0%,
    rgba(26,46,90,0.75) 50%,
    rgba(10,20,50,0.6) 100%);
}
.slide-overlay-2 {
  background: linear-gradient(125deg,
    rgba(10,30,12,0.92) 0%,
    rgba(29,60,20,0.75) 50%,
    rgba(10,30,12,0.6) 100%);
}
.slide-overlay-3 {
  background: linear-gradient(125deg,
    rgba(50,20,0,0.92) 0%,
    rgba(100,45,0,0.75) 50%,
    rgba(50,20,0,0.6) 100%);
}

/* Grid pattern over slides */
.slide-grid {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Slide content */
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.slide-text {}
.slide-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  border: 1px solid;
}
.tag-safe    { background: rgba(45,106,159,0.25); border-color: rgba(91,163,217,0.5); color: #7ec8f5; }
.tag-furn    { background: rgba(90,138,53,0.25);  border-color: rgba(139,195,74,0.5);  color: #b5e57a; }
.tag-solar   { background: rgba(240,130,10,0.25); border-color: rgba(255,193,7,0.5);   color: #ffd54f; }

.slide-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-headline .hl-safe   { background: linear-gradient(135deg,#7ec8f5,#3b9fe0); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.slide-headline .hl-furn   { background: linear-gradient(135deg,#b5e57a,#7cb342); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.slide-headline .hl-solar  { background: linear-gradient(135deg,#ffd54f,#ffa726); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.slide-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 540px;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-slide-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.3s;
}
.btn-slide-safe   { background: linear-gradient(135deg,#1565c0,#2196f3); color:#fff; box-shadow:0 4px 20px rgba(33,150,243,0.4); }
.btn-slide-furn   { background: linear-gradient(135deg,#2e7d32,#66bb6a); color:#fff; box-shadow:0 4px 20px rgba(102,187,106,0.4); }
.btn-slide-solar  { background: linear-gradient(135deg,#e65100,#ff9800); color:#fff; box-shadow:0 4px 20px rgba(255,152,0,0.4); }
.btn-slide-primary:hover { transform: translateY(-2px) scale(1.03); }
.btn-slide-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  background: transparent; color: #fff; cursor: pointer;
  border: 2px solid rgba(255,255,255,0.5); transition: all 0.3s;
}
.btn-slide-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* Slide visual box (right side) */
.slide-visual {
  display: flex; align-items: center; justify-content: center;
}
.slide-visual-box {
  position: relative;
  width: 100%; max-width: 440px;
}
.slide-main-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
}
.slide-main-icon { font-size: 80px; margin-bottom: 16px; display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
.slide-main-title { font-family:'Poppins',sans-serif; font-size:22px; font-weight: 600; color:#fff; margin-bottom:10px; }
.slide-main-sub { font-size:14px; color:rgba(255,255,255,0.65); line-height:1.6; margin-bottom:20px; }
.slide-stats-row { display:flex; justify-content:center; gap:24px; }
.slide-stat { text-align:center; }
.slide-stat-num { font-family:'Poppins',sans-serif; font-size:22px; font-weight: 600; color:#fff; }
.slide-stat-label { font-size:10px; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1px; }

/* Floating mini badges */
.slide-badge {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.slide-badge-1 { top: -20px; right: -10px; animation: floatA 4s ease-in-out infinite; }
.slide-badge-2 { bottom: -20px; left: -20px; animation: floatB 4.5s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0) rotate(-2deg);} 50%{transform:translateY(-8px) rotate(1deg);} }
@keyframes floatB { 0%,100%{transform:translateY(0) rotate(2deg);} 50%{transform:translateY(-6px) rotate(-1deg);} }
.badge-icon { font-size:22px; }
.badge-label { font-size:11px; color:rgba(255,255,255,0.55); line-height:1.2; }
.badge-value { font-family:'Poppins',sans-serif; font-size:14px; font-weight: 600; color:#fff; }

/* Slide hero stats bar */
.slide-hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
}
.slide-hero-stat-num { font-family:'Poppins',sans-serif; font-size:28px; font-weight: 600; color:#fff; line-height:1; }
.slide-hero-stat-num span { color: var(--gold-light); }
.slide-hero-stat-label { font-size:11px; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1px; margin-top:4px; }

/* Slide Controls */
.slideshow-controls {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}
.slide-dots { display: flex; gap: 10px; align-items: center; }
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slide-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}
.slide-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.slide-arrow:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }

/* Progress bar */
.slide-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.1s linear;
  z-index: 10;
}

/* Slide number indicator */
.slide-counter {
  position: absolute;
  top: 50%; right: 28px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slide-counter-item {
  width: 3px; height: 30px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.slide-counter-item.active {
  background: var(--gold);
  height: 50px;
  box-shadow: 0 0 10px rgba(212,160,23,0.5);
}

/* =============================================
   PARALLAX
   ============================================= */
.parallax-section {
  position: relative;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -30% 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
  z-index: 0;
}
.parallax-overlay {
  position: absolute; inset: 0; z-index: 1;
}
.parallax-content { position: relative; z-index: 2; }

/* Floating particles */
.particles-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: particleDrift linear infinite;
  will-change: transform;
}
@keyframes particleDrift {
  from { transform: translateY(100vh) rotate(0deg); }
  to   { transform: translateY(-100px) rotate(360deg); }
}

/* =============================================
   TEAM SECTION REDESIGN
   ============================================= */
.team-section-wrap {
  background: linear-gradient(135deg, #060e1f 0%, #0c1a3a 40%, #0a1428 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.team-section-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.team-card-v2 {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.team-card-v2:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border-color: rgba(212,160,23,0.3);
}
.team-card-banner {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.team-avatar-v2 {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 28px; font-weight: 600;
  color: #fff;
  border: 3px solid rgba(255,255,255,0.3);
  position: relative; z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.team-card-v2:hover .team-avatar-v2 { transform: scale(1.08); }
.team-card-body { padding: 24px; }
.team-card-role-badge {
  display: inline-block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: 12px;
}
.team-card-name-v2 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; font-weight: 600;
  color: #fff; margin-bottom: 6px;
}
.team-card-title-v2 {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
  opacity: 0.7;
}
.team-card-bio-v2 {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}
.team-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 16px 0;
}
.team-card-exp {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.45);
}

/* =============================================
   SERVICES PAGE REDESIGN
   ============================================= */
.service-hero-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.service-hero-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.service-hero-item:last-child { border-right: none; }
.service-hero-item::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; transform: scaleX(0);
  transition: transform 0.3s;
}
.shi-1::before { background: linear-gradient(90deg,#1565c0,#2196f3); }
.shi-2::before { background: linear-gradient(90deg,#2e7d32,#66bb6a); }
.shi-3::before { background: linear-gradient(90deg,#e65100,#ff9800); }
.service-hero-item:hover::before { transform: scaleX(1); }
.service-hero-item:hover { background: var(--bg-light); transform: translateY(-2px); }
.shi-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
  transition: transform 0.3s;
}
.service-hero-item:hover .shi-icon { transform: scale(1.1) rotate(-3deg); }
.shi-title { font-family:'Poppins',sans-serif; font-size:18px; font-weight: 600; color:var(--primary-dark); margin-bottom:8px; }
.shi-sub { font-size:13.5px; color:var(--text-mid); line-height:1.6; }

/* Service detail card v2 */
.service-detail-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
}
.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-detail-header {
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
}
.service-detail-header::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  opacity: 0.1;
}
.sdh-1 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.sdh-1::before { background: #1565c0; }
.sdh-2 { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.sdh-2::before { background: #2e7d32; }
.sdh-3 { background: linear-gradient(135deg, #fef9c3, #fde68a); }
.sdh-3::before { background: #e65100; }
.sdh-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.sdi-1 { background: linear-gradient(135deg,#1565c0,#2196f3); }
.sdi-2 { background: linear-gradient(135deg,#2e7d32,#66bb6a); }
.sdi-3 { background: linear-gradient(135deg,#e65100,#ff9800); }
.service-detail-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 600;
  color: var(--primary-dark); margin-bottom: 8px;
}
.service-detail-sub { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.service-detail-body { padding: 24px 32px 32px; }
.service-feature-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.service-feature-row:last-child { border-bottom: none; }
.sfr-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.sfr-1 { background: #dbeafe; }
.sfr-2 { background: #dcfce7; }
.sfr-3 { background: #fef9c3; }
.sfr-title { font-family:'Poppins',sans-serif; font-size:14px; font-weight: 600; color:var(--primary-dark); }
.sfr-desc { font-size:13px; color:var(--text-mid); line-height:1.55; margin-top:3px; }
.service-detail-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: space-between;
}
.sdf-tag { font-size:12px; color:var(--text-light); font-weight:600; }

/* Process timeline */
.process-timeline {
  position: relative;
  padding-left: 40px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--gold), var(--primary));
}
.process-step {
  position: relative;
  padding: 0 0 40px 30px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step-dot {
  position: absolute;
  left: -25px; top: 4px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(26,46,90,0.3);
  z-index: 1;
}
.process-step-title {
  font-family:'Poppins',sans-serif; font-size:16px; font-weight: 600;
  color:var(--primary-dark); margin-bottom:6px;
}
.process-step-desc { font-size:14px; color:var(--text-mid); line-height:1.7; }

/* Scroll reveal */
.reveal-left { opacity:0; transform:translateX(-40px); transition:all 0.7s ease; }
.reveal-right { opacity:0; transform:translateX(40px); transition:all 0.7s ease; }
.reveal-up { opacity:0; transform:translateY(40px); transition:all 0.7s ease; }
.reveal-left.visible, .reveal-right.visible, .reveal-up.visible { opacity:1; transform:none; }

/* Delay helpers */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

@media (max-width: 1024px) {
  .slide-content { grid-template-columns: 1fr; }
  .slide-visual { display: none; }
  .slide-counter { display: none; }
  .service-hero-strip { grid-template-columns: 1fr; }
  .service-hero-item { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .slide-headline { font-size: 34px; }
  .slideshow-controls { bottom: 20px; }
  .slide-content { padding: 120px 20px 80px; }
  .team-section-wrap { padding: 60px 0; }
}

/* =============================================
   STEELAGE-STYLE HERO REDESIGN
   ============================================= */

/* Remove old hero if exists */
.hero { display: none !important; }

/* Navbar — always transparent to start, dark on scroll */
#navbar {
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
#navbar.scrolled {
  background: rgba(6, 10, 20, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 2px 40px rgba(0,0,0,0.5) !important;
}

/* ── INDUSTRIAL HERO ─────────────────────────── */
/* ── DEPRECATED: Old industrial hero replaced with hero-modern ── */
.industrial-hero {
  display: none;
}

/* Slide */
.ih-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  z-index: 0;
  overflow: hidden;
}
.ih-slide.active { opacity: 1; z-index: 1; }

/* Background layer with Ken Burns pan */
.ih-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: transform 8s ease;
  will-change: transform;
}
.ih-slide.active .ih-bg {
  transform: scale(1.0);
}

/* Overlay — gradient from left or bottom */
.ih-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ih-overlay-1 {
  background:
    linear-gradient(to right, rgba(4,8,20,0.92) 35%, rgba(4,8,20,0.5) 65%, rgba(4,8,20,0.25) 100%),
    linear-gradient(to top, rgba(4,8,20,0.7) 0%, transparent 50%);
}
.ih-overlay-2 {
  background:
    linear-gradient(to right, rgba(4,14,6,0.94) 35%, rgba(4,14,6,0.55) 65%, rgba(4,14,6,0.25) 100%),
    linear-gradient(to top, rgba(4,14,6,0.7) 0%, transparent 50%);
}
.ih-overlay-3 {
  background:
    linear-gradient(to right, rgba(18,8,2,0.94) 35%, rgba(18,8,2,0.55) 65%, rgba(18,8,2,0.25) 100%),
    linear-gradient(to top, rgba(18,8,2,0.7) 0%, transparent 50%);
}

/* Noise texture */
.ih-noise {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Decorative side accent line */
.ih-accent-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  z-index: 3;
  transition: background 0.5s;
}

/* Content wrapper */
.ih-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 0 80px;
  max-width: 1280px;
  margin: 0 auto;
  left: 0; right: 0;
}

/* Text block */
.ih-text {
  max-width: 600px;
}

/* Slide-in animations for content */
.ih-slide .ih-eyebrow,
.ih-slide .ih-headline,
.ih-slide .ih-tagline,
.ih-slide .ih-body,
.ih-slide .ih-actions,
.ih-slide .ih-trust {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ih-slide.active .ih-eyebrow  { opacity: 1; transform: none; transition-delay: 0.15s; }
.ih-slide.active .ih-headline { opacity: 1; transform: none; transition-delay: 0.3s; }
.ih-slide.active .ih-tagline  { opacity: 1; transform: none; transition-delay: 0.42s; }
.ih-slide.active .ih-body     { opacity: 1; transform: none; transition-delay: 0.55s; }
.ih-slide.active .ih-actions  { opacity: 1; transform: none; transition-delay: 0.68s; }
.ih-slide.active .ih-trust    { opacity: 1; transform: none; transition-delay: 0.82s; }

/* Eyebrow label */
.ih-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.ih-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ih-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ih-eyebrow-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 4px;
}

/* Headline */
.ih-headline {
  font-family: -apple-system,'Segoe UI',sans-serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.ih-headline em {
  font-style: normal;
  display: block;
}

/* Tagline accent */
.ih-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Body text */
.ih-body {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 480px;
}

/* Action buttons */
.ih-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.ih-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.ih-btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-105%);
  transition: transform 0.35s ease;
  clip-path: inherit;
}
.ih-btn-primary:hover::before { transform: translateX(0); }
.ih-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }

.ih-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.65);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.ih-btn-ghost:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.6); gap: 14px; }

/* Trust badges */
.ih-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ih-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.ih-trust-item span:first-child { font-size: 16px; }
.ih-trust-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.12); }

/* ── SLIDE NAVIGATION ─────────────────────── */
.ih-nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: stretch;
  height: 80px;
}

/* Slide tab buttons */
.ih-nav-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  background: rgba(255,255,255,0.04);
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.ih-nav-tab:last-child { border-right: none; }
.ih-nav-tab::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.ih-nav-tab.active::before { transform: scaleX(1); }
.ih-nav-tab:hover { background: rgba(255,255,255,0.07); }
.ih-nav-tab-num {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  transition: color 0.3s;
  flex-shrink: 0;
}
.ih-nav-tab.active .ih-nav-tab-num { color: rgba(255,255,255,0.5); }
.ih-nav-tab-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  transition: color 0.3s;
  line-height: 1.3;
}
.ih-nav-tab.active .ih-nav-tab-label { color: rgba(255,255,255,0.85); }
.ih-nav-tab-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 3px;
  transition: color 0.3s;
}
.ih-nav-tab.active .ih-nav-tab-sub { color: rgba(255,255,255,0.45); }

/* Progress fill inside active tab */
.ih-nav-tab-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.03);
  transition: none;
  pointer-events: none;
}

/* Arrow controls */
.ih-arrows {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  display: flex;
  gap: 8px;
}
.ih-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.ih-arrow:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* Slide counter top-right */
.ih-counter {
  display: none;
}

/* Dot pagination — bottom center */
.ih-dots-wrap {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ih-counter-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}
.ih-counter-num {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}
.ih-counter-total {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}

/* Dot pagination styles */
.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slide-dot.active {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 0 12px rgba(255,255,255,0.4);
}
.slide-dot:hover {
  background: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.5);
}

/* Scroll indicator */
.ih-scroll-hint {
  position: absolute;
  left: 40px;
  bottom: 120px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.ih-scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 11px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 5px;
}
.ih-scroll-wheel {
  width: 3px; height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%,100% { transform: translateY(0); opacity:1; }
  60% { transform: translateY(8px); opacity:0.2; }
}
.ih-scroll-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  writing-mode: vertical-rl;
}

/* Right side product visual */
.ih-product-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 340px;
  opacity: 0;
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
  transform: translateY(-45%);
  pointer-events: none;
}
.ih-slide.active .ih-product-visual {
  opacity: 1;
  transform: translateY(-50%);
}
.ih-product-box {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}
.ih-product-icon { font-size: 72px; text-align: center; margin-bottom: 16px; display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  animation: productFloat 4s ease-in-out infinite;
}
@keyframes productFloat { 0%,100%{transform:translateY(0) rotate(-2deg);} 50%{transform:translateY(-10px) rotate(2deg);} }
.ih-product-title {
  font-family:'Poppins',sans-serif;
  font-size:16px; font-weight: 600; color:#fff;
  text-align:center; margin-bottom:6px;
}
.ih-product-sub {
  font-size:12px; color:rgba(255,255,255,0.5);
  text-align:center; line-height:1.6; margin-bottom:20px;
}
.ih-cert-row {
  display:flex; justify-content:center; gap:8px; flex-wrap:wrap;
}
.ih-cert-badge {
  padding:4px 10px;
  border-radius:20px;
  font-size:10px; font-weight: 600;
  letter-spacing:0.5px;
  border: 1px solid;
}
.ih-mini-stat {
  display:flex; gap:16px; margin-top:16px; padding-top:16px;
  border-top:1px solid rgba(255,255,255,0.08);
  justify-content:center;
}
.ih-mini-stat-item { text-align:center; }
.ih-mini-stat-num { font-family:'Poppins',sans-serif; font-size:15px; font-weight: 600; color:#fff; }
.ih-mini-stat-label { font-size:10px; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:1px; }

/* Floating chip (absolute inside .ih-product-box) */
.ih-chip {
  position:absolute;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:50px;
  padding:8px 14px;
  display:flex; align-items:center; gap:8px;
  white-space:nowrap;
  font-size:11px; color:#fff; font-weight:600;
  box-shadow:0 4px 16px rgba(0,0,0,0.3);
}
.ih-chip-1 { top:-18px; right:-16px; animation:chipFloat1 3.5s ease-in-out infinite; }
.ih-chip-2 { bottom:-18px; left:-16px; animation:chipFloat2 4s ease-in-out infinite; }
@keyframes chipFloat1 {0%,100%{transform:translateY(0);}50%{transform:translateY(-6px);}}
@keyframes chipFloat2 {0%,100%{transform:translateY(0);}50%{transform:translateY(-5px);}}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .ih-product-visual { display: none; }
  .ih-counter { display: none; }
  .ih-content { padding: 0 40px; }
}
@media (max-width: 768px) {
  .ih-content { padding: 0 24px; }
  .ih-headline { font-size: 32px; letter-spacing: -0.5px; }
  .ih-nav { height: auto; flex-direction: column; }
  .ih-nav-tab { height: 56px; flex: none; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .ih-arrows { display: none; }
  .ih-scroll-hint { display: none; }
  /* .industrial-hero { height: auto; min-height: 100vh; padding-bottom: 168px; } */
}

/* ── DARK SECTION OVERRIDES ───────────────── */

/* Products section on dark blue bg */
.section-on-dark .product-card,
section[style*="060d20"] .product-card,
section[style*="0a1535"] .product-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
section[style*="060d20"] .product-card:hover,
section[style*="0a1535"] .product-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* Testimonial cards on dark green */
section[style*="021407"] .testimonial-card,
section[style*="042810"] .testimonial-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
section[style*="021407"] .testimonial-text,
section[style*="042810"] .testimonial-text { color: rgba(255,255,255,0.7); }
section[style*="021407"] .author-name,
section[style*="042810"] .author-name { color: #fff; }
section[style*="021407"] .author-role,
section[style*="042810"] .author-role { color: rgba(0,230,118,0.7); }

/* Service cards on white bg */
section[style*="fff;"] .service-card:hover { box-shadow: var(--shadow-lg); }

/* Why choose us feature items on dark red */
section[style*="1a0005"] .feature-item { }
section[style*="1a0005"] .feature-icon-wrap {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}

/* CTA dark bg */
section[style*="060a18"] .cta-inner { padding: 90px 24px; }
section[style*="060a18"] .cta-title { color: #fff; }
section[style*="060a18"] .cta-sub { color: rgba(255,255,255,0.65); }

/* Stats bar dark */
section[style*="0d1b3e"] .stat-divider { background: rgba(255,255,255,0.12) !important; }

/* =============================================
   MODERN UI 2025 — New Design Patterns
   ============================================= */

/* ── BENTO GRID ─────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 16px;
}
.bento-cell {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}
.bento-cell:hover { transform: scale(1.02); box-shadow: 0 24px 64px rgba(0,0,0,0.18); }
.bento-img { width:100%; height:100%; object-fit:cover; display:block; }

/* ── SPLIT HERO SECTION ────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
.split-img-pane {
  position: relative;
  overflow: hidden;
}
.split-img-pane img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.8s ease;
}
.split-section:hover .split-img-pane img { transform: scale(1.04); }
.split-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(0,0,0,0.3) 100%);
}
.split-content-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 52px;
}

/* ── MODERN PRODUCT CARD ───────────────────── */
.modern-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.34,1.2,0.64,1);
  cursor: pointer;
}
.modern-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0,0,0,0.14);
  border-color: transparent;
}
.modern-card-img {
  width:100%; height:240px; object-fit:cover;
  display:block;
  transition: transform 0.6s ease;
}
.modern-card:hover .modern-card-img { transform: scale(1.05); }
.modern-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.modern-card-body { padding: 24px 24px 28px; }
.modern-card-title { font-family:'Poppins',sans-serif; font-size:17px; font-weight: 600; color:var(--primary-dark); margin-bottom:8px; }
.modern-card-desc { font-size:13.5px; color:var(--text-mid); line-height:1.7; margin-bottom:16px; }
.modern-card-footer { display:flex; align-items:center; justify-content:space-between; }
.modern-card-link { font-size:13px; font-weight: 600; display:flex; align-items:center; gap:6px; transition:gap 0.3s; }
.modern-card:hover .modern-card-link { gap: 10px; }

/* ── GLASS CARD ─────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.35s ease;
}
.glass-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

/* ── FULLBLEED IMAGE SECTION ────────────────── */
.fullbleed-section {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.fullbleed-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s linear;
  will-change: transform;
}
.fullbleed-section:hover .fullbleed-img { transform: scale(1.04); }
.fullbleed-overlay {
  position: absolute; inset: 0;
  z-index: 1;
}
.fullbleed-content {
  position: relative; z-index: 2;
  width: 100%;
}

/* ── NUMBER TICKER CARD ─────────────────────── */
.ticker-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.ticker-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.ticker-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ticker-num {
  font-family: 'Poppins', sans-serif;
  font-size: 48px; font-weight: 600;
  line-height: 1; margin-bottom: 8px;
}
.ticker-label { font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* ── MARQUEE ────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--primary-dark);
  padding: 28px 0 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-top: 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  will-change: transform;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.marquee-item span { font-size: 16px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ── HORIZONTAL SCROLLING CARDS ────────────── */
.hscroll-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.hscroll-wrap::-webkit-scrollbar { display: none; }
.hscroll-track { display: flex; gap: 20px; padding: 8px 0; width: max-content; }

/* ── WHY US — ICON GRID ─────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: 24px;
  overflow: hidden;
}
.why-cell {
  background: rgba(255,255,255,0.05);
  padding: 36px 28px;
  transition: background 0.3s;
  position: relative;
}
.why-cell:hover { background: rgba(255,255,255,0.1); }
.why-cell-icon { font-size: 36px; margin-bottom: 14px; }
.why-cell-title { font-family:'Poppins',sans-serif; font-size:16px; font-weight: 600; color:#fff; margin-bottom:8px; }
.why-cell-text { font-size:13.5px; color:rgba(255,255,255,0.55); line-height:1.7; }
.why-cell-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family:'Poppins',sans-serif;
  font-size: 48px; font-weight: 600;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

/* ── TESTIMONIAL — MODERN ───────────────────── */
.testi-modern {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.testi-modern:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.testi-quote-icon {
  font-size: 48px; line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}
.testi-text { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.85; font-style: italic; margin-bottom: 24px; }
.testi-stars { color: #ffd600; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar-v2 {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family:'Poppins',sans-serif; font-size:16px; font-weight: 600; color:#fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.testi-name { font-family:'Poppins',sans-serif; font-size:14px; font-weight: 600; color:#fff; }
.testi-role { font-size:12px; margin-top:2px; }

/* ── CTA MODERN ─────────────────────────────── */
.cta-modern {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-bg-img {
  position: absolute; inset: 0;
  width:100%; height:100%; object-fit:cover;
  object-position: center;
  filter: brightness(0.3) saturate(0.6);
}
.cta-modern-content { position: relative; z-index: 2; text-align: center; }

/* ── SECTION LABEL (modern pill) ────────────── */
.mod-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mod-label-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ── SPLIT PRODUCT DISPLAY ──────────────────── */
.product-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.4s ease;
}
.product-split:hover { box-shadow: var(--shadow-lg); }
.product-split-img { position: relative; min-height: 360px; overflow: hidden; }
.product-split-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.product-split:hover .product-split-img img { transform: scale(1.04); }
.product-split-info { padding: 40px 36px; background: #fff; display: flex; flex-direction: column; justify-content: center; }
.product-split-cat { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.product-split-title { font-family:'Poppins',sans-serif; font-size:26px; font-weight: 600; color:var(--primary-dark); margin-bottom:14px; line-height:1.2; }
.product-split-desc { font-size:14.5px; color:var(--text-mid); line-height:1.8; margin-bottom:24px; }
.product-split-tags { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:28px; }
.product-split-tag { padding:5px 14px; border-radius:50px; font-size:12px; font-weight:600; }

@media (max-width: 768px) {
  .split-section, .product-split { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .bento-grid { display: flex; flex-direction: column; }
}

/* ========== PROFESSIONAL HERO ========== */

.hero {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  background: #1a1a1a;
  z-index: 1;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-text-wrap {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 700px;
  color: white;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  margin-bottom: 24px;
}

.hero-text-wrap h1 {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-text-wrap p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-blue,
.btn-red,
.btn-green,
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-blue {
  background: linear-gradient(135deg, #2979ff 0%, #1e5db8 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(41,121,255,0.35);
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(41,121,255,0.5);
}

.btn-red {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(229,57,53,0.35);
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(229,57,53,0.5);
}

.btn-green {
  background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(67,160,71,0.35);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(67,160,71,0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* NAVIGATION */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-dot-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot-btn.active {
  background: white;
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
  transform: scale(1.2);
}

.hero-dot-btn:hover {
  background: rgba(255,255,255,0.6);
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 40px;
}

.hero-next {
  right: 40px;
}

@media (max-width: 768px) {
  .hero {
    height: 500px;
    margin-top: 80px;
  }

  .hero-text-wrap {
    left: 30px;
    right: 30px;
    max-width: 100%;
  }

  .hero-text-wrap h1 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .hero-text-wrap p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn-blue,
  .btn-red,
  .btn-green,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero-prev,
  .hero-next {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .hero-prev {
    left: 20px;
  }

  .hero-next {
    right: 20px;
  }
}

/* =============================================
   GLOBAL MOBILE RESPONSIVE FIXES
   ============================================= */
@media (max-width: 900px) {
  /* Stack all multi-column inline grids */
  [style*="repeat(4,1fr)"],
  [style*="repeat(4, 1fr)"],
  [style*="repeat(3,1fr)"],
  [style*="repeat(3, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 768px) {
  /* Force single column for all common inline grid layouts */
  [style*="repeat(4,1fr)"],
  [style*="repeat(4, 1fr)"],
  [style*="repeat(3,1fr)"],
  [style*="repeat(3, 1fr)"],
  [style*="repeat(2,1fr)"],
  [style*="repeat(2, 1fr)"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1.1fr 1fr"],
  [style*="grid-template-columns:1fr 1.1fr"],
  [style*="grid-template-columns: 1.1fr 1fr"],
  [style*="grid-template-columns: 1fr 1.1fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* ---- HERO CAROUSEL ---- */
  #heroCarousel { height: 560px !important; }
  .carousel-slide > div:nth-child(3) {
    left: 24px !important;
    right: 24px !important;
    max-width: 100% !important;
    text-align: left !important;
  }
  .carousel-slide > div:nth-child(3) h1 { font-size: 32px !important; }
  .carousel-slide > div:nth-child(3) p  { font-size: 15px !important; }
  .carousel-slide > div:nth-child(3) > div:last-child {
    flex-wrap: wrap !important;
    gap: 12px !important;
    justify-content: flex-start !important;
  }
  .carousel-slide a[href] { padding: 13px 22px !important; font-size: 14px !important; }

  /* Section padding trim */
  section { padding-left: 0; padding-right: 0; }

  /* Tables / wide blocks scroll instead of overflow */
  img { height: auto; }

  /* Footer stacks */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Floating buttons slightly smaller + safe spacing */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .call-float { bottom: 84px; right: 20px; width: 52px; height: 52px; }
}
@media (max-width: 480px) {
  #heroCarousel { height: 520px !important; }
  .carousel-slide > div:nth-child(3) h1 { font-size: 26px !important; }
  .container { padding: 0 16px; }
}
