/* ============================================================
   NORTHSTAR INTERNATIONAL LLC - Main Stylesheet
   Light, Vibrant, Professional Theme
   ============================================================ */

/* --- Google Fonts ---
   IMPORTANT: Fonts are loaded via <link> tags in HTML for better performance.
   Do NOT use @import here as it blocks rendering.
*/

/* --- CSS Variables --- */
:root {
  /* Primary Palette */
  --primary: #1a3a6b;
  --primary-light: #2a5298;
  --primary-dark: #0f2444;
  --accent: #c1121f;
  --accent-light: #e63946;
  --accent-dark: #9b0a1a;

  /* Secondary Colors */
  --navy: #0d1b2a;
  --blue-steel: #3a6ea5;
  --sky: #4ea8de;
  --teal: #2ec4b6;
  --gold: #f4a261;
  --orange: #e76f51;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #eef2f7;
  --medium-gray: #c5cdd8;
  --dark-gray: #4a5568;
  --text: #1a202c;
  --text-light: #64748b;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1a3a6b 0%, #2a5298 50%, #3a6ea5 100%);
  --gradient-accent: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
  --gradient-hero: linear-gradient(135deg, rgba(26, 58, 107, 0.92) 0%, rgba(42, 82, 152, 0.85) 50%, rgba(46, 196, 182, 0.7) 100%);
  --gradient-warm: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
  --gradient-sky: linear-gradient(135deg, #4ea8de 0%, #2ec4b6 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f0f4f8 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);
  --shadow-colored: 0 8px 30px rgba(26, 58, 107, 0.2);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 50px 0;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

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

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

ul {
  list-style: none;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

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

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

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

/* --- Fixed Header Wrapper --- */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
}

/* --- Top Contact Bar --- */
.top-contact-bar {
  background: #3666a2;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar-item:hover {
  color: #ffffff;
}

.top-bar-item i {
  color: var(--accent-light);
  font-size: 0.85rem;
}

/* --- Navbar --- */
.navbar-custom {
  padding: 10px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.navbar-custom.scrolled {
  padding: 6px 0;
  background: rgba(255, 255, 255, 0.99);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary) !important;
}

.navbar-brand img {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
  border-radius: 6px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border: none;
}

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

.navbar-custom.scrolled .navbar-brand img {
  height: 48px;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-brand .brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.navbar-brand .brand-main {
  display: inline;
}

.navbar-brand .brand-sub {
  display: inline;
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
  -webkit-text-fill-color: var(--text-light);
}

/* Nav Social Icons */
.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26, 58, 107, 0.08);
  color: var(--primary);
  font-size: 0.95rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

.nav-social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 58, 107, 0.3);
}

.navbar-custom .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-gray) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

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

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  transform: scaleX(1);
}

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

.navbar-toggler {
  border: 2px solid var(--light-gray) !important;
  padding: 6px 10px;
  outline: none !important;
  box-shadow: none !important;
  border-radius: var(--radius-sm);
  background: var(--white);
}

.navbar-toggler:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1) !important;
}

.navbar-toggler-icon {
  width: 22px;
  height: 22px;
}

/* --- Hero Split Section (Light BG, Text Left, Image Right) --- */
.hero-split-section {
  background: var(--light-gray);
  padding: 50px 0;
}

.hero-split-row {
  min-height: 420px;
}

.hero-split-text {
  display: flex;
  align-items: center;
}

.hero-split-text-inner {
  padding: 30px 40px 30px 0;
}

.hero-simple-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-simple-title .highlight-red {
  color: #c1121f;
}

.hero-simple-divider {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #c1121f, #e63946);
  border-radius: 4px;
  margin-bottom: 28px;
}

.hero-simple-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
}

