/*
 * Premium Styling Sheet
 * Primary Color: #36A7FD
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --primary-color: #36A7FD;
  --primary-color-hover: #1e96f0;
  --bg-color: #f8fafc;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --border-color: rgba(226, 232, 240, 0.8);
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --shadow-drawer: -10px 0 30px -5px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* Header Container */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: var(--shadow-premium);
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

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



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

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
}

/* Desktop Navigation Dropdown */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chevron-icon {
  width: 10px;
  height: 6px;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background-color: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
  text-align: left;
  transition: var(--transition-smooth);
}

.dropdown-link:hover {
  background-color: rgba(54, 167, 253, 0.05);
  color: var(--primary-color);
}

.dropdown-link.active-sub {
  color: var(--primary-color);
  background-color: rgba(54, 167, 253, 0.02);
  font-weight: 600;
}


/* CTA Button in Header */
.cta-button {
  display: inline-block;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(54, 167, 253, 0.3);
  transition: var(--transition-smooth);
}

.cta-button:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(54, 167, 253, 0.4);
}

/* Mobile Hamburger Menu Icon */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 18px;
  position: relative;
  z-index: 1002;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}


/* Mobile Drawer Close Button */
.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
  z-index: 1003;
}

.drawer-close:hover {
  background-color: rgba(15, 23, 42, 0.05);
  color: var(--primary-color);
}

/* Mobile Sidebar Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-drawer);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: auto;
}

.mobile-nav-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-color);
  padding-left: 8px;
}

/* Mobile Navigation Dropdown Accordion */
.mobile-nav-item-dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.mobile-dropdown-header .mobile-nav-link {
  border-bottom: none;
  flex-grow: 1;
}

.mobile-dropdown-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.mobile-dropdown-toggle-btn:hover {
  color: var(--primary-color);
}

.mobile-chevron-icon {
  width: 10px;
  height: 6px;
  transition: transform 0.3s ease;
}

.mobile-nav-item-dropdown.active .mobile-chevron-icon {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.mobile-nav-item-dropdown.active .mobile-submenu {
  display: flex;
}

.mobile-submenu-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  display: block;
  padding: 6px 0;
  transition: var(--transition-smooth);
}

.mobile-submenu-link:hover,
.mobile-submenu-link.active {
  color: var(--primary-color);
  padding-left: 6px;
}


.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Hero & Content Styles */
.hero-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 10% 20%, rgba(54, 167, 253, 0.1) 0%, rgba(255, 255, 255, 0) 90%);
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(54, 167, 253, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.secondary-btn {
  background-color: rgba(255, 255, 255, 0.65);
  color: var(--text-dark);
  border: 1.5px solid rgba(54, 167, 253, 0.4);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}

.secondary-btn:hover {
  background-color: rgba(54, 167, 253, 0.08);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Home Hero Section Styles */
.hero-section.home-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 120px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(54, 167, 253, 0.2) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 20% 80%, rgba(54, 167, 253, 0.12) 0%, rgba(255, 255, 255, 0) 60%),
    #edf2f7;
  overflow: hidden;
}

/* Technical Grid Overlay */
.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(54, 167, 253, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 167, 253, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* Floating Glow Elements */
.hero-glow-element-1 {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: rgba(54, 167, 253, 0.2);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-glow-element-2 {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(13, 148, 136, 0.1);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Home Hero Container Grid */
.hero-container.home-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch;
  text-align: left;
  position: relative;
  z-index: 2;
}

/* Left Content Column */
.hero-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-container {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(54, 167, 253, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(54, 167, 253, 0.05);
}

.hero-badge-container .hero-tag {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-badge-divider {
  width: 1px;
  height: 12px;
  background-color: rgba(15, 23, 42, 0.15);
  margin: 0 10px;
}

.hero-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.hero-title .highlight-text {
  color: var(--primary-color);
  background: linear-gradient(120deg, var(--primary-color) 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section.home-hero .hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-section.home-hero .hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.hero-section.home-hero .btn-group {
  justify-content: flex-start;
  margin-bottom: 24px;
}

/* Stats Section */
.hero-stats-container {
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.hero-stats-heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: block;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text-dark) 30%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
}

.plant-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.plant-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(54, 167, 253, 0.25);
  box-shadow: 0 10px 25px -5px rgba(54, 167, 253, 0.08);
}

.plant-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e96f0 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(54, 167, 253, 0.25);
}

.plant-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.plant-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plant-desc {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.3;
}

/* Right Image Column */
.hero-content-right {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

.hero-capacity-dashboard {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.02),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  padding: 24px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-capacity-dashboard:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-bottom: 10px;
}

.dashboard-title-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #10b981;
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
    opacity: 1;
  }

  80%,
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.dashboard-title-area h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}

.dashboard-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  background-color: rgba(54, 167, 253, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

.dashboard-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  justify-content: space-between;
}

.dashboard-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.dashboard-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(54, 167, 253, 0.25);
  transform: translateX(4px);
}

