/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES FOR JINUOSH VIETNAM
   Author: Senior Frontend Architect
   Style: Industrial B2B Tech - Sharp & High Contrast
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  /* Color Tokens */
  --primary: #0a56b5;
  --secondary: #1665c0;
  --accent: #0a56b5;
  --accent-hover: #084391;
  --bg-dark-navy: #0b1329;
  --bg-gray: #F7F8FA;
  --dark: #111827;
  --dark-light: #1f2937;
  --white: #FFFFFF;
  --text-main: #333333;
  --text-muted: #666666;
  --border-color: #E2E8F0;

  /* Layout Tokens */
  --radius-sm: 2px;
  --radius-md: 4px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-out;
}

/* Global Reset & Base */
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark);
}

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

a:hover {
  color: var(--secondary);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-gray);
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

.text-primary {
  color: rgb(0 41 184) !important
}

.

/* Typography Scale helpers */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

/* 8-Point Grid Spacing helpers */
.py-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-value: 768px) {
  .py-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* ==========================================================================
   BUTTONS (Sharp & Solid B2B style)
   ========================================================================== */
.btn-jns {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
}

.btn-jns-accent {
  background-color: var(--primary);
  color: var(--white);
}

.btn-jns-accent:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 86, 181, 0.3);
}

.btn-jns-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-jns-primary:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 86, 181, 0.3);
}

.btn-jns-outline {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-jns-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-jns-dark-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-jns-dark-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-jns-sm {
  padding: 8px 18px;
  font-size: 0.75rem;
}

/* ==========================================================================
   HEADER & TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--dark);
  color: #A0AEC0;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-light);
  position: relative;
  z-index: 1010;
}

.top-bar a {
  color: #A0AEC0;
}

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

/* Custom Language Dropdown in Top Bar */
.top-bar .dropdown-menu {
  background-color: var(--dark-light);
  border: 1px solid #3d3d3d !important;
  border-radius: 0;
  padding: 5px 0;
  min-width: 120px;
}

.top-bar .dropdown-item {
  color: #A0AEC0 !important;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.top-bar .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--white) !important;
}

.top-bar .dropdown-item.active {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

.main-header {
  height: 90px;
  background-color: var(--white);
  transition: var(--transition-smooth);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.main-header.sticky {
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.main-header .navbar-brand img {
  height: 60px;
  transition: var(--transition-smooth);
}

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

.main-header .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--dark);
  padding: 10px 15px !important;
  position: relative;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
  color: var(--primary);
}

.main-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 3px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

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

/* Mega Menu */
.has-mega-menu {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-top: 3px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 30px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  z-index: 999;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.mega-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-links li {
  margin-bottom: 10px;
}

.mega-menu-links a {
  font-size: 0.9rem;
  color: var(--text-main);
  display: block;
}

.mega-menu-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

/* ==========================================================================
   HERO BANNER — Full-screen with image background + text overlay
   ========================================================================== */
.hero-slider {
  height: 90vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

/* Each slide: image fills the entire slide as background */
.hero-slide-item {
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Background image via JS-injected style or inline style on each slide */
.hero-slide-item .hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
  z-index: 0;
}

/* Ken Burns subtle zoom on active slide */
.swiper-slide-active .hero-slide-bg {
  transform: scale(1.06);
}

/* Layered overlay: dark vignette + left-side gradient for text readability */
.hero-slide-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(2, 10, 28, 0.82) 0%,
      rgba(2, 10, 28, 0.55) 45%,
      rgba(2, 10, 28, 0.18) 75%,
      rgba(2, 10, 28, 0.08) 100%),
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* Subtle tech grid texture over the whole banner */
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2;
}

/* Text content wrapper — centered vertically, anchored left */
.hero-content-wrapper {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-text-box {
  max-width: 620px;
}

/* Eyebrow label above the heading */
.hero-text-box .hero-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(10, 86, 181, 0.6);
  border-radius: var(--radius-sm);
  background: rgba(10, 86, 181, 0.25);
}

.hero-text-box h1,
.hero-text-box h2,
.hero-text-box .h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white) !important;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-text-box .subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  max-width: 520px;
}

/* Accent divider line below heading */
.hero-text-box .hero-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 20px;
  border-radius: 1px;
}