.hero-simple-list li {
  color: var(--dark-gray);
  font-size: 1.02rem;
  font-weight: 500;
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.hero-bullet {
  color: #c1121f;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.hero-simple-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right image — clean, full, no box */
.hero-split-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-split-image img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
}

/* --- Mobile Responsive: Top Bar, Nav & Hero --- */
@media (max-width: 767.98px) {
  .top-bar-inner {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .top-bar-item span {
    display: inline;
    font-size: 0.75rem;
  }

  .top-bar-item i {
    font-size: 1rem;
  }

  .navbar-brand img {
    height: 42px;
  }

  .navbar-brand .brand-name {
    font-size: 1.05rem;
  }

  .brand-tagline {
    font-size: 0.58rem;
  }

  .nav-social-icons {
    justify-content: center;
    padding: 12px 0 4px;
  }

  .hero-split-section {
    padding: 30px 0;
  }

  .hero-split-text-inner {
    padding: 20px 0;
  }

  .hero-simple-title {
    font-size: 1.5rem;
  }

  .hero-simple-list li {
    font-size: 0.9rem;
    padding: 5px 0;
  }

  .hero-split-image {
    margin-top: 0;
  }

  .hero-split-image img {
    height: auto;
  }

  .hero-split-section .row.g-4 {
    --bs-gutter-y: 0;
    --bs-gutter-x: 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .top-bar-inner {
    gap: 14px;
  }

  .navbar-brand img {
    height: 50px;
  }

  .hero-split-section {
    padding: 40px 0;
  }

  .hero-split-text-inner {
    padding: 20px 0;
  }

  .hero-split-image {
    margin-top: 0;
  }

  .hero-split-image img {
    height: auto;
  }

  .hero-split-section .row.g-4 {
    --bs-gutter-y: 0;
  }
}


/* --- Hero Section & Redesigned Sloped 3D Card --- */
.hero-section {
  position: relative;
  min-height: auto;
  padding: 120px 0 60px;
  background: #f4f7fa;
  /* Light background behind the massive hero card container */
}

/* Card Wrapper Container matching the reference design */
.hero-wrapper-card {
  position: relative;
  width: 100%;
  background: #01143c;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 40px 90px rgba(10, 25, 50, 0.18),
    0 15px 45px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-split {
  min-height: 600px;
}

/* --- Hero Text Panel (Left Side with slant) --- */
.hero-text-panel {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 60px 48px;
  overflow: visible;
  /* Allow slant background to extend right */
}

/* Slanted Divider Background helper */
.hero-text-bg-slant {
  position: absolute;
  top: 0;
  left: 0;
  right: -55px;
  /* Extend into the right panel */
  bottom: 0;
  background: #01143c;
  /* Deep navy matching slider background */
  transform: skewX(-8deg);
  /* Creates the sharp slanted slope */
  transform-origin: top right;
  z-index: 1;
  border-right: 4px solid #ef4444;
  /* The red slanted line divider */
  box-shadow: 15px 0 40px rgba(0, 0, 0, 0.3);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  /* Sits above slanted bg and particles */
  color: var(--white);
  width: 100%;
  max-width: 480px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge i {
  color: #ef4444;
  /* Red shield check */
  font-size: 1.05rem;
}

.hero-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 15px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hero-title .highlight-red {
  color: #ef4444;
  /* "BUY & SELL" in red */
}

.hero-title-divider {
  width: 36px;
  height: 3px;
  background: #ef4444;
  margin: 18px 0;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 30px;
  font-weight: 500;
}

/* Bullet points styled as grid of mini cards */
.hero-bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.bullet-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.bullet-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.bullet-card .bc-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #94a3b8;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.bullet-card:hover .bc-icon {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
}

.bullet-card .bc-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

/* Bullets span columns if necessary (like the odd 5th element) */
.hero-bullet-grid .bullet-card:nth-child(5) {
  grid-column: span 1;
  /* Keep it left or let it span 2 if desired */
}

/* Buttons style */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Specs Label Elements (Clean & Compact) --- */
.label-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.label-title-block {
  display: flex;
  flex-direction: column;
}

.showcase-machine-tag {
  color: #ef4444;
  /* Featured machine in red */
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.showcase-machine-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2px;
}

.showcase-machine-type {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 500;
}

.label-nav-block {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.label-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 0;
}

.label-nav-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.08);
}

/* Specs Row inside capsule */
.label-specs-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.spec-badge {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.spec-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.spec-badge .sb-icon {
  font-size: 1.05rem;
  color: var(--gold);
  display: flex;
  align-items: center;
}

.spec-badge .sb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.spec-badge .sb-label {
  font-size: 0.62rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-badge .sb-val {
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 700;
}

.label-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2px;
}

.view-details-link {
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.view-details-link:hover {
  color: #fda4af;
  transform: translateX(3px);
}

/* --- Hero Bottom Features Bar --- */
.hero-features-bar {
  margin-top: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px 0;
  z-index: 5;
  position: relative;
}

.hfb-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid #e2e8f0;
  padding: 10px 24px;
}

.hfb-item:last-child {
  border-right: none;
}

.hfb-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 58, 107, 0.05);
  border-radius: 12px;
  font-size: 1.35rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.hfb-item:hover .hfb-icon-wrapper {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

.hfb-content {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hfb-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.hfb-subtitle {
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  margin-top: 2px;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 100px 0 40px;
  }

  .hero-text-panel {
    padding: 50px 30px;
  }

  .hero-text-bg-slant {
    right: 0;
    transform: none;
    border-right: none;
  }

  .hero-contact-floating-capsule {
    display: none !important;
  }

  .hfb-item {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 20px;
    justify-content: flex-start;
  }

  .hfb-item:last-child {
    border-bottom: none;
  }
}


.hero-floating-card .hfc-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* --- Hero Showcase Panel (60% Right Side) --- */
.hero-showcase-panel {
  position: relative;
  z-index: 2;
  background: #01143c;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: auto;
  padding: 48px 32px;
  perspective: 2000px;
  /* Enables 3D perspective space */
}

/* Glowing ambient backdrops behind the floating card */
.hero-showcase-panel::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-showcase-panel::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.1) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-showcase-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.hero-showcase-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-showcase-carousel .carousel-inner {
  width: 100%;
  overflow: visible;
  /* Allow 3D card rotation shadow boundaries to render cleanly */
}

.hero-showcase-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform-style: preserve-3d;
}

.hero-showcase-card {
  position: relative;
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  transform-style: preserve-3d;
  background: rgba(10, 20, 35, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 28px;
  /* Premium 3D Perspective Rotation */
  transform: rotateY(-14deg) rotateX(7deg) rotateZ(-1deg);
  /* Isometric drop shadow casting downwards-left */
  box-shadow:
    -25px 35px 70px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 50px rgba(46, 196, 182, 0.08);
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.8s ease;
}

/* Metallic Edge Reflective Rim (adds realism to the card) */
.hero-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03) 40%, rgba(26, 58, 107, 0.3) 60%, rgba(46, 196, 182, 0.25) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
}

/* Hover effect: Smoothly floats and scales in 3D */
.hero-showcase-card:hover {
  transform: rotateY(-6deg) rotateX(4deg) rotateZ(0deg) scale(1.02);
  box-shadow:
    -12px 18px 45px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 60px rgba(46, 196, 182, 0.25);
}

/* Image styles moved to Ken Burns section below */

/* Label and machine name styles moved to Premium Carousel Effects section below */

/* Carousel Arrows */
.hero-showcase-arrow {
  width: 46px;
  height: 46px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  opacity: 0.7;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-showcase-panel:hover .hero-showcase-arrow {
  opacity: 1;
}

.hero-showcase-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.hero-showcase-arrow i {
  font-size: 1.3rem;
  color: var(--white);
}

.hero-showcase-arrow.carousel-control-prev {
  left: 24px;
}

.hero-showcase-arrow.carousel-control-next {
  right: 24px;
}

/* Carousel Dots */
.hero-showcase-dots {
  bottom: 24px;
  z-index: 5;
  margin-bottom: 0;
}

.hero-showcase-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  background: transparent !important;
  opacity: 0.5;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.hero-showcase-dots button.active {
  background: var(--white) !important;
  border-color: var(--white) !important;
  opacity: 1;
  transform: scale(1.25);
}

/* --- Premium Slide Effects --- */

/* Slide transitions — custom smooth transition for the card */
.hero-showcase-carousel .carousel-item {
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.9s ease;
  backface-visibility: hidden;
  perspective: 2000px;
}

/* 3D exit and entry transitions for cards */
.hero-showcase-carousel .carousel-item-next .hero-showcase-card {
  transform: rotateY(-30deg) rotateX(12deg) translateZ(-150px) scale(0.85);
  opacity: 0.2;
}

.hero-showcase-carousel .carousel-item-prev .hero-showcase-card {
  transform: rotateY(15deg) rotateX(-5deg) translateZ(-150px) scale(0.85);
  opacity: 0.2;
}

.hero-showcase-carousel .carousel-item.active .hero-showcase-card {
  transform: rotateY(-14deg) rotateX(7deg) rotateZ(-1deg);
  opacity: 1;
}

/* Image styles - displayed at actual aspect ratio without cropping or heavy zoom */
.hero-showcase-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transform: scale(1.0);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Very subtle micro-zoom on active slide */
.carousel-item.active .hero-showcase-card img {
  transform: scale(1.03);
}

/* Elegant Floating Label Capsule in 3D Space */
.hero-showcase-label {
  position: relative;
  /* Sit underneath the image to avoid overlapping it */
  background: #000000;
  /* Solid black background */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* Thin divider line */
  border-radius: 0 0 28px 28px;
  /* Match bottom corners of showcase card */
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 3;
  transform-style: preserve-3d;
  transform: translateZ(10px);
  /* Clean, subtle 3D projection */
  transition: transform 0.3s ease;
}

.showcase-machine-name,
.showcase-machine-type {
  transform: translateY(15px) translateZ(0px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
}

.carousel-item.active .showcase-machine-name {
  transform: translateY(0) translateZ(15px);
  /* nested Z-translation for deeper 3D depth */
  opacity: 1;
  transition-delay: 0.4s;
}

.carousel-item.active .showcase-machine-type {
  transform: translateY(0) translateZ(10px);
  opacity: 1;
  transition-delay: 0.55s;
}

.showcase-machine-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.showcase-machine-type {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Shimmer sweep on active slide */
.hero-showcase-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.06) 35%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0.06) 65%,
      transparent 100%);
  z-index: 2;
  pointer-events: none;
  transform: translateZ(20px);
}