.item-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(54, 167, 253, 0.12) 0%, rgba(54, 167, 253, 0.04) 100%);
  color: var(--primary-color);
  flex-shrink: 0;
}

.dashboard-icon {
  width: 20px;
  height: 20px;
}

.item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.item-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.item-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.item-value .unit {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-light);
  margin-left: 1px;
}

.progress-track {
  width: 100%;
  height: 5px;
  background-color: rgba(15, 23, 42, 0.05);
  border-radius: 50px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, #1e96f0 100%);
  border-radius: 50px;
  transition: width 1s ease-in-out;
}





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

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

.animate-fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.25s;
}

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

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

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

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

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

/* Responsive adjustments for Home Hero */
@media (max-width: 991px) {
  .hero-container.home-hero-container {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }

  .hero-content-left {
    align-items: center;
  }

  .hero-section.home-hero .hero-title {
    font-size: 42px;
  }

  .hero-section.home-hero .btn-group {
    justify-content: center;
  }

  .hero-capacity-dashboard {
    max-width: 480px;
    margin: 0 auto;

    height: auto;
  }

  .plants-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plant-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    width: 100%;
    box-sizing: border-box;
  }

  .plant-badge {
    width: 42px;
    height: 42px;
    font-size: 14px;
    border-radius: 12px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .plant-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 3px;
    flex: 1;
    min-width: 0;
    /* allows text to wrap instead of overflowing */
  }

  .plant-name {
    font-size: 15px;
    line-height: 1.3;
  }

  .plant-desc {
    font-size: 13px;
    line-height: 1.4;
    word-wrap: break-word;
  }


}

@media (max-width: 576px) {
  .hero-section.home-hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
  }

  .hero-section.home-hero .hero-title {
    font-size: 32px;
  }

  .hero-section.home-hero .btn-group {
    gap: 12px;
    width: 100%;
    justify-content: center;
  }

  .hero-section.home-hero .cta-button,
  .hero-section.home-hero .secondary-btn {
    padding: 10px 16px;
    font-size: 14px;
    flex: 1;
    max-width: 160px;
    text-align: center;
    white-space: nowrap;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .plants-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    align-items: center;
    text-align: center;
  }

  .stat-card .stat-number {
    font-size: 24px;
  }

  .stat-card .stat-label {
    font-size: 11px;
    line-height: 1.3;
  }

  .hero-capacity-dashboard {
    padding: 16px;
    border-radius: 18px;
    height: auto;
  }

  .dashboard-item {
    gap: 12px;
    padding: 10px;
  }

  .item-name {
    font-size: 12.5px;
  }

  .item-value {
    font-size: 13px;
  }
}

/* --- About Us Page Specific Styles --- */

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(54, 167, 253, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-description {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Journey Section */
.journey-section {
  background-color: var(--white);
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.journey-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.journey-highlights {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  width: 100%;
}

.highlight-item {
  display: flex;
  flex-direction: column;
}

.highlight-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.highlight-lbl {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
}

.journey-bullets {
  margin-top: 28px;
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  width: 100%;
}

.journey-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
}

.journey-bullet-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
}


.blueprint-graphic {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: rgba(54, 167, 253, 0.02);
  border: 1px solid rgba(54, 167, 253, 0.15);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(54, 167, 253, 0.05);
  overflow: hidden;
}

.blueprint-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

/* Pillars Section */
.pillars-section {
  background-color: var(--white);
  padding: 100px 0;
}

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

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(54, 167, 253, 0.35);
}

.pillar-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: rgba(54, 167, 253, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.pillar-icon {
  width: 26px;
  height: 26px;
}

.pillar-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Center last two cards on larger screens */
@media (min-width: 992px) {
  .pillars-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .pillars-grid .pillar-card:nth-child(1),
  .pillars-grid .pillar-card:nth-child(2),
  .pillars-grid .pillar-card:nth-child(3) {
    grid-column: span 2;
  }

  .pillars-grid .pillar-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .pillars-grid .pillar-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* Responsiveness for About sections */
@media (max-width: 991px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .journey-content {
    align-items: center;
  }

  .journey-bullets {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .journey-highlights {
    justify-content: center;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars-grid .pillar-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid .pillar-card:nth-child(5) {
    grid-column: span 1;
  }
}

/* --- Page Header & Breadcrumbs Styles --- */
.page-header {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f2fe 100%);
  border-bottom: 1px solid var(--border-color);
  padding: calc(var(--header-height) + 40px) 0 40px 0;
  text-align: left;
}

.page-header .section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.page-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-light);
  transition: var(--transition-smooth);
}

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

.breadcrumb-separator {
  color: rgba(15, 23, 42, 0.2);
  font-weight: 400;
  user-select: none;
}

.breadcrumb-current {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 576px) {
  .page-header {
    padding: calc(var(--header-height) + 24px) 0 24px 0;
  }

  .page-header .section-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .page-title {
    font-size: 26px;
  }
}

/* --- Mission & Vision Section Styles --- */
.mission-vision-section {
  background-color: var(--bg-color);
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vision-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vision-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
  list-style: none;
  padding: 0;
}

.vision-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vision-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(54, 167, 253, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.vision-bullet-icon {
  width: 14px;
  height: 14px;
}

.vision-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vision-value-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.vision-value-card:hover {
  transform: translateX(6px);
  border-color: rgba(54, 167, 253, 0.3);
  box-shadow: 0 10px 25px -5px rgba(54, 167, 253, 0.05);
}

.value-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(54, 167, 253, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.vision-value-card:hover .value-icon-box {
  background-color: var(--primary-color);
  color: var(--white);
}

.value-icon {
  width: 22px;
  height: 22px;
}

.value-text {
  display: flex;
  flex-direction: column;
}

.value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.value-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vision-value-card:hover {
    transform: translateY(-4px);
  }
}


/* --- Organization Chart Styles --- */
.org-chart-section {
  background-color: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.org-tree-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.org-tree-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* Node Base Styling */
.org-node {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
  min-width: 230px;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  text-align: left;
  gap: 14px;
  overflow: hidden;
}

.org-node:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
  border-color: rgba(54, 167, 253, 0.3);
}

/* Accent top-bars */
.org-node::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--border-color);
}