/* CTA button group */
.hero-text-box .hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Slide indicator badge (bottom-left) */
.hero-slide-badge {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  z-index: 4;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Scroll indicator arrow */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

.hero-scroll-indicator i {
  color: var(--white);
  font-size: 0.8rem;
}

@keyframes scrollBounce {

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

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

/* Floating animations (retained for badge elements) */
@keyframes floatEffect {
  0% {
    transform: translateY(0px);
  }

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

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

/* Pulse dot animation */
@keyframes pulseDot {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

/* Custom Swiper pagination styling */
.hero-slider .swiper-pagination {
  bottom: 28px;
  z-index: 5;
}

.hero-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 0;
  transition: var(--transition-fast);
  margin: 0 4px;
}

.hero-slider .swiper-pagination-bullet-active {
  background-color: var(--accent);
  width: 32px;
}

/* Swiper nav buttons */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: rgba(255, 255, 255, 0.75);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 0.85rem;
  font-weight: 900;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-slider {
    height: 100svh;
    min-height: 560px;
  }

  .hero-text-box h1,
  .hero-text-box h2,
  .hero-text-box .h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .hero-text-box .subtitle {
    font-size: 0.9rem;
  }

  .hero-text-box .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-text-box .hero-cta-group .btn-jns {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   ABOUT / INTRO SECTION
   ========================================================================== */
.intro-story-section {
  background:
    radial-gradient(circle at top right, rgba(0, 41, 184, 0.06), transparent 22%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.intro-copy-block {
  max-width: 620px;
}

.intro-kicker {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--primary);
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.intro-story-title {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  color: #1f2937;
  letter-spacing: -0.03em;
}

.intro-story-text {
  margin-bottom: 28px;
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4b5563;
}

.intro-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.intro-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
}

.intro-feature-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(0, 41, 184, 0.08);
  border: 1px solid rgba(0, 41, 184, 0.2);
  box-shadow: inset 0 0 0 6px rgba(0, 41, 184, 0.02);
}

.intro-feature-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #111827;
}

.intro-feature-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

.intro-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-jns-outline-dark {
  background: transparent;
  border: 1px solid #d7dbe1;
  color: #1f2937;
  padding-inline: 24px;
}

.btn-jns-outline-dark:hover {
  background: #0029b8;
  color: var(--white);
  border-color: #0029b8;
}

.intro-visual-card {
  position: relative;
  max-width: 560px;
  margin-left: auto;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 41, 184, 0.08), rgba(27, 117, 208, 0.05));
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  overflow: hidden;
  border: 1px solid rgba(0, 41, 184, 0.15);
}

.intro-visual-card::before {
  content: '';
  position: absolute;
  right: -12px;
  top: -18px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(0, 41, 184, 0.08);
  z-index: 0;
}

.intro-visual-card::after {
  content: '';
  position: absolute;
  left: -28px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0, 41, 184, 0.05);
  z-index: 0;
}

.intro-visual-video-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 380px;
  z-index: 1;
  background-color: var(--dark);
}

.intro-video-element {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.intro-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0029b8;
  color: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 41, 184, 0.4), 0 0 0 0 rgba(0, 41, 184, 0.6);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 4px;
  animation: playPulse 2s infinite;
}

.intro-video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: #001d85;
  box-shadow: 0 14px 40px rgba(0, 41, 184, 0.6);
  color: #ffffff;
}

.intro-visual-video-wrap.is-playing .intro-video-play-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.7);
}

@keyframes playPulse {
  0% {
    box-shadow: 0 10px 30px rgba(0, 41, 184, 0.4), 0 0 0 0 rgba(0, 41, 184, 0.6);
  }

  70% {
    box-shadow: 0 10px 30px rgba(0, 41, 184, 0.4), 0 0 0 22px rgba(0, 41, 184, 0);
  }

  100% {
    box-shadow: 0 10px 30px rgba(0, 41, 184, 0.4), 0 0 0 0 rgba(0, 41, 184, 0);
  }
}

.intro-visual-card:hover .intro-visual-image-wrap img {
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.05);
}

.intro-stat-pill {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b1329, #1c2b4a);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  animation: floatStat 4.5s ease-in-out infinite;
}

