:root {
  /* Primary Colors */
  --primary-blue: #205781;
  --primary-blue-dark: #1a4a6b;
  --primary-blue-light: #3a6ea5;
  --primary-blue-lighter: #eff6ff;

  /* Secondary Colors */
  --primary-red: #c41a1b;
  --primary-red-dark: #a01515;
  --primary-red-light: #e74c3c;
  --primary-red-lighter: #fef2f2;

  /* Neutral Colors */
  --neutral-dark: #1a2b4d;
  --neutral-medium: #52617a;
  --neutral-light: #eef2f7;

  /* Gradient Definitions */
  --gradient-blue: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-dark) 100%
  );
  --gradient-red: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-red-dark) 100%
  );
  --gradient-text: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-red) 100%
  );

  /* Shadow Definitions */
  --shadow-blue: 0 4px 12px rgba(32, 87, 129, 0.3);
  --shadow-blue-hover: 0 6px 20px rgba(32, 87, 129, 0.4);
  --shadow-red: 0 4px 12px rgba(196, 26, 27, 0.3);
  --shadow-red-hover: 0 6px 20px rgba(196, 26, 27, 0.4);
}

/* Utility Classes for Colors */
.text-primary {
  color: var(--primary-blue);
}

.text-secondary {
  color: var(--primary-red);
}

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

.bg-secondary {
  background-color: var(--primary-red);
}

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

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

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

/* Hover States */
.hover-primary:hover {
  color: var(--primary-blue);
}

.hover-secondary:hover {
  color: var(--primary-red);
}

.hover-bg-primary:hover {
  background-color: var(--primary-blue-lighter);
}

.hover-bg-secondary:hover {
  background-color: var(--primary-red-lighter);
}

/* Shadow Utilities */
.shadow-primary {
  box-shadow: var(--shadow-blue);
}

.shadow-primary-hover:hover {
  box-shadow: var(--shadow-blue-hover);
}

.shadow-secondary {
  box-shadow: var(--shadow-red);
}

.shadow-secondary-hover:hover {
  box-shadow: var(--shadow-red-hover);
} /* Header Styles for Dynamic Loading */

/* Header Menu Effects */
.nav-link {
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  /* Limit transitions to avoid font-size swap looking animated */
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  font-weight: 500;
  color: #374151;
  font-size: 18px !important;
}

.nav-link:hover {
  color: #205781;
  transform: translateY(-1px);
}

/* Underline animation effect */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #205781, #c41a1b);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

/* Logo: no hover animation/effects */
.logo-container img {
  transition: none !important;
  transform: none !important;
  filter: none !important;
}

.logo-container:hover img {
  transform: none !important;
  filter: none !important;
}

/* Reduce perceived font jump during webfont swap */
header .nav-link {
  font-size-adjust: 0.5;
}

/* CTA Button Effects */
.cta-button {
  background: linear-gradient(135deg, #205781, #c41a1b);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #c41a1b, #205781);
  color: white;
}

/* Mobile menu button effect */
#mobile-menu-button {
  transition: all 0.3s ease;
}

#mobile-menu-button:hover {
  background-color: #f3f4f6;
  transform: scale(1.05);
}

/* Products dropdown animations */
#products-overlay {
  backdrop-filter: blur(4px);
}

.category-tab {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Category Tab Color States */
.category-tab.active,
.category-tab:focus {
  background-color: rgba(196, 26, 27, 0.1) !important;
  color: #c41a1b !important;
  border-color: rgba(196, 26, 27, 0.3) !important;
  box-shadow: 0 2px 4px rgba(196, 26, 27, 0.2);
}

.category-tab:not(.active) {
  background-color: rgba(32, 87, 129, 0.1) !important;
  color: #205781 !important;
  border-color: rgba(32, 87, 129, 0.3) !important;
}

.category-tab::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: left 0.5s ease;
}

.category-tab:hover::before {
  left: 100%;
}

.category-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Product links hover effects */
.product-link {
  transition: all 0.2s ease;
}

/* Product links simple hover - matching original CSS */
.product-link:hover {
  color: #c41a1b !important;
  background-color: #fef2f2 !important;
}

/* Header shadow on scroll */
.header-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Mobile menu slide animation */
#mobile-menu {
  transition: all 0.3s ease;
  transform: translateY(-10px);
  opacity: 0;
}

#mobile-menu:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
}

/* Products submenu animation and display */
#products-submenu {
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

#products-submenu:not(.hidden) {
  max-height: 1000px;
  overflow: visible;
}

/* Ensure products toggle button is clickable */
#products-toggle {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
  #products-toggle {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  #products-submenu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Quick links animation */
.quick-link {
  transition: all 0.3s ease;
}

.quick-link:hover {
  color: #c41a1b !important;
  background-color: #fef2f2 !important;
}

/* Force hide desktop menu on tablets and below (iPad Pro + large tablets) */
/* Treat up to 1365px as mobile/tablet: hide desktop nav */
@media (max-width: 1365px) {
  .nav-center.nav-links {
    display: none !important;
  }
}

/* Between 1280px and 1365px Tailwind would show xl: elements; override to keep mobile */
@media (min-width: 1280px) and (max-width: 1365px) {
  /* Show hamburger button wrapper even though it has xl:hidden */
  .nav-right .xl\:hidden {
    display: block !important;
  }
  /* Ensure the button itself is visible as inline-flex */
  #mobile-menu-button {
    display: inline-flex !important;
  }
  /* Hide the desktop CTA which has xl:inline-flex */
  .nav-right .xl\:inline-flex {
    display: none !important;
  }
  /* Allow the slide-down mobile menu panel to open in this range */
  #mobile-menu.hidden {
    display: none !important;
  }
  #mobile-menu:not(.hidden) {
    display: block !important;
  }
}