.node-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

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

.node-icon {
  width: 18px;
  height: 18px;
}

.node-info {
  display: flex;
  flex-direction: column;
}

.node-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.node-subtitle {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

.node-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2px;
}

.node-dept {
  font-size: 11px;
  font-weight: 500;
  margin-top: 2px;
}

/* Specific Department Styling */
.org-node.board::before {
  background: var(--primary-color);
}

.bg-board {
  background-color: rgba(54, 167, 253, 0.1);
  color: var(--primary-color);
}

.org-node.ceo::before {
  background: linear-gradient(90deg, var(--primary-color) 0%, #1d4ed8 100%);
}

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

/* Sales Branch */
.org-node.node-sales::before {
  background-color: #6366f1;
}

.bg-sales {
  background-color: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
}

.node-sales .node-dept {
  color: #4f46e5;
}

/* Operations Branch */
.org-node.node-ops::before {
  background-color: #0d9488;
}

.bg-ops {
  background-color: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

.node-ops .node-dept {
  color: #0d9488;
}

/* Quality Branch */
.org-node.node-quality::before {
  background-color: #16a34a;
}

.bg-quality {
  background-color: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.node-quality .node-dept {
  color: #16a34a;
}

/* Finance Branch */
.org-node.node-finance::before {
  background-color: #d97706;
}

.bg-finance {
  background-color: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

.node-finance .node-dept {
  color: #d97706;
}

/* Sub-nodes & Micro-nodes */
.org-node.sub-node {
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 190px;
  display: block;
  text-align: center;
}

.org-node.sub-node.node-ops::before {
  background-color: rgba(13, 148, 136, 0.6);
}

.org-node.sub-node.node-quality::before {
  background-color: rgba(22, 163, 74, 0.6);
}

.org-node.micro-node {
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 160px;
  display: block;
  text-align: center;
  border-style: dashed;
}

.org-node.micro-node.node-ops::before {
  background-color: rgba(13, 148, 136, 0.4);
}

/* Connector Lines (Desktop) */
.org-connector-v {
  width: 2px;
  height: 32px;
  background-color: rgba(54, 167, 253, 0.2);
}

.org-connector-v-short {
  width: 2px;
  height: 20px;
  background-color: rgba(54, 167, 253, 0.2);
  margin: 0 auto;
}

/* Horizontal line bar for level 3 (desktop) */
.level-3-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(12.5% - 9px);
  right: calc(12.5% - 9px);
  height: 2px;
  background-color: rgba(54, 167, 253, 0.2);
}

/* Level 3 Row Layout */
.level-3-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  gap: 24px;
  margin-top: 0;
  position: relative;
}

/* Connect vertical lines to level 3 cards */
.level-3-row .org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.level-3-row .org-branch::before {
  content: '';
  width: 2px;
  height: 32px;
  background-color: rgba(54, 167, 253, 0.2);
}

/* Level 4 sub-trees */
.level-4-grid,
.level-4-quality {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
  align-items: center;
  position: relative;
}

.level-4-grid::before,
.level-4-quality::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 24px;
  /* Stops near the center of the last card */
  width: 2px;
  background-color: rgba(54, 167, 253, 0.2);
  z-index: 0;
}

/* Mobile & Tablet Styles for Org Chart */
@media (max-width: 1023px) {
  .org-tree-container {
    overflow-x: visible;
  }

  .org-connector-v,
  .level-3-row .org-branch::before,
  .level-3-row::before,
  .level-4-grid::before,
  .level-4-quality::before {
    display: none;
  }

  .level-3-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
  }

  .level-3-row .org-branch {
    width: 100%;
    max-width: 400px;
    align-items: center;
  }

  .level-4-grid,
  .level-4-quality {
    width: 100%;
    margin-top: 16px;
  }

  /* Vertical indicator line for mobile hierarchy */
  .branch-ops,
  .branch-quality {
    border-left: 2px dashed rgba(54, 167, 253, 0.3);
    padding-left: 20px;
    align-items: flex-start !important;
  }

  .branch-ops .org-node,
  .branch-quality .org-node {
    width: 100%;
  }

  .level-4-grid,
  .level-4-quality {
    align-items: flex-start;
  }
}

