/* ============================================
   Kailash Machinery & Mould - Main Stylesheet
   Recovered from kailashmachineryandchemicals.com
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --color-primary: #185FA5;
  --color-secondary: #c8801f;
  --color-text: #707070;
  --color-accent: #070C1E;
  --color-light-bg: #F4F4F4;
  --color-border: #EBEBEB;
  --color-dark: #070C1E;
  --color-orange: #EF9F27;
  --color-red: #FF0000;
  --color-white: #FFFFFF;
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Roboto Slab', serif;
  --container-max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 15px;
  color: var(--color-text);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  pointer-events: none;
}

.preloader .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* --- Top Bar --- */
.top-bar {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 25px;
  align-items: center;
}

.top-bar-left a {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.top-bar-left a:hover {
  color: var(--color-orange);
}

.top-bar-left a i {
  font-size: 14px;
}

.top-bar-right a {
  color: var(--color-white);
  background: var(--color-orange);
  padding: 6px 18px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.top-bar-right a:hover {
  background: var(--color-secondary);
}

/* --- Header / Navigation --- */
.header-main {
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-main.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 70px;
  width: auto;
}

.logo .iso-badge {
  font-size: 10px;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 25px 18px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--color-orange);
  transition: width 0.3s ease;
}

.nav-menu > li:hover > a,
.nav-menu > li.active > a {
  color: var(--color-orange);
}

.nav-menu > li:hover > a::after,
.nav-menu > li.active > a::after {
  width: 100%;
}

/* Dropdown */
.nav-menu li .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  border-top: 3px solid var(--color-orange);
}

.nav-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 12px 20px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown li a:hover {
  background: var(--color-light-bg);
  color: var(--color-orange);
  padding-left: 25px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-quote {
  background: var(--color-orange);
  color: var(--color-white) !important;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background: var(--color-primary);
}

.search-toggle {
  cursor: pointer;
  font-size: 18px;
  color: var(--color-primary);
  padding: 10px;
  transition: color 0.3s ease;
}

.search-toggle:hover {
  color: var(--color-orange);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--color-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Slider --- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

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

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 12, 30, 0.55);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-left: 80px;
  color: var(--color-white);
}

.slide-content .slide-subtitle {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-orange);
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.slide-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

.slide-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

.slide-content .btn-slider {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 15px 35px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.9s;
}

.slide-content .btn-slider:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: var(--color-orange);
  border-color: var(--color-white);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  border: none;
}

.slider-arrow:hover {
  background: var(--color-orange);
}

/* --- About / Company Section --- */
.about-section {
  background-image: url('../assets/images/bg-01.jpg');
  background-color: var(--color-light-bg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.about-section .container {
  max-width: var(--container-max-width);
}

.about-row {
  display: flex;
  flex-wrap: wrap;
}

.about-left {
  flex: 0 0 50%;
  max-width: 50%;
  border-right: 1px solid #E0E0E0;
  padding: 120px 45px 120px 15px;
}

.about-right {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 120px 15px 120px 45px;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-red);
  letter-spacing: 1px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 50px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--color-red);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
  line-height: 1.3;
}

.section-divider {
  border: none;
  border-bottom: 1px solid #E0E0E0;
  margin: 30px 0;
}

.about-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 35px;
}

.about-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-features {
  padding: 5px 15px 0 0;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 20px;
}