@media (min-width: 1280px) {
  .container.mx-auto.px-6.py-8 {
    max-width: 1800px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .cta-button,
  .nav-right .cta-button {
    display: none !important;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .nav-right .cta-button {
    display: none !important;
  }
}
@media only screen and (max-width: 820px) {
  .cta-button,
  .nav-right .cta-button {
    display: none !important;
  }
}
body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

/* Fix for slider buttons on mobile */
@media (max-width: 640px) {
  .slide-buttons a {
    width: auto;
    min-width: 180px;
    max-width: 250px;
    margin: 0 auto;
    white-space: nowrap;
  }
}

/* Header styles matching style.css specifications */
.header {
  position: relative;
  z-index: 1000;
}

.navbar {
  padding: 0;
  height: 100px;
  max-height: 100px;
  background-color: #ffffff;
}

.navbar > .container,
.navbar > .container-fluid {
  position: relative;
  height: 100px;
}

.navbar .navbar-brand {
  padding: 0;
  margin: 0;
  line-height: 100px;
}

a.navbar-brand {
  max-width: 150px;
}

.navbar .navbar-brand img {
  height: 40px;
  width: auto;
  max-width: 100%;
}

.navbar .nav-item {
  position: relative;
  margin-right: 25px;
}

.navbar .nav-item .nav-item-link {
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  position: relative;
  color: var(--primary-blue);
  line-height: 80px;
  letter-spacing: 0.4px;
  padding-right: 15px;
  text-decoration: none;
}

.navbar .nav-item .nav-item-link.active,
.navbar .nav-item .nav-item-link:hover {
  color: var(--primary-red);
}

.navbar .nav-item .nav-item-link.active:before,
.navbar .nav-item .nav-item-link:hover:before {
  width: 100%;
}

.navbar .nav-item:last-child {
  margin-right: 0;
}

.navbar-actions > li {
  margin-left: 20px;
}

.navbar-actions > li:last-child {
  margin-right: 0;
}

.action-btn {
  color: var(--primary-red);
}

/* CTA Button styling */
.cta-button {
  background: var(--gradient-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-blue);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button:hover {
  background: var(--gradient-red);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-hover);
  text-decoration: none;
}

.cta-button:active {
  transform: translateY(0);
}

/* Custom color override for text-blue-800 */
.text-blue-800 {
  color: var(--primary-blue) !important;
}

/* Custom color overrides for blue classes */
.text-blue-800 {
  color: var(--primary-blue) !important;
}

.hover\:text-blue-800:hover {
  color: var(--primary-blue) !important;
}

.border-blue-200 {
  border-color: #bfdbfe !important;
}

.hover\:bg-blue-50:hover {
  background-color: #eff6ff !important;
}

.text-blue-400 {
  color: #3b82f6 !important;
}

/* Custom color overrides for red classes */
.text-red-700 {
  color: var(--primary-red) !important;
}

.hover\:text-red-700:hover {
  color: var(--primary-red) !important;
}

.border-red-200 {
  border-color: #fecaca !important;
}

.hover\:bg-red-50:hover {
  background-color: #fef2f2 !important;
}

.text-red-400 {
  color: #f87171 !important;
}

/* Category tab button hover effects */
.category-tab {
  transition: all 0.3s ease !important;
}

.category-tab:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(32, 87, 129, 0.15) !important;
}

.category-tab:active {
  transform: translateY(0) !important;
}

/* Active state for category tabs */
.category-tab.bg-blue-50 {
  background-color: #eff6ff !important;
  color: #205781 !important;
  border-color: #bfdbfe !important;
  box-shadow: 0 2px 8px rgba(32, 87, 129, 0.1) !important;
}

.category-tab.bg-red-50 {
  background-color: #fef2f2 !important;
  color: #c41a1b !important;
  border-color: #fecaca !important;
  box-shadow: 0 2px 8px rgba(196, 26, 27, 0.1) !important;
}

/* Non-active state for category tabs */
.category-tab:not(.bg-blue-50):not(.bg-red-50) {
  background-color: transparent !important;
  color: #205781 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* Product links hover color - change from blue to red */
#products-overlay a[href*="#"]:hover {
  color: var(--primary-red) !important;
}

#products-overlay .hover\\:text-blue-800:hover {
  color: var(--primary-red) !important;
}

#products-overlay .hover\\:bg-blue-50:hover {
  background-color: #fef2f2 !important;
}

.category-tab:not(.bg-blue-50):not(.bg-red-50):hover {
  background-color: var(--primary-blue-lighter) !important;
  color: var(--primary-blue) !important;
  border-color: #bfdbfe !important;
  box-shadow: 0 2px 8px rgba(32, 87, 129, 0.1) !important;
}

/* Sticky header styles */
.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.is-sticky .navbar-brand {
  line-height: 80px;
}

.is-sticky .logo-light {
  display: block;
}

.is-sticky .logo-dark {
  display: none;
}

/* Header layout improvements */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-left: 45px;
  margin-right: 70px;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0 2rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Custom container width for large desktop */
@media (min-width: 1536px) {
  .container {
    max-width: 1820px;
  }
}

/* Mobile responsive styles */
@media (max-width: 420px) {
  .header .navbar-brand img {
    max-width: 120px;
  }
}

@media (max-width: 1236px) {
  .navbar .navbar-toggler {
    display: block;
    border: none;
    background: transparent;
    padding: 0.5rem;
  }

  .navbar .navbar-nav {
    display: none;
  }

  .navbar .navbar-nav.show {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }

  .navbar .nav-item {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .navbar .nav-item .nav-item-link {
    line-height: 1.5;
    padding: 0.75rem 1rem;
  }
}
.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.h-8 {
  height: 2.25rem;
}
.text-gray-700 {
  color: #6b7280;
}
.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}
/* Product menu improvements */
/* Desktop dropdown - hide on mobile/tablet, show on desktop */
#products-overlay {
  display: none !important; /* Hide by default */
}

/* Show desktop dropdown only on large screens */
@media (min-width: 1024px) {
  #products-overlay {
    display: block !important; /* Show on desktop */
  }
}

/* Hide desktop navigation on mobile/tablet */
.nav-center {
  display: none !important;
}

/* Show desktop navigation only on large screens */
@media (min-width: 1024px) {
  .nav-center {
    display: flex !important;
  }
}

/* Hide desktop inquiry button on mobile/tablet */
.cta-button {
  display: none !important;
}

/* Show desktop inquiry button only on large screens */
@media (min-width: 1024px) {
  .cta-button {
    display: inline-flex !important;
  }
}

/* Logo: lock a consistent size to avoid jump on refresh */
.logo-container img {
  height: 2rem !important; /* 32px */
  width: auto !important;
  transition: none !important; /* prevent any perceived grow/shrink */
}

/* Desktop logo size as requested */
@media (min-width: 1024px) {
  .logo-container img {
    height: 35px !important;
    width: 160px !important;
    transition: none !important;
  }
  a.logo-container.flex.items-center.flex-shrink-0.mr-4 {
    margin-left: 15px;
  }
}

/* Header nav styles for mobile and tablet */
@media (max-width: 1023px) {
  .header-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-left: 0px !important;
    margin-right: 70px !important;
  }
}

/* Mobile inquiry button styles */
#mobile-menu .cta-button {
  background: linear-gradient(135deg, #205781 0%, #1a4a6b 100%) !important;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(32, 87, 129, 0.3) !important;
  border: none !important;
  display: block !important;
  text-align: center !important;
  margin: 0 !important;
}

#mobile-menu .cta-button:hover {
  background: linear-gradient(135deg, #c41a1b 0%, #a01515 100%) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(196, 26, 27, 0.4) !important;
  text-decoration: none !important;
}
#products-overlay .w-64 {
  width: 10rem !important; /* Increased width */
}
#products-overlay .px-4 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
#products-overlay .py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
#products-overlay .p-4 {
  padding: 0.75rem !important;
}
#products-overlay .mb-3 {
  margin-bottom: 0.75rem !important;
}
#products-overlay .text-lg {
  font-size: 1rem !important; /* Increased product name size */
  font-weight: 600 !important;
}
#products-overlay .text-sm {
  font-size: 0.75rem !important; /* Increased text size */
}
#products-overlay .text-xs {
  font-size: 0.625rem !important;
}
#products-overlay .py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
#products-overlay .rounded-lg {
  border-radius: 0.5rem !important;
}
#products-overlay .space-y-3 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem !important;
}
#products-overlay .space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.375rem !important;
}
/* Remove dots before product names */
#products-overlay a[href*="#"]::before {
  content: "" !important;
}
#products-overlay a[href*="#"] {
  padding-left: 10px !important;
}
/* Mobile menu */
#products-submenu,
#products-toggle,
#mobile-menu .px-6 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
#products-submenu,
#products-toggle,
#mobile-menu .py-4 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
#products-submenu .py-3,
#products-submenu .py-2,
#products-submenu .py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
#products-submenu .text-sm {
  font-size: 0.95rem !important; /* Increased text size */
}
#products-submenu .text-xs {
  font-size: 0.95rem !important;
}

/* Product Page Specific Styles */

.breadcrumb a:hover {
  text-decoration: underline;
}

.sidebar-widget {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}
/* ... existing code ... */

/* Sidebar Widget Styling */
.sidebar-widget {
  background: #f7fafc;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34, 91, 125, 0.04);
  padding: 1.5rem 1.2rem;
  margin-bottom: 1.2rem;
  height: auto !important;
  min-height: unset !important;
  max-height: unset !important;
  display: block !important;
}