.carousel-item.active .hero-showcase-card::after {
  animation: shimmerSweep 2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes shimmerSweep {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

/* --- Hero Responsive --- */
@media (max-width: 991.98px) {
  .hero-split {
    flex-direction: column;
  }

  .hero-split>.col-lg-5,
  .hero-split>.col-lg-7 {
    width: 100%;
  }

  .hero-text-panel {
    padding: 110px 24px 44px 24px;
    text-align: center;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-bullet-list li {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-showcase-panel {
    min-height: auto;
    padding: 40px 20px;
  }

  .hero-showcase-slide {
    min-height: auto;
  }

  .hero-showcase-card {
    width: 100%;
    transform: rotateY(-8deg) rotateX(4deg) rotateZ(0deg);
    /* Lighter rotation on tablet */
  }

  .hero-showcase-card img {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .hero-text-panel {
    padding: 100px 16px 30px 16px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  /* Stacked single column bullets grid on mobile for perfect symmetry */
  .hero-bullet-grid {
    grid-template-columns: 1fr !important;
    gap: 8px;
    margin-bottom: 20px;
  }

  .bullet-card {
    padding: 10px 14px;
    gap: 12px;
    border-radius: 10px;
  }

  .bullet-card .bc-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .bullet-card .bc-text {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .hero-showcase-panel {
    min-height: auto;
    padding: 24px 12px;
  }

  .hero-showcase-slide {
    min-height: auto;
  }

  .hero-showcase-card {
    transform: none !important;
    /* Flat card on mobile for better visibility */
    border-radius: 20px;
  }

  .hero-showcase-card::before {
    border-radius: 20px;
  }

  .hero-showcase-card img {
    min-height: auto;
  }

  /* Compact specs label sitting under the image */
  .hero-showcase-label {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 14px 16px;
    border-radius: 0 0 20px 20px;
    /* match mobile card border radius */
    transform: none !important;
  }

  .hero-showcase-arrow {
    display: none !important;
    /* Hide arrows on mobile for clean touch swipe */
  }

  .showcase-machine-name {
    font-size: 1.1rem;
  }

  .showcase-machine-type {
    font-size: 0.75rem;
  }

  /* Keep specs badges horizontal on mobile to save vertical space */
  .label-specs-row {
    flex-direction: row;
    /* Horizontal inline badges */
    gap: 6px;
    margin-bottom: 12px;
    padding-top: 12px;
  }

  .spec-badge {
    width: 32%;
    /* Fit 3 badges side-by-side */
    padding: 6px 8px;
    gap: 6px;
    border-radius: 8px;
  }

  .spec-badge .sb-icon {
    font-size: 0.95rem;
  }

  .spec-badge .sb-text {
    min-width: 0;
  }

  .spec-badge .sb-label {
    font-size: 0.52rem;
    letter-spacing: 0;
  }

  .spec-badge .sb-val {
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* --- Buttons --- */
.btn-primary-custom {
  background: linear-gradient(135deg, #991b1b 0%, #b91c1c 50%, #dc2626 100%);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(153, 27, 27, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(153, 27, 27, 0.45);
  color: var(--white);
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 12px 30px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-secondary-custom {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-colored);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 58, 107, 0.35);
  color: var(--white);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(26, 58, 107, 0.08) 0%, rgba(46, 196, 182, 0.08) 100%);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.section-title .text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .text-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* --- About Section --- */
.about-section {
  padding: var(--section-pad);
  background: var(--off-white);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(78, 168, 222, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(230, 57, 70, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper.about-image-sticky {
  position: sticky;
  top: 110px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image-sticky .about-image img {
  height: 600px;
  min-height: 600px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .about-image-sticky .about-image img {
    height: 400px;
    min-height: 400px;
  }
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-experience-badge {
  position: absolute;
  bottom: -15px;
  right: 30px;
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
  animation: floatY 3s ease-in-out infinite;
}

.about-experience-badge .exp-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #000;
}

.about-text {
  color: #000;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-inventory-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  padding: 6px 0;
}

.about-inventory-item i {
  color: var(--teal);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about-feature-item .feature-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature-item .feature-icon.blue {
  background: rgba(78, 168, 222, 0.12);
  color: var(--sky);
}

.about-feature-item .feature-icon.red {
  background: rgba(230, 57, 70, 0.1);
  color: var(--accent);
}

.about-feature-item .feature-icon.green {
  background: rgba(46, 196, 182, 0.12);
  color: var(--teal);
}

.about-feature-item .feature-icon.gold {
  background: rgba(244, 162, 97, 0.12);
  color: var(--gold);
}

.about-feature-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #000;
}

/* --- Services / Inventory Preview --- */
.services-section {
  padding: var(--section-pad);
  background: var(--white);
  position: relative;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 28px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--light-gray);
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Glow background effect on hover */
.service-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

.service-card:hover .service-card-glow {
  transform: translate(-50%, -50%) scale(3);
  opacity: 1;
}

/* Color-coded glow backgrounds */
.service-card[data-color="blue"] .service-card-glow {
  background: radial-gradient(circle, rgba(78, 168, 222, 0.06) 0%, transparent 70%);
}

.service-card[data-color="red"] .service-card-glow {
  background: radial-gradient(circle, rgba(193, 18, 31, 0.05) 0%, transparent 70%);
}

.service-card[data-color="green"] .service-card-glow {
  background: radial-gradient(circle, rgba(46, 196, 182, 0.06) 0%, transparent 70%);
}

.service-card[data-color="gold"] .service-card-glow {
  background: radial-gradient(circle, rgba(244, 162, 97, 0.06) 0%, transparent 70%);
}

.service-card[data-color="navy"] .service-card-glow {
  background: radial-gradient(circle, rgba(26, 58, 107, 0.06) 0%, transparent 70%);
}

.service-card[data-color="orange"] .service-card-glow {
  background: radial-gradient(circle, rgba(231, 111, 81, 0.06) 0%, transparent 70%);
}

.service-card[data-color="purple"] .service-card-glow {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
}

.service-card[data-color="teal"] .service-card-glow {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
}

.service-card[data-color="steel"] .service-card-glow {
  background: radial-gradient(circle, rgba(58, 110, 165, 0.06) 0%, transparent 70%);
}

/* Floating card number */
.service-card-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  z-index: 0;
  transition: var(--transition);
}

.service-card:hover .service-card-number {
  color: rgba(0, 0, 0, 0.07);
  transform: scale(1.15);
}

/* Top color strip */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.service-card:hover::before {
  height: 5px;
}

/* Color-coded top strips */
.service-card[data-color="blue"]::before {
  background: linear-gradient(90deg, #4ea8de, #2a9fd6);
}

.service-card[data-color="red"]::before {
  background: linear-gradient(90deg, #c1121f, #e63946);
}

.service-card[data-color="green"]::before {
  background: linear-gradient(90deg, #2ec4b6, #20b2aa);
}

.service-card[data-color="gold"]::before {
  background: linear-gradient(90deg, #f4a261, #e9c46a);
}

.service-card[data-color="navy"]::before {
  background: linear-gradient(90deg, #1a3a6b, #2a5298);
}

.service-card[data-color="orange"]::before {
  background: linear-gradient(90deg, #e76f51, #f4845f);
}

.service-card[data-color="purple"]::before {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.service-card[data-color="teal"]::before {
  background: linear-gradient(90deg, #14b8a6, #2dd4bf);
}

.service-card[data-color="steel"]::before {
  background: linear-gradient(90deg, #3a6ea5, #5a8ebb);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-icon.blue {
  background: rgba(78, 168, 222, 0.12);
  color: var(--sky);
}

.service-icon.red {
  background: rgba(193, 18, 31, 0.1);
  color: var(--accent);
}

.service-icon.green {
  background: rgba(46, 196, 182, 0.12);
  color: var(--teal);
}

.service-icon.gold {
  background: rgba(244, 162, 97, 0.12);
  color: var(--gold);
}

.service-icon.navy {
  background: rgba(26, 58, 107, 0.1);
  color: var(--primary);
}

.service-icon.orange {
  background: rgba(231, 111, 81, 0.1);
  color: var(--orange);
}

.service-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.service-icon.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}

.service-icon.steel {
  background: rgba(58, 110, 165, 0.1);
  color: var(--blue-steel);
}

.service-card h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover h4 {
  color: var(--primary-dark);
}

.service-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

/* Explore link */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.service-card:hover .service-card-link {
  opacity: 1;
  transform: translateY(0);
}

.service-card-link i {
  transition: var(--transition);
}

.service-card-link:hover {
  color: var(--accent);
}

.service-card-link:hover i {
  transform: translateX(4px);
}

/* --- Brands Section --- */
.brands-section {
  padding: 80px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.brands-marquee-wrapper {
  display: flex;
  overflow: hidden;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 24px 16px;
  user-select: none;
}

@media (max-width: 767px) {
  .brands-marquee-wrapper {
    gap: 12px;
  }
}

.brands-marquee {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  min-width: auto;
  gap: 0;
}

.brand-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.brand-img-direct {
  height: 45px;
  max-height: 45px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
  transition: var(--transition);
}

.brand-img-direct:hover {
  transform: scale(1.05);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--marquee-gap)));
  }
}

/* --- Why Choose Us --- */
.why-section {
  padding: var(--section-pad);
  background: var(--off-white);
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 80%, rgba(78, 168, 222, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--light-gray);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  cursor: pointer;
}

.why-card-stripe {
  width: 5px;
  min-height: 100%;
  flex-shrink: 0;
  transition: width 0.3s ease;
}

.why-card:hover .why-card-stripe {
  width: 7px;
}

/* Color-coded stripes */
.why-card[data-color="sky"] .why-card-stripe {
  background: linear-gradient(180deg, #4ea8de, #2a9fd6);
}

.why-card[data-color="red"] .why-card-stripe {
  background: linear-gradient(180deg, #c1121f, #e63946);
}

.why-card[data-color="teal"] .why-card-stripe {
  background: linear-gradient(180deg, #2ec4b6, #14b8a6);
}

.why-card[data-color="gold"] .why-card-stripe {
  background: linear-gradient(180deg, #f4a261, #e9c46a);
}

.why-card[data-color="navy"] .why-card-stripe {
  background: linear-gradient(180deg, #1a3a6b, #2a5298);
}

.why-card[data-color="orange"] .why-card-stripe {
  background: linear-gradient(180deg, #e76f51, #f4845f);
}

.why-card[data-color="purple"] .why-card-stripe {
  background: linear-gradient(180deg, #8b5cf6, #a78bfa);
}

.why-card[data-color="steel"] .why-card-stripe {
  background: linear-gradient(180deg, #3a6ea5, #5a8ebb);
}

.why-card-inner {
  padding: 26px 22px;
  flex: 1;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.why-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(26, 58, 107, 0.08), rgba(46, 196, 182, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 15px;
}

.why-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 700;
  transition: var(--transition);
}

.why-card:hover h4 {
  color: var(--primary);
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Color-coded icons */
.why-card[data-color="sky"] .why-icon {
  background: rgba(78, 168, 222, 0.12);
  color: #4ea8de;
}

.why-card[data-color="red"] .why-icon {
  background: rgba(193, 18, 31, 0.08);
  color: #c1121f;
}

.why-card[data-color="teal"] .why-icon {
  background: rgba(46, 196, 182, 0.12);
  color: #2ec4b6;
}

.why-card[data-color="gold"] .why-icon {
  background: rgba(244, 162, 97, 0.12);
  color: #f4a261;
}

.why-card[data-color="navy"] .why-icon {
  background: rgba(26, 58, 107, 0.1);
  color: #1a3a6b;
}

.why-card[data-color="orange"] .why-icon {
  background: rgba(231, 111, 81, 0.1);
  color: #e76f51;
}

.why-card[data-color="purple"] .why-icon {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.why-card[data-color="steel"] .why-icon {
  background: rgba(58, 110, 165, 0.1);
  color: #3a6ea5;
}

/* Badge chip */
.why-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  background: var(--off-white);
  color: var(--text-light);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(5px);
}

.why-card:hover .why-card-badge {
  opacity: 1;
  transform: translateY(0);
}

.why-card[data-color="sky"]:hover .why-card-badge {
  background: rgba(78, 168, 222, 0.08);
  color: #4ea8de;
  border-color: rgba(78, 168, 222, 0.2);
}

.why-card[data-color="red"]:hover .why-card-badge {
  background: rgba(193, 18, 31, 0.06);
  color: #c1121f;
  border-color: rgba(193, 18, 31, 0.15);
}

.why-card[data-color="teal"]:hover .why-card-badge {
  background: rgba(46, 196, 182, 0.08);
  color: #2ec4b6;
  border-color: rgba(46, 196, 182, 0.2);
}

.why-card[data-color="gold"]:hover .why-card-badge {
  background: rgba(244, 162, 97, 0.08);
  color: #f4a261;
  border-color: rgba(244, 162, 97, 0.2);
}

.why-card[data-color="navy"]:hover .why-card-badge {
  background: rgba(26, 58, 107, 0.06);
  color: #1a3a6b;
  border-color: rgba(26, 58, 107, 0.15);
}

.why-card[data-color="orange"]:hover .why-card-badge {
  background: rgba(231, 111, 81, 0.06);
  color: #e76f51;
  border-color: rgba(231, 111, 81, 0.15);
}

.why-card[data-color="purple"]:hover .why-card-badge {
  background: rgba(139, 92, 246, 0.06);
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, 0.15);
}

.why-card[data-color="steel"]:hover .why-card-badge {
  background: rgba(58, 110, 165, 0.06);
  color: #3a6ea5;
  border-color: rgba(58, 110, 165, 0.15);
}

/* --- Global Reach / Map Section --- */
.global-section {
  padding: var(--section-pad);
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.global-stat-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.global-stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.global-stat-card .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.global-stat-card h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.global-stat-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

/* --- CTA Section --- */
.cta-section {
  padding: 80px 0;
  background: var(--off-white);
  position: relative;
}

.cta-box {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 60px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-box h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.cta-box p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

.cta-box .btn-primary-custom {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.cta-box .btn-primary-custom:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 168, 222, 0.3), transparent);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-main {
  display: inline;
}

.footer-brand-sub {
  display: inline;
  font-weight: 600;
}

.footer-brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

@media (max-width: 991.98px) {
  .footer h5.text-center::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.footer-links li a i {
  font-size: 0.7rem;
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item .fci-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sky);
  font-size: 0.85rem;
}

.footer-contact-item .fci-text {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact-item .fci-text a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item .fci-text a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 15px;
  text-align: center;
  font-size: 0.85rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  font-size: 1rem;
}

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

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--gradient-primary);
  padding: 150px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 15px;
  position: relative;
}

.page-header .breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.page-header .breadcrumb-item {
  font-size: 0.9rem;
}

.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item a:hover {
  color: var(--white);
}

.page-header .breadcrumb-item.active {
  color: var(--gold);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* --- Inventory Page --- */
.inventory-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.inventory-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--light-gray);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-gray);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-colored);
}

.inventory-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.inventory-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.inventory-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.inventory-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.inventory-card:hover .inventory-card-img img {
  transform: scale(1.08);
}

.inventory-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.inventory-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.inventory-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.inventory-card-body p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.inventory-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--light-gray);
}

.inventory-brands {
  font-size: 0.78rem;
  color: var(--text-light);
}

.inventory-brands strong {
  color: var(--primary);
}

.inventory-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.inventory-link:hover {
  gap: 8px;
  color: var(--accent-dark);
}

/* --- Contact Page --- */
.contact-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .cii-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item .cii-icon.blue {
  background: rgba(78, 168, 222, 0.12);
  color: var(--sky);
}

.contact-info-item .cii-icon.red {
  background: rgba(230, 57, 70, 0.1);
  color: var(--accent);
}

.contact-info-item .cii-icon.green {
  background: rgba(46, 196, 182, 0.12);
  color: var(--teal);
}

.contact-info-item .cii-icon.gold {
  background: rgba(244, 162, 97, 0.12);
  color: var(--gold);
}

.contact-info-item h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-info-item h5::after {
  display: none;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.contact-info-item p a {
  color: var(--primary);
  word-break: break-word;
}

.contact-info-item p a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.form-floating>.form-control,
.form-floating>.form-select {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}

.form-floating>label {
  font-family: var(--font-body);
  color: var(--text-light);
}

.visiting-card-wrapper {
  margin-top: 30px;
}

.visiting-card-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.visiting-card-img:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.visiting-card-img img {
  width: 100%;
  height: auto;
}

/* --- Map Section --- */
.map-section {
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: saturate(0.9) contrast(1.05);
}

/* --- Animations Keyframes --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Tilt effect for cards */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gradient-accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  border: none;
}

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

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  :root {
    --section-pad: 70px 0;
  }

  .navbar-custom>.container {
    flex-wrap: nowrap !important;
    position: relative;
  }

  .navbar-brand {
    min-width: 0;
    flex-shrink: 1;
  }

  .navbar-brand img {
    height: 55px;
  }

  .navbar-custom.scrolled .navbar-brand img {
    height: 45px;
  }

  .hero-section {
    padding-top: 100px;
  }

  .page-header {
    padding-top: 120px;
  }

  .hero-stats {
    gap: 25px;
  }

  .hero-stat .stat-number {
    font-size: 1.8rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .hero-image-wrapper {
    margin-top: 50px;
  }

  .cta-box {
    padding: 40px 30px;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 12px;
    width: 280px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
}

@media (max-width: 767px) {
  .navbar-custom {
    padding: 6px 0 !important;
  }

  .navbar-custom.scrolled {
    padding: 4px 0 !important;
  }

  .navbar-brand img {
    height: 70px !important;
    max-height: 70px !important;
  }

  .navbar-custom.scrolled .navbar-brand img {
    height: 58px !important;
    max-height: 58px !important;
  }

  .navbar-brand .brand-main {
    display: block;
    font-size: 1.35rem !important;
    font-weight: 900;
  }

  .navbar-brand .brand-sub {
    display: block;
    font-size: 0.85rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
  }

  .hero-section {
    padding-top: 90px;
  }

  .brands-section {
    padding: 40px 0 !important;
  }

  .brands-marquee-wrapper {
    padding: 12px 0 !important;
  }

  .page-header {
    padding-top: 110px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary-custom,
  .hero-buttons .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }

  .brands-marquee {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .brand-img-direct {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    min-width: auto;
    height: auto;
    max-height: 45px;
  }

  .brand-item {
    min-width: 120px;
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .hero-floating-card {
    display: none;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }

  #footer .footer-brand {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
  }

  #footer .footer-brand img {
    height: 90px !important;
    max-height: 90px !important;
    width: auto !important;
  }

  #footer .footer-brand-text {
    text-align: center !important;
    font-size: 1.45rem !important;
  }

  .footer-description {
    text-align: center !important;
  }

  .footer-social {
    justify-content: center !important;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 60px !important;
    max-height: 60px !important;
  }

  .navbar-custom.scrolled .navbar-brand img {
    height: 48px !important;
    max-height: 48px !important;
  }

  .navbar-brand .brand-main {
    font-size: 1.15rem !important;
  }

  .navbar-brand .brand-sub {
    font-size: 0.72rem !important;
    letter-spacing: 0.2px !important;
  }

  .hero-section {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 50px;
  }

  .page-header {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-stat {
    flex: 1;
    min-width: 80px;
  }

  .about-experience-badge {
    right: 15px;
    bottom: -10px;
  }

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

  .footer {
    padding: 50px 0 0;
  }
}

/* --- Utility Classes --- */
.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

/* Smooth entrance for page - disabled as per client request to remove animations */
.page-transition {
  animation: none !important;
  opacity: 1 !important;
}

/* ============================================================
   NORTHSTAR INTERNATIONAL LLC - Redesign Upgrades
   ============================================================ */

/* --- ANIMATION REMOVALS & STATIC OVERRIDES --- */
#preloader {
  display: none !important;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.hero-floating-card,
.about-experience-badge,
.scroll-top,
.tilt-card {
  animation: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.particle {
  display: none !important;
}

.brands-marquee {
  animation: none !important;
}

@media (max-width: 767px) {
  .brands-marquee {
    animation: none !important;
  }
}

/* --- LOGO DIMENSIONS & BRAND VISIBILITY --- */
@media (min-width: 768px) {
  .navbar-brand img {
    height: 95px !important;
    max-height: 95px !important;
    width: auto !important;
    transition: none !important;
  }

  .navbar-custom.scrolled .navbar-brand img {
    height: 75px !important;
    max-height: 75px !important;
  }
}

.footer-brand img {
  height: 75px !important;
  max-height: 75px !important;
  width: auto !important;
}

/* --- PREMIUM TYPOGRAPHY & READABILITY UPGRADES --- */
body {
  font-size: 18px !important;
  line-height: 1.8 !important;
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-description {
  font-size: 1.3rem !important;
  max-width: 680px !important;
}

.about-text {
  font-size: 1.15rem !important;
}

.about-feature-item span {
  font-size: 1.05rem !important;
}

.service-card h4 {
  font-size: 1.35rem !important;
}

.service-card p {
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
}

.why-card h4 {
  font-size: 1.25rem !important;
}

.why-card p {
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
}

.global-stat-card p {
  font-size: 1.1rem !important;
}

.footer-brand-text {
  font-size: 1.45rem !important;
}

.footer-description {
  font-size: 1.05rem !important;
}

.footer-links li a {
  font-size: 1.05rem !important;
}

.inventory-card-body h4 {
  font-size: 1.25rem !important;
}

.inventory-card-body p {
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
}

.inventory-brands {
  font-size: 0.95rem !important;
}

.inventory-link {
  font-size: 1.05rem !important;
}

.contact-info-item h5 {
  font-size: 1.2rem !important;
}

.contact-info-item p {
  font-size: 1.1rem !important;
}

.form-control,
.form-select {
  font-size: 1.05rem !important;
}

.form-floating>label {
  font-size: 1.05rem !important;
}

/* --- FEATURED VMC & HMC MACHINERY SECTION (Vibrant Light Theme) --- */
.featured-machinery-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.featured-machinery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .featured-machinery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.machinery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Vibrant border accents on hover for light theme */
.machinery-card:nth-child(1):hover {
  transform: translateY(-8px);
  border-color: var(--primary-light) !important;
  box-shadow: 0 15px 40px rgba(42, 82, 152, 0.12) !important;
}

.machinery-card:nth-child(2):hover {
  transform: translateY(-8px);
  border-color: var(--gold) !important;
  box-shadow: 0 15px 40px rgba(244, 162, 97, 0.12) !important;
}

.machinery-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--navy);
}

.machinery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.machinery-card:hover .machinery-card-img img {
  transform: scale(1.04);
}

.machinery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #1a3a6b 0%, #2a5298 100%);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(26, 58, 107, 0.2);
}

.machinery-card:nth-child(2) .machinery-badge {
  background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.machinery-card-content {
  padding: 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.machinery-card-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.machinery-card-content p {
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 25px;
}

.machinery-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.machinery-specs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

.machinery-specs-list li i {
  color: var(--teal);
  font-size: 1.25rem;
}

.machinery-brands-row {
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.machinery-brands-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.machinery-brands-list {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

/* --- END-TO-END SOLUTIONS WORKFLOW SECTION (Vibrant Light Theme) --- */
.workflow-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  /* Vibrant soft light slate gradient */
  position: relative;
  border-top: 1px solid var(--light-gray);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

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

.workflow-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  padding: 0 !important;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

/* Vibrant soft gradient backgrounds on hover */
.workflow-card[data-step="1"]:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 15px 35px rgba(26, 58, 107, 0.12) !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(26, 58, 107, 0.02) 100%) !important;
}

.workflow-card[data-step="2"]:hover {
  border-color: var(--teal) !important;
  box-shadow: 0 15px 35px rgba(46, 196, 182, 0.12) !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(46, 196, 182, 0.02) 100%) !important;
}

.workflow-card[data-step="3"]:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 15px 35px rgba(244, 162, 97, 0.12) !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(244, 162, 97, 0.02) 100%) !important;
}

.workflow-card[data-step="4"]:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 15px 35px rgba(193, 18, 31, 0.12) !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(193, 18, 31, 0.02) 100%) !important;
}

.workflow-card[data-step="5"]:hover {
  border-color: #8b5cf6 !important;
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12) !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(139, 92, 246, 0.02) 100%) !important;
}

.workflow-card[data-step="6"]:hover {
  border-color: var(--sky) !important;
  box-shadow: 0 15px 35px rgba(78, 168, 222, 0.12) !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(78, 168, 222, 0.02) 100%) !important;
}

.workflow-card-img-header {
  height: 150px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}

.workflow-card-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.workflow-card:hover .workflow-card-img-header img {
  transform: scale(1.05);
}

.workflow-step-badge {
  position: absolute !important;
  top: 15px !important;
  left: 15px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: var(--gradient-accent) !important;
  color: var(--white) !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 10px rgba(214, 40, 40, 0.35) !important;
  z-index: 10;
}

.workflow-icon {
  position: absolute !important;
  bottom: -22px !important;
  right: 20px !important;
  margin-bottom: 0 !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  border: 3px solid var(--white) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.3rem !important;
  box-shadow: var(--shadow-sm) !important;
  z-index: 10;
}

.workflow-card-body {
  padding: 32px 25px 25px 25px !important;
  /* Spaced to clear floating icon */
  flex: 1;
  display: flex;
  flex-direction: column;
}

.workflow-card h4 {
  font-size: 1.22rem !important;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.workflow-card p {
  font-size: 1.05rem !important;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- WHAT WE OFFER IMAGE CARDS UPGRADES --- */
.service-card {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  overflow: hidden !important;
  background: var(--white);
  border: 1px solid var(--light-gray);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02) !important;
}

.service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

.service-card-img-header {
  height: 160px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--navy);
  border-bottom: 3px solid var(--light-gray);
}

.service-card-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img-header img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 25px 22px !important;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  margin: 0 0 15px 0 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 12px !important;
  font-size: 1.4rem !important;
}

.service-card-link {
  margin-top: auto;
}

/* --- HIGHLIGHTED FOOTER SOCIAL ICONS --- */
.footer-social {
  display: flex !important;
  gap: 14px !important;
  margin-top: 25px !important;
}

.footer-social a {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  /* Competitor-style circular circles */
  background: var(--white) !important;
  /* Solid highlighted white */
  color: var(--navy) !important;
  /* High contrast dark blue */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}

.footer-social a:hover {
  background: var(--accent) !important;
  /* Crimson red highlight */
  color: var(--white) !important;
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.45) !important;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* --- CALL FLOATING BUTTON --- */
.call-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a5298 0%, #1a3a6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(26, 58, 107, 0.4);
  transition: all 0.3s ease;
  animation: callPulse 2s ease-in-out infinite;
  cursor: pointer;
  border: none;
  outline: none;
}

.call-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(26, 58, 107, 0.55);
}

.call-float i {
  font-size: 1.6rem;
  color: #fff;
}

@keyframes callPulse {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(26, 58, 107, 0.4);
  }

  50% {
    box-shadow: 0 6px 30px rgba(26, 58, 107, 0.65), 0 0 0 10px rgba(26, 58, 107, 0.1);
  }
}

/* Call popup with phone numbers */
.call-float-wrapper {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9999;
}

.call-float-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 14px 18px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.call-float-wrapper:hover .call-float-popup,
.call-float-wrapper.active .call-float-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.call-float-popup::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 18px;
  width: 16px;
  height: 16px;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.06);
  border-radius: 2px;
}

.call-float-popup-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-light);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-gray);
}

.call-float-popup a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.call-float-popup a:hover {
  background: linear-gradient(135deg, rgba(26, 58, 107, 0.06), rgba(42, 82, 152, 0.08));
  color: var(--primary);
}

.call-float-popup a+a {
  margin-top: 2px;
}

.call-float-popup a .call-popup-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a5298, #1a3a6b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-float-popup a .call-popup-icon i {
  font-size: 1rem;
  color: #fff;
}

.call-float-popup a .call-popup-info {
  display: flex;
  flex-direction: column;
}

.call-float-popup a .call-popup-info .call-popup-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.call-float-popup a .call-popup-info .call-popup-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.call-float-popup a:hover .call-popup-info .call-popup-number {
  color: var(--primary);
}

/* --- BUY & SELL BANNER --- */
.buy-sell-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a6b 50%, #2a5298 100%);
  position: relative;
  overflow: hidden;
}

.buy-sell-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(244, 162, 97, 0.08);
  pointer-events: none;
}

.buy-sell-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.06);
  pointer-events: none;
}