.about-features li i {
  color: #D34603;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ISO Box */
.iso-box {
  background: var(--color-white);
  margin-top: 50px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: background 0.3s;
}

.iso-box-left {
  flex: 0 0 44%;
  max-width: 44%;
}

.iso-box-right {
  flex: 0 0 56%;
  max-width: 56%;
  border-left: 1px solid #E0E0E0;
  padding-left: 25px;
  margin-left: 5px;
}

.iso-box .icon-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.iso-box .icon-box i {
  font-size: 30px;
  color: var(--color-primary);
}

.iso-box .icon-box-title {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing: -0.8px;
  color: var(--color-primary);
  font-weight: 700;
}

/* About Right - Image + Content */
.about-image-wrapper {
  margin-bottom: 0;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
}

/* --- Counters / Statistics Section --- */
.counters-section {
  padding: 120px 0 90px;
  background: var(--color-white);
}

.counters-row {
  display: flex;
  flex-wrap: wrap;
}

.counter-item {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
  text-align: center;
}

.counter-item .counter-icon {
  font-size: 60px;
  color: var(--color-orange);
  margin-bottom: 20px;
  line-height: 1;
}

.counter-item .counter-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.counter-item .counter-suffix {
  font-size: 28px;
  color: var(--color-orange);
}

.counter-item .counter-label {
  font-size: 16px;
  color: var(--color-text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Products Section --- */
.products-section {
  padding: 100px 0 60px;
  background: var(--color-light-bg);
}

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

.products-header .section-tag {
  padding-left: 0;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.products-header .section-tag::before {
  display: none;
}

.products-header .section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-accent);
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 15px;
  margin-bottom: 60px;
  text-align: center;
}

/* Card wrapper = image + triangle */
.product-card-inner {
  position: relative;
  overflow: visible;
  border-radius: 0;
  background: #e9ecef;
}

/* The image area */
.product-card-inner img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s ease;
  display: block;
}

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

/* Decorative dots top-right */
/* .product-card-inner::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 80px;
  height: 60px;
  background-image: radial-gradient(circle, rgba(39,67,88,0.2) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  z-index: 1;
} */

/* Decorative diagonal lines top-left */
/* .product-card-inner::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  z-index: 1;
  box-shadow: 0 8px 0 var(--color-orange);
  transform: rotate(-30deg);
  transform-origin: left center;
} */

/* V-shaped dark-blue triangle overlay at bottom */
.product-card-overlay {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 0;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
}

/* Triangle shape using clip-path */
/* .product-card-overlay::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: var(--color-primary);
  clip-path: polygon(0 100%, 50% 15%, 100% 100%);
} */

/* Icon circle (rendered by FA icon in HTML) */
.product-card-overlay .product-icon {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  font-size: 30px;
  margin-bottom: 10px;
}

/* Product title below card */
.product-card-overlay h3 {
  display: none;
}

.product-card .product-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 20px 0 5px;
  position: relative;
}

/* Faint big number behind title */
.product-card .product-num {
  font-size: 70px;
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  font-family: var(--font-secondary);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.product-card .btn-readmore {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border-radius: 2px;
}

.product-card .btn-readmore i {
  margin-right: 6px;
}

.product-card .btn-readmore:hover {
  background: var(--color-primary);
}

/* --- About / Innovation Section --- */
.innovation-section {
  border-top: 1px solid var(--color-border);
}

.innovation-row {
  display: flex;
  flex-wrap: wrap;
}

.innovation-image {
  flex: 0 0 50%;
  max-width: 50%;
  background-image: url('../assets/images/about-bg.webp');
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 350px;
}

.innovation-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 120px 15px 0 60px;
}

.innovation-content .section-tag {
  color: var(--color-red);
}

.innovation-content .section-tag::before {
  background: var(--color-red);
}

.progress-wrapper {
  margin: 30px 0;
}

.progress-item {
  margin-bottom: 25px;
}

.progress-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-label .progress-pct {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}

.progress-bar-outer {
  width: 100%;
  height: 12px;
  background: #e8e8e8;
  border-radius: 0;
  overflow: hidden;
}

.progress-bar-inner {
  height: 100%;
  background: var(--color-primary);
  border-radius: 0;
  width: 0;
  transition: width 1.5s ease;
  position: relative;
}

/* Quote Box */
.quote-box {
  background-image: url('../assets/images/bg-content.png');
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 70px;
  padding-left: 30px;
}

.quote-box p {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.6;
}

/* --- CTA / Contact Us Section --- */
.cta-section {
  padding: 80px 0;
}

.cta-banner {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  overflow: hidden;
  position: relative;
}

/* Left side: CONTACT US */
.cta-left {
  flex: 0 0 50%;
  max-width: 50%;
  background-image: url('../assets/images/bg-left.webp');
  background-size: cover;
  background-position: center;
  background-color: #eef1f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  position: relative;
}

.cta-left h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-secondary);
  margin: 0;
}

/* Center circle phone icon */
.cta-phone-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  z-index: 5;
}

.cta-phone-circle i {
  font-size: 28px;
  color: var(--color-primary);
}

/* Right side: dark blue with content */
.cta-right {
  flex: 0 0 50%;
  max-width: 50%;
  background-image: url('../assets/images/k-003.jpg');
  background-size: cover;
  background-position: center;
  padding: 50px 50px 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.cta-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(39,67,88,0.88);
}