@media (max-width: 1023px) {

  .org-tree-container {
    overflow-x: visible;
  }

  .org-connector-v,
  .level-3-row .org-branch::before,
  .level-3-row::before,
  .level-4-grid::before,
  .level-4-quality::before {
    display: none;
  }

  .level-3-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 32px;
    width: 100%;
  }

  .level-3-row .org-branch {
    width: 100%;
    max-width: 340px;
    align-items: center;
  }

  .org-branch {
    gap: 16px;
  }

  .org-branch>.org-node.dept-head {
    width: 100%;
  }

  .org-connector-v-short {
    display: block;
    height: 20px;
    margin: 0 auto;
  }

  .level-4-grid,
  .level-4-quality,
  .branch-ops,
  .branch-quality {
    border-left: none;
    padding-left: 0;
  }

  .level-4-grid,
  .level-4-quality {
    width: 100%;
    margin-top: 0;
    align-items: center;
    position: relative;
    gap: 18px;
  }

  .branch-ops,
  .branch-quality {
    align-items: center !important;
  }

  .branch-ops .org-node.dept-head,
  .branch-quality .org-node.dept-head {
    width: 100%;
  }

  /* Smaller sub-node / micro-node cards, matching earlier compact styling */
  .org-node.sub-node {
    min-width: 200px;
    width: auto;
    max-width: 240px;
    padding: 12px 16px;
  }

  .org-node.sub-node .node-title {
    font-size: 12.5px;
  }

  .org-node.micro-node {
    min-width: 130px;
    width: auto;
    max-width: 180px;
    padding: 8px 12px;
  }

  .org-node.micro-node .node-title {
    font-size: 11.5px;
  }

  /* Connector lines between stacked sub-node cards */
  .level-4-grid .org-node,
  .level-4-quality .org-node,
  .level-4-grid .org-branch {
    position: relative;
  }

  .level-4-grid .org-node:not(:last-child)::after,
  .level-4-quality .org-node:not(:last-child)::after,
  .level-4-grid .org-branch:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 2px;
    height: 18px;
    background-color: rgba(54, 167, 253, 0.3);
    transform: translateX(-50%);
  }
}

/* --- Employee Motivation Styles --- */
.motivation-section {
  background-color: var(--white);
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.motivation-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.award-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 26px 24px;
  text-align: left;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: calc(33.333% - 24px);
}

.award-card:hover {
  transform: translateY(-5px);
  border-color: rgba(54, 167, 253, 0.3);
  box-shadow: 0 15px 30px -10px rgba(54, 167, 253, 0.1);
}

.award-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.award-card:hover .award-icon {
  transform: scale(1.1);
}

.award-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .award-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  .motivation-grid {
    gap: 20px;
  }

  .award-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    padding: 22px 18px;
  }
}

@media (max-width: 576px) {
  .award-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* --- Future Plan Styles --- */
.future-plan-section {
  background-color: var(--bg-color);
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-info {
  padding: 4px 0;
  margin: 0;
}

.product-title {
  font-size: 0.9rem;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.future-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.future-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #4f46e5);
  opacity: 0.8;
}

.future-card:hover {
  transform: translateY(-5px);
  border-color: rgba(54, 167, 253, 0.3);
  box-shadow: 0 15px 30px -10px rgba(54, 167, 253, 0.1);
}

.future-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  background-color: rgba(54, 167, 253, 0.08);
  color: var(--primary-color);
  border-radius: 100px;
  margin-bottom: 20px;
}

.future-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
}

.future-card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 4px;
}