.intro-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.intro-stat-label {
  max-width: 110px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

@keyframes floatStat {

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

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

@media (max-width: 991.98px) {
  .intro-story-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .intro-feature-grid {
    grid-template-columns: 1fr;
  }

  .intro-visual-card {
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .intro-story-title {
    font-size: 1.85rem;
  }

  .intro-visual-image-wrap {
    min-height: 320px;
  }

  .intro-stat-pill {
    right: 10px;
    bottom: 10px;
    padding: 14px 16px;
  }

  .intro-stat-number {
    font-size: 2.1rem;
  }
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.product-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.product-img-wrapper {
  position: relative;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
  overflow: hidden;
  background-color: var(--bg-gray);
}

.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 19, 41, 0.92) 0%, rgba(10, 86, 181, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 3;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

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

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark);
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  flex-grow: 1;
}

/* ==========================================================================
   WHY CHOOSE JINUOSH
   ========================================================================== */
.why-section {
  background: linear-gradient(135deg, #0b1329 0%, #131f3a 50%, #0d1529 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.why-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  height: 100%;
  transition: var(--transition-smooth);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

.why-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 16px rgba(10, 86, 181, 0.3);
}

.why-card h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================================================
   APPLICATIONS SECTION
   ========================================================================== */
.app-card {
  position: relative;
  overflow: hidden;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  transition: var(--transition-smooth);
}

.app-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.app-card-overlay-desc {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.app-card:hover::before {
  background: linear-gradient(to top, rgba(11, 19, 41, 0.95) 0%, rgba(10, 86, 181, 0.75) 100%);
}

.app-card:hover .app-card-content {
  transform: translateY(-10px);
}

.app-card:hover .app-card-overlay-desc {
  height: auto;
  opacity: 1;
  margin-top: 10px;
}

.app-card h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.app-card:hover h4 {
  color: var(--white);
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */
.video-section {
  background-color: var(--dark);
  color: var(--white);
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background-color: #000;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.play-btn {
  position: relative;
  z-index: 3;
  width: 80px;
  height: 80px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.play-btn::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: pulsePlay 2s infinite;
  opacity: 0.5;
}

.play-btn:hover {
  background-color: var(--white);
  color: var(--accent);
  transform: scale(1.1);
}

@keyframes pulsePlay {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
.stat-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  z-index: 1;
}

.stat-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 19, 41, 0.92) 0%, rgba(17, 28, 56, 0.88) 100%);
  z-index: -1;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-title {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
}

/* ==========================================================================
   TYPICAL PROJECTS
   ========================================================================== */
.project-swiper-container {
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}

.project-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.project-card-content {
  padding: 20px;
}

.project-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.project-card-meta i {
  color: var(--primary);
  margin-right: 5px;
}

.project-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* ==========================================================================
   NEWS & ARTICLES
   ========================================================================== */
.news-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-img-wrapper {
  overflow: hidden;
  position: relative;
  height: 200px;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.news-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.news-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

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

.news-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-body h4 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-body h4 a {
  color: var(--dark);
}

.news-body h4 a:hover {
  color: var(--primary);
}

.news-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 20px;
}

/* News Slider styles */
.news-slider {
  padding-bottom: 45px !important;
  overflow: hidden;
}

.news-slider .swiper-slide {
  height: auto;
}

.news-slider .news-card {
  height: 100%;
}

.news-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  opacity: 0.35;
  border-radius: 0;
  margin: 0 5px;
  transition: var(--transition-fast);
}

.news-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--accent);
  width: 30px;
}

/* ==========================================================================
   PARTNERS TICKER
   ========================================================================== */
.partner-logo-box {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  padding: 15px;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.partner-logo-box img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: var(--transition-smooth);
}

.partner-logo-box:hover {
  border-color: var(--primary);
}

.partner-logo-box:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   CTA CONTACT BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0b1329 0%, #111c38 50%, #0d1527 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(10, 86, 181, 0.35) 0%, transparent 65%),
    radial-gradient(circle at 20% 50%, rgba(27, 117, 208, 0.15) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--dark);
  color: #A0AEC0;
  font-size: 0.9rem;
  border-top: 5px solid var(--primary);
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
}

.footer-logo {
  height: 110px;
  margin-bottom: 20px;
  display: flex;
}

.footer a {
  color: #A0AEC0;
}

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

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

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

.footer-links a {
  display: block;
}

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

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
}

.map-container {
  width: 100%;
  height: 180px;
  border: 1px solid var(--dark-light);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background-color: var(--dark-light);
  color: #A0AEC0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--dark-light);
  padding: 20px 0;
  font-size: 0.8rem;
}

/* ==========================================================================
   UTILITY & MISCELLANEOUS
   ========================================================================== */
/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
}

/* Floating Contact Widgets */
.floating-contact-widgets {
  position: fixed;
  bottom: 95px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

.contact-widget-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background: transparent;
  border: none;
}