.cta-right-inner {
  position: relative;
  z-index: 2;
}

.cta-right .cta-contact-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.cta-right .cta-contact-icons span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-white);
  font-size: 18px;
}

.cta-right h3 {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}

.cta-right .cta-hours {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cta-right .cta-phone {
  color: var(--color-white);
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-secondary);
}

/* Hide old CTA elements */
.cta-row, .cta-image, .cta-content, .cta-content-inner { display: none; }

/* --- Testimonials Section --- */
.testimonials-section {
  position: relative;
  padding: 100px 0 80px;
  background: var(--color-light-bg);
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/images/bg-left.png');
  background-position: 60px 0;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.testimonials-header {
  text-align: left;
  margin-bottom: 50px;
  padding: 0 15px;
  position: relative;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 15px;
}

.testimonial-card-inner {
  background: var(--color-white);
  padding: 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* Card top section with quotes + stars + content */
.testimonial-card-body {
  padding: 35px 30px 30px;
  position: relative;
}

/* Large double-quote icon top-left */
.testimonial-card-body::before {
  content: '\275D\275D';
  font-size: 60px;
  color: #d0d4d8;
  font-family: Georgia, serif;
  position: absolute;
  top: 15px;
  left: 25px;
  line-height: 1;
  letter-spacing: -8px;
}

/* Old pseudo (remove) */
.testimonial-card-inner::before {
  display: none;
}

.testimonial-stars {
  text-align: right;
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
  margin-top: 25px;
}

.testimonial-card .review-text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 0;
}

/* Diagonal footer strip */
.testimonial-card-footer {
  background: var(--color-primary);
  padding: 22px 30px 20px;
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  margin-top: 0;
}

.testimonial-card-footer .reviewer-name {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-top: 10px;
}

.testimonial-card-footer .reviewer-role {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 3px;
}

/* Hide old reviewer element */
.testimonial-card .reviewer {
  display: none;
}

/* --- FAQ / Why Us Section --- */
.faq-section {
  background-image: url('../assets/images/bg-05.jpg');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 0;
  background-color: var(--color-light-bg);
}

.faq-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.faq-content {
  flex: 0 0 55%;
  max-width: 55%;
  padding: 0 15px 100px;
}

.faq-image {
  flex: 0 0 45%;
  max-width: 45%;
  background-image: url('../assets/images/machinery-bg.jpg');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 450px;
  align-self: flex-end;
}

.faq-content .section-tag {
  color: var(--color-red);
}

.faq-content .section-title {
  color: var(--color-accent);
  font-size: 40px;
  font-weight: 800;
}

/* Accordion items */
.faq-item {
  background: var(--color-white);
  margin-bottom: 15px;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  border: none;
}

.faq-question {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  transition: color 0.3s ease;
  gap: 15px;
}

.faq-question:hover {
  color: var(--color-primary);
}

/* Toggle icon square */
.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  border-radius: 2px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: var(--color-primary);
}

/* Hide old chevron icon */
.faq-question > i {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  color: var(--color-text);
  padding: 0 20px 20px 70px;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

/* --- Footer --- */
.site-footer {
  background-image: url('../assets/images/bg-footer.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding: 0;
  position: relative;
}

/* Dark overlay to match new navy tone */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 61, 107, 0.92);
  z-index: 0;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

/* Logo Banner at Top */
.footer-logo-banner {
  background: #f5f5f5;
  padding: 40px 50px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

/* Dark left accent bar on logo banner */
.footer-logo-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #1a1a2e;
}

.footer-logo-banner img {
  max-height: 50px;
  width: auto;
}

.footer-top {
  padding: 60px 0 50px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
}

.footer-col {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.footer-col:first-child {
  flex: 0 0 25%;
  max-width: 25%;
}

.footer-col h2 {
  color: var(--color-white);
  font-size: 22px;
  margin-bottom: 28px;
  font-weight: 700;
}

/* Two-tone heading: first word white, second word orange */
.footer-col h2 span {
  color: var(--color-orange);
}

.footer-about {
  flex: 0 0 25%;
  max-width: 25%;
}

.footer-about p {
  color: #b9b9b9;
  font-size: 15px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B98F0D;
  color: var(--color-white);
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-white);
  color: #B98F0D;
  transform: translateY(-3px);
}

/* Footer Contact */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  color: #b9b9b9;
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact li i {
  color: #b9b9b9;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: #b9b9b9;
}

.footer-contact li a:hover {
  color: var(--color-orange);
}

/* Footer Links */
.footer-links li {
  padding: 7px 0;
}

.footer-links li a {
  color: #b9b9b9;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 10px;
  color: rgba(185, 185, 185, 0.6);
  font-size: 12px;
}

.footer-links li a:hover {
  color: var(--color-orange);
  padding-left: 5px;
}

/* Footer Products */
.footer-products-col {
  flex: 0 0 25%;
  max-width: 25%;
}

.footer-products-col h2 {
  color: var(--color-white);
}

.footer-products li {
  padding: 7px 0;
}

.footer-products li a {
  color: #b9b9b9;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-products li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 10px;
  color: rgba(185, 185, 185, 0.6);
  font-size: 12px;
}

.footer-products li a:hover {
  color: var(--color-orange);
  padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin: 0;
}

.footer-bottom a {
  color: var(--color-orange);
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* --- Scroll To Top --- */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-orange);
}

