/* ===================================
   S.M.Enterprises - Main Stylesheet
   =================================== */

:root {
  --primary: #003d7a;
  --primary-dark: #002a56;
  --primary-light: #005bb5;
  --accent: #e8821a;
  --accent-dark: #c4690d;
  --accent-light: #f5a142;
  --white: #ffffff;
  --off-white: #f5f7fb;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ea;
  --gray-300: #ced4da;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-900: #212529;
  --text: #2d3748;
  --text-light: #718096;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Montserrat', 'Segoe UI', sans-serif; line-height: 1.3; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 6px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 4px; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent-light); }
.top-bar .tb-left, .top-bar .tb-right { display: flex; align-items: center; gap: 16px; }
.top-bar i { margin-right: 5px; color: var(--accent-light); }

/* ---- Header ---- */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white; font-weight: 800;
  box-shadow: 0 3px 10px rgba(0,61,122,0.3);
}
.logo-text .company-name { font-size: 20px; font-weight: 800; color: var(--primary); letter-spacing: -0.3px; }
.logo-text .tagline { font-size: 11px; color: var(--gray-500); letter-spacing: 0.5px; text-transform: uppercase; }

/* ---- Navigation ---- */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 6px;
  font-weight: 600; font-size: 14px;
  color: var(--gray-700);
  transition: all var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--primary); background: var(--gray-100); }
.main-nav .dropdown { position: relative; }
.main-nav .dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: white; min-width: 260px;
  box-shadow: var(--shadow-lg); border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 8px 0; z-index: 999;
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: translateY(0); } }
.main-nav .dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 9px 18px;
  font-size: 13.5px; color: var(--gray-700);
  transition: all var(--transition);
}
.dropdown-menu li a:hover { background: var(--off-white); color: var(--primary); padding-left: 24px; }

.header-cta {
  display: flex; align-items: center; gap: 10px;
}
.btn-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--off-white); border: 1px solid var(--gray-200);
  color: var(--primary); border-radius: 6px;
  padding: 8px 14px; font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.btn-call:hover { background: var(--primary); color: white; border-color: var(--primary); }
.btn-quote {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: white;
  border-radius: 6px; padding: 9px 18px;
  font-size: 13.5px; font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(232,130,26,0.35);
}
.btn-quote:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,130,26,0.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all var(--transition); }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-fluid { padding: 0 20px; }

/* ---- Hero Slider ---- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  min-height: 520px; display: flex; align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 40%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
                    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-slide { display: none; }
.hero-slide.active { display: flex; align-items: center; width: 100%; animation: heroFade 0.6s ease; }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
.hero-content {
  position: relative; z-index: 2;
  padding: 60px 0; flex: 1;
  max-width: 620px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  color: white; font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  color: white; margin-bottom: 16px; line-height: 1.2;
}
.hero h1 span { color: var(--accent-light); }
.hero p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; max-width: 500px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--accent); color: white; padding: 13px 28px;
  border-radius: var(--radius); font-weight: 700; font-size: 15px;
  transition: all var(--transition); box-shadow: 0 4px 15px rgba(232,130,26,0.4);
}
.btn-hero-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-hero-secondary {
  background: rgba(255,255,255,0.12); color: white; padding: 13px 28px;
  border-radius: var(--radius); font-weight: 600; font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all var(--transition); backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.22); }
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.hero-stat { color: white; }
.hero-stat .num { font-size: 30px; font-weight: 800; color: var(--accent-light); line-height: 1; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

.hero-visual {
  flex: 0 0 420px; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; padding: 40px 0 40px 40px;
}
.hero-card-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.hero-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg);
  padding: 16px; color: white; text-align: center;
  transition: all var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.hero-card i { font-size: 28px; color: var(--accent-light); margin-bottom: 8px; }
.hero-card .card-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: all var(--transition);
}
.hero-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
.hero-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); color: white;
  border: none; cursor: pointer; width: 40px; height: 40px; border-radius: 50%;
  font-size: 16px; z-index: 10; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.hero-nav-btn:hover { background: rgba(255,255,255,0.3); }
.hero-nav-btn.prev { left: 16px; }
.hero-nav-btn.next { right: 16px; }

/* ---- Category Strip ---- */
.category-strip { background: white; box-shadow: var(--shadow-md); position: relative; z-index: 5; }
.cat-scroll { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-item {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 22px; border-right: 1px solid var(--gray-100);
  text-align: center; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.cat-item:last-child { border-right: none; }
.cat-item:hover { background: var(--off-white); }
.cat-item.active { background: var(--primary); color: white; }
.cat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--primary); transition: all var(--transition);
}
.cat-item.active .cat-icon { background: rgba(255,255,255,0.2); color: white; }
.cat-item:hover:not(.active) .cat-icon { background: var(--gray-200); }
.cat-label { font-size: 12px; font-weight: 700; color: var(--gray-700); transition: color var(--transition); }
.cat-item.active .cat-label, .cat-item.active .cat-count { color: white; }
.cat-count { font-size: 11px; color: var(--gray-500); transition: color var(--transition); }

/* ---- Section Styles ---- */
section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: rgba(0,61,122,0.08); color: var(--primary);
  font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--gray-900); }