.buy-sell-content {
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.buy-sell-icon {
  font-size: 3.5rem !important;
  color: var(--gold);
  display: block;
  margin-bottom: 15px;
}

.buy-sell-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #f4a261 50%, #e9c46a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.buy-sell-content p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.buy-sell-content .btn-primary-custom {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.buy-sell-content .btn-primary-custom:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* --- CLIENT GALLERY SECTION --- */
.client-gallery-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
}

.client-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .client-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.client-gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  height: 400px;
}

.client-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.client-gallery-card:hover img {
  transform: scale(1.06);
}

.client-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.5) 60%, transparent 100%);
  color: var(--white);
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.4s ease;
}

.client-gallery-card:hover .client-gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.client-gallery-overlay h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.client-gallery-overlay p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0;
}

a.client-gallery-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.client-gallery-card:hover .gallery-view-btn {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* --- CLIENT LOGOS SECTION --- */
.client-logos-section {
  padding: 80px 0;
  background: var(--white);
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .client-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .client-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

.client-logo-item {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: default;
}

.client-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
  background: var(--white);
}

.client-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-dark);
  letter-spacing: 1.5px;
  text-align: center;
}

.client-logo-item:hover .client-logo-text {
  color: var(--primary);
}

/* --- MATERIAL ICONS SIZING FIX --- */
.service-icon .material-icons-outlined,
.why-icon .material-icons-outlined,
.about-feature-item .feature-icon .material-icons-outlined {
  font-size: inherit;
}