.contact-widget-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-widget-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Pulse animation for Phone button */
.contact-widget-btn.phone-widget {
  animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.7), 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(230, 0, 18, 0), 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 0, 18, 0), 0 4px 15px rgba(0, 0, 0, 0.2);
  }
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
  .back-to-top {
    bottom: 85px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .floating-contact-widgets {
    bottom: 140px;
    right: 20px;
    gap: 10px;
  }

  .contact-widget-btn {
    width: 42px;
    height: 42px;
  }
}

/* Sticky CTA Mobile */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 98;
  padding: 10px 15px;
}

@media (max-width: 767px) {
  .sticky-cta-mobile {
    display: flex;
    gap: 10px;
  }

  .sticky-cta-mobile .btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 10px 5px;
  }

  /* Offset body padding-bottom so content isn't covered by sticky footer */
  body {
    padding-bottom: 60px;
  }
}

/* Custom Popup Modal styling */
.jns-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
}

.jns-modal {
  background-color: var(--white);
  width: 100%;
  max-width: 550px;
  border-top: 5px solid var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transform: translateY(-50px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.jns-modal-backdrop.show {
  display: flex;
}

.jns-modal-backdrop.show .jns-modal {
  transform: translateY(0);
  opacity: 1;
}

.jns-modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jns-modal-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.close-modal-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.close-modal-btn:hover {
  color: var(--dark);
}

.jns-modal-body {
  padding: 25px;
}

.jns-modal-body .form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}

.jns-modal-body .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: 12px 15px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.jns-modal-body .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 86, 181, 0.1);
  outline: none;
}

/* Section Header styling */
.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent);
}

.section-header.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Header light (for dark backgrounds) */
.section-header.light h2 {
  color: var(--white);
}

.section-header.light p {
  color: rgba(255, 255, 255, 0.75);
}

/* Custom styles for AOS delay adjustments in grid */
@media (max-width: 767px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

/* Custom Jinuosh B2B Tabs styling */
.nav-tabs-jns {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid var(--border-color) !important;
}

.nav-tabs-jns .nav-item {
  margin-bottom: -2px;
}

.nav-tabs-jns .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted) !important;
  border: 2px solid transparent !important;
  border-bottom: none !important;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0 !important;
  padding: 12px 25px;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.nav-tabs-jns .nav-link:hover {
  color: var(--primary) !important;
  background-color: rgba(10, 86, 181, 0.05);
  border-color: var(--border-color) var(--border-color) transparent !important;
}

.nav-tabs-jns .nav-link.active {
  color: var(--white) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) var(--primary) transparent !important;
  box-shadow: 0 -4px 10px rgba(10, 86, 181, 0.15);
}

/* Specification Tables Styling */
.spec-table {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border-collapse: separate;
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.spec-table th {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  padding: 8px 12px;
}

.spec-table td {
  padding: 8px 12px;
}

/* Featured Product Media Card */
.featured-media-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #000;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.featured-media-card .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition-smooth);
}

.featured-media-card:hover .video-placeholder {
  transform: scale(1.02);
}

.featured-media-card .play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  z-index: 3;
}

.featured-media-card .play-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 41, 184, 0.4);
}

/* Vision & Mission cards styling */
.vision-mission-box {
  background-color: var(--white);
  padding: 25px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-sm);
}

.accent-box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

/* Team Image Box Caption */
.team-img-box {
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.team-img-box img {
  width: 100%;
  height: auto;
  transition: var(--transition-smooth);
}

.team-img-box:hover img {
  transform: scale(1.03);
}

.team-caption {
  z-index: 10;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   PRODUCT CATEGORY TABS & SWIPER SLIDERS (8 GROUPS)
   ========================================================================== */
.product-cat-nav {
  border-bottom: 2px solid var(--border-color);
  gap: 8px;
}

.product-cat-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  background-color: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.product-cat-nav .nav-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  background-color: var(--white);
}

.product-cat-nav .nav-link.active {
  color: var(--white) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 4px 12px rgba(0, 41, 184, 0.25);
}

.product-category-swiper {
  position: relative;
  padding-bottom: 50px !important;
}

.product-category-swiper .swiper-button-next,
.product-category-swiper .swiper-button-prev {
  width: 42px;
  height: 42px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition-fast);
}