.section-title span { color: var(--primary); }
.section-sub { color: var(--text-light); margin-top: 10px; max-width: 540px; margin-left: auto; margin-right: auto; }
.section-divider {
  width: 60px; height: 4px; margin: 14px auto 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* ---- Products Grid ---- */
.products-section { background: var(--off-white); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.product-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.product-img {
  position: relative; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.product-img i { font-size: 64px; color: rgba(255,255,255,0.3); }
.product-img .product-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 20px; letter-spacing: 0.5px;
}
.product-body { padding: 18px; }
.product-category { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.product-title { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; line-height: 1.4; }
.product-specs { margin-bottom: 12px; }
.product-specs li {
  font-size: 12.5px; color: var(--text-light); padding: 3px 0;
  border-bottom: 1px dashed var(--gray-200); display: flex; gap: 6px;
}
.product-specs li:last-child { border-bottom: none; }
.product-specs li::before { content: '✓'; color: var(--primary); font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; border-top: 1px solid var(--gray-100);
  background: var(--off-white);
}
.product-price { font-size: 17px; font-weight: 800; color: var(--primary); }
.product-price small { font-size: 11px; color: var(--gray-500); font-weight: 400; }
.btn-get-quote {
  background: var(--primary); color: white;
  padding: 7px 16px; border-radius: 6px;
  font-size: 12.5px; font-weight: 700;
  transition: all var(--transition);
  border: none; cursor: pointer;
}
.btn-get-quote:hover { background: var(--accent); }

.load-more-wrap { text-align: center; margin-top: 36px; }
.btn-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--primary); color: var(--primary);
  padding: 11px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px;
  transition: all var(--transition);
  background: transparent; cursor: pointer;
}
.btn-load-more:hover { background: var(--primary); color: white; }

/* ---- About Section ---- */
.about-section { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-main-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg); padding: 40px;
  color: white; position: relative; overflow: hidden;
}
.about-main-card::before {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.07); top: -40px; right: -40px;
}
.about-main-card .big-icon { font-size: 60px; opacity: 0.2; margin-bottom: 16px; }
.about-main-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.about-main-card p { opacity: 0.85; font-size: 14px; }
.about-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px;
}
.about-stat-box {
  background: white; border-radius: var(--radius);
  padding: 16px; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-stat-box .num { font-size: 24px; font-weight: 800; color: var(--primary); }
.about-stat-box .lbl { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }
.about-content h2 { font-size: 28px; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; }
.about-content h2 span { color: var(--primary); }
.about-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about-features { margin: 20px 0 28px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.feat-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(0,61,122,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 18px;
}
.feat-text h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.feat-text p { font-size: 13px; color: var(--text-light); }
.btn-about {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: white;
  padding: 12px 28px; border-radius: var(--radius);
  font-weight: 700; transition: all var(--transition);
}
.btn-about:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ---- Certifications / Trust Badges ---- */
.trust-section { background: var(--gray-100); padding: 40px 0; }
.trust-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 13px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: white; border-radius: var(--radius); padding: 10px 18px;
  box-shadow: var(--shadow-sm); font-size: 13px; font-weight: 700; color: var(--gray-700);
}
.trust-badge i { color: var(--accent); font-size: 18px; }

/* ---- Why Us Section ---- */
.why-section { background: var(--primary-dark); color: white; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white; margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(232,130,26,0.4);
}
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13.5px; opacity: 0.75; line-height: 1.7; }

/* ---- Services Section ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.service-card {
  text-align: center; padding: 32px 20px;
  border-radius: var(--radius-lg); border: 1.5px solid var(--gray-200);
  background: white; transition: all var(--transition);
}
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-icon {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: white;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.service-card h3 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.service-card p { font-size: 12.5px; color: var(--text-light); }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.t-stars { color: #f5a623; font-size: 14px; margin-bottom: 12px; }
.t-text { font-size: 14px; color: var(--text-light); font-style: italic; line-height: 1.8; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 14px; color: var(--gray-900); }
.t-company { font-size: 12px; color: var(--text-light); }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: white; text-align: center; padding: 70px 0;
}
.cta-section h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; margin-bottom: 12px; }
.cta-section p { font-size: 16px; opacity: 0.9; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  background: white; color: var(--accent-dark);
  padding: 13px 30px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px;
  transition: all var(--transition); box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-cta-outline {
  border: 2px solid rgba(255,255,255,0.6); color: white;
  padding: 13px 30px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
  transition: all var(--transition);
}
.btn-cta-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ---- Contact Section ---- */
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; }
.contact-info h3 { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: rgba(0,61,122,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 18px;
}
.c-text .label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.c-text .value { font-weight: 700; font-size: 14px; color: var(--gray-900); }
.c-text .value a:hover { color: var(--primary); }
.contact-gst { 
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; 
}
.gst-badge {
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 10px 14px;
  font-size: 12px; color: var(--gray-700);
}
.gst-badge strong { display: block; color: var(--gray-900); font-size: 13px; }

/* ---- Contact Form ---- */
.contact-form-wrap {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-200);
}
.contact-form-wrap h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; color: var(--gray-900); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--gray-700); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius);
  font-size: 14px; color: var(--gray-900);
  background: white; transition: all var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary); outline: none;
  box-shadow: 0 0 0 3px rgba(0,61,122,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; background: var(--primary); color: white;
  padding: 13px; border: none; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: var(--primary-dark); }
.form-success { 
  display: none; text-align: center; padding: 20px;
  color: #2d6a2d; background: #d4edda; border-radius: var(--radius);
  margin-top: 16px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--gray-900); color: rgba(255,255,255,0.75);
}
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .logo-text .company-name { color: white; }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 13.5px; margin: 14px 0 20px; line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 16px;
  transition: all var(--transition);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: white; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: all var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; font-size: 16px; color: var(--accent); }
.footer-col ul li a:hover { color: white; padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 13px; }
.footer-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: white; }

/* ---- Floating CTA ---- */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 28px;
  font-weight: 700; font-size: 13.5px; color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all var(--transition);
}
.float-btn.phone { background: #25d366; }
.float-btn.phone:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.float-btn.quote { background: var(--accent); }
.float-btn.quote:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(232,130,26,0.4); }
.float-btn i { font-size: 18px; }

/* ---- Back to Top ---- */
#back-to-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: white;
  border: none; cursor: pointer; font-size: 16px;
  box-shadow: var(--shadow-md);
  display: none; align-items: center; justify-content: center;
  transition: all var(--transition);
}
#back-to-top.show { display: flex; }
#back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---- Quote Modal ---- */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: var(--radius-lg);
  width: 90%; max-width: 520px; max-height: 90vh;
  overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity:0; transform: scale(0.9) translateY(20px); } to { opacity:1; transform: scale(1) translateY(0); } }
.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-header h3 { font-size: 18px; font-weight: 700; }
.modal-close {
  background: rgba(255,255,255,0.2); border: none; color: white;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 16px; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(255,255,255,0.35); }
.modal-body { padding: 24px; }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.hidden { display: none !important; }