.widget-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1d3c73;
  margin-bottom: 1.1rem;
}

.widget-subtitle {
  font-size: 1.02rem;
  font-weight: 600;
  color: #1d3c73;
  margin-bottom: 0.7rem;
  margin-top: 1.1rem;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem 0;
}
.sidebar-list li {
  margin-bottom: 0.7rem;
}
.sidebar-list li:last-child {
  margin-bottom: 0;
}
.sidebar-list a {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 0.95rem 1.2rem;
  font-size: 1.08rem;
  color: #1d3c73;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 4px 0 rgba(34, 91, 125, 0.04);
  transition:
    box-shadow 0.2s,
    background 0.2s;
  gap: 0.8rem;
}
.sidebar-list a:hover {
  background: #e6f0fa;
  box-shadow: 0 2px 8px 0 rgba(34, 91, 125, 0.1);
}

.variant-dot {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.variant-red {
  background-color: var(--primary-red);
}

.variant-blue {
  background-color: var(--primary-blue);
}

.cert-list li a {
  padding: 0.5rem 1rem;
}

.cert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.cert-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Download Button Styling */
.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--primary-red);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 12px rgba(196, 26, 27, 0.2);
  margin-bottom: 0.75rem;
}

.download-btn:hover {
  background-color: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 26, 27, 0.3);
}

.download-btn i {
  font-size: 1.25rem;
}

/* Product Content Card Styling */
.product-content-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.product-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 2px;
}

/* Product Image Slider */
.product-content-card.relative {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.product-content-card.relative img {
  border-radius: 0.5rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Product Specifications Table */
.spec-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.spec-tab {
  background-color: #f0f0f0;
  color: #555;
  padding: 0.6rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

.spec-tab:hover {
  background-color: #e0e0e0;
}

.spec-tab.active {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: 0 2px 8px rgba(32, 87, 129, 0.2);
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.product-spec-table th,
.product-spec-table td {
  border: 1px solid #e0e0e0;
  padding: 0.8rem 1rem;
  text-align: left;
}

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

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

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #555;
}

.features-list li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-blue);
}

/* Application Cards */
.application-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 0.5rem;
  border: 1px solid #eee;
  transition: all 0.2s ease-in-out;
}

.application-card:hover {
  background-color: var(--primary-blue-lighter);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 87, 129, 0.1);
}

.app-icon {
  width: 4rem; /* Adjust size as needed based on the image */
  height: 4rem; /* Adjust size as needed based on the image */
  object-fit: contain;
  margin-bottom: 1rem;
}

.app-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.app-text {
  font-size: 0.9rem;
  color: #666;
}

/* ... existing code ... */
.widget-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.widget-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-list li + li {
  margin-top: 10px;
}

.sidebar-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.sidebar-list li a:hover {
  background-color: #f3f4f6;
}

.variant-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.variant-red {
  background-color: #be1e2d;
}
.variant-blue {
  background-color: #1d3c73;
}

.cert-list li a {
  font-size: 13px;
}

.cert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e7eef7;
  font-size: 12px;
  font-weight: 500;
  color: #344054;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #be1e2d;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s;
  margin-bottom: 10px;
}

.download-btn:hover {
  background-color: #9f1a25;
}

.download-btn i {
  font-size: 16px;
}

.product-content-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #d1d5db;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.slider-btn:hover {
  background-color: #2c5282;
  color: #fff;
}

.product-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #1d3c73;
  margin-bottom: 5px;
  display: inline-block;
  border-bottom: 3px solid #1d3c73;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.spec-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid #d1d5db;
  margin-bottom: 20px;
}

.spec-tab {
  padding: 8px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  color: #6b7280;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.spec-tab.active,
.spec-tab:hover {
  color: #1d3c73;
  font-weight: 600;
  border-bottom-color: #1d3c73;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.product-spec-table th,
.product-spec-table td {
  border: 1px solid #e5e7eb;
  padding: 12px;
  text-align: left;
}

.product-spec-table th {
  background-color: #1d3c73;
  color: #fff;
  font-weight: 600;
}

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

.features-list {
  list-style: none;
  padding-left: 0;
}

.features-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.features-list li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #1d3c73;
  position: absolute;
  left: 0;
  top: 2px;
}

.application-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.3s;
}

.application-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-icon {
  font-size: 28px;
  color: #1d3c73;
  margin-bottom: 15px;
}

.app-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 5px;
}

.app-text {
  font-size: 14px;
  color: #6b7280;
}
#products-submenu .ml-4 {
  margin-left: 0.75rem !important;
}
#products-submenu .mb-2 {
  margin-bottom: 0.5rem !important;
}
#products-submenu .mt-6,
#products-submenu .pt-4 {
  margin-top: 0.75rem !important;
  padding-top: 0.75rem !important;
}
/* Remove dots before product names in mobile */
#products-submenu a[href*="#"]::before {
  content: "" !important;
}
#products-submenu a[href*="#"] {
  padding-left: 0 !important;
}

/* Redesigned What's New Section Styles */
#whats-new {
  background: linear-gradient(135deg, #e3eaf6 0%, #c7e0f7 60%, #b3d8f7 100%);
  position: relative;
  overflow: hidden;
}
#whats-new .whatsnew-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(34, 91, 125, 0.12);
  border: 1.5px solid #e3eaf6;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
  border-left: 8px solid #205781;
}
#whats-new .whatsnew-card:hover {
  transform: scale(1.045);
  box-shadow: 0 16px 48px rgba(34, 91, 125, 0.18);
  z-index: 2;
  background: #f0f6fa;
}
#whats-new .whatsnew-card:nth-child(1) {
  border-left-color: #3b82f6;
}
#whats-new .whatsnew-card:nth-child(2) {
  border-left-color: #22c55e;
}
/* Default badge position (desktop) */
#whats-new .whatsnew-badge {
  position: absolute;
  top: -1.2rem;
  left: 2rem;
  background: linear-gradient(90deg, #ef4444 0%, #ec4899 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.12);
  z-index: 3;
  transition:
    top 0.2s,
    left 0.2s,
    font-size 0.2s,
    padding 0.2s;
}
#whats-new .whatsnew-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #205781;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  margin-top: 2.5rem;
}
#whats-new .whatsnew-desc {
  color: #52617a;
  font-size: 1rem;
  margin-bottom: 1rem;
}
#whats-new .whatsnew-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
#whats-new .whatsnew-badges span {
  background: #e3eaf6;
  color: #205781;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
#whats-new .whatsnew-features {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: #52617a;
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
#whats-new .whatsnew-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#whats-new .whatsnew-cta {
  display: inline-block;
  margin-top: auto;
  padding: 0.7rem 2rem;
  background: linear-gradient(90deg, #205781 0%, #3a6ea5 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(34, 91, 125, 0.1);
  transition:
    background 0.3s,
    transform 0.2s;
  text-decoration: none;
  width: auto;
}
#whats-new .whatsnew-cta:hover {
  background: linear-gradient(90deg, #3a6ea5 0%, #205781 100%);
  transform: scale(1.04);
}
@media (max-width: 900px) {
  #whats-new .whatsnew-card {
    padding: 2rem 1rem 1.5rem 1rem;
    border-radius: 1.2rem;
  }
  #whats-new .whatsnew-title {
    font-size: 1.2rem;
    margin-top: 2rem;
  }
  #whats-new .whatsnew-badge {
    left: 1rem;
    font-size: 0.75rem;
    padding: 0.3rem 0.9rem;
  }
}
@media (max-width: 600px) {
  #whats-new .whatsnew-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    border-radius: 0.8rem;
    border-left-width: 5px;
  }
  #whats-new .whatsnew-title {
    font-size: 1.05rem;
    margin-top: 1.5rem;
  }
  #whats-new .whatsnew-badge {
    left: 0.5rem;
    top: -0.8rem;
    font-size: 0.7rem;
    padding: 0.2rem 0.7rem;
  }
  #whats-new .whatsnew-cta {
    width: 100%;
    padding: 0.7rem 0;
    font-size: 1rem;
  }
}
/* Fixed card size for tablet, full width for mobile */
@media (min-width: 600px) and (max-width: 1024px) {
  #whats-new .whatsnew-card {
    width: 340px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 599px) {
  #whats-new .whatsnew-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  #whats-new h2 {
    color: #205781 !important;
    padding-top: 20px !important;
  }
}