.product-category-swiper .swiper-button-next:hover,
.product-category-swiper .swiper-button-prev:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.product-category-swiper .swiper-button-next::after,
.product-category-swiper .swiper-button-prev::after {
  font-size: 0.85rem;
  font-weight: 800;
}

.product-category-swiper .swiper-pagination-bullet-active {
  background-color: var(--primary);
}

/* ==========================================================================
   ABOUT & SERVICE PAGE SPECIAL STYLES (about.html)
   ========================================================================== */
.bg-dark-navy {
  background-color: var(--bg-dark-navy) !important;
}

.max-w-700 {
  max-width: 700px;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

/* Page Hero Header Banner */
.page-hero-banner {
  position: relative;
  padding: 80px 0 70px;
  background-color: var(--bg-dark-navy);
  background-image:
    linear-gradient(to right, rgba(11, 19, 41, 0.92) 0%, rgba(10, 86, 181, 0.75) 100%),
    url('../images/about_factory.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-bottom: 3px solid var(--primary);
  overflow: hidden;
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 130, 32, 0.15), transparent 40%);
  pointer-events: none;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white) !important;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.breadcrumb-jns {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

.breadcrumb-jns a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-jns a:hover {
  color: var(--white);
}

.breadcrumb-jns .separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-jns .current {
  color: var(--white);
}

/* Timeline Components */
.timeline-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.timeline-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary) !important;
  box-shadow: 0 12px 24px rgba(10, 86, 181, 0.12) !important;
}

.timeline-year-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(10, 86, 181, 0.25);
}

/* Vision & Mission Cards */
.vision-mission-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 35px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary);
  height: 100%;
  transition: var(--transition-smooth);
}

.vision-mission-card.accent-card {
  border-top-color: var(--accent);
}

.vision-mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(10, 86, 181, 0.12);
}

.icon-box-lg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(10, 86, 181, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.vision-mission-card.accent-card .icon-box-lg {
  background: rgba(10, 86, 181, 0.1);
  color: var(--accent);
}

/* Core Values Cards */
.core-value-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: var(--transition-smooth);
}

.core-value-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(10, 86, 181, 0.1);
}

.core-value-num {
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(10, 86, 181, 0.06);
  line-height: 1;
  user-select: none;
}

.core-value-card:hover .core-value-num {
  color: rgba(10, 86, 181, 0.15);
}

/* Services Cards */
.service-card-block {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
}

.service-card-block:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(10, 86, 181, 0.12);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(10, 86, 181, 0.25);
}

.service-list-check {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.service-list-check li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-list-check li i {
  color: var(--primary);
  margin-top: 3px;
}

/* Utility Helpers */
.hover-lift {
  transition: var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(10, 86, 181, 0.12) !important;
}

.service-policy-card {
  transition: var(--transition-smooth);
}

.service-policy-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary) !important;
  box-shadow: 0 12px 28px rgba(10, 86, 181, 0.1) !important;
}

.advantage-box {
  transition: var(--transition-fast);
}

.advantage-box:hover {
  background-color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.logo-grayscale {
  filter: grayscale(100%);
  opacity: 0.65;
  transition: var(--transition-fast);
}

.logo-grayscale:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   CUSTOM HIGH-END VIDEO PLAYER STYLES
   ========================================================================== */
.custom-video-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all 0.3s ease;
}

.custom-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  background-color: #000000;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 992px) {
  .custom-video-container {
    min-height: 360px;
  }
}

.custom-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Big Center Overlay Play/Pause Button */
.custom-video-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0, 41, 184, 0.85);
  color: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.9);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 41, 184, 0.5), 0 0 0 8px rgba(0, 41, 184, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 4px;
  backdrop-filter: blur(4px);
}

.custom-video-overlay-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: #0029b8;
  box-shadow: 0 15px 40px rgba(0, 41, 184, 0.7), 0 0 0 12px rgba(0, 41, 184, 0.35);
}

.custom-video-container.is-playing .custom-video-overlay-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.6);
}

/* Hover container to show overlay button when playing */
.custom-video-container.is-playing:hover .custom-video-overlay-btn {
  opacity: 0.85;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* Custom Bottom Controls Bar */
.custom-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 70%, transparent 100%);
  padding: 12px 16px 14px;
  z-index: 12;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.custom-video-container.is-playing .custom-video-controls {
  opacity: 0;
}

.custom-video-container.is-playing:hover .custom-video-controls,
.custom-video-container:focus-within .custom-video-controls {
  opacity: 1;
}