/* ---- Page Banner ---- */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white; padding: 50px 0; position: relative; overflow: hidden;
}
.page-banner::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-banner h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; position: relative; z-index: 2;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { flex: 0 0 360px; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: white; z-index: 1500; padding: 80px 20px 20px;
    overflow-y: auto;
  }
  .main-nav.open > ul { flex-direction: column; gap: 0; }
  .main-nav.open > ul > li > a { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .main-nav .dropdown-menu { position: static; box-shadow: none; border: none; background: var(--off-white); }
  .main-nav .dropdown .dropdown-menu { display: block; }
  .hamburger { display: flex; }
  .header-cta .btn-call { display: none; }
  .nav-close {
    position: absolute; top: 16px; right: 16px;
    background: var(--gray-100); border: none; width: 40px; height: 40px;
    border-radius: 50%; font-size: 20px; cursor: pointer; z-index: 1600;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-700);
  }
}

@media (max-width: 640px) {
  .top-bar .tb-left { display: none; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  .hero-stats { gap: 20px; }
  .hero-stat .num { font-size: 24px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .why-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-grid, .services-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   INDUSTRIES TICKER (below hero) — FIXED seamless scroll
   ============================================================ */
.industries-ticker {
  background: var(--primary-dark);
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  position: relative;
}
/* Fade edges */
.industries-ticker::before,
.industries-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.industries-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--primary-dark), transparent);
}
.industries-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--primary-dark), transparent);
}
.industries-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: industriesTicker 30s linear infinite;
  will-change: transform;
}
.industries-ticker:hover .industries-track {
  animation-play-state: paused;
}
@keyframes industriesTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ind-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
  flex-shrink: 0;
}
.ind-item:hover { color: rgba(255,255,255,0.92); }
.ind-item i {
  font-size: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   SERVICE CARDS — new design (svc-*)
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.svc-card:hover {
  border-color: var(--primary);
  box-shadow: 0 14px 44px rgba(0,61,122,0.13);
  transform: translateY(-5px);
}

/* ── Media area ── */
.svc-media {
  width: 100%;
  height: 190px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* dark overlay only when real image present */
.svc-media.has-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,20,60,0.45));
  pointer-events: none;
}
.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.svc-card:hover .svc-img { transform: scale(1.07); }

/* category pill */
.svc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  z-index: 2;
}