@media (max-width: 390px) {
  .new {
    padding-top: 25px;
  }
}

/* Tablet: move badge down and left a bit */
@media (max-width: 1024px) {
  #whats-new .whatsnew-badge {
    top: 0.5rem;
    left: 1.2rem;
    font-size: 0.75rem;
    padding: 0.3rem 0.9rem;
  }
}

/* Mobile: move badge inside card, above title, and shrink */
@media (max-width: 599px) {
  #whats-new .whatsnew-badge {
    position: static;
    display: inline-block;
    margin-bottom: 0.7rem;
    margin-left: 0;
    top: auto;
    left: auto;
    font-size: 0.7rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
  }
  #whats-new .whatsnew-title {
    margin-top: 0 !important;
  }
}

/* ===== INDEX.HTML STYLES ===== */

/* Hero and Slider Styles */
.hero-bg {
  background-color: #eef2f7;
}

.section-title {
  font-size: 2rem; /* Default for mobile */
  font-weight: 800;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem; /* md:text-4xl */
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem; /* lg:text-5xl */
    margin-bottom: 1.25rem;
    color: var(--neutral-dark);
  }
}

.section-subtitle {
  font-size: 1rem; /* Default for mobile */
  color: var(--neutral-medium);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.125rem; /* md:text-lg */
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
  }
}

/* Card Styles */
.card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.07),
    0 2px 4px -2px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue-hover);
}

/* CTA Button Styles */
.cta-button {
  background-color: var(--primary-blue);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: var(--primary-blue-dark);
  transform: scale(1.03);
}

/* Navigation Link Styles */
.nav-link {
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  font-weight: 500;
  color: #374151;
  font-size: 17px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 70%;
}

.nav-link:hover {
  color: var(--primary-blue);
  background-color: transparent;
}

/* Header Layout Improvements */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-left: 70px;
  margin-right: 70px;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0 2rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Logo Improvements */
.logo-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Navigation Spacing */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Custom Container Width for Large Desktop */
@media (min-width: 1536px) {
  .container {
    max-width: 2050px;
  }
}

/* Footer Background */
.footer-bg {
  background-color: #0f172a;
  color: #cbd5e1;
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpAnimation 0.8s ease-out forwards;
}

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

.stagger-fade-in-up > * {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpAnimation 0.8s ease-out forwards;
}

.company-logo-text {
  font-weight: 800;
  letter-spacing: -0.5px;
}