/* Progress / Seek Slider */
.custom-video-progress-container {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: height 0.2s ease;
}

.custom-video-progress-container:hover {
  height: 10px;
}

.custom-video-progress-filled {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0029b8, #2563eb);
  border-radius: 4px;
  pointer-events: none;
}

.custom-video-progress {
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 14px;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  margin: 0;
}

/* Action Buttons & Time */
.custom-video-action-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-video-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #60a5fa;
  transform: scale(1.1);
}

.custom-video-time {
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: monospace, sans-serif;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   CERTIFICATION CARDS
   ========================================================================== */
.cert-block-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 4px solid var(--jns-primary, #0029b8) !important;
  background: #ffffff;
}

.cert-block-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 41, 184, 0.15) !important;
}

.cert-download-box {
  background: #f8fafc;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.cert-block-card:hover .cert-download-box {
  background: #f1f5f9;
  border-color: #cbd5e1 !important;
}

.cert-img-wrapper {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
}

.cert-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  pointer-events: none;
  border-radius: 6px;
}

.cert-block-card:hover .cert-img-wrapper {
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

/* ==========================================================================
   PRODUCT LISTING PAGE & CATEGORY FILTER TABS
   ========================================================================== */
.product-line-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #0029b8;
  background: #ffffff;
  padding: 0;
  gap: 15px;
  overflow-x: auto;
}

.product-line-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: #0029b8;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}

.product-line-item:hover,
.product-line-item.active {
  color: #001973;
  border-bottom-color: #0029b8;
  background: #f8fafc;
}

.product-line-thumb {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.product-cat-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.product-cat-tab {
  background: transparent;
  border: none;
  color: #64748b;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.product-cat-tab:hover {
  color: var(--jns-primary, #0029b8);
  background: #f1f5f9;
}

.product-cat-tab.active {
  color: #ffffff;
  background: var(--jns-primary, #0029b8);
  box-shadow: 0 4px 14px rgba(0, 41, 184, 0.25);
}

.product-card-spec-box {
  background: #f8fafc;
  border-radius: 8px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
}

.product-card-spec-item {
  font-size: 0.825rem;
  color: #475569;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.product-card-spec-item:last-child {
  border-bottom: none;
}

.product-item-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.product-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 41, 184, 0.12) !important;
  border-color: #cbd5e1 !important;
}

.product-item-img-holder {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 4 / 3;
}

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

.product-item-card:hover .product-item-img-holder img {
  transform: scale(1.08);
}

/* ==========================================================================
   PRODUCT SEARCH & FILTER PANEL (CLEAN INDUSTRIAL DESIGN)
   ========================================================================== */
.product-filter-panel {
  background: #ffffff;
  border: 1px solid rgba(0, 41, 184, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 41, 184, 0.04);
  padding: 24px;
  margin-bottom: 40px;
}

.product-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.product-filter-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-filter-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: #0029b8;
  border-radius: 4px;
}

.product-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-cat-pill-btn {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  font-weight: 600;
  font-size: 0.825rem;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.product-cat-pill-btn:hover {
  background: #edf2f7;
  color: #0029b8;
  border-color: #cbd5e1;
}

.product-cat-pill-btn.active {
  background: #0029b8;
  color: #ffffff;
  border-color: #0029b8;
  box-shadow: 0 4px 12px rgba(0, 41, 184, 0.25);
}

.product-search-toolbar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.product-search-input-group {
  position: relative;
  flex: 1 1 320px;
}

.product-search-input-group .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  font-size: 0.9rem;
}

.product-search-input-group input {
  padding-left: 40px;
  padding-right: 36px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.product-search-input-group input:focus {
  background: #ffffff;
  border-color: #0029b8;
  box-shadow: 0 0 0 3px rgba(0, 41, 184, 0.15);
  outline: none;
}

.product-search-input-group .clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.15s ease;
}

.product-search-input-group .clear-btn:hover {
  color: #ef4444;
  background: #fee2e2;
}

.product-sort-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.product-sort-group select {
  height: 44px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-weight: 600;
  font-size: 0.85rem;
  color: #1e293b;
  padding: 0 36px 0 14px;
}

.product-sort-group select:focus {
  border-color: #0029b8;
  box-shadow: 0 0 0 3px rgba(0, 41, 184, 0.15);
}

/* ==========================================================================
   PAGINATION STYLES
   ========================================================================== */