/* icon fallback */
.svc-icon-fallback {
  font-size: 52px;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* ── Body ── */
.svc-body {
  padding: 20px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.svc-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: 'Montserrat','Segoe UI',sans-serif;
}
.svc-desc {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.svc-sep {
  width: 100%;
  height: 1px;
  background: var(--gray-200);
  margin-bottom: 16px;
}

/* ── Actions ── */
.svc-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
.btn-svc-details {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-svc-details:hover { color: var(--primary-dark); text-decoration: underline; }
.btn-svc-details i { font-size: 12px; }

.btn-svc-enquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-svc-enquire:hover { background: var(--accent-dark); }
.btn-svc-enquire i { font-size: 11px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-media { height: 160px; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-media { height: 200px; }
}

/* ---- Image upload guide ----------------------------------------
   Upload to: public_html/assets/images/services/
   Recommended size: 600x400px (JPG/PNG/WEBP)
   Filenames:
     modular-ot.jpg | ahu.jpg | clean-room-doors.jpg
     fire-rated.jpg | lab-furniture.jpg | modular-clean-room.jpg
     laminar-air-flow.jpg | amc.jpg
----------------------------------------------------------------- */

/* ===== PRODUCT SUB-PAGES ===== */
.page-banner{background:linear-gradient(135deg,var(--primary-dark),var(--primary));color:white;padding:50px 28px;position:relative;overflow:hidden}
.page-banner::after{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E")}
.page-banner-inner{position:relative;z-index:2;max-width:1180px;margin:0 auto}
.page-banner h1{font-size:30px;font-weight:800;margin-bottom:10px}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:13px;flex-wrap:wrap}
.breadcrumb a{color:rgba(255,255,255,.65)}
.breadcrumb a:hover{color:white}
.breadcrumb .sep{color:rgba(255,255,255,.35)}

.prod-sub-tabs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:36px}
.prod-sub-tab{display:inline-flex;align-items:center;padding:9px 20px;border-radius:24px;font-size:13.5px;font-weight:700;background:white;color:var(--gray-700);border:1.5px solid var(--gray-200);text-decoration:none;transition:all var(--transition)}
.prod-sub-tab:hover{border-color:var(--primary);color:var(--primary)}
.prod-sub-tab.active{background:var(--primary);color:white;border-color:var(--primary)}

.prod-cards-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px}
.prod-card{background:white;border-radius:var(--radius-lg);border:1.5px solid var(--gray-200);overflow:hidden;display:flex;flex-direction:column;transition:all var(--transition);box-shadow:var(--shadow-sm)}
.prod-card:hover{border-color:var(--primary);box-shadow:0 12px 40px rgba(0,61,122,.12);transform:translateY(-4px)}
.prod-card-media{width:100%;height:200px;overflow:hidden;background:linear-gradient(135deg,var(--primary) 0%,var(--primary-light) 100%);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.prod-card-img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}
.prod-card:hover .prod-card-img{transform:scale(1.07)}
.prod-card-icon{font-size:56px;color:rgba(255,255,255,.28)}
.prod-card-body{padding:18px 18px 0;flex:1}
.prod-card-name{font-size:15px;font-weight:800;color:var(--gray-900);margin-bottom:12px;line-height:1.3}
.prod-specs{list-style:none;margin-bottom:12px}
.prod-specs li{font-size:12.5px;color:var(--text-light);padding:5px 0;border-bottom:1px dashed var(--gray-200);display:flex;gap:7px;line-height:1.5}
.prod-specs li:last-child{border-bottom:none}
.prod-specs li::before{content:'checkmark';content:'\2713';color:var(--primary);font-size:11px;flex-shrink:0;margin-top:2px}
.prod-card-footer{padding:14px 18px 18px;border-top:1px solid var(--gray-100);margin-top:12px}
.btn-get-quote{display:inline-flex;align-items:center;gap:7px;background:var(--primary);color:white;border:none;padding:9px 22px;border-radius:var(--radius);font-size:13px;font-weight:700;cursor:pointer;transition:all var(--transition);width:100%;justify-content:center}
.btn-get-quote:hover{background:var(--accent)}
.prod-note{display:flex;align-items:flex-start;gap:10px;background:rgba(0,61,122,.05);border:1px solid rgba(0,61,122,.15);border-left:4px solid var(--primary);border-radius:var(--radius);padding:14px 18px;margin-top:28px;font-size:13px;color:var(--gray-700);line-height:1.7}
.prod-note i{color:var(--primary);flex-shrink:0;margin-top:2px}

@media(max-width:768px){.prod-cards-grid{grid-template-columns:1fr 1fr}.prod-card-media{height:160px}}
@media(max-width:480px){.prod-cards-grid{grid-template-columns:1fr}.prod-sub-tabs{gap:8px}.prod-sub-tab{font-size:12px;padding:7px 14px}}

/* ===== ORBITAL DIAGRAM ===== */
.orbital-diagram{position:relative;width:320px;height:320px;flex-shrink:0}
.orbital-center{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:110px;height:110px;border-radius:50%;background:linear-gradient(135deg,#3b82f6,#1d4ed8);display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:10;box-shadow:0 0 0 16px rgba(59,130,246,.15),0 0 0 32px rgba(59,130,246,.07)}
.orbital-center span{color:white;font-size:13px;font-weight:800;line-height:1.3;text-align:center}
.orbital-ring{position:absolute;top:50%;left:50%;border-radius:50%;border:1.5px dashed rgba(255,255,255,.15);transform:translate(-50%,-50%)}
.orbital-ring-1{width:180px;height:180px}
.orbital-ring-2{width:300px;height:300px}
.orbital-node{position:absolute;display:flex;flex-direction:column;align-items:center;gap:5px;z-index:5}
.orbital-node-icon{width:44px;height:44px;border-radius:50%;background:rgba(59,130,246,.2);border:1.5px solid rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center;font-size:16px;color:#93c5fd}
.orbital-node-label{font-size:11px;color:rgba(255,255,255,.65);font-weight:600;white-space:nowrap;text-align:center}


@media(max-width:768px){
  .orbital-diagram{width:240px;height:240px}
  .orbital-ring-1{width:130px!important;height:130px!important}
  .orbital-ring-2{width:220px!important;height:220px!important}
  .orbital-center{width:80px!important;height:80px!important}
  .orbital-center span{font-size:10px!important}
  .orbital-node-icon{width:34px!important;height:34px!important;font-size:13px!important}
  #turnkey .container>div{grid-template-columns:1fr!important;gap:32px!important}
}
@media(max-width:580px){
}

/* ===== PAGE BANNER (if not already defined) ===== */
.page-banner-inner .breadcrumb span.sep{margin:0 2px}

/* ===================================================
   RESPONSIVE FIXES — v8 patch
   =================================================== */

/* ── Header: shrink on smaller screens ── */
@media(max-width:1100px){
  .main-nav>ul{gap:0}
  .main-nav>ul>li>a{padding:6px 9px;font-size:12px}
  .btn-quote{padding:8px 14px;font-size:12px}
}
@media(max-width:900px){
  .main-nav{display:none}
  .main-nav.open{display:flex;flex-direction:column;position:fixed;top:0;left:0;right:0;bottom:0;background:#fff;z-index:1500;padding:80px 24px 24px;overflow-y:auto}
  .main-nav.open>ul{flex-direction:column;gap:0}
  .main-nav.open>ul>li>a{display:block;padding:14px 0;border-bottom:1px solid var(--gray-200);font-size:15px}
  .main-nav.open .dropdown-menu{position:static;box-shadow:none;border:none;background:var(--off-white);border-radius:8px;margin:6px 0;display:block;padding:4px 0}
  .main-nav.open .dropdown-menu a{padding:9px 16px;font-size:14px}
  .hamburger{display:flex}
  .nav-close-btn{position:absolute;top:18px;right:18px;background:var(--gray-200);border:none;width:36px;height:36px;border-radius:50%;font-size:20px;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--gray-700)}
}

/* ── Hero responsive ── */
@media(max-width:900px){
  .hero-visual{display:none}
  .hero-content{max-width:100%}
  .hero-stats{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:580px){
  .hero-stats{grid-template-columns:repeat(2,1fr)}
  .hero h1{font-size:26px;letter-spacing:-.5px}
  .hero-btns{flex-direction:column}
  .btn-hero-primary,.btn-hero-secondary{text-align:center;justify-content:center}
}

/* ── Ticker ── */
@media(max-width:480px){.ind-item{padding:11px 18px;font-size:11px}}

/* ── About grid ── */
@media(max-width:900px){
  .about-grid{grid-template-columns:1fr;gap:32px}
  .about-visual{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:start}
  .about-main-card{grid-column:1/-1}
}
@media(max-width:580px){
  .about-visual{grid-template-columns:1fr}
  .about-main-card{grid-column:auto}
  .about-stats-grid{grid-template-columns:1fr 1fr}
}

/* ── Services grid responsive ── */
@media(max-width:1024px){.svc-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:768px){.svc-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.svc-grid{grid-template-columns:1fr}}

/* ── Turnkey section ── */
@media(max-width:900px){
  #turnkey .container>div{grid-template-columns:1fr!important;gap:40px!important}
  .orbital-diagram{width:280px;height:280px;margin:0 auto}
  .orbital-ring-1{width:140px!important;height:140px!important}
  .orbital-ring-2{width:256px!important;height:256px!important}
}

/* ── Why grid ── */
@media(max-width:768px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.why-grid{grid-template-columns:1fr}}


@media(max-width:900px){
}

/* ── Testimonials ── */
@media(max-width:768px){.testimonials-grid{grid-template-columns:1fr}}

/* ── Product cards ── */
@media(max-width:900px){.prod-cards-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.prod-cards-grid{grid-template-columns:1fr}}

/* ── CTA section ── */
@media(max-width:580px){
  .cta-btns{flex-direction:column;align-items:center}
  .btn-cta-white,.btn-cta-outline{width:100%;max-width:280px;justify-content:center}
}

/* ── Footer ── */
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;gap:28px}}
@media(max-width:580px){
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
}

/* ── Projects page ── */
@media(max-width:900px){
  .proj-card-grid{grid-template-columns:1fr!important}
}

/* ── Facility page ── */
@media(max-width:900px){
  .facility-intro-grid{grid-template-columns:1fr!important;gap:32px!important}
  .facility-strength-grid{grid-template-columns:1fr!important;gap:32px!important}
}

/* ── Page banner ── */
@media(max-width:580px){
  .page-banner{padding:36px 20px}
  .page-banner h1{font-size:22px}
}

/* ── Sub-tabs ── */
@media(max-width:580px){
  .prod-sub-tabs{gap:6px}
  .prod-sub-tab{font-size:12px;padding:7px 13px}
}

/* ── All Products filter ── */
@media(max-width:900px){.ap-filter-scroll{flex-wrap:nowrap;overflow-x:auto}}

/* ===================================================
   V9 PATCH — Header alignment + mobile fixes
   =================================================== */

/* ── Desktop header alignment fix ── */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }

/* ── Hide Get Quote on mobile ── */
@media(max-width:900px) {
  .hide-mobile { display: none !important; }
}

/* ── Hero banner image ── */
.hero { position: relative; }
.hero > div { position: relative; z-index: 1; }
.hero-content, .hero-visual { position: relative; z-index: 2; }

/* ── About section image ── */
.about-visual img { width:100%; height:100%; object-fit:cover; }
@media(max-width:900px) {
  .about-visual > div:first-child { height: 280px !important; }
}

/* ── Product images — webp support ── */
.svc-img, .prod-card-img { object-fit: cover; width:100%; height:100%; }

/* ── All Products filter scroll on mobile ── */
@media(max-width:768px) {
  .ap-filter-scroll { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ap-filter-scroll::-webkit-scrollbar { display: none; }
}

/* ── Projects page responsive ── */
@media(max-width:768px) {
  .proj-card { grid-template-columns: 1fr !important; }
}



/* ── Sticky header (desktop + mobile) ── */
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

/* ── Product card image — proper fit ── */
.prod-card-media {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prod-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.prod-card:hover .prod-card-img { transform: scale(1.05); }
.prod-card-icon {
  font-size: 52px;
  color: rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* ── Service card image — proper fit ── */
.svc-media { height: 190px; }
.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Carousel ── */
.carousel-nav { display: flex; gap: 8px; }
.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--primary);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.carousel-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

.work-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.work-carousel::-webkit-scrollbar { display: none; }
.work-carousel-item {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
}
.work-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.work-carousel-item:hover img { transform: scale(1.05); }

@media(max-width:580px) {
  .work-carousel-item { width: 240px; height: 170px; }
}

/* ── Header nav fix — desktop properly spaced ── */
.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}
.logo { flex-shrink: 0; margin-right: auto; }
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; }
.header-cta { flex-shrink: 0; margin-left: auto; }
.hamburger { flex-shrink: 0; margin-left: 12px; }

/* ── Mobile nav fixed ── */
@media(max-width:900px) {
  .main-nav.open {
    position: fixed !important;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    z-index: 1500;
    padding: 72px 24px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .main-nav.open > ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .main-nav.open > ul > li > a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--gray-200);
    font-weight: 600;
    color: var(--gray-700);
  }
  .main-nav.open .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    border-radius: 8px;
    margin: 6px 0 10px;
    padding: 6px 0;
    display: block !important;
    animation: none;
  }
  .main-nav.open .dropdown-menu a {
    padding: 9px 16px;
    font-size: 14px;
    border-bottom: none;
  }
  .nav-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
  }
}