.icon-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Slider Container */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Modern Slide Content Animations */
.slide-content {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Modern Staggered Animations for Slide Elements */
.slide.active .slide-badge {
  animation: modernSlideInTop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.slide.active .slide-title {
  animation: modernSlideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.slide.active .slide-description {
  animation: modernSlideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

.slide.active .slide-buttons {
  animation: modernSlideInBottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s
    both;
}

/* Modern Animation Keyframes */
@keyframes modernSlideInTop {
  0% {
    opacity: 0;
    transform: translateY(-60px) rotateX(-15deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes modernSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px) skewX(-5deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
}

@keyframes modernSlideInBottom {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modern Button Animations */
@keyframes modernScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.6) rotateY(-15deg);
  }
  50% {
    transform: scale(1.1) rotateY(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

.slide.active .slide-buttons a {
  animation: modernScaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s both;
}

.slide.active .slide-buttons a:nth-child(2) {
  animation-delay: 1.3s;
}

/* Modern Floating Animation for Badges */
@keyframes modernFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

.slide.active .slide-badge {
  animation:
    modernSlideInTop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both,
    modernFloat 3s ease-in-out 1.5s infinite;
}

/* Modern Glow Effect for Titles */
@keyframes modernGlow {
  0%,
  100% {
    /* text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); */
  }
  50% {
    /* text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3); */
  }
}

.slide.active .slide-title {
  animation: modernSlideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

/* Modern Slide Transition Effects */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.05);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Modern Background Parallax Effect */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-bg {
  transform: scale(1);
}

/* Modern Gradient Overlay Animation */
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-overlay {
  opacity: 1;
}

/* Modern Button Hover Effects */
.slide-buttons a {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-buttons a::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: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-buttons a:hover::before {
  left: 100%;
}

.slide-buttons a:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.dot.bg-opacity-100 {
  background-color: #205781;
}

/* Slider Animations */
.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 1s ease-out forwards;
}

.animate-slide-up-delay {
  animation: slideUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.animate-slide-up-delay-2 {
  animation: slideUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Improved Dot Styling */
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot.bg-opacity-100 {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Utility Classes */
.p-8 {
  padding: 1rem !important;
}

.px-6 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

img.w-11\/12.h-48.object-cover.rounded-2xl.shadow-lg.border.border-\[\#225b7d\]\/10.mt-auto.transition-all.duration-300.hover\:shadow-2xl {
  box-shadow: none;
}

/* removed Slick carousel styles; using CSS grid now */

/* ===== REMAINING INDEX.HTML STYLES ===== */

/* Container Styles  max-width: 1200px; */
.container {
  max-width: 1800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
}

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

/* Product Image Area Styles */
.product-img-area {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #e3eaf6 60%, #c7e0f7 100%);
  border-radius: 1.5rem 1.5rem 2.5rem 2.5rem/1.5rem 1.5rem 3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 4px 16px rgba(34, 91, 125, 0.1);
  border: 2px solid #fff;
  overflow: hidden;
  position: relative;
}

.product-img-area img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1px 4px rgba(34, 91, 125, 0.06);
  display: block;
}

/* Product Card Styles */
.product-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(34, 91, 125, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 320px;
  margin: 0 auto;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(34, 91, 125, 0.16);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
}

.product-card-img-clip {
  width: 100%;
  height: 140px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

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

.product-card-body {
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: flex-start;
}

.product-card-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #205781;
  margin-bottom: 0.6rem;
}

.product-card-desc {
  color: #52617a;
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
  min-height: 44px;
  max-height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  color: #d32f2f;
  font-weight: 700;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
  margin-top: auto;
}

.product-card-btn i {
  margin-right: 0.5rem;
  color: #205781;
  font-size: 1.1em;
}

/* Product Card Image Large */
.product-card-img-large {
  width: 90%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.2rem auto;
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 4px 16px rgba(34, 91, 125, 0.1);
  border: 2px solid #e3eaf6;
}

/* Contact Glass Card Styles */
.contact-glass-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 1.5rem;
  max-width: 800px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
}

.contact-title {
  font-size: 2rem;
  font-weight: 800;
  color: #205781;
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  color: #3a6ea5;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1.2rem;
}

.form-group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 1rem;
  color: #205781;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.contact-input {
  width: 100%;
  padding: 1rem 1rem;
  border: 2px solid #e3eaf6;
  border-radius: 1rem;
  background: #fff;
  font-size: 1.08rem;
  color: #205781;
  outline: none;
  transition:
    border 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 1px 4px #20578111;
  margin: 0;
}

.contact-input:focus {
  border: 2px solid #205781;
  box-shadow: 0 0 0 2px #20578122;
}

.contact-btn {
  background: linear-gradient(90deg, #205781, #c41a1b);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: 1rem;
  padding: 1.1rem 0;
  box-shadow: 0 2px 8px #20578122;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
  outline: none;
  width: 100%;
  margin-top: 1rem;
}

.contact-btn:hover,
.contact-btn:focus {
  background: linear-gradient(90deg, #c41a1b, #205781);
  transform: scale(1.03);
}

/* Contact Info Card Styles */
.contact-info-card {
  background: #fff;
  border-radius: 1.5rem;
  border: 1.5px solid #e3eaf6;
  max-width: 100%;
  margin: 2.5rem auto 0 auto;
  padding: 2.2rem 2.5rem 1.7rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.contact-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 1.2rem;
  margin-bottom: 1.1rem;
}

.contact-info-main {
  font-size: 1.25rem;
  color: #205781;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}

.contact-info-divider {
  color: #e3eaf6;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0.7rem;
}

.contact-info-simple {
  color: #205781;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
  margin: 0;
  padding: 0;
  border: none;
}

.contact-info-bottom {
  gap: 1.2rem;
  font-size: 1.1rem;
  color: #205781;
  font-weight: 500;
  margin-bottom: 0;
}

.contact-info-socials {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-left: 1.2rem;
}

.contact-info-social {
  color: #205781;
  font-size: 1.25rem;
  background: #e3eaf6;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 1px 4px #20578111;
}

.contact-info-social:hover,
.contact-info-social:focus {
  background: #205781;
  color: #fff;
  box-shadow: 0 4px 16px #20578133;
}

/* Responsive Media Queries */
@media (min-width: 601px) and (max-width: 991px) {
  .contact-glass-card {
    min-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 1rem;
  }
}

@media (min-width: 992px) {
  .contact-glass-card {
    max-width: 1100px;
    width: 100%;
    margin: 2.5rem auto;
    padding: 2.5rem 2rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .contact-glass-card,
  .contact-info-card {
    max-width: 98vw;
    padding: 1.5rem 0.7rem;
  }
}

@media (max-width: 991px) {
  .contact-glass-card {
    max-width: 98vw;
    width: 100%;
    padding: 1.2rem;
    margin: 1.5rem auto;
  }
}

@media (max-width: 700px) {
  .contact-glass-card,
  .contact-info-card {
    padding: 1.2rem 0.5rem;
  }

  .contact-info-row {
    flex-direction: column;
    gap: 0.7rem;
  }

  .contact-info-bottom {
    flex-direction: column;
    align-items: center;
  }

  .contact-info-socials {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .contact-glass-card {
    max-width: 99vw;
    width: 100%;
    padding: 0.7rem;
    margin: 1rem auto;
  }

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

  .contact-input {
    font-size: 1rem;
    padding: 0.8rem 0.7rem;
  }

  .contact-btn {
    font-size: 1rem;
    padding: 0.9rem 0;
  }
}

/* About Us Page Responsive Styles */
#about-us-page h2 {
  letter-spacing: -0.5px;
}

/* Desktop styles */
@media (min-width: 1024px) {
  section#about-us-page {
    padding-left: 120px;
  }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1023px) {
  section#about-us-page {
    padding-left: 60px;
    padding-right: 60px;
  }
  #about-us-page .md\:grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  #about-us-page .grid-cols-2 {
    gap: 2rem;
  }
  #about-us-page h2 {
    font-size: 2.5rem;
  }
  #about-us-page .w-3\/4 {
    width: 100%;
  }
  #about-us-page .h-80 {
    height: 24rem;
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  section#about-us-page {
    padding-left: 20px;
    padding-right: 20px;
  }
  #about-us-page .max-w-lg {
    max-width: 100vw !important;
  }
  #about-us-page .rounded-2xl {
    border-radius: 0.5rem !important;
  }
  #about-us-page h2 {
    font-size: 1.6rem !important;
  }
  #about-us-page .grid-cols-2 {
    grid-template-columns: 1fr !important;
  }
  #about-us-page .flex-col {
    flex-direction: column !important;
  }
  #about-us-page .mb-4 {
    margin-bottom: 1rem !important;
  }
  #about-us-page .p-7 {
    padding: 1.1rem !important;
  }
  #about-us-page .gap-8 {
    gap: 1.2rem !important;
  }
  #about-us-page .mb-6 {
    margin-bottom: 1.1rem !important;
  }
  #about-us-page .w-3\/4 {
    width: 110%;
    margin-left: -5%;
  }
  #about-us-page .h-80 {
    height: auto;
    min-height: 20rem;
  }
  #about-us-page .gap-6 {
    gap: 1.5rem;
  }
  #about-us-page .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

section#about {
  padding-bottom: 15px;
}

/* ===== REMAINING STYLES FROM INDEX.HTML ===== */

/* Unique Card Styles */
.unique-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(34, 91, 125, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 420px;
  overflow: hidden;
  z-index: 1;
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border 0.4s;
  border: 3px solid transparent;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
}

.unique-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.unique-card:focus {
  outline: 2.5px solid var(--primary-blue);
  outline-offset: 2px;
}

.unique-card:hover,
.unique-card:focus {
  box-shadow:
    0 16px 48px rgba(34, 91, 125, 0.18),
    0 0 32px #20578133;
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
}

.unique-card:hover .unique-card-fact,
.unique-card:focus .unique-card-fact {
  animation: factBounce 0.7s;
}

@keyframes factBounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.15);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.unique-card-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 10;
  background: linear-gradient(90deg, #fffbe7 0%, #e3eaf6 100%);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(32, 87, 129, 0.1);
  letter-spacing: 0.01em;
  opacity: 0.93;
  border: 2px solid #e3eaf6;
  pointer-events: none;
  user-select: none;
}

.pharma-badge {
  color: var(--primary-blue);
  border-color: rgba(32, 87, 129, 0.2);
}
.nutra-badge {
  color: var(--primary-blue);
  border-color: rgba(32, 87, 129, 0.2);
}
.food-badge {
  color: var(--primary-blue);
  border-color: rgba(32, 87, 129, 0.2);
}

.unique-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.3s;
}