/* --- Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ===================================
   INNER PAGE STYLES
   =================================== */

/* --- Page Hero Banner --- */
.page-hero {
  background-image: url('../assets/images/slider-bg-1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0 60px;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39,67,88,0.85) 0%, rgba(7,12,30,0.75) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb a {
  color: var(--color-white);
  font-weight: 600;
}

.page-hero .breadcrumb span {
  color: var(--color-orange);
}

.page-hero h1 {
  color: var(--color-white);
  font-size: 48px;
  font-weight: 800;
  margin: 0;
  font-family: var(--font-secondary);
}

.page-hero p.hero-tagline {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-top: 10px;
}

/* --- Inner Page Content Sections --- */
.inner-section {
  padding: 80px 0;
}

.inner-section.bg-light {
  background: #f5f7fa;
}

/* --- About Page --- */
.about-page-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.about-page-img {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
}

.about-page-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.about-page-text {
  flex: 0 0 55%;
  max-width: 55%;
  padding-left: 60px;
}

.about-page-text .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.about-page-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about-page-text p {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.about-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 500;
}

.about-check-list li i {
  color: var(--color-orange);
  font-size: 18px;
}

/* Founder Card */
.founder-card {
  display: flex;
  align-items: center;
  background: #f5f7fa;
  border-radius: 8px;
  padding: 25px 30px;
  margin-top: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.founder-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.founder-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
}

.founder-info .founder-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
}

.founder-info .founder-title {
  font-size: 13px;
  color: var(--color-text);
}

.founder-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  border-left: 2px solid #ddd;
}

.founder-badge i {
  font-size: 28px;
  color: var(--color-primary);
}

.founder-badge span {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  line-height: 1.3;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
}

.benefits-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 35px;
  font-family: var(--font-secondary);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 12px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  border-bottom: 1px solid #eee;
}

.benefits-list li strong {
  color: var(--color-accent);
}

/* Differentiators Grid */
.diff-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.diff-card {
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
  background: var(--color-white);
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.diff-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.diff-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
}




/* --- Contact Page --- */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.contact-form-col {
  flex: 0 0 55%;
  max-width: 55%;
  padding-right: 50px;
}

.contact-info-col {
  flex: 0 0 45%;
  max-width: 45%;
}

.contact-info-col .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-info-col h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.contact-info-list li .contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-info-list li .contact-detail h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 3px;
}

.contact-info-list li .contact-detail p,
.contact-info-list li .contact-detail a {
  font-size: 15px;
  color: var(--color-text);
}

.contact-info-list li .contact-detail a:hover {
  color: var(--color-orange);
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font-primary);
  color: var(--color-accent);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.btn-submit:hover {
  background: var(--color-orange);
}

/* Happy Clients */
.happy-clients {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding: 20px 25px;
  background: #f5f7fa;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 8px 8px 0;
}

.happy-clients .client-avatars {
  display: flex;
}

.happy-clients .client-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  margin-left: -10px;
  object-fit: cover;
}

.happy-clients .client-avatars img:first-child {
  margin-left: 0;
}

.happy-clients span {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
}