@media(max-width:900px) {
}
@media(max-width:580px) {
  
}

/* ── About page — remove tiles ── */
.about-tiles { display: none; }

/* ── All Products filter scroll mobile ── */
@media(max-width:768px) {
  .ap-filter-scroll { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ap-filter-scroll::-webkit-scrollbar { display: none; }
  .ap-pill { flex-shrink: 0; }
}

/* ── General responsive improvements ── */
@media(max-width:480px) {
  .prod-cards-grid { grid-template-columns: 1fr; }
  .prod-card-media { height: 180px; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 24px; letter-spacing: -.3px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { text-align: center; justify-content: center; }
  .section-title { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:360px) {
  .container { padding: 0 14px; }
  .hero { padding: 40px 14px 0; }
}

/* ===================================================
   FINAL PATCH — CTA, header, product cards, mobile
   =================================================== */

/* ── Hide/show helpers ── */
.hide-on-mobile  { display: flex; }
.hide-on-desktop { display: none; }
@media(max-width:900px) {
  .hide-on-mobile  { display: none !important; }
  .hide-on-desktop { display: flex !important; }
}

/* ── Sticky header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 66px;
  gap: 12px;
}
.logo         { flex-shrink: 0; }
.main-nav     { flex: 1; display: flex; justify-content: center; }
.main-nav > ul { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.header-cta   { flex-shrink: 0; }
.hamburger    { flex-shrink: 0; }

/* ── Mobile nav overlay ── */
.nav-close-btn {
  display: none;            /* hidden on desktop */
}

@media(max-width:900px) {
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 1500;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 18px 20px 10px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray-700);
    cursor: pointer;
    line-height: 1;
    align-self: flex-end;
  }
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 40px;
  }
  .main-nav > ul > li > a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-200);
  }
  .main-nav > ul > li.active > a { color: var(--primary); }
  .main-nav .dropdown-menu {
    position: static !important;
    display: block !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--gray-50, #f9fafb);
    padding: 6px 0;
    margin: 0;
    animation: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .main-nav .dropdown-menu a {
    padding: 10px 36px;
    font-size: 14px;
    border-bottom: none;
    color: var(--gray-700);
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .hamburger span {
    display: block;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.25s;
  }
}
@media(min-width:901px) {
  .hamburger { display: none !important; }
  .nav-close-btn { display: none !important; }
}

/* ── Product card — premium look, no cropping ── */
.prod-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #e8ecf0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.28s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.prod-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(0,61,122,.12);
  transform: translateY(-4px);
}
.prod-card-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f0fe 0%, #c7d8f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.prod-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* show full product, no cropping */
  object-position: center;
  padding: 10px;             /* small breathing room */
  background: #f0f4fb;
  transition: transform 0.4s ease;
}
.prod-card:hover .prod-card-img { transform: scale(1.04); }
.prod-card-icon {
  font-size: 56px;
  color: var(--primary);
  opacity: 0.18;
}
.prod-card-body {
  padding: 18px 18px 4px;
  flex: 1;
}
.prod-card-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}
.prod-specs {
  list-style: none;
  margin: 0;
  padding: 0;
}
.prod-specs li {
  font-size: 12.5px;
  color: var(--text-light, #718096);
  padding: 5px 0;
  border-bottom: 1px dashed #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.prod-specs li:last-child { border-bottom: none; }
.prod-specs li::before {
  content: '\2713';
  color: var(--primary);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}
.prod-card-footer {
  padding: 14px 18px 18px;
}
.btn-get-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}
.btn-get-quote:hover { background: var(--accent); transform: translateY(-1px); }

/* ── Hero banner overlay — reduced opacity ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 18, 50, 0.55);   /* was 0.72 — now lighter */
  z-index: 0;
}