/* --- NAVBAR LOGO PRESENTATION IMPROVEMENTS --- */
.navbar-brand {
  gap: 12px !important;
}

.navbar-brand img {
  border-radius: 8px !important;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.footer-brand img {
  border-radius: 8px !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* --- HERO CAROUSEL STYLES --- */
#heroCarousel {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

#heroCarousel .carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

#heroCarousel .carousel-indicators {
  margin-bottom: 12px;
}

#heroCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 5px;
  opacity: 1;
  transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
  background-color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  margin: 0 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
  opacity: 1;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.35);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* --- BRAND LOGO IMAGE STYLES --- */
.brand-logo-img {
  max-width: 80px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
}

.client-logo-item:hover .brand-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

.brand-item.brand-item-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.brand-item.brand-item-logo img {
  width: 105px;
  height: 105px;
  object-fit: contain;
  background: white;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.brand-item.brand-item-logo:hover img {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .brand-item.brand-item-logo {
    padding: 6px !important;
  }

  .brand-item.brand-item-logo img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 12px;
    padding: 10px !important;
  }
}

/* --- COLORFUL VIBRANT FOOTER --- */
.footer.footer-colorful {
  background: var(--off-white) !important;
  position: relative;
  overflow: hidden;
}

/* Decorative gradient orbs in footer */
.footer.footer-colorful::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 155, 48, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer.footer-colorful::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Top accent stripe */
.footer-top-accent {
  height: 4px;
  background: linear-gradient(90deg, #C49B30 0%, #f4a261 25%, #e76f51 50%, #2ec4b6 75%, #4ea8de 100%);
  margin-bottom: 30px;
}

/* Override footer heading underlines with gold */
.footer.footer-colorful h5::after {
  background: linear-gradient(90deg, #C49B30, #f4a261) !important;
  width: 40px !important;
  height: 3px !important;
}

.footer.footer-colorful h5 {
  color: var(--primary-dark) !important;
}

/* Brighter text in colorful footer */
.footer.footer-colorful .footer-description {
  color: #f5f3a345 !important;


  font-size: 1rem !important;
  font-weight: 600 !important;
}

.footer.footer-colorful .footer-links li a {
  color: var(--text) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.footer.footer-colorful .footer-links li a:hover {
  color: #f4a261 !important;
}

.footer.footer-colorful .footer-links li a i {
  color: #C49B30 !important;
}

/* Contact icons with gold accent */
.footer.footer-colorful .fci-icon {
  background: rgba(196, 155, 48, 0.15) !important;
  color: #f4a261 !important;
}

.footer.footer-colorful .fci-text a {
  color: var(--text) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.footer.footer-colorful .fci-text {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
}

.footer.footer-colorful .fci-text a:hover {
  color: #f4a261 !important;
}

/* Logo glow effect in footer */
.footer.footer-colorful .footer-brand img {
  filter: none !important;
}

/* Social icons with vibrant colors */
.footer.footer-colorful .footer-social a {
  background: rgba(26, 58, 107, 0.08) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(26, 58, 107, 0.2) !important;
}

.footer.footer-colorful .footer-social a:hover {
  background: var(--gradient-primary) !important;
  color: var(--white) !important;
  border-color: transparent !important;
}

/* Colorful footer bottom bar */
.footer.footer-colorful .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  background: var(--light-gray) !important;
  margin-top: 15px;
  padding: 15px 0;
  text-align: center;
  color: var(--text) !important;
}

.footer.footer-colorful .footer-bottom p {
  color: var(--text-light) !important;
  font-weight: 500;
}

@keyframes glowText {
  0% {
    text-shadow: 0 0 2px var(--primary), 0 0 5px var(--primary);
  }

  50% {
    text-shadow: 0 0 5px var(--accent), 0 0 15px var(--accent);
  }

  100% {
    text-shadow: 0 0 2px var(--primary), 0 0 5px var(--primary);
  }
}

.footer.footer-colorful .footer-bottom p a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: glowText 2s infinite alternate;
}

.footer.footer-colorful .footer-bottom p a:hover {
  color: var(--accent);
  text-decoration: none;
  text-shadow: 0 0 8px var(--accent), 0 0 20px var(--accent);
}

/* ============================================================
   INVENTORY DETAIL PAGE - Premium Product Cards
   ============================================================ */

.inventory-detail-section {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--off-white) 0%, #e8edf5 100%);
  position: relative;
}

.inventory-detail-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 30%, rgba(78, 168, 222, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(244, 162, 97, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* --- Machine Detail Card --- */
/* --- Machine Detail Card --- */
.machine-detail-card {
  position: relative;
  height: 100%;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.machine-detail-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.machine-detail-inner:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09), 0 2px 6px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
  border-color: rgba(26, 58, 107, 0.12);
}

/* --- Machine Gallery / Carousel --- */
.machine-gallery {
  position: relative;
  height: 360px;
  /* Increased height to showcase vertical images beautifully */
  background: linear-gradient(180deg, #0f1c3f 0%, #060b18 100%);
  /* Premium dark navy gradient */
  overflow: hidden;
  border-bottom: 2px solid rgba(196, 155, 48, 0.15);
}

.machine-carousel {
  height: 100%;
  border-radius: 0;
}

.machine-carousel .carousel-inner {
  height: 100%;
}

.machine-carousel .carousel-item {
  height: 100%;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.carousel-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) brightness(0.55);
  transform: scale(1.15);
  /* prevents white edge artifact from blur */
  z-index: 1;
  opacity: 0.85;
  pointer-events: none;
}

.machine-carousel .carousel-item img:not(.carousel-bg-blur) {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.machine-carousel .carousel-indicators {
  margin-bottom: 16px;
  z-index: 10;
}

.machine-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.7);
  margin: 0 4px;
  opacity: 1;
  transition: all 0.3s ease;
}

.machine-carousel .carousel-indicators button.active {
  background-color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

.machine-carousel .carousel-control-prev,
.machine-carousel .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  margin: 0 12px;
  opacity: 0;
  transition: all 0.3s ease;
}

.machine-carousel:hover .carousel-control-prev,
.machine-carousel:hover .carousel-control-next {
  opacity: 1;
}

.machine-carousel .carousel-control-prev:hover,
.machine-carousel .carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.55);
}

