/* 
  Nova Twine & Nova Net - Solid Brand Theme Stylesheet
  Brand Colors: Logo Crimson Red (#ba2a20), Deep Charcoal (#111827), Slate Gray (#f8fafc), Pure White (#ffffff)
  No Gradients - Flat, Modern, Enterprise UI/UX
*/

:root {
  --primary-color: #ba2a20;
  --primary-hover: #961c14;
  --primary-light: #fde8e7;
  --dark-navy: #111827;
  --dark-slate: #1f2937;
  --text-muted: #6b7280;
  --light-bg: #f8fafc;
  --light-card: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 4px 12px rgba(17, 24, 39, 0.05);
  --shadow-md: 0 8px 24px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 16px 36px rgba(17, 24, 39, 0.12);
  --transition: all 0.28s ease-in-out;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: #374151;
  background-color: #ffffff;
  line-height: 1.65;
  font-size: 1rem;
}

/* Consistent Typography Standards */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-navy);
  letter-spacing: -0.02em;
}

h1, .display-4 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.18;
}

h2, .display-5, .display-6 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.25;
}

h3, .h3 {
  font-size: 1.4rem;
  line-height: 1.3;
}

p, .lead-text {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--dark-navy);
  color: #9ca3af;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
  color: #d1d5db;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Ultra-Professional Sticky Header Navigation Bar */
.navbar-custom {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  padding: 0.85rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.navbar-custom.is-sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1050 !important;
  background-color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
  animation: navbarSlideDown 0.35s ease-out;
  padding: 0.65rem 0 !important;
}

@keyframes navbarSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Premium AOS Scroll Entrance Animation Enhancements */
[data-aos] {
  transition-property: opacity, transform !important;
  will-change: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1 !important;
}

/* Card & Section Micro-Animations */
.product-card,
.stat-card-item,
.about-vision-card,
.mission-vision-card,
.export-map-container {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.product-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(186, 42, 32, 0.15) !important;
}

.stat-card-item:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.brand-logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar-brand:hover .brand-logo-img {
  transform: scale(1.03);
}

/* Animated Header Nav Links */
.navbar-custom .nav-link {
  font-weight: 600;
  color: var(--dark-navy);
  padding: 0.5rem 1.1rem !important;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 75%;
}

/* Mobile Collapse Dropdown Menu Styling */
@media (max-width: 991.98px) {
  .navbar-custom .navbar-collapse {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    margin-top: 0.8rem;
    padding: 1.2rem 1rem;
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow-md);
  }

  .navbar-custom .nav-link {
    padding: 0.7rem 0.5rem !important;
    border-bottom: 1px solid #f1f5f9;
  }

  .navbar-custom .nav-link::after {
    display: none;
  }
}

/* Solid Brand Buttons & WhatsApp Button */
.btn-primary-custom {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 12px rgba(186, 42, 32, 0.25);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(186, 42, 32, 0.35);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.88rem;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-dark-custom {
  background-color: var(--dark-navy);
  color: #ffffff;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.15);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.btn-dark-custom:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.25);
}

.btn-outline-custom {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  background: transparent;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(186, 42, 32, 0.25);
}

/* Full Screen Width & Height Responsive Hero Slider */
.hero-slider-section {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  background: #000000;
}

.hero-slider-item {
  width: 100%;
  height: calc(100vh - 110px);
  min-height: 480px;
  max-height: 820px;
  position: relative;
}

.hero-slider-item picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Premium Page Banner Section with Solid Dark Overlay & Typography */
.page-banner-section {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  background-color: var(--dark-navy);
  border-bottom: 1px solid var(--border-color);
}

.page-banner-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.65) contrast(1.1);
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 39, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.page-banner-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-banner-subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 500;
  max-width: 680px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Premium Corporate Brand Architecture Styling for Company Page (No Gradients) */
.brand-architecture-section {
  background-color: #ffffff;
  position: relative;
}

.parent-company-hero {
  background-color: var(--dark-navy);
  border-top: 5px solid var(--primary-color);
  border-radius: 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.parent-logo-box {
  background: #ffffff;
  padding: 14px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.parent-company-badge-gold {
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(186, 42, 32, 0.35);
}

.brand-tree-connector {
  position: relative;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-tree-line {
  width: 3px;
  height: 100%;
  background-color: var(--primary-color);
}

.brand-tree-node {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(186, 42, 32, 0.6);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(186, 42, 32, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(186, 42, 32, 0);
  }
}

.sub-brand-premium-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sub-brand-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sub-brand-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
  border-color: var(--primary-color);
}

.sub-brand-premium-card:hover::before {
  opacity: 1;
}

.brand-logo-container {
  background: #f8fafc;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Carousel Control Styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--dark-navy);
  background-size: 45%;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--primary-color);
  transform: scale(1.08);
}

.carousel-indicators [data-bs-target] {
  background-color: #ffffff;
  height: 4px;
  width: 28px;
  border-radius: 3px;
  opacity: 0.5;
  transition: var(--transition);
}

.carousel-indicators .active {
  background-color: var(--primary-color);
  opacity: 1;
  width: 42px;
}

/* About Us Section 1 - High End Animated Showcase */
.about-hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  transition: var(--transition);
}