/* Map */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* --- Product Pages --- */
.product-detail-section {
  padding: 80px 0;
}

.product-images-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.product-image-card {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  text-align: center;
}

.product-image-card img {
  /* width: 100%; */
  height: 280px;
  object-fit: contain;
  /* border-radius: 50%; */
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.product-image-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-image-card h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
}

.product-description {
  max-width: 900px;
  margin: 0 auto;
}

.product-description h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent);
  margin: 40px 0 15px;
  font-family: var(--font-secondary);
}

.product-description p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 15px;
}

/* Spec Table */
.spec-table-wrap {
  margin: 40px 0;
}

.spec-table-wrap h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  border-radius: 8px;
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 15px;
}

.spec-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
}

.spec-table td {
  border-bottom: 1px solid #eee;
  color: var(--color-text);
}

.spec-table tr:nth-child(even) td {
  background: #f9fafb;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

/* --- Responsive Styles --- */

/* Tablet */
@media (max-width: 1024px) {
  .container {
    max-width: 1024px;
  }

  h1 { font-size: 38px; }
  h2 { font-size: 30px; }

  .about-left {
    flex: 0 0 100%;
    max-width: 100%;
    border-right: none;
    padding: 80px 15px 0;
  }

  .about-right {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px 80px;
  }

  .counters-section {
    padding: 80px 0 50px;
  }

  .counter-item {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }

  .products-section {
    padding: 80px 0 50px;
  }

  .products-header {
    margin-bottom: 30px;
  }

  .product-card {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .innovation-image {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 300px;
  }

  .innovation-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 80px 15px 0;
  }

  .innovation-content .quote-box {
    margin-top: 50px;
  }

  .cta-content {
    padding: 50px 15px;
  }

  .cta-content .icon-box-item .icon-wrap i {
    margin-right: 50px;
  }

  .testimonials-section {
    padding: 80px 0 50px;
  }

  .testimonials-section::before {
    background-position: top right;
    opacity: 0.39;
  }

  .testimonials-header {
    margin-bottom: 30px;
  }

  .testimonial-card {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .faq-section {
    padding: 170px 0 0;
  }

  .faq-content {
    padding: 0 15px 80px;
  }

  .faq-image {
    min-height: 250px;
  }

  .hero-slider {
    height: 550px;
  }

  .slide-content {
    padding-left: 40px;
  }

  .slide-content h1 {
    font-size: 40px;
  }

  /* --- Inner Page Responsive (Tablet) --- */
  .page-hero {
    padding: 80px 0 50px;
    min-height: 220px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .inner-section {
    padding: 60px 0;
  }

  /* About Page */
  .about-page-img {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .about-page-text {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .about-page-text h2 {
    font-size: 30px;
  }

  .benefits-section h2 {
    font-size: 28px;
  }

  .section-title-center h2 {
    font-size: 30px;
  }


  /* Contact */
  .contact-form-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
  }

  .contact-info-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-info-col h2 {
    font-size: 34px;
  }

  /* Product Pages */
  .product-image-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .product-image-card img {
    height: 220px;
  }

  .product-description h2 {
    font-size: 24px;
  }

  .spec-table-wrap h2 {
    font-size: 22px;
  }

  .diff-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }

  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  /* Top bar */
  .top-bar-left {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  /* Navigation */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 30px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-menu > li > a {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
  }

  .nav-menu > li > a::after {
    display: none;
  }

  .nav-menu li .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    display: none;
    padding-left: 15px;
  }

  .nav-menu li.dropdown-open .dropdown {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Hero */
  .hero-slider {
    height: 450px;
  }

  .slide-content {
    padding: 0 20px;
    max-width: 100%;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .slide-content .btn-slider {
    padding: 12px 25px;
    font-size: 13px;
  }

  /* About */
  .about-left,
  .about-right {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 40px 15px;
    border-right: none;
  }

  .iso-box {
    flex-direction: column;
    gap: 15px;
  }

  .iso-box-left,
  .iso-box-right {
    flex: 0 0 100%;
    max-width: 100%;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  /* Counters */
  .counter-item {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  /* Products */
  .product-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .product-card .btn-readmore {
    margin-top: -25px;
    margin-bottom: 20px;
  }

  /* Innovation */
  .innovation-content {
    padding: 40px 15px 0;
  }

  .innovation-content .quote-box {
    padding: 0 15px;
  }

  .innovation-image {
    background-position: center right;
  }

  .cta-content .icon-box-item {
    gap: 20px;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .testimonials-track {
    flex-wrap: wrap;
  }

  /* FAQ */
  .faq-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .faq-image {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 250px;
  }

  /* Footer */
  .footer-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .site-footer {
    padding-top: 100px;
  }

  /* CTA */
  .cta-image {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    min-height: 250px;
  }

  .cta-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 40px 20px;
  }

  /* --- Inner Page Responsive (Mobile) --- */
  .page-hero {
    padding: 60px 0 40px;
    min-height: 180px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero .breadcrumb {
    font-size: 13px;
  }

  .page-hero p.hero-tagline {
    font-size: 15px;
  }

  .inner-section {
    padding: 40px 0;
  }

  /* About Page */
  .about-page-img {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .about-page-text {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .about-page-text h2 {
    font-size: 24px;
  }

  .about-page-text p {
    font-size: 15px;
  }

  .about-check-list li {
    font-size: 14px;
  }

  .founder-card {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .founder-badge {
    padding-left: 0;
    border-left: none;
    padding-top: 15px;
    border-top: 2px solid #ddd;
  }

  .benefits-section {
    padding: 40px 0;
  }

  .benefits-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .benefits-list li {
    font-size: 14px;
    padding: 10px 0;
  }

  .section-title-center {
    margin-bottom: 30px;
  }

  .section-title-center h2 {
    font-size: 24px;
  }

  .diff-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 25px 20px;
  }

  .diff-card h3 {
    font-size: 18px;
  }

  .diff-card p {
    font-size: 14px;
  }


  /* Contact */
  .contact-form-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact-info-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-info-col h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-info-list li .contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 16px;
  }

  .contact-info-list li .contact-detail h4 {
    font-size: 14px;
  }

  .contact-info-list li .contact-detail p,
  .contact-info-list li .contact-detail a {
    font-size: 14px;
  }

  .map-section iframe {
    height: 280px;
  }

  .happy-clients {
    padding: 15px 18px;
  }

  .happy-clients span {
    font-size: 14px;
  }

  .btn-submit {
    width: 100%;
    padding: 14px 30px;
  }

  /* Product Pages */
  .product-detail-section {
    padding: 40px 0;
  }

  .product-images-grid {
    gap: 20px;
    margin-bottom: 40px;
  }

  .product-image-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-image-card img {
    height: 200px;
    width: 200px;
    margin: 0 auto;
    display: block;
  }

  .product-image-card h3 {
    font-size: 18px;
    margin-top: 15px;
  }

  .product-description h2 {
    font-size: 22px;
    margin: 30px 0 12px;
  }

  .product-description p {
    font-size: 14px;
  }

  .spec-table-wrap {
    margin: 25px 0;
    overflow-x: auto;
  }

  .spec-table-wrap h2 {
    font-size: 20px;
  }

  .spec-table th,
  .spec-table td {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 24px;
  }

  .hero-slider {
    height: 400px;
  }

  .counter-item .counter-number {
    font-size: 36px;
  }

  /* --- Inner Page Responsive (Small Mobile) --- */
  .page-hero {
    padding: 50px 0 30px;
    min-height: 150px;
  }

  .page-hero h1 {
    font-size: 24px;
  }

  .page-hero p.hero-tagline {
    font-size: 14px;
  }

  .inner-section {
    padding: 30px 0;
  }

  .about-page-text h2 {
    font-size: 22px;
  }

  .section-title-center h2 {
    font-size: 22px;
  }

  .benefits-section h2 {
    font-size: 22px;
  }

  .contact-info-col h2 {
    font-size: 24px;
  }


  .product-image-card img {
    height: 180px;
    width: 180px;
  }

  .map-section iframe {
    height: 220px;
  }
}

/* --- Search Overlay --- */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7,12,30,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-overlay .search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--color-white);
  font-size: 30px;
  cursor: pointer;
}

.search-overlay form {
  width: 60%;
  max-width: 600px;
}

.search-overlay input {
  width: 100%;
  padding: 15px 25px;
  font-size: 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  color: var(--color-white);
  font-family: var(--font-primary);
  outline: none;
}

.search-overlay input::placeholder {
  color: rgba(255,255,255,0.5);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}