@media (max-width: 1200px) {
  .future-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .future-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --- Home Page Products Section --- */
.home-products-section {
  padding: 100px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.home-products-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(54, 167, 253, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.home-products-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 32px;
  margin-top: 48px;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  border-color: rgba(54, 167, 253, 0.35);
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

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

.product-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.product-card:hover .product-title {
  color: var(--primary-color);
}

.product-desc {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.product-action-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-action {
  color: var(--primary-color);
}

.product-card:hover .product-action-arrow {
  transform: translateX(4px);
}

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

  .products-grid .product-card:nth-child(3) {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

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

  .products-grid .product-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }
}

/* --- Products Page Specific Styles --- */
.products-page-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.products-page-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(54, 167, 253, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.products-page-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1200px) {
  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .products-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   Clients Logos Carousel Section
   ========================================================================== */
.clients-section {
  padding: 60px 0;
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

/* Logos Carousel Container */
.logos-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

/* Gradient overlays for smooth fading edges */
.logos-carousel::before,
.logos-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-carousel::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.logos-carousel::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

/* Slide Track */
.logos-slide-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: scroll-carousel 35s linear infinite;
}

/* Slide item */
.slide {
  flex-shrink: 0;
  margin: 10px 15px;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 220px;
  background-color: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide img {
  max-height: 52px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.03));
  opacity: 0.85;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(54, 167, 253, 0.4);
}

.slide:hover img {
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.05));
  transform: scale(1.04);
  opacity: 1;
}

/* Pause animation on hover */
.logos-carousel:hover .logos-slide-track {
  animation-play-state: paused;
}

/* Keyframe for continuous translation */
@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .clients-section {
    padding: 40px 0;
  }

  .slide {
    margin: 8px 10px;
    padding: 8px 15px;
    height: 70px;
    width: 170px;
    border-radius: 10px;
  }

  .slide img {
    max-height: 40px;
    max-width: 130px;
  }

  .logos-carousel::before,
  .logos-carousel::after {
    width: 60px;
    background: linear-gradient(to right, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
  }

  .logos-carousel::after {
    background: linear-gradient(to left, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
  }
}

/* ==========================================================================
   Global Footer Section Styles
   ========================================================================== */
.site-footer {
  background-color: #0b0f19;
  color: #94a3b8;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-title {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-brand-logo {
  height: 48px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
  /* make logo white for dark theme if it's dark text */
}

.footer-desc {
  line-height: 1.6;
}

.footer-iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(54, 167, 253, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(54, 167, 253, 0.2);
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  width: max-content;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  color: #94a3b8;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-link-item a::before {
  content: '→';
  font-weight: 700;
  opacity: 0;
  transition: var(--transition-smooth);
  font-size: 12px;
  color: var(--primary-color);
}

.footer-link-item a:hover::before {
  opacity: 1;
}

.footer-plants {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-plant-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-plant-name {
  color: var(--white);
  font-weight: 600;
  font-size: 13.5px;
}

.footer-plant-loc {
  font-size: 13px;
  line-height: 1.4;
  color: #64748b;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-label {
  color: var(--white);
  font-weight: 600;
  font-size: 13.5px;
}

.footer-contact-val {
  font-size: 13px;
  transition: var(--transition-smooth);
}

.footer-contact-val:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13.5px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  font-size: 13.5px;
}

.footer-bottom-link:hover {
  color: var(--primary-color);
}

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

@media (max-width: 576px) {
  .site-footer {
    padding: 60px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ==========================================================================
   Contact Page Specific Styles
   ========================================================================== */
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-header {
  margin-bottom: 10px;
}

.contact-info-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-info-desc {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.contact-method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(54, 167, 253, 0.3);
  box-shadow: 0 15px 30px -10px rgba(54, 167, 253, 0.08);
}

.contact-method-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(54, 167, 253, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-method-card:hover .contact-method-icon-box {
  background-color: var(--primary-color);
  color: var(--white);
}

.contact-method-icon {
  width: 22px;
  height: 22px;
}

.contact-method-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.contact-person-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-person-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: -4px;
}

.contact-method-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.contact-link-item:hover {
  color: var(--primary-color);
}

.contact-link-icon {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* Contact Form Container styling */
.contact-form-container {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-premium);
}

.contact-form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  color: var(--text-light);
  font-size: 14.5px;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-sans);
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  background-color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(54, 167, 253, 0.12);
}

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

.submit-btn {
  border: none;
  cursor: pointer;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(54, 167, 253, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(54, 167, 253, 0.4);
}

.submit-btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .submit-btn-icon {
  transform: translateX(4px) translateY(-2px);
}

/* Success alert box styles */
.contact-alert {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-alert-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #d1fae5;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-alert-icon {
  width: 20px;
  height: 20px;
}

.contact-alert-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-alert-title {
  font-weight: 700;
  font-size: 15.5px;
}

.contact-alert-desc {
  font-size: 14px;
  line-height: 1.4;
  color: #047857;
}

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

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-container {
    padding: 24px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   Manufacturing Facilities (About Us Page) Styles
   ========================================================================== */
.facilities-section {
  background-color: var(--white);
  padding: 40px 0 60px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 0;
}

.facility-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(54, 167, 253, 0.35);
}

.facility-header {
  padding: 24px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f2fe 100%);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.facility-badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  width: max-content;
}

.facility-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.facility-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.facility-address {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-light);
  min-height: 72px;
  /* aligns heights across cards */
}

.facility-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 220px;
  position: relative;
}

.facility-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

  .facility-address {
    min-height: auto;
  }
}

/* ==========================================================================
   Manufacturing Page Styles
   ========================================================================== */
.mfg-page-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
}

.mfg-section-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.mfg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mfg-row.reverse {
  direction: rtl;
  /* This reverses columns nicely on desktop */
}