.jns-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.jns-page-link {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.jns-page-link:hover:not(.disabled):not(.active) {
  border-color: #0029b8;
  color: #0029b8;
  background: #f0f4ff;
  transform: translateY(-1px);
}

.jns-page-link.active {
  background: #0029b8;
  border-color: #0029b8;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 41, 184, 0.25);
}

.jns-page-link.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f8fafc;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES
   ========================================================================== */
.product-detail-gallery {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.product-detail-main-img-box {
  position: relative;
  width: 100%;
  padding-top: 75%;
  /* 4:3 Aspect Ratio */
  overflow: hidden;
  border-radius: 12px;
  background: #f8fafc;
}

.product-detail-main-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-detail-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding: 4px 2px 8px 2px;
}

.product-detail-thumb-item {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 6px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.product-detail-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.25s ease;
}

.product-detail-thumb-item:hover img {
  transform: scale(1.08);
}

.product-detail-thumb-item:hover,
.product-detail-thumb-item.active {
  border-color: #0029b8;
  box-shadow: 0 4px 14px rgba(0, 41, 184, 0.25);
  transform: translateY(-3px);
}

.product-spec-quickbox {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}

.product-spec-quickbox .spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #cbd5e1;
}

.product-spec-quickbox .spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-spec-quickbox .spec-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 41, 184, 0.1);
  color: #0029b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.action-buttons-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-download-pdf {
  background: #ffffff;
  color: #0029b8;
  border: 2px solid #0029b8;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-download-pdf i {
  transition: color 0.25s ease;
}

.btn-download-pdf:hover {
  background: #0029b8;
  color: #ffffff;
  border-color: #0029b8;
  box-shadow: 0 6px 20px rgba(0, 41, 184, 0.25);
  transform: translateY(-2px);
}

.btn-download-pdf:hover i {
  color: #ffffff !important;
}

.nav-tabs-jns {
  border-bottom: 2px solid #e2e8f0;
  gap: 8px;
}

.nav-tabs-jns .nav-link {
  border: none;
  color: #64748b;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: all 0.2s ease;
  background: transparent;
}

.nav-tabs-jns .nav-link:hover {
  color: #0029b8;
  background: rgba(0, 41, 184, 0.04);
}

.nav-tabs-jns .nav-link.active {
  color: #0029b8;
  background: #ffffff;
}

.nav-tabs-jns .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary, linear-gradient(135deg, #0029B8 0%, #001973 100%));
  border-radius: 3px 3px 0 0;
}

.product-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.product-feature-card:hover {
  border-color: #0029b8;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 41, 184, 0.08);
}

.product-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 41, 184, 0.1) 0%, rgba(245, 130, 32, 0.1) 100%);
  color: #0029b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.product-spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.product-spec-table th {
  background: #001973;
  color: #ffffff;
  padding: 14px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-spec-table td {
  padding: 14px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

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

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

.product-spec-table tr:hover td {
  background: #eff6ff;
}

.app-pill-tag {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.app-pill-tag:hover {
  border-color: #0029b8;
  color: #0029b8;
  background: #f0f4ff;
}

/* Custom Premium Glassmorphic Badge Tags */
.tag-pill-glass {
  background: rgba(15, 23, 42, 0.82) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

/* Category Pill Tag above Title */
.category-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #F0F4FF;
  color: var(--primary);
  border: 1px solid rgba(0, 41, 184, 0.18);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.category-pill-tag:hover {
  background-color: var(--primary);
  color: #ffffff;
}

h5#consultModalLabel,
span#articleDate,
span.number-view {
  color: white;
}

.modal-header.bg-primary.text-white {
  background: #0a56b5 !important;
}

i.far.text-primary.me-1 {
  color: rgb(131 144 165) !important;
}

/* ==========================================================================
   HOMEPAGE PRODUCT SHOWCASE BLOCK (MATCH USER MOCKUP)
   ========================================================================== */

/* 8 Category Tabs Bar */
.jns-cat-tabs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.jns-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background-color: #f8fafc;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.jns-cat-pill:hover {
  background-color: #e2e8f0;
  color: #0f172a;
  border-color: #cbd5e1;
}

.jns-cat-pill.active {
  background-color: #0a56b5 !important;
  color: #ffffff !important;
  border-color: #0a56b5 !important;
  box-shadow: 0 4px 12px rgba(10, 86, 181, 0.25);
}

/* Product Card Grid Item */
.jns-product-card-v3 {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.jns-product-card-v3:hover,
.jns-product-card-v3.featured {
  border-color: #0a56b5;
  box-shadow: 0 10px 25px rgba(10, 86, 181, 0.15);
  transform: translateY(-4px);
}

/* Card Image Wrapper & Hover Overlay */
.jns-product-card-v3 .card-img-holder {
  position: relative;
  width: 100%;
  padding-top: 68%;
  background-color: #ffffff;
  overflow: hidden;
}

.jns-product-card-v3 .card-img-holder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 15px;
  transition: transform 0.4s ease;
}

.jns-product-card-v3:hover .card-img-holder img {
  transform: scale(1.05);
}

.jns-product-card-v3 .card-img-overlay-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 86, 181, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 2;
}

.jns-product-card-v3:hover .card-img-overlay-btn {
  opacity: 1;
  visibility: visible;
}

.jns-product-card-v3 .card-img-overlay-btn .btn-overlay-view {
  background-color: #0a56b5;
  color: #ffffff;
  border: 1.5px solid #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.25s ease;
}

.jns-product-card-v3 .card-img-overlay-btn .btn-overlay-view:hover {
  background-color: #ffffff !important;
  color: #0a56b5 !important;
  border-color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Card Content Body */
.jns-product-card-v3 .card-content-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.jns-product-card-v3 .card-cat-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #0a56b5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.jns-product-card-v3 .card-product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7rem;
}

.jns-product-card-v3 .card-product-desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
}