/* ── Service card image — no cropping ── */
.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}
.svc-card:hover .svc-img { transform: scale(1.06); }

/* ── Responsive — comprehensive ── */
@media(max-width:1100px) {
  .main-nav > ul > li > a { padding: 6px 8px; font-size: 12.5px; }
}
@media(max-width:768px) {
  .prod-cards-grid { grid-template-columns: 1fr 1fr; }
  .prod-card-media { height: 180px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:540px) {
  .prod-cards-grid { grid-template-columns: 1fr; }
  .prod-card-media { height: 220px; }
  .svc-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero h1 { font-size: 24px; }
  .hero p { font-size: 13.5px; }
  .section-title { font-size: 22px; }
  #turnkey .container > div { grid-template-columns: 1fr !important; gap: 36px !important; }
  .orbital-diagram { width: 260px; height: 260px; margin: 0 auto; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media(max-width:380px) {
  .container { padding: 0 14px; }
  .prod-cards-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 21px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}



/* ── Logo image ── */
.logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
.logo-img { height:48px; width:auto; object-fit:contain; display:block; }
@media(max-width:480px) { .logo-img { height:38px; } }

/* ── Responsive grid helpers ── */
.two-col-grid   { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.three-col-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.four-col-grid  { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.two-col-grid-sm{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }

@media(max-width:900px) {
  .two-col-grid   { grid-template-columns:1fr; gap:28px; }
  .four-col-grid  { grid-template-columns:1fr 1fr; gap:16px; }
}
@media(max-width:600px) {
  .three-col-grid { grid-template-columns:1fr; gap:14px; }
  .four-col-grid  { grid-template-columns:1fr 1fr; gap:12px; }
  .two-col-grid-sm{ grid-template-columns:1fr 1fr; }
}
@media(max-width:380px) {
  .four-col-grid  { grid-template-columns:1fr 1fr; }
}








.fstat-num { font-size:22px; font-weight:800; color:var(--primary); }
.fstat-lbl  { font-size:10px; color:var(--text-light); text-transform:uppercase; letter-spacing:.8px; margin-top:3px; }


@media(max-width:900px) {
  
  
  
  
  
  
}
@media(max-width:480px) {
  
  
  
  
}

/* ── Project cards ── */
.proj-card {
  background: white;
  border-radius: 20px;
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: all .25s;
}
.proj-card:hover { box-shadow:0 12px 40px rgba(0,61,122,.12); transform:translateY(-3px); }
.proj-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg,var(--primary-dark),var(--primary));
  display: flex; align-items:center; justify-content:center;
}
.proj-card-img img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.proj-img-count { position:absolute; bottom:12px; right:12px; background:rgba(0,0,0,.55); color:white; padding:3px 10px; border-radius:16px; font-size:12px; font-weight:600; }
.proj-img-placeholder { text-align:center; color:rgba(255,255,255,.4); padding:30px; }
.proj-img-placeholder i { font-size:40px; display:block; margin-bottom:10px; }
.proj-img-placeholder p { font-size:12px; }
.proj-type-badge { position:absolute; top:14px; left:14px; background:var(--accent); color:white; padding:4px 12px; border-radius:6px; font-size:11px; font-weight:700; z-index:2; }
.proj-card-body { padding:28px; }
.proj-location { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--text-light); font-weight:600; margin-bottom:10px; }
.proj-location i { color:var(--primary); }
.proj-title { font-size:clamp(17px,2.5vw,22px); font-weight:800; color:var(--gray-900); margin-bottom:6px; line-height:1.25; }
.proj-subtitle { font-size:13px; color:var(--accent); font-weight:700; margin-bottom:12px; }
.proj-desc { font-size:13.5px; color:var(--text-light); line-height:1.8; margin-bottom:16px; }
.proj-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:20px; }
.proj-tag { background:rgba(0,61,122,.07); color:var(--primary); padding:4px 12px; border-radius:20px; font-size:12px; font-weight:600; border:1px solid rgba(0,61,122,.15); }
.btn-proj-quote {
  display:inline-flex; align-items:center; gap:7px;
  background:var(--primary); color:white; border:none;
  padding:10px 22px; border-radius:8px; font-size:13px; font-weight:700; cursor:pointer;
  transition:background .2s;
}
.btn-proj-quote:hover { background:var(--accent); }
@media(max-width:600px) {
  .proj-card-img { height:200px; }
  .proj-card-body { padding:20px; }
}

/* ── Turnkey / Facility / Projects page responsive ── */
@media(max-width:900px) {
  .page-banner h1 { font-size:24px; }
  .page-banner { padding:36px 20px; }
}
@media(max-width:600px) {
  .page-banner h1 { font-size:20px; }
  .page-banner { padding:28px 16px; }
}

/* ── Hero text visibility fix ── */
.hero { position: relative; overflow: hidden; }
.hero .hero-content h1 { color: #fff !important; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.hero .hero-content p  { color: rgba(255,255,255,.92) !important; text-shadow: 0 1px 4px rgba(0,0,0,.2); }
.hero .hero-badge      { color: rgba(255,255,255,.9) !important; border-color: rgba(255,255,255,.3) !important; }
.hero .hero-stat .num  { color: var(--accent) !important; }
.hero .hero-stat .lbl  { color: rgba(255,255,255,.8) !important; text-transform: uppercase; font-size: 11px; letter-spacing: .8px; }
.hero .btn-hero-secondary { border-color: rgba(255,255,255,.6) !important; color: white !important; }
.hero .btn-hero-secondary:hover { background: white !important; color: var(--primary) !important; }
/* Hero card grid (right side) */
.hero-card { background: rgba(255,255,255,.12) !important; border: 1px solid rgba(255,255,255,.2) !important; backdrop-filter: blur(4px); }
.hero-card i, .hero-card .card-title { color: white !important; }

/* ===================================================
   PATCH 4 — Ticker in hero, header, dropdown, enquiry
   =================================================== */

/* ── Hero uses full viewport height, ticker always visible ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero .container { flex: 1; }
/* Ticker inside hero keeps dark bg but is always visible */
.hero .industries-ticker {
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,10,30,0.65);
  backdrop-filter: blur(4px);
}
.hero .ind-item { color: rgba(255,255,255,.65); border-right-color: rgba(255,255,255,.1); }
.hero .ind-item i { color: var(--accent); }
.hero .ind-item:hover { color: rgba(255,255,255,.95); }

@media(max-width:900px) {
  .hero { min-height: 100svh; }  /* small viewport height on mobile */
}
@media(max-width:580px) {
  .hero { min-height: auto; padding-bottom: 0; }
  .hero .container { padding-top: 60px; padding-bottom: 40px; }
}

/* ── Header one-line desktop fix ── */
.site-header .header-inner {
  height: 64px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.main-nav > ul > li > a {
  padding: 6px 10px;
  font-size: 13px;
  white-space: nowrap;
}
@media(min-width:901px) and (max-width:1200px) {
  .logo-img { height: 38px; }
  .main-nav > ul > li > a { padding: 6px 7px; font-size: 12px; }
  .btn-quote { padding: 8px 12px; font-size: 12px; }
}

/* ── About dropdown — larger tap target ── */
.dropdown { position: relative; }
.dropdown > a { cursor: pointer; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border: 1px solid var(--gray-200);
  padding: 6px 0;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  pointer-events: none;
}
/* Show on hover AND keep open when moving to submenu */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
/* Extra hover zone — bridge gap between link and menu */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;  /* invisible bridge */
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  color: var(--gray-700);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--primary); }