.pharma-bg {
  background: radial-gradient(circle at 60% 40%, #20578155 0%, #e3eaf6 80%);
  animation: pharmaPulse 3s infinite alternate;
}

@keyframes pharmaPulse {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.nutra-bg {
  background: radial-gradient(circle at 60% 40%, #20578155 0%, #e3eaf6 80%);
  animation: pharmaPulse 3s infinite alternate;
}

.food-bg {
  background: radial-gradient(circle at 60% 40%, #20578155 0%, #e3eaf6 80%);
  animation: pharmaPulse 3s infinite alternate;
}

@keyframes nutraWave {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes foodSparkle {
  0% {
    background-position:
      0 0,
      0 0,
      0 0;
  }
  100% {
    background-position:
      40px 40px,
      30px 30px,
      100% 100%;
  }
}

/* Industry Card Styles */
.industry-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(34, 91, 125, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #205781, #c41a1b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(34, 91, 125, 0.2);
  border-color: #205781;
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e3eaf6, #c7e0f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #205781;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #205781, #3a6ea5);
  color: white;
}

/* Certificate Card Styles */
.cert-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(34, 91, 125, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #205781, #c41a1b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cert-card:hover::before {
  transform: scaleX(1);
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(34, 91, 125, 0.2);
  border-color: #205781;
}

.cert-card-icon {
  width: 60px;
  height: 60px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #205781;
  transition: all 0.3s ease;
}

.cert-card:hover .cert-card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #205781, #3a6ea5);
  color: white;
}

/* Company Logo Styles */
.company-logo {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(34, 91, 125, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.company-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(34, 91, 125, 0.2);
  border-color: #205781;
}

.company-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
}

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

/* Testimonial Card Styles */
.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(34, 91, 125, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  color: #205781;
  opacity: 0.1;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(34, 91, 125, 0.2);
  border-color: #205781;
}

.testimonial-content {
  font-style: italic;
  color: #52617a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #205781;
  margin-bottom: 0.5rem;
}

.testimonial-position {
  color: #3a6ea5;
  font-size: 0.9rem;
}

/* Service Card Styles */
.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(34, 91, 125, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #205781, #c41a1b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(34, 91, 125, 0.2);
  border-color: #205781;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e3eaf6, #c7e0f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #205781;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: var(--gradient-blue);
  color: white;
}

/* Map Container Styles */
.map-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(34, 91, 125, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(34, 91, 125, 0.2);
  border-color: #205781;
}

.map-container iframe {
  border-radius: 1rem;
  width: 100%;
  height: 400px;
  border: none;
}

/* Responsive Grid Styles */
.responsive-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 768px) {
  .responsive-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease-out forwards;
}

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

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease-out forwards;
}

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

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  animation: scaleIn 0.8s ease-out forwards;
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, #205781, #c41a1b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #205781, #3a6ea5);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, #c41a1b, #e74c3c);
}

.shadow-primary {
  box-shadow: 0 8px 32px rgba(32, 87, 129, 0.15);
}

.shadow-secondary {
  box-shadow: 0 8px 32px rgba(196, 26, 27, 0.15);
}

/* Hover Effects */
.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(34, 91, 125, 0.2);
}

.hover-scale {
  transition: transform 0.3s ease;
}

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

/* Focus States */
.focus-ring:focus {
  outline: 2px solid #205781;
  outline-offset: 2px;
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #205781;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Applications Section Container */
.applications-section {
  background: #f7fafc;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px 0 rgba(34, 91, 125, 0.04);
}

/* Section Title with Accent */
.applications-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.applications-title-accent {
  display: inline-block;
  width: 36px;
  height: 4px;
  background: #1d3c73;
  border-radius: 2px;
  margin-right: 12px;
}
.applications-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d3c73;
  margin: 0;
}

/* Applications Grid */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .applications-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }
}

/* Application Card */
.application-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(34, 91, 125, 0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  min-height: 220px;
}
.application-card:hover {
  box-shadow: 0 8px 32px 0 rgba(34, 91, 125, 0.16);
  transform: translateY(-4px) scale(1.03);
}

/* Icon Circle */
.app-icon-bg {
  background: #e6f0fa;
  border-radius: 50%;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-icon {
  font-size: 2.2rem;
  color: #1d3c73;
}

/* Card Title & Text */
.app-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d3c73;
  margin-bottom: 0.5rem;
  text-align: center;
}
.app-text {
  font-size: 1rem;
  color: #444;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.5;
}
/* Features Section Container */
.features-section {
  background: #f7fafc;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px 0 rgba(34, 91, 125, 0.04);
}

/* Section Title with Accent */
.features-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.features-title-accent {
  display: inline-block;
  width: 36px;
  height: 4px;
  background: #1d3c73;
  border-radius: 2px;
  margin-right: 12px;
}
.features-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d3c73;
  margin: 0;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1.1em;
  color: #3a4a5b;
  font-size: 1.08rem;
  line-height: 1.6;
}
.features-list li::before {
  width: 0.38em !important;
  height: 0.38em !important;
  top: 0.6em !important;
}
/* Product Specifications Section Container */
.spec-section {
  background: #f7fafc;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px 0 rgba(34, 91, 125, 0.04);
}

/* Section Title with Accent */
.spec-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.spec-title-accent {
  display: inline-block;
  width: 36px;
  height: 4px;
  background: #1d3c73;
  border-radius: 2px;
  margin-right: 12px;
}
.spec-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d3c73;
  margin: 0;
}

/* Tabs */
.spec-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}
.spec-tab {
  background: none;
  border: none;
  outline: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1d3c73;
  padding: 0.7rem 1.5rem 0.7rem 1.5rem;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  position: relative;
}
.spec-tab.active,
.spec-tab:hover {
  background: #fff;
  color: #1d3c73;
  box-shadow: 0 2px 8px 0 rgba(34, 91, 125, 0.08);
  border-bottom: 2px solid #1d3c73;
  z-index: 1;
}

/* Table Wrapper */
.spec-table-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(34, 91, 125, 0.08);
  overflow: hidden;
}

/* Table Styles */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.spec-table th {
  background: #1d3c73;
  color: #fff;
  font-weight: 700;
  padding: 1rem 0.75rem;
  text-align: left;
  font-size: 1.08rem;
}
.spec-table td {
  padding: 0.9rem 0.75rem;
  color: #3a4a5b;
  background: #fff;
}
.spec-table tr:nth-child(even) td {
  background: #f7fafc;
}
/* Overview Section Container */
.overview-section {
  background: #f7fafc;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px 0 rgba(34, 91, 125, 0.04);
}

/* Section Title with Accent */
.overview-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.overview-title-accent {
  display: inline-block;
  width: 36px;
  height: 4px;
  background: #1d3c73;
  border-radius: 2px;
  margin-right: 12px;
}
.overview-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d3c73;
  margin: 0;
}

/* Overview Text */
.overview-text {
  color: #6b7a8f;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
}
/* --- Compact Product Page Layout Tweaks --- */

/* Main container width and padding */
/* .container,
.container.mx-auto {
  max-width: 1100px !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
} */

/* Section/card containers */
.overview-section,
.features-section,
.spec-section,
.applications-section {
  padding: 1.5rem 1.2rem !important;
  border-radius: 14px !important;
  margin-bottom: 1.2rem !important;
}

/* Section headers */
.overview-title,
.features-title,
.spec-title,
.applications-title {
  font-size: 1.35rem !important;
  margin-bottom: 0 !important;
}
.overview-header,
.features-header,
.spec-header,
.applications-header {
  margin-bottom: 1rem !important;
}
.overview-title-accent,
.features-title-accent,
.spec-title-accent,
.applications-title-accent {
  width: 24px !important;
  height: 3px !important;
  margin-right: 8px !important;
}

/* Table tweaks */
.spec-table th,
.spec-table td {
  padding: 0.55rem 0.5rem !important;
  font-size: 0.98rem !important;
}
.spec-table th {
  font-size: 1rem !important;
}

/* Features list */
.features-list li {
  font-size: 0.98rem !important;
  margin-bottom: 0.7em !important;
  padding-left: 1.1em !important;
}
.features-list li::before {
  width: 0.38em !important;
  height: 0.38em !important;
  top: 0.6em !important;
}

/* Applications grid/cards */
.applications-grid {
  gap: 1.1rem !important;
}
.application-card {
  padding: 1.1rem 0.7rem 0.7rem 0.7rem !important;
  min-height: 140px !important;
}
.app-title {
  font-size: 1rem !important;
  margin-bottom: 0.3rem !important;
}
.app-icon-bg {
  padding: 0.6rem !important;
  margin-bottom: 0.6rem !important;
}
.app-icon {
  font-size: 1.3rem !important;
}

/* Sidebar tweaks */
.sidebar-widget {
  padding: 1rem 0.7rem !important;
  border-radius: 10px !important;
}
.sidebar-list li,
.cert-list li {
  margin-bottom: 0.4rem !important;
}
.widget-title {
  font-size: 1.05rem !important;
  margin-bottom: 0.5rem !important;
}
.widget-subtitle {
  font-size: 0.98rem !important;
  margin-bottom: 0.3rem !important;
}