/* Reset direction for elements inside reverse row so text renders left-to-right */
.mfg-row.reverse .mfg-col-content,
.mfg-row.reverse .mfg-col-image {
  direction: ltr;
}

.mfg-col-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mfg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mfg-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(54, 167, 253, 0.08);
  color: var(--primary-color);
  border: 1px solid rgba(54, 167, 253, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(54, 167, 253, 0.04);
}

.mfg-badge-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.mfg-unit-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

.mfg-description {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

.mfg-details-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
}

.mfg-details-card:hover {
  transform: translateY(-4px);
  border-color: rgba(54, 167, 253, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}

.mfg-detail-line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mfg-detail-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(54, 167, 253, 0.06);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mfg-detail-icon {
  width: 18px;
  height: 18px;
}

.mfg-detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mfg-detail-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-color);
}

.mfg-detail-value {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.mfg-col-image {
  position: relative;
}

.mfg-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color);
  aspect-ratio: 16 / 10;
}

.mfg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.mfg-image-frame:hover .mfg-image {
  transform: scale(1.06);
}

.mfg-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.4) 0%, rgba(11, 15, 25, 0) 60%);
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.mfg-image-frame:hover .mfg-image-overlay {
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .mfg-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mfg-row.reverse {
    direction: ltr;
    /* Stack normally on mobile */
  }

  .mfg-row.reverse .mfg-col-content,
  .mfg-row.reverse .mfg-col-image {
    direction: ltr;
  }

  .mfg-section-container {
    gap: 60px;
  }
}

@media (max-width: 576px) {
  .mfg-page-section {
    padding: 60px 0;
  }

  .mfg-unit-title {
    font-size: 26px;
  }
}

/* Production Capacity Section */
.mfg-capacity-section {
  padding: 60px 0 80px;
  background-color: var(--white);
}

.capacity-table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.capacity-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}

.capacity-table th {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e96f0 100%);
  color: var(--white);
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.capacity-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  font-weight: 600;
}

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

.capacity-table tbody tr {
  transition: background-color 0.2s ease;
}

.capacity-table tbody tr:hover {
  background-color: #f8fafc;
}

.capacity-table td:nth-child(2) {
  font-weight: 700;
  color: var(--primary-color);
}

@media (max-width: 576px) {

  .capacity-table th,
  .capacity-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* Plant Image Gallery styling */
.mfg-image-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mfg-thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.mfg-thumbnail {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mfg-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mfg-thumbnail:hover img {
  transform: scale(1.08);
}

.mfg-thumbnail.active {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(54, 167, 253, 0.25);
  transform: translateY(-2px);
}

/* Manufacturing Process (Drier) Section */
.mfg-process-section {
  padding: 65px 0;
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.process-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.process-img-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #f8fafc;
}

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

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

.process-step-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-color);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(54, 167, 253, 0.3);
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   Milestones Timeline Section Styles
   ========================================================================== */
.milestones-timeline-section {
  padding: 100px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.timeline-center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(54, 167, 253, 0.4) 0%, rgba(54, 167, 253, 0.1) 100%);
  transform: translateX(-50%);
  display: none;
}

@media (min-width: 1024px) {
  .timeline-center-line {
    display: block;
  }
}

.milestone-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Mobile timeline line (left-aligned) */
@media (max-width: 1023px) {

  .milestones-timeline-section .timeline-center-line {
    display: block;
    left: 24px;
    transform: none;
  }

  .milestone-row {
    padding-left: 56px;
    position: relative;
  }

  .milestone-spacer {
    display: none;
  }

  .milestone-card-wrapper {
    justify-content: flex-start !important;
  }

  .milestone-card {
    max-width: 100%;
  }

  /* Dot on each card, aligned to the left line */
  .milestone-card::after {
    content: '';
    position: absolute;
    top: 32px;
    left: -41px;
    width: 16px;
    height: 16px;
    background-color: var(--white);
    border: 3.5px solid var(--primary-color);
    border-radius: 50%;
    z-index: 10;
  }
}

.milestone-card-wrapper {
  display: flex;
  width: 100%;
}

.milestone-row.row-odd .milestone-card-wrapper {
  justify-content: flex-start;
}

.milestone-row.row-even .milestone-card-wrapper {
  justify-content: flex-end;
}

.milestone-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 540px;
}

/* Timeline dot indicators */
@media (min-width: 1024px) {
  .milestone-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background-color: var(--white);
    border: 3.5px solid var(--primary-color);
    border-radius: 50%;
    z-index: 10;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
  }

  .milestone-row.row-odd .milestone-card::after {
    right: -41px;
    /* 32px gap + 9px offset to center on 2px line */
  }

  .milestone-row.row-even .milestone-card::after {
    left: -41px;
  }

  .milestone-card:hover::after {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 10px rgba(54, 167, 253, 0.5);
  }
}