.about-hero-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.15);
  border-color: var(--primary-color);
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-hero-image-wrapper:hover .about-hero-img {
  transform: scale(1.04);
}

.floating-badge-experience {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(186, 42, 32, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: floatBounce 3s ease-in-out infinite;
}

.floating-badge-certified {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--dark-navy);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.about-metric-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.about-metric-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about-metric-card .metric-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

/* Side-by-Side Mission & Vision Cards */
.mission-vision-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.mission-vision-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

/* WE ARE EXPORTING TO - Global Network Section */
.export-map-section {
  background-color: #ffffff;
  padding: 70px 0;
  position: relative;
}

.export-map-container {
  background-color: var(--dark-navy);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.country-export-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition);
  height: 100%;
}

.country-export-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.country-flag-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.export-badge-tag {
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Feature Cards */
.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Product Cards */
.product-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.product-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: var(--light-bg);
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-tag.dark {
  background-color: var(--dark-navy);
}

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 1.2rem 0;
  background-color: var(--light-bg);
  padding: 12px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.product-spec-item {
  display: flex;
  flex-direction: column;
}

.product-spec-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-spec-val {
  font-weight: 700;
  color: var(--dark-navy);
}

/* ==========================================================================
   INTERACTIVE E-COMMERCE PRODUCT GALLERY UI & LIGHTBOX VIEWER
   ========================================================================== */

.main-product-img-box {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.main-product-img-box:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.main-product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-product-img-box:hover img {
  transform: scale(1.04);
}

.zoom-overlay-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(17, 24, 39, 0.85);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.main-product-img-box:hover .zoom-overlay-badge {
  background: var(--primary-color);
  transform: scale(1.05);
}

/* 4-Thumbnail Selector Card Row */
.product-thumb-card {
  height: 85px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  background: #ffffff;
  cursor: pointer;
  opacity: 0.65;
  transition: var(--transition);
  position: relative;
}

.product-thumb-card:hover {
  opacity: 1;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.product-thumb-card.active {
  opacity: 1;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(186, 42, 32, 0.3);
}

.product-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 4-Photo Product Gallery Section Styling */
.product-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  transition: var(--transition);
  height: 220px;
  cursor: pointer;
}

.product-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.product-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-gallery-item:hover .product-gallery-img {
  transform: scale(1.06);
}

.gallery-caption-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(17, 24, 39, 0.85);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Brochure Technical Specification Tables */
.brochure-spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.brochure-spec-table th {
  background-color: var(--dark-navy);
  color: #ffffff;
  padding: 12px 18px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brochure-spec-table td {
  padding: 12px 18px;
  font-size: 0.92rem;
  border-bottom: 1px solid #f1f5f9;
  background-color: #ffffff;
}

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

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

/* Compatible Machinery Badge Pills */
.compatible-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-navy);
  transition: var(--transition);
}

.compatible-badge:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* SOLID STATS COUNTER SECTION */
.stats-section-redesigned {
  background-color: var(--light-bg);
  position: relative;
  padding: 70px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-card-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.2rem 1.4rem;
  transition: var(--transition);
  position: relative;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.stat-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.stat-icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem auto;
  transition: var(--transition);
}

.stat-card-item:hover .stat-icon-bubble {
  background-color: var(--primary-color);
  color: #ffffff;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.88rem;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 0.6rem;
}

/* SOLID CONNECT WITH US SECTION */
.connect-us-section {
  background-color: var(--dark-navy);
  color: #ffffff;
  border-radius: 24px;
  padding: 3.2rem 2.8rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.connect-bubble-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 9px 18px;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
}

.connect-bubble-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* SOLID CLEAN FOOTER SECTION */
.footer-premium {
  background-color: var(--light-bg);
  color: #4b5563;
  padding-top: 70px;
  padding-bottom: 35px;
  position: relative;
  border-top: 3px solid var(--primary-color);
}

.footer-premium-title {
  color: var(--dark-navy);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-premium-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.footer-premium-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-premium-links li {
  margin-bottom: 0.8rem;
}

.footer-premium-links a {
  color: #4b5563;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-premium-links a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-social-bubble {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--dark-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  margin-right: 8px;
}

.footer-social-bubble:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-premium-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
  margin-top: 50px;
  font-size: 0.88rem;
  color: #6b7280;
}

/* Badge Notifications */
.badge-cart {
  position: absolute;
  top: -4px;
  right: -8px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 50%;
}

/* ==========================================================================
   Comprehensive 320px - 991px Mobile & Tablet Responsiveness Rules
   ========================================================================== */

@media (max-width: 991.98px) {
  .hero-slider-item {
    height: 44vh;
    min-height: 320px;
  }
  .page-banner-img {
    height: 220px;
  }
  .about-vision-card, .export-map-container {
    padding: 1.8rem;
  }
  .brand-logo-img {
    max-height: 38px;
  }
  .navbar-custom .nav-link {
    padding: 0.6rem 0 !important;
  }
  
  .footer-premium {
    padding-top: 50px;
  }
  .footer-premium-title {
    margin-bottom: 1.1rem;
    font-size: 1.08rem;
  }

  .main-product-img-box {
    height: 300px;
  }
  .product-thumb-card {
    height: 70px;
  }
}

@media (max-width: 767.98px) {
  h1, .display-4 {
    font-size: clamp(1.75rem, 5.5vw, 2.4rem);
  }
  h2, .display-5, .display-6 {
    font-size: clamp(1.45rem, 4.8vw, 2.0rem);
  }
  h3, .h3 {
    font-size: 1.25rem;
  }

  .hero-slider-item {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  .hero-slider-img.d-block {
    height: auto !important;
    width: 100% !important;
    object-fit: contain !important;
    max-height: none !important;
  }
  .page-banner-img {
    height: 170px;
  }

  .stats-section-redesigned,
  .export-map-section,
  .py-5 {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
  }

  .connect-us-section {
    padding: 2rem 1.4rem;
    border-radius: 18px;
  }

  .stat-card-item {
    padding: 1.4rem 0.8rem;
  }
  .stat-number {
    font-size: 2.3rem;
  }

  .mission-vision-card {
    padding: 1.5rem 1.2rem;
  }

  .floating-badge-experience {
    top: 10px;
    right: 10px;
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .floating-badge-certified {
    bottom: 10px;
    left: 10px;
    font-size: 0.72rem;
    padding: 6px 12px;
  }
  
  .footer-premium-bottom {
    text-align: center;
    margin-top: 30px;
  }

  .product-gallery-item {
    height: 180px;
  }

  .main-product-img-box {
    height: 250px;
  }
  .product-thumb-card {
    height: 60px;
  }
}

@media (max-width: 575.98px) {
  .container, .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-logo-img {
    max-height: 34px;
  }

  .btn-primary-custom,
  .btn-dark-custom,
  .btn-outline-custom,
  .btn-whatsapp {
    padding: 0.55rem 1.2rem;
    font-size: 0.88rem;
  }

  .hero-slider-item {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  .page-banner-img {
    height: 180px;
  }
  .page-banner-title {
    font-size: 1.45rem;
    margin-bottom: 0.2rem;
  }
  .page-banner-subtitle {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-spec-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .stat-number {
    font-size: 1.9rem;
  }
  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
}

/* Ultra-Tight 320px Small Smartphone Viewport Rules */
@media (max-width: 380px) {
  body {
    font-size: 0.94rem;
  }
  h1, .display-4 {
    font-size: 1.55rem;
  }
  h2, .display-5, .display-6 {
    font-size: 1.3rem;
  }

  .brand-logo-img {
    max-height: 28px;
  }

  .connect-bubble-btn {
    padding: 7px 12px;
    font-size: 0.82rem;
    width: 100%;
    justify-content: center;
  }

  .btn-primary-custom,
  .btn-dark-custom,
  .btn-outline-custom,
  .btn-whatsapp {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .mission-vision-card {
    padding: 1.2rem 1rem;
  }

  .feature-card {
    padding: 1.4rem 1.1rem;
  }

  .product-img-wrapper {
    height: 200px;
  }
}

/* Floating Action Widgets (WhatsApp & Scroll-To-Top) */
.floating-widgets-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.floating-btn-whatsapp {
  width: 52px;
  height: 52px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseBounce 2.5s infinite;
}

.floating-btn-whatsapp:hover {
  color: #ffffff;
  transform: scale(1.14);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

.floating-btn-backtotop {
  width: 50px;
  height: 50px;
  background-color: var(--dark-navy);
  color: #ffffff;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(17, 24, 39, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.floating-btn-backtotop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-btn-backtotop .arrow-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  line-height: 1;
}

.floating-btn-backtotop .top-text {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.floating-btn-backtotop:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 14px 30px rgba(186, 42, 32, 0.55);
}

.floating-btn-backtotop:hover .arrow-icon {
  animation: rocketUp 0.5s infinite alternate ease-in-out;
}

@keyframes rocketUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}

@keyframes pulseBounce {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
  }
}

@media (max-width: 575.98px) {
  .floating-widgets-container {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .floating-btn-whatsapp {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }
  .floating-btn-backtotop {
    width: 44px;
    height: 44px;
  }
  .floating-btn-backtotop .arrow-icon {
    font-size: 0.95rem;
  }
  .floating-btn-backtotop .top-text {
    font-size: 0.52rem;
  }
}

/* Full-Screen Premium Page Preloader (No Gradients) */
.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--dark-navy);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.site-preloader.loaded {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}

.preloader-logo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-card {
  background-color: #ffffff;
  padding: 10px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: logoPulse 1.8s infinite ease-in-out;
}

.preloader-logo-img {
  max-width: 95px;
  max-height: 48px;
  object-fit: contain;
}

.preloader-spinner-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: ringSpin 1.2s linear infinite;
}

.preloader-brand-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.preloader-brand-sub {
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0;
}

.preloader-bar-wrap {
  width: 160px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.preloader-bar-fill {
  width: 50%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 10px;
  animation: barSlide 1.4s infinite ease-in-out;
}

@keyframes ringSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(0.94);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes barSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}