.machine-carousel .carousel-control-prev-icon,
.machine-carousel .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* Status Badge */
.machine-status-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
  padding: 7px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
}

.machine-status-badge.in-stock {
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.9) 0%, rgba(20, 184, 166, 0.9) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(46, 196, 182, 0.35);
}

/* --- Machine Info Panel --- */
.machine-info {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.machine-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(26, 58, 107, 0.07);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  width: fit-content;
}

.machine-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 850;
  color: var(--primary-dark);
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.machine-description {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* --- Specs Grid --- */
.machine-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 18px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.spec-item:hover {
  background: linear-gradient(135deg, #eef2f7 0%, #e2e8f0 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.spec-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.spec-icon .material-icons-outlined {
  font-size: 0.88rem;
}

.spec-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.spec-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.spec-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Machine Highlights (for machines without specs) --- */
.machine-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #166534;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(22, 101, 52, 0.1);
}

.highlight-chip i {
  font-size: 0.8rem;
  color: #16a34a;
}

/* --- Action Bar --- */
.machine-action-bar {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--light-gray);
}

.machine-action-bar .btn-primary-custom,
.btn-whatsapp-inquiry {
  flex: 1;
  justify-content: center;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
}

.machine-action-bar .btn-primary-custom {
  padding: 10px 14px;
}

.btn-whatsapp-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  color: var(--white);
  background: #1fb855;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .machine-gallery {
    height: 310px;
    /* Adjusted responsive height */
  }

  .machine-title {
    font-size: 1.25rem;
  }

  .inventory-detail-section {
    padding: 50px 0 30px;
  }
}

@media (max-width: 576px) {
  .machine-gallery {
    height: 280px;
    /* Adjusted responsive height for mobile */
  }

  .machine-info {
    padding: 18px 16px;
  }

  .machine-title {
    font-size: 1.2rem;
  }

  .machine-specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spec-value {
    font-size: 0.78rem;
  }

  .machine-action-bar {
    flex-direction: row;
  }
}

/* Mobile Dropdown Fix */
@media (max-width: 991.98px) {
  .dropdown-menu {
    white-space: normal;
  }

  .dropdown-item {
    white-space: normal;
    overflow-wrap: break-word;
  }
}