.milestone-card:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 167, 253, 0.35);
  box-shadow: 0 15px 35px rgba(54, 167, 253, 0.1);
}

.milestone-card-gradient {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 167, 253, 0.12) 0%, rgba(54, 167, 253, 0.02) 60%, transparent 100%);
  pointer-events: none;
}

.milestone-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.milestone-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(54, 167, 253, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.milestone-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition-smooth);
}

.milestone-card:hover .milestone-icon-box {
  background-color: var(--primary-color);
  color: var(--white);
}

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

.milestone-meta {
  display: flex;
  flex-direction: column;
}

.milestone-date {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 2px;
}

.milestone-year {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.milestone-desc {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.milestone-desc strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* --- Why Choose Us Section --- */
.why-choose-section {
  padding: 100px 0;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(54, 167, 253, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #1e96f0 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  border-color: rgba(54, 167, 253, 0.35);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: rgba(54, 167, 253, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.05) rotate(5deg);
}

.why-icon {
  width: 28px;
  height: 28px;
}

.why-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 32px 24px;
  }
}

/* --- Home Page Manufacturing Facility Section --- */
.home-mfg-section {
  padding: 100px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.home-mfg-section::before {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.home-mfg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
  margin-bottom: 48px;
}

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

.home-mfg-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-mfg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  border-color: rgba(54, 167, 253, 0.35);
}

.mfg-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.mfg-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-mfg-card:hover .mfg-card-image {
  transform: scale(1.08);
}

.mfg-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(54, 167, 253, 0.3);
}

.mfg-card-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mfg-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.mfg-card-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mfg-card-specs li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
}

.mfg-spec-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.mfg-card-specs li strong {
  font-weight: 600;
  color: var(--text-light);
  min-width: 75px;
}

.mfg-action-wrapper {
  display: flex;
  justify-content: center;
}

/* Manufacturing Page Capacity Dashboard */
.mfg-capacity-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 48px;
  width: 100%;
}

.mfg-capacity-dashboard {
  max-width: 100%;
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
  padding: 32px;
  transition: var(--transition-smooth);
}

.mfg-capacity-dashboard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
  border-color: rgba(54, 167, 253, 0.3);
}

.mfg-capacity-dashboard .dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mfg-capacity-dashboard .dashboard-item {
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.mfg-capacity-dashboard .dashboard-item:hover {
  background-color: var(--white);
  border-color: rgba(54, 167, 253, 0.35);
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

@media (max-width: 768px) {
  .mfg-capacity-dashboard {
    padding: 24px 20px;
  }

  .mfg-capacity-dashboard .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mfg-capacity-dashboard .dashboard-item:hover {
    transform: none;
  }
}


/* Table Wrapper */
.hvac-table-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
}

/* Optional Scrollbar Styling */
.hvac-table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.hvac-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.hvac-table-wrapper::-webkit-scrollbar-track {
  background: var(--bg-color);
}

/* Table */
.hvac-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
  white-space: nowrap;
}

.hvac-table th {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e96f0 100%);
  color: var(--white);
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hvac-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  font-weight: 600;
  vertical-align: middle;
}

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

.hvac-table tbody tr {
  transition: background-color 0.2s ease;
  background-color: var(--white);
}

.hvac-table tbody tr:hover {
  background-color: #f8fafc;
}

/* Single Product Layout & Carousel */
.product-single-section {
  padding: 80px 0;
  background-color: var(--white);
}

.product-single-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
  text-align: left;
}

@media (max-width: 991px) {
  .product-single-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.product-carousel {
  position: relative;
  background-color: transparent;
  display: flex;
  flex-direction: column;
}

.product-carousel-main {
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
}

@media (max-width: 576px) {
  .product-carousel-main {
    height: 320px;
  }
}

.product-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  padding: 24px;
  background-color: #ffffff;
}

.product-carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.product-carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-carousel-slide:hover img {
  transform: scale(1.03);
}

.product-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

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

.product-carousel-prev {
  left: 16px;
}

.product-carousel-next {
  right: 16px;
}

.product-carousel-thumbs {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  background-color: transparent;
  justify-content: center;
}

.product-carousel-thumb {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  background-color: #ffffff;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-carousel-thumb.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(54, 167, 253, 0.2);
}

.product-carousel-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-single-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-single-title {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.25;
}

.product-single-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 28px;
}

.product-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  width: 100%;
  list-style: none;
  padding: 0;
}

.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
}

.product-feature-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 1px;
}

.product-single-cta {
  display: flex;
  gap: 16px;
  width: 100%;
}