/* ── Work section hidden when empty ── */
.our-work-section.no-images { display: none; }

/* ── Remove GST from all pages (hide via CSS as backup) ── */
.footer-contact-item .fa-file-invoice { display: none; }


.orbital-node { position:absolute; display:flex; flex-direction:column; align-items:center; gap:3px; z-index:5; }
.orbital-node-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(59,130,246,.22);
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #93c5fd;
  position: relative;
}
.orbital-node-label {
  font-size: 10px; color: rgba(255,255,255,.75);
  font-weight: 600; white-space: nowrap;
  text-align: center; line-height: 1.3;
  max-width: 90px;
}

/* Make orbital bigger for 10 nodes */
.orbital-diagram { position:relative; width:380px; height:380px; flex-shrink:0; }
.orbital-ring-1  { width:200px; height:200px; }
.orbital-ring-2  { width:360px; height:360px; }
.orbital-center  {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:120px; height:120px; border-radius:50%;
  background:linear-gradient(135deg,#3b82f6,#1d4ed8);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  z-index:10;
  box-shadow:0 0 0 18px rgba(59,130,246,.12),0 0 0 36px rgba(59,130,246,.06);
}
.orbital-center span { color:white; font-size:13px; font-weight:800; line-height:1.3; text-align:center; }

@media(max-width:900px) {
  .orbital-diagram { width:280px; height:280px; }
  .orbital-ring-1  { width:140px; height:140px; }
  .orbital-ring-2  { width:260px; height:260px; }
  .orbital-center  { width:90px; height:90px; }
  .orbital-center span { font-size:10px; }
  .orbital-node-icon { width:38px; height:38px; font-size:14px; }
  .orbital-node-label { font-size:9px; max-width:70px; }
  }


/* ===================================================
   PATCH 8 — All fixes consolidated
   =================================================== */


@media(max-width:900px) {
  
  
  
  
  
  
  
  
  .fstat-num { font-size: 18px !important; }
}
@media(max-width:480px) {
  
  
  
}

/* 2. ORBITAL — numbers white, bigger diagram */
.orbital-diagram {
  width: 460px !important;
  height: 460px !important;
}
.orbital-ring-1 { width: 240px !important; height: 240px !important; }
.orbital-ring-2 { width: 440px !important; height: 440px !important; }
.orbital-center {
  width: 140px !important;
  height: 140px !important;
}
.orbital-center span { font-size: 15px !important; }
.orbital-node-icon {
  width: 56px !important;
  height: 56px !important;
  font-size: 20px !important;
}
.orbital-node-label { font-size: 11px !important; }

@media(max-width:1100px) {
  .orbital-diagram { width: 380px !important; height: 380px !important; }
  .orbital-ring-1 { width: 200px !important; height: 200px !important; }
  .orbital-ring-2 { width: 360px !important; height: 360px !important; }
}
@media(max-width:900px) {
  .orbital-diagram { width: 300px !important; height: 300px !important; }
  .orbital-ring-1 { width: 150px !important; height: 150px !important; }
  .orbital-ring-2 { width: 280px !important; height: 280px !important; }
  .orbital-center { width: 100px !important; height: 100px !important; }
  .orbital-center span { font-size: 11px !important; }
  .orbital-node-icon { width: 40px !important; height: 40px !important; font-size: 15px !important; }
    .orbital-node-label { font-size: 9px !important; }
}

/* 5. MOBILE — sticky bottom bar: Call Now + Get Quote */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: white;
  border-top: 1px solid #e2e6ea;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  padding: 10px 16px 12px;
  gap: 10px;
}
.mobile-sticky-bar .msb-call {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}
.mobile-sticky-bar .msb-quote {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
@media(max-width:900px) {
  .mobile-sticky-bar { display: flex !important; }
  /* Push page content up so sticky bar doesn't overlap */
  body { padding-bottom: 72px; }
  /* WhatsApp floater — icon only on mobile */
  .floating-cta { bottom: 84px !important; }
  .float-btn.phone { display: none !important; } /* hide the WhatsApp floater text btn */
  .float-btn.quote { display: none !important; } /* hide get quote floater — now in sticky bar */
  /* WhatsApp as icon-only floater */
  .wa-mobile-floater {
    display: flex !important;
  }
  /* Footer: hide WhatsApp button on mobile */
  .footer-wa-btn { display: none !important; }
}
@media(min-width:901px) {
  .wa-mobile-floater { display: none !important; }
}

/* WhatsApp mobile icon floater */
.wa-mobile-floater {
  display: none;
  position: fixed;
  bottom: 84px;
  right: 16px;
  z-index: 997;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  text-decoration: none;
}

/* 8. FOOTER logo */
.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  filter: none !important; /* show in color not white */
}