/* Card Spec Row */
.jns-product-card-v3 .card-spec-row {
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.jns-product-card-v3 .card-spec-label {
  color: #64748b;
}

.jns-product-card-v3 .card-spec-value {
  font-weight: 700;
  color: #0f172a;
}

/* Card Action Buttons */
.jns-product-card-v3 .card-actions {
  display: flex;
  gap: 10px;
}

.jns-product-card-v3 .card-actions .btn-card-detail {
  border: 1px solid #0a56b5;
  color: #0a56b5;
  background-color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 8px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.jns-product-card-v3 .card-actions .btn-card-detail:hover {
  background-color: #0a56b5;
  color: #ffffff;
}

.jns-product-card-v3 .card-actions .btn-card-quote {
  border: 1px solid #0a56b5;
  background-color: #0a56b5;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 8px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
  transition: all 0.2s ease;
}

.jns-product-card-v3 .card-actions .btn-card-quote:hover {
  background-color: #004299;
  border-color: #004299;
}

/* Slider Nav Arrows floating on sides */
.jns-product-slider-wrapper {
  position: relative;
}

.jns-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: none;
  /* Hide by default, show via JS only if products.length > 4 */
  align-items: center;
  justify-content: center;
  color: #334155;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.jns-slider-arrow:hover {
  background: #0a56b5;
  color: #ffffff;
  border-color: #0a56b5;
}

.jns-slider-arrow.prev {
  left: -22px;
}

.jns-slider-arrow.next {
  right: -22px;
}

@media (max-width: 991px) {
  .jns-slider-arrow.prev {
    left: 5px;
  }

  .jns-slider-arrow.next {
    right: 5px;
  }
}

/* Bottom CTA Pill Button */
.jns-bottom-cat-btn {
  background-color: #0a56b5;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(10, 86, 181, 0.25);
  text-decoration: none;
}

.jns-bottom-cat-btn:hover {
  background-color: #004299;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10, 86, 181, 0.35);
}

.object-fit-cover {
  object-fit: cover;
}

/* ==========================================================================
   CONTACT PAGE ENHANCEMENTS
   ========================================================================== */
.contact-info-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 2.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.contact-info-item:hover {
  background-color: #ffffff;
  border-color: #0a56b5;
  box-shadow: 0 4px 14px rgba(10, 86, 181, 0.1);
  transform: translateY(-2px);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: #F0F4FF;
  color: #0a56b5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(10, 86, 181, 0.15);
  transition: all 0.25s ease;
}

.contact-info-item:hover .contact-icon-box {
  background: #0a56b5;
  color: #ffffff;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.contact-form-header {
  background: linear-gradient(135deg, #0a56b5 0%, #003682 100%);
  padding: 1.75rem 2rem;
  color: #ffffff;
  border-bottom: 3px solid #00255a;
}

.btn-jns-outline-dark {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  transition: all 0.25s ease;
}

.btn-jns-outline-dark:hover {
  background-color: #0a56b5;
  border-color: #0a56b5;
  color: #ffffff;
}