@media (max-width: 576px) {
  .product-single-cta {
    flex-direction: column;
    align-items: center;
  }
  .product-single-cta .cta-button {
    width: 100%;
    max-width: 280px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .hvac-table {
    min-width: 650px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .hvac-table th,
  .hvac-table td {
    padding: 12px 16px;
    font-size: 14px;
  }

  .hvac-table {
    min-width: 600px;
  }
}

.journey-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hvac-image {
  width: 100%;
  max-width: 580px;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hvac-image {
    max-width: 100%;
    height: 300px;
  }
}

/* ==========================================================================
   Homepage Hero Slider Styles
   ========================================================================== */

.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Full viewport height */
  min-height: 650px;
  overflow: hidden;
  background-color: #0c0a09;
  z-index: 10;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
  z-index: 1;
  display: flex;
  align-items: center;
}

/* Subtle overall background overlay for extreme readability */
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.25);
  z-index: 2;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Semi-transparent Black Pane Behind Text (Design Behind Text) - High Transparency */
.slide-overlay-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
  clip-path: ellipse(85% 140% at 0% 50%);
  z-index: 3;
}

/* Green theme variation override - kept dark black for premium consistent design */
.slide-overlay-pane.green-theme {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* Slide Content Container */
.slide-content-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
}

/* Adjust width for active slide to stay inside the overlay pane */
.hero-slide .slide-content-container {
  max-width: 680px;
  margin-left: max(48px, calc((100vw - 1200px) / 2));
}

/* Badges inside Slider */
.hero-slide .hero-badge-container {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 28px;
  box-shadow: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-slide .hero-badge-container .hero-tag {
  color: var(--primary-color);
}

.hero-slide .hero-badge-divider {
  background-color: rgba(255, 255, 255, 0.3);
}

.hero-slide .hero-badge-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Premium Sans-serif Heading */
.hero-slide .hero-title {
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-slide .hero-title .highlight-text {
  color: var(--primary-color);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero-slide .hero-subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 520px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  margin-left: 0;
  margin-right: 0;
}

.hero-slide .btn-group {
  justify-content: flex-start;
}

.hero-slide .cta-button {
  background-color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(54, 167, 253, 0.4);
}

.hero-slide .secondary-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-slide .secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  color: var(--white);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 5;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

.prev-arrow {
  left: 40px;
}

.next-arrow {
  right: 40px;
}

/* Dots Indicators */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.slider-dot.active {
  background-color: var(--white);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Text Animation on active slide */
.hero-slide.active .animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide.active .delay-1 {
  animation-delay: 0.15s;
}

.hero-slide.active .delay-2 {
  animation-delay: 0.3s;
}

.hero-slide.active .delay-3 {
  animation-delay: 0.45s;
}

/* Hide text immediately when the slide is not active to prevent overlapping during transitions */
.hero-slide:not(.active) .animate-fade-in-up {
  opacity: 0;
  animation: none;
}

/* Responsive Styles for Slider */
@media (max-width: 991px) {
  .slide-overlay-pane {
    width: 80%;
    clip-path: ellipse(95% 140% at 0% 50%);
  }

  .hero-slide .slide-content-container {
    max-width: 520px;
    margin-left: 36px;
    padding: 0 24px;
  }

  .hero-slide .hero-title {
    font-size: 48px;
  }

  .prev-arrow {
    left: 20px;
  }

  .next-arrow {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .hero-slider-section {
    height: 85vh;
    min-height: 550px;
  }

  .hero-slide {
    padding-top: var(--header-height);
  }

  .hero-slide .hero-badge-container {
    white-space: nowrap;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 5px 12px;
    margin-bottom: 20px;
    max-width: 95%;
  }

  .hero-slide .hero-badge-container .hero-tag,
  .hero-slide .hero-badge-text {
    font-size: 11px;
    white-space: nowrap;
  }

  .hero-slide .hero-badge-divider {
    margin: 0 8px;
    flex-shrink: 0;
  }

  .slide-overlay-pane {
    width: 100%;
    clip-path: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
  }

  .hero-slide .slide-content-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 32px;
    align-items: center;
    text-align: center;
  }

  .hero-slide .hero-title {
    font-size: 42px;
  }

  .hero-slide .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slide .btn-group {
    justify-content: center;
    width: 100%;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .hero-slider-section {
    height: 80vh;
    min-height: 480px;
  }

  .hero-slide .hero-title {
    font-size: 36px;
  }

  .hero-slide .btn-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-slide .cta-button,
  .hero-slide .secondary-btn {
    text-align: center;
    width: 100%;
  }

  .slider-arrow {
    display: none;
  }
}

/* HVAC Condensing Units Key Features Section */
.hvac-features-section {
  padding: 60px 0;
  background-color: #eff6fc; /* Light blue alternating background */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.hvac-features-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hvac-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  max-width: 960px;
  margin: 0 auto;
}

.hvac-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  transition: var(--transition-smooth);
}

.hvac-feature-item:hover {
  transform: translateX(4px);
}

.hvac-feat-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.hvac-feature-item:hover .hvac-feat-icon {
  transform: scale(1.15);
}

.hvac-feature-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.hvac-feature-item:hover .hvac-feature-text {
  color: var(--primary-color);
}

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

@media (max-width: 576px) {
  .hvac-features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hvac-feature-item {
    padding: 4px 0;
  }
}