/* Download button tweaks */
.download-btn {
  padding: 0.6rem 1rem !important;
  font-size: 0.98rem !important;
  border-radius: 8px !important;
}

/* Responsive: reduce sidebar width on large screens */
@media (min-width: 1024px) {
  aside.w-full.lg\:w-1\/4 {
    max-width: 230px !important;
    min-width: 200px !important;
  }
  section.w-full.lg\:w-3\/4 {
    max-width: calc(100% - 250px) !important;
  }
}

/* Responsive: reduce grid gap on smaller screens */
@media (max-width: 900px) {
  .applications-grid {
    gap: 0.7rem !important;
  }
}
.product-image-slider {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(34, 91, 125, 0.08);
  overflow: hidden;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-images {
  width: 100%;
  display: flex;
  position: relative;
}

.slider-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: none;
  transition: opacity 0.3s;
}
.slider-img.active {
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #1d3c73;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px 0 rgba(34, 91, 125, 0.1);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.slider-arrow-left {
  left: 24px;
}
.slider-arrow-right {
  right: 24px;
}
.slider-arrow:hover {
  background: #1d3c73;
  color: #fff;
}

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  background: #e6f0fa;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.2s;
}
.slider-dot.active {
  background: #1d3c73;
}
/* Sidebar Container */
.sidebar-widget {
  background: #f7fafc;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34, 91, 125, 0.04);
  padding: 1.5rem 1.2rem;
  margin-bottom: 1.2rem;
  height: auto !important;
  min-height: unset !important;
  max-height: unset !important;
  display: block !important;
}

/* Sidebar Titles */
.widget-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1d3c73;
  margin-bottom: 1.1rem;
}
.widget-subtitle {
  font-size: 1.02rem;
  font-weight: 600;
  color: #1d3c73;
  margin-bottom: 0.7rem;
  margin-top: 0;
}