/* 9. DESKTOP DROPDOWN — fix gap issue */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute !important;
  top: calc(100% + 2px) !important;
  left: 0;
  min-width: 220px;
  z-index: 600;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  border: 1px solid #e2e6ea;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  pointer-events: none;
}
/* Keep visible when hovering over the dropdown trigger or the menu itself */
.dropdown:hover > .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
/* Invisible hover bridge — fills gap between trigger and menu */
.dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 14px;
  background: transparent;
  z-index: 599;
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  color: #495057;
  text-decoration: none;
  white-space: nowrap;
  transition: background .12s;
}
.dropdown-menu a:hover { background: #f5f7fb; color: var(--primary); }

/* 10. HEADER LOGO smaller */
.logo-img {
  height: 40px !important;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
@media(max-width:900px) {
  .logo-img { height: 34px !important; max-width: 130px; }
}

/* Desktop floater hidden on mobile */
@media(max-width:900px) {
  .desktop-only-floater { display: none !important; }
}

/* ===================================================
   DEFINITIVE FIXES — orbital, sticky bar, WA floater
   =================================================== */

/* ── ORBITAL: number shown ABOVE icon, pure white ── */
.orbital-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 5;
}
.orbital-node-num {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  display: block;
  width: auto;
  height: auto;
  background: none;
  border: none;
  position: static;
  padding: 0;
  margin: 0;
}
.orbital-node-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(59,130,246,.22);
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #93c5fd;
}
.orbital-node-label {
  font-size: 11px;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  max-width: 100px;
  line-height: 1.3;
}

/* ── MOBILE STICKY BAR ── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #dde3ea;
  box-shadow: 0 -3px 16px rgba(0,0,0,.13);
  padding: 10px 14px 14px;
  gap: 10px;
}
.mobile-sticky-bar .msb-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary, #003d7a);
  color: #fff;
  text-decoration: none;
  padding: 13px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}
.mobile-sticky-bar .msb-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #e8821a;
  color: #fff;
  border: none;
  padding: 13px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

/* ── WA ICON FLOATER (mobile only) ── */
.wa-mobile-floater {
  display: none;
  position: fixed;
  bottom: 86px;
  right: 16px;
  z-index: 9998;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  text-decoration: none;
}

/* ── MEDIA QUERIES ── */
@media (max-width: 900px) {
  /* Show sticky bar */
  .mobile-sticky-bar { display: flex !important; }
  /* Pad body so content isn't hidden under sticky bar */
  body { padding-bottom: 74px; }
  /* Show WA floater */
  .wa-mobile-floater { display: flex !important; }
  /* Hide desktop floaters */
  .desktop-only-floater { display: none !important; }
  /* Hide WA in footer on mobile */
  .footer-wa-btn { display: none !important; }
  /* Smaller orbital on mobile */
  .orbital-diagram { width: 300px !important; height: 300px !important; }
  .orbital-ring-1 { width: 150px !important; height: 150px !important; }
  .orbital-ring-2 { width: 280px !important; height: 280px !important; }
  .orbital-center { width: 100px !important; height: 100px !important; }
  .orbital-center span { font-size: 11px !important; }
  .orbital-node-icon { width: 38px !important; height: 38px !important; font-size: 14px !important; }
  .orbital-node-num { font-size: 10px !important; }
  .orbital-node-label { font-size: 9px !important; }
}
@media (min-width: 901px) {
  /* On desktop: show desktop floaters, hide mobile elements */
  .wa-mobile-floater { display: none !important; }
  .mobile-sticky-bar { display: none !important; }
}

/* ── Logo bigger ── */
.logo-img {
  height: 52px !important;
  max-width: 180px !important;
}
@media(max-width:900px) {
  .logo-img { height: 42px !important; max-width: 150px !important; }
}






@media(max-width:900px) {
  
  
  
  
}









/* Mobile override */
@media(max-width:900px) {
  
  
  
  
  
  
}
@media(max-width:480px) {
  
  
  
}



/* Left column: photo + name stacked tightly */
.founder-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* Right column */
.fstat-num { font-size: 22px; font-weight: 800; color: var(--primary); }
.fstat-lbl { font-size: 10px; color: #718096; text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; }

/* ── TABLET (≤900px): side by side row ── */
@media(max-width: 900px) {
}

/* ── PHONE (≤480px): stacked, centered ── */
@media(max-width: 480px) {
}


@media(max-width: 900px) {
  /* Remove section-tag top margin on mobile */
  .founder-content-col .section-tag { margin-top: 0 !important; }
}

/* =============================================
   FOUNDER SECTION — single authoritative block
   ============================================= */
.founder-section {
  background: #fff;
  padding: 70px 24px;
}
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT COL */
.founder-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-photo-wrap {
  width: 240px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #003d7a;
  box-shadow: 0 16px 48px rgba(0,61,122,.15);
}
.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-name-block {
  margin-top: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.founder-name    { font-size: 20px; font-weight: 800; color: #1a202c; }
.founder-title   { font-size: 13px; font-weight: 600; color: #003d7a; }
.founder-company { font-size: 12px; color: #718096; }

/* RIGHT COL */
.founder-content-col { }
.founder-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.founder-stat  { text-align: center; padding: 14px 18px; border: 1.5px solid #e2e6ea; border-radius: 12px; }
.fstat-num { font-size: 22px; font-weight: 800; color: #003d7a; }
.fstat-lbl { font-size: 10px; color: #718096; text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; }

/* MOBILE */
@media (max-width: 900px) {
  .founder-section { padding: 36px 20px; }
  .founder-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .founder-photo-col {
    flex-direction: column;
    align-items: center;
  }
  .founder-photo-wrap {
    width: 170px;
    height: 200px;
    border-radius: 16px;
  }
  .founder-name-block {
    margin-top: 12px;
    text-align: center;
    gap: 2px;
  }
  .founder-name  { font-size: 17px; }
  .founder-title { font-size: 12px; }
  .founder-company { font-size: 11px; }
  .founder-content-col { padding-top: 0; }
}

/* Founder mobile — center all content */
@media (max-width: 900px) {
  .founder-content-col { text-align: center; }
  .founder-content-col .section-tag { margin-left: auto; margin-right: auto; }
  .founder-stats { justify-content: center; }
  .founder-content-col .btn-about { margin: 0 auto; }
}