/* Sidebar List */
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem 0;
}
.sidebar-list li {
  margin-bottom: 0.7rem;
}
.sidebar-list li:last-child {
  margin-bottom: 0;
}
.sidebar-list a {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 0.95rem 1.2rem;
  font-size: 1.08rem;
  color: #1d3c73;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 4px 0 rgba(34, 91, 125, 0.04);
  transition:
    box-shadow 0.2s,
    background 0.2s;
  gap: 0.8rem;
}
.sidebar-list a:hover {
  background: #e6f0fa;
  box-shadow: 0 2px 8px 0 rgba(34, 91, 125, 0.1);
}
.cert-icon {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-icon img {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain;
  border-radius: 50%;
  background: #f7fafc;
  border: 1px solid #e6f0fa;
}
@media (max-width: 768px) {
  .grid.grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-3.gap-6.md\:gap-10.items-stretch.tabcard.px-4.sm\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* Minimal critical styles for above-the-fold content */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #fff;
}
header {
  height: 80px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
#home {
  position: relative;
  width: 100%;
  height: 384px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #home {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  #home {
    height: 600px;
  }
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s;
}
.slide.active {
  opacity: 1;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Reset and base */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
button:hover {
  opacity: 0.85;
}
/* FOOTER COLORS AND TYPOGRAPHY */
footer {
  background-color: #175889;
  color: #bdc7d1;
}
footer a {
  color: #ffffff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
.footer-container {
  display: flex !important;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 93px 24px 120px;
  position: relative;
  z-index: 10;
  visibility: visible !important;
  opacity: 1 !important;
}
/* SINGLE COLUMN IN FOOTER */
.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 240px; /* Adjust as needed for your design */
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start; /* Aligns content to the left */
  visibility: visible !important;
  opacity: 1 !important;
}
.footer-col h3 {
  margin: 0 0 12px;
  font-weight: 500;
  color: #9ab5cc;
  font-size: 1.1rem;
}
.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  line-height: 1.4;
}
/* Contact info & links */
.contact-text {
  max-width: 280px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-color: #ffffff;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}
.contact-item svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
/* Links list */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  flex-direction: column;
  gap: 2px; /* Reduced vertical space between items */
  padding-left: 0; /* No left padding */
  margin-left: 0; /* No left margin */
  visibility: visible !important;
  opacity: 1 !important;
}
.footer-list li {
  padding: 2px 0; /* Remove left padding */
  margin: 0;
  transition:
    background 0.25s,
    color 0.25s;
  border-radius: 8px;
  background: none;
  color: inherit;
  display: block;
  width: 100%;
  padding-left: 0; /* No left padding for list items */
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #ffffff;
}
/* The tabbed box - white with subtle shadow */
.tabbed-box {
  background: #fff;
  border-radius: 8px;
  width: 255px;
  height: 150px;
  max-width: 360px;
  color: #555d66;
  box-shadow: 0 3px 12px rgb(0 0 0 / 0.1);
}
/* Tab nav */
.tab-nav {
  display: flex;
  border-bottom: 1px solid #ccc;
}
.tab-nav button {
  flex: 1;
  padding: 10px 5px;
  background: none;
  border: none;
  font-weight: 500;
  font-size: 0.85rem; /* base size */
  color: #7a7f85;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition:
    color 0.3s,
    border-color 0.3s,
    font-size 0.3s,
    font-weight 0.3s;
}
.tab-nav button.active {
  color: #175889;
  border-color: #175889;
  font-weight: 500;
  font-size: 15px; /* larger when active */
}
.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
/* Tab content style */
.tab-content {
  padding: 18px 20px 18px 20px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #000;
}
.tab-content svg {
  vertical-align: middle;
  fill: #999;
  margin-right: 8px;
}
/* Highlighted Products list */
.highlighted-products li {
  font-size: 0.9rem;
  line-height: 1.4;
}
/* Brochure box */
.brochure-box {
  background: #fff;
  border-radius: 4px;
  padding: 20px 22px;
  max-width: 260px;
  min-width: 200px;
  color: #999ea9;
  box-shadow: 0 3px 12px rgb(0 0 0 / 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  align-items: flex-start;
}
.brochure-box strong {
  display: block;
  margin-bottom: 8px;
  color: #abb9d9;
  font-weight: 600;
  font-size: 1rem;
}
.brochure-desc {
  font-size: 0.85rem;
  line-height: 1.45;
}
.download-btn {
  background: #bf1f1f;
  border: none;
  border-radius: 4px 0 0 4px;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  min-width: 130px;
  justify-content: center;
  box-shadow: 0 3px 6px rgb(191 31 31 / 0.7);
  transition: background-color 0.3s ease;
}
.download-btn:hover {
  background-color: #9a1616;
}
.download-btn svg {
  fill: white;
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.download-btn:focus-visible {
  outline: 3px solid #ffb3b3;
  outline-offset: 2px;
}
.download-btn:hover svg {
  transform: translateX(4px);
}
/* Bottom smaller footer bar */
.footer-bottom-bg {
  background: #fff;
  border-top: 1px solid #ccc;
  margin-left: calc(
    50% - 50vw
  ); /* ensures true full width even inside a centered container */
  position: relative;
  z-index: 1;
  overflow-x: auto; /* Enables horizontal scroll if content overflows */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #ccc #fff; /* For Firefox */
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer-bottom-bg::-webkit-scrollbar {
  height: 8px;
}
.footer-bottom-bg::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.footer-bottom-bg::-webkit-scrollbar-track {
  background: #fff;
}

.footer-secondary {
  position: relative;
  background-color: #fff;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom-top {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 8px;
}

.footer-bottom-top .social-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-top nav {
  display: flex;
  gap: 24px;
  font-size: 15px;
  color: #175889;
}

.footer-bottom-top nav a {
  color: #175889;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-bottom-top nav a:hover {
  color: #bf1f1f;
  text-decoration: underline;
}

.copyright {
  font-size: 15px;
  color: #858d99;
  margin-left: 195px;
  text-align: left;
  margin-top: -12px;
}

.copyright a {
  color: #bf1f1f;
  font-weight: 500;
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-bottom-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-secondary {
    text-align: center;
  }
  .copyright {
    text-align: center;
    padding-top: 20px;
    margin-right: 185px;
  }
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  color: #175889;
  border: none;
  gap: 24px;
}
.footer-bottom .social-links {
  display: flex;
  gap: 16px;
  order: 1;
}
.footer-bottom nav {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  color: #175889;
  order: 2;
}
.footer-bottom .copyright {
  font-size: 0.8rem;
  color: #858d99;
  margin: 0;
  order: 3;
  /* Remove flex-basis and text-align */
}
@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .footer-bottom nav {
    justify-content: center;
  }
}
.footer-bottom .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #f1f6fb 60%, #e3eaf3 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(23, 88, 137, 0.1);
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.18s;
  color: #175889;
  font-size: 20px;
  border: none;
  outline: none;
}
.footer-bottom .social-links a svg {
  width: 22px;
  height: 22px;
  fill: #175889;
  transition: fill 0.25s;
}
.footer-bottom .social-links a:hover,
.footer-bottom .social-links a:focus-visible {
  background: linear-gradient(135deg, #bf1f1f 70%, #e94e77 100%);
  box-shadow: 0 4px 16px rgba(191, 31, 31, 0.18);
  color: #fff;
  transform: translateY(-2px) scale(1.08);
}
.footer-bottom .social-links a:hover svg,
.footer-bottom .social-links a:focus-visible svg {
  fill: #fff;
}
/* Scroll to top circular button */
#scrollTopBtn {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  outline: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollTopBtn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  background: #c41a1b; /* default red */
  box-shadow:
    0 0 0 4px #dfdfea inset,
    /* inner ring */ 0 4px 16px 0 rgba(23, 88, 137, 0.18); /* outer shadow for depth */
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
#scrollTopBtn:hover i,
#scrollTopBtn:focus-visible i {
  background: #175889; /* blue on hover */
  color: #fff;
  box-shadow:
    0 0 0 4px #dfdfea inset,
    0 8px 24px 0 rgba(23, 88, 137, 0.22); /* stronger shadow on hover */
}
/* Modern hover effect and subtle animation for footer lists without changing alignment or format */
.footer-list a,
.highlighted-products a {
  transition: color 0.25s;
  border-radius: 8px;
  padding: 2px 0;
  display: inline-block;
  color: inherit;
  background: none;
}

.footer-list a:hover,
.highlighted-products a:hover {
  color: #bf1f1f;
  background: none;
  text-decoration: none;
}

/* Legal links and social icons */
.footer-bottom nav a {
  transition:
    color 0.25s,
    background 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  border-radius: 6px;
  padding: 2px 8px;
  display: inline-block;
}
.footer-bottom nav a:hover {
  color: #bf1f1f;
  background: #f1f6fb;
  box-shadow: 0 2px 8px rgba(191, 31, 31, 0.12);
  transform: translateY(-2px) scale(1.04);
}

.footer-bottom .social-links a {
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.footer-bottom .social-links a:hover,
.footer-bottom .social-links a:focus-visible {
  background: linear-gradient(135deg, #bf1f1f 70%, #e94e77 100%);
  box-shadow: 0 4px 16px rgba(191, 31, 31, 0.18);
  color: #fff;
  transform: translateY(-2px) scale(1.08);
}
.footer-bottom .social-links a:hover svg,
.footer-bottom .social-links a:focus-visible svg {
  fill: #fff;
}
/* RESPONSIVE */
@media (max-width: 1040px) {
  .footer-container {
    justify-content: center;
    gap: 36px;
  }
  .footer-col,
  .tabbed-box,
  .brochure-box {
    min-width: 260px;
    max-width: 320px;
  }
}
@media (max-width: 720px) {
  .footer-container {
    flex-direction: column;
    padding: 36px 16px 24px;
    gap: 36px;
  }
  .footer-col,
  .tabbed-box,
  .brochure-box {
    max-width: 100%;
    min-width: auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 14px 16px;
  }
  .footer-bottom nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom .social-links {
    order: 1;
    gap: 12px;
  }
  .footer-bottom .copyright {
    order: 2;
  }
}
section.footer-col.new {
  margin-right: 35px;
}

.footer-bottom-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50px;
  right: 50px;
  height: 5px;
  background-color: #c41a1b;
  z-index: 2;
}

.footer-social {
  display: flex;
  gap: 16px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #175889;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(23, 88, 137, 0.1);
  border: 3px solid #e3eaf3; /* Light border */
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s,
    transform 0.18s,
    border-color 0.25s,
    text-decoration 0.2s;
  outline: none;
  text-decoration: none;
}
.social-link:hover,
.social-link:focus-visible {
  background: #fff;
  color: #fff;
  border-color: #bf1f1f; /* Red border on hover */
  transform: scale(1.13);
  box-shadow:
    0 4px 24px 0 rgba(191, 31, 31, 0.25),
    0 0 12px 2px #e94e77;
  text-decoration: none;
}
.social-link i {
  color: #175889;
  transition: color 0.25s;
}
.social-link:hover i,
.social-link:focus-visible i {
  color: #bf1f1f; /* Icon color on hover */
}
#brochureDropdown {
  overflow: visible; /* allow box-shadow to show */
  padding: 6px 0 18px 0; /* more space at the bottom */
  border-radius: 10px;
  position: relative;
  z-index: 10;
}
#brochureDropdown a {
  display: block;
  padding: 14px 22px 14px 18px;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 0.5rem;
  margin: 4px 0;
  color: #205781;
  background: #fff;
  border: 2px solid transparent;
  box-shadow: 0 1px 4px rgba(44, 62, 80, 0.04);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
#brochureDropdown a:last-child {
  margin-bottom: 2px;
}
#brochureDropdown a[href*="excipients"]:hover {
  background: #fee2e2; /* light red */
  color: #c41a1b;
  border-color: #c41a1b;
  box-shadow: 0 2px 8px rgba(196, 26, 27, 0.1);
}
#brochureDropdown a[href*="apis"]:hover {
  background: #dbeafe; /* light blue */
  color: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.13);
}
#brochureDropdown a:hover {
  text-decoration: none;
}
.tab-content:focus {
  outline: none;
  box-shadow: none;
}
footer[role="contentinfo"] {
  background: #175889;
}
.footer-container {
  padding-top: 48px;
  padding-bottom: 48px;
  background-size: contain;
  background-position: bottom;
}
.footer-bottom-bg {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media screen and (max-width: 844px) {
  .copyright {
    padding-top: 15px;
    margin-left: 66px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .tabbed-box {
    min-width: auto;
    width: 360px;
  }
  p.contact-text {
    min-width: 350px;
  }
  .download-btn {
    width: 314px !important;
  }
  .footer-bottom-top {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
  }
  /* Ensure Quick Links is visible on mobile */
  .footer-col[aria-labelledby="quicklinks-label"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin-top: 30px;
  }
  .copyright {
    padding-top: 15px;
    margin-left: 30px;
  }
  ul#brochureDropdown {
    min-width: 310px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  section.brochure-box {
    min-width: 730px;
  }
  button#brochureDropdownBtn {
    min-width: 685px;
  }
  ul#brochureDropdown {
    min-width: 680px !important;
  }
  .footer-bottom-top {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
}
