 /* ===== THEME VARIABLES ===== */
    :root {
      --primary: #00A878;
      --primary-light: #33C49C;
      --primary-dark: #007a59;
      --secondary: #008FA3;
      --secondary-light: #4CC9D9;
      --secondary-dark: #006B78;
      --accent: #FFD166;
      --accent-dark: #E6B850;
      --light: #F4FFFA;
      --dark: #1E2A23;
      --gray-100: #FAFAFA;
      --gray-200: #E8F0ED;
      --gray-300: #D0DDD9;
      --gray-400: #9EAFA9;
      --gray-500: #6D7A76;
      --gray-600: #45504C;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Poppins', sans-serif; color: var(--dark); overflow-x: hidden; }
    img { max-width: 100%; height: auto; display: block; }

    /* ===== SPINNER ===== */
    #spinner {
      background: white;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.4s ease;
    }
    #spinner.hidden { opacity: 0; pointer-events: none; }

    /* ===== NAVBAR ===== */
    .navbar {
      background: white !important;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      padding: 0 !important;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      padding: 10px 20px !important;
      text-decoration: none;
    }
    .navbar-brand img { height: 55px; width: auto; margin-right: 12px; }
    .navbar-brand h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin: 0;
    }
    .navbar-toggler { border: 2px solid var(--primary); border-radius: 8px; margin-right: 15px; }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300A878' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .nav-link {
      color: var(--dark) !important;
      font-weight: 500;
      padding: 8px 15px !important;
      transition: color 0.3s;
      font-size: 0.95rem;
    }
    .nav-link:hover { color: var(--primary) !important; }
    .dropdown-menu {
      border: none;
      box-shadow: 0 10px 40px rgba(0,0,0,0.12);
      border-radius: 12px;
      padding: 10px;
    }
    .dropdown-item {
      border-radius: 8px;
      padding: 10px 15px;
      font-size: 0.9rem;
      color: var(--gray-600);
      transition: all 0.2s;
    }
    .dropdown-item:hover { background: var(--light); color: var(--primary); }
    .btn-primary-nav {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white !important;
      padding: 14px 28px !important;
      font-weight: 600;
      border: none;
      transition: all 0.3s;
    }
    .btn-primary-nav:hover { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%) !important; }
/* ===== FIX DROPDOWN ACTIVE / BROWN ISSUE ===== */

.dropdown-menu {
  background: #ffffff !important;
}

.dropdown-item {
  background: transparent !important;
  color: var(--gray-600) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--light) !important;
  color: var(--primary) !important;
}
.dropdown-menu {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,168,120,0.15);
}

.dropdown-item.active,
.dropdown-item:active {
  background: var(--primary) !important;
  color: #ffffff !important;
}

.navbar .dropdown-menu.show {
  animation: fadeInUp 0.25s ease;
}
    /* ===== PRODUCT HERO ===== */
    .product-hero {
      background: linear-gradient(135deg, var(--light) 0%, #e0f5ef 50%, var(--gray-200) 100%);
      padding: 50px 0 70px;
      position: relative;
      overflow: hidden;
    }
    .product-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0,168,120,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .product-hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0,143,163,0.06) 0%, transparent 70%);
      border-radius: 50%;
    }

    .breadcrumb { background: transparent; padding: 0; margin-bottom: 20px; }
    .breadcrumb-item a { color: var(--primary); text-decoration: none; font-weight: 500; }
    .breadcrumb-item.active { color: var(--gray-500); }
    .breadcrumb-item + .breadcrumb-item::before { content: '›'; color: var(--gray-400); }

    .product-badge {
      display: inline-flex;
      align-items: center;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      padding: 9px 22px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 22px;
      box-shadow: 0 4px 15px rgba(0,168,120,0.3);
      letter-spacing: 0.5px;
    }

    .product-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 22px;
    }
    .product-title span {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .product-subtitle {
      font-size: 1.08rem;
      color: var(--gray-600);
      line-height: 1.85;
      margin-bottom: 32px;
    }

    .product-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 35px;
    }
    .highlight-item {
      display: flex;
      align-items: center;
      background: white;
      padding: 11px 18px;
      border-radius: 30px;
      border: 2px solid rgba(0,168,120,0.25);
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--dark);
      transition: all 0.3s ease;
      box-shadow: 0 3px 12px rgba(0,168,120,0.08);
    }
    .highlight-item:hover {
      border-color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,168,120,0.18);
    }
    .highlight-item i { color: var(--primary); margin-right: 9px; font-size: 1rem; }

    .product-cta { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 32px; }
    .product-cta .btn {
      padding: 14px 32px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
    }
    .product-cta .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border: none;
      color: white;
      box-shadow: 0 6px 20px rgba(0,168,120,0.3);
    }
    .product-cta .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,168,120,0.4); }
    .product-cta .btn-outline-primary {
      background: white;
      color: var(--primary);
      border: 2px solid var(--primary);
    }
    .product-cta .btn-outline-primary:hover { background: var(--primary); color: white; transform: translateY(-3px); }

    .trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
    .trust-badge {
      font-size: 0.85rem;
      color: var(--gray-600);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .trust-badge::before { content: '✓'; color: var(--primary); font-weight: 800; font-size: 1rem; }

    /* ===== PRODUCT IMAGE PANEL ===== */
    .product-image-panel {
      position: relative;
      z-index: 1;
    }
    .product-image-main {
      background: white;
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 20px 60px rgba(0,168,120,0.15);
      margin-bottom: 20px;
      overflow: hidden;
      position: relative;
    }
    .product-image-main::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    }
    .product-image-main img {
      width: 100%;
      height: 320px;
      object-fit: contain;
      border-radius: 12px;
      transition: transform 0.6s ease;
    }
    .product-image-main:hover img { transform: scale(1.04); }

    /* SVG Illustration for product */
    .product-svg-container {
      width: 100%;
      height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #f0faf6 0%, #e8f5f0 100%);
      border-radius: 16px;
    }

    .product-thumbnails {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .thumb-card {
      background: white;
      border-radius: 14px;
      padding: 12px;
      border: 2px solid var(--gray-200);
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
    }
    .thumb-card:hover, .thumb-card.active {
      border-color: var(--primary);
      box-shadow: 0 5px 15px rgba(0,168,120,0.2);
      transform: translateY(-3px);
    }
    .thumb-card .thumb-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 6px;
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .thumb-card .thumb-icon i { color: white; font-size: 1.2rem; }
    .thumb-card span { font-size: 0.72rem; font-weight: 600; color: var(--gray-600); display: block; }

    /* ===== SECTION COMMON ===== */
    .section-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      padding: 8px 24px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      box-shadow: 0 4px 15px rgba(0,168,120,0.3);
    }
    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.3rem;
      font-weight: 700;
      color: var(--dark);
      margin-top: 15px;
    }
    .title-underline {
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
      margin: 18px auto;
      border-radius: 2px;
    }

    /* ===== PRODUCT DESCRIPTION ===== */
    .product-description {
      background: white;
      padding: 45px;
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(0,168,120,0.1);
      border-left: 5px solid var(--primary);
    }
    .product-description h3 {
      color: var(--primary);
      font-weight: 700;
      font-size: 1.4rem;
      margin-top: 30px;
      margin-bottom: 15px;
    }
    .product-description p { color: var(--gray-600); line-height: 1.85; font-size: 1rem; margin-bottom: 18px; }
    .product-description ul { list-style: none; padding: 0; margin: 18px 0; }
    .product-description ul li {
      color: var(--gray-600);
      font-size: 0.97rem;
      line-height: 1.8;
      padding-left: 30px;
      position: relative;
      margin-bottom: 12px;
    }
    .product-description ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--primary);
      font-weight: 700;
      font-size: 1.1rem;
    }
    .product-description ul li strong { color: var(--dark); font-weight: 600; }

    /* ===== STATS ROW ===== */
    .stats-row {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      padding: 50px 0;
    }
    .stat-item { text-align: center; }
    .stat-number {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: white;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; }

    /* ===== SPECS TABLE ===== */
    .specs-table-wrapper {
      background: white;
      padding: 40px;
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(0,168,120,0.1);
      overflow-x: auto;
    }
    .specs-table { margin-bottom: 0; border-radius: 12px; overflow: hidden; }
    .specs-table th {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      font-weight: 600;
      padding: 18px 22px;
      border: none;
      font-size: 0.97rem;
      width: 35%;
    }
    .specs-table td {
      padding: 18px 22px;
      color: var(--gray-600);
      font-size: 0.95rem;
      line-height: 1.6;
      border-color: var(--gray-200);
    }
    .specs-table tbody tr { transition: background 0.3s ease; }
    .specs-table tbody tr:hover { background: rgba(0,168,120,0.04); }

    /* ===== CAPABILITY CARDS ===== */
    .capability-card {
      background: white;
      border-radius: 22px;
      padding: 35px 28px;
      height: 100%;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 5px 25px rgba(0,0,0,0.07);
      border: 2px solid var(--gray-200);
      position: relative;
      overflow: hidden;
    }
    .capability-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .capability-card:hover::before { transform: scaleX(1); }
    .capability-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,168,120,0.18); border-color: var(--primary); }
    .capability-icon {
      width: 68px;
      height: 68px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      box-shadow: 0 8px 20px rgba(0,168,120,0.3);
      transition: transform 0.3s ease;
    }
    .capability-card:hover .capability-icon { transform: scale(1.1) rotate(-5deg); }
    .capability-icon i { font-size: 1.9rem; color: white; }
    .capability-card h4 { color: var(--dark); font-weight: 700; font-size: 1.15rem; margin-bottom: 15px; }
    .capability-card ul { list-style: none; padding: 0; margin: 0; }
    .capability-card ul li {
      color: var(--gray-600);
      font-size: 0.92rem;
      line-height: 1.8;
      padding-left: 22px;
      position: relative;
      margin-bottom: 8px;
    }
    .capability-card ul li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--primary);
      font-weight: 700;
      font-size: 1.4rem;
      line-height: 1.3;
    }

    /* ===== MATERIAL CARDS ===== */
    .material-card {
      background: white;
      border-radius: 22px;
      padding: 35px 30px;
      height: 100%;
      border-left: 5px solid var(--primary);
      box-shadow: 0 8px 30px rgba(0,168,120,0.1);
      transition: all 0.3s ease;
    }
    .material-card:hover { transform: translateY(-8px); box-shadow: 0 18px 45px rgba(0,168,120,0.18); border-left-color: var(--accent); }
    .material-card h4 { color: var(--primary); font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; }
    .material-card h4 i { color: var(--primary); margin-right: 8px; }
    .material-card p { color: var(--gray-600); font-size: 0.93rem; line-height: 1.75; margin-bottom: 12px; }
    .material-card strong { color: var(--dark); font-weight: 600; }
    .material-badge {
      display: inline-block;
      background: var(--light);
      border: 1px solid var(--primary-light);
      color: var(--primary-dark);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin: 3px 2px;
    }

    /* ===== INDUSTRY CARDS ===== */
    .industry-card {
      background: white;
      border-radius: 20px;
      padding: 28px 22px;
      text-align: center;
      height: 100%;
      transition: all 0.3s ease;
      border: 2px solid var(--gray-200);
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    .industry-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,168,120,0.15); border-color: var(--primary); }
    .industry-icon {
      width: 75px;
      height: 75px;
      background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      box-shadow: 0 8px 25px rgba(0,168,120,0.25);
      transition: all 0.3s ease;
    }
    .industry-card:hover .industry-icon { transform: scale(1.12) rotate(-5deg); box-shadow: 0 12px 35px rgba(0,168,120,0.35); }
    .industry-icon i { font-size: 2rem; color: white; }
    .industry-card h5 { color: var(--dark); font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
    .industry-card p { color: var(--gray-600); font-size: 0.88rem; line-height: 1.6; margin: 0; }

    /* ===== COMPARISON TABLE ===== */
    .comparison-table {
      margin-bottom: 0;
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,168,120,0.1);
    }
    .comparison-table thead { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); }
    .comparison-table thead th { color: white; font-weight: 600; padding: 20px 16px; border: none; font-size: 0.97rem; text-align: center; }
    .comparison-table thead th:first-child { text-align: left; }
    .comparison-table tbody td { padding: 18px 16px; color: var(--gray-600); font-size: 0.93rem; text-align: center; border-color: var(--gray-200); vertical-align: middle; }
    .comparison-table tbody tr:hover { background: rgba(0,168,120,0.04); }
    .comparison-table tbody td:first-child { font-weight: 600; color: var(--dark); text-align: left; }
    .comparison-table td strong { color: var(--primary-dark); }
    .fa-check.text-success { font-size: 1.1rem; }
    .highlight-col { background: rgba(0,168,120,0.04); }

    /* ===== FAQ SECTION ===== */
    .faq-section { background: linear-gradient(135deg, var(--gray-100) 0%, #eef6f2 100%); }
    .faq-section .accordion-item { border: none; margin-bottom: 14px; background: transparent; }
    .faq-section .accordion-button {
      background: white;
      color: var(--dark);
      font-weight: 600;
      font-size: 0.97rem;
      padding: 20px 25px;
      border-radius: 12px !important;
      border-left: 5px solid var(--primary);
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }
    .faq-section .accordion-button:focus { box-shadow: none; }
    .faq-section .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: white;
      border-left-color: var(--accent);
    }
    .faq-section .accordion-button::after { filter: brightness(0) invert(0.3); }
    .faq-section .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
    .faq-section .accordion-body {
      background: white;
      color: var(--gray-600);
      padding: 22px 28px;
      font-size: 0.95rem;
      line-height: 1.85;
      border-radius: 0 0 12px 12px;
      border-left: 5px solid var(--primary-light);
      box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    }
    .faq-section .accordion-body strong { color: var(--primary-dark); font-weight: 600; }

    /* ===== CTA SECTION ===== */
    .cta-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%; right: -10%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      border-radius: 50%;
    }
    .cta-section h2 { color: white; font-family: 'Montserrat', sans-serif; font-weight: 700; }
    .cta-section p { color: rgba(255,255,255,0.92); font-size: 1.05rem; }
    .cta-section .btn { padding: 15px 35px; font-weight: 600; border-radius: 50px; box-shadow: 0 5px 20px rgba(0,0,0,0.25); transition: all 0.3s ease; }
    .cta-section .btn-light { background: white; color: var(--primary); border: none; }
    .cta-section .btn-light:hover { background: var(--accent); color: var(--dark); transform: translateY(-3px); }
    .cta-section .btn-success { background: #25D366; color: white; border: none; }
    .cta-section .btn-success:hover { background: #20BA5A; transform: translateY(-3px); }

    /* ===== PROCESS STEPS ===== */
    .process-section { background: linear-gradient(135deg, #f0faf6 0%, white 100%); }
    .process-step {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 25px;
      background: white;
      border-radius: 18px;
      box-shadow: 0 5px 20px rgba(0,168,120,0.08);
      margin-bottom: 16px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    .process-step:hover { border-color: var(--primary-light); transform: translateX(8px); box-shadow: 0 8px 30px rgba(0,168,120,0.15); }
    .step-number {
      min-width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.3rem;
      box-shadow: 0 5px 15px rgba(0,168,120,0.3);
    }
    .step-content h5 { color: var(--dark); font-weight: 700; margin-bottom: 6px; font-size: 1.05rem; }
    .step-content p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.7; margin: 0; }


    /* ===== WHATSAPP FLOAT ===== */
    .whatsapp-float-tooltip {
      position: fixed;
      bottom: 30px;
      left: 30px;
      z-index: 999;
      display: flex;
      align-items: center;
      background: #25D366;
      color: white;
      border-radius: 50px;
      padding: 14px 18px;
      text-decoration: none;
      font-size: 1.8rem;
      box-shadow: 0 6px 25px rgba(37,211,102,0.5);
      transition: all 0.3s ease;
      overflow: hidden;
    }
    .whatsapp-float-tooltip:hover { padding-right: 25px; color: white; }
    .whatsapp-tooltip {
      max-width: 0;
      overflow: hidden;
      white-space: nowrap;
      font-size: 0.9rem;
      font-weight: 600;
      transition: max-width 0.4s ease, margin 0.4s ease;
      margin-left: 0;
    }
    .whatsapp-float-tooltip:hover .whatsapp-tooltip { max-width: 200px; margin-left: 10px; }
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border: none;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      text-decoration: none;
      box-shadow: 0 5px 20px rgba(0,168,120,0.4);
      transition: all 0.3s;
      opacity: 0;
    }
    .back-to-top.show { opacity: 1; }
    .back-to-top:hover { transform: translateY(-4px); color: white; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .product-title { font-size: 2rem; }
      .section-title { font-size: 1.85rem; }
      .product-description, .specs-table-wrapper { padding: 28px; }
      .product-image-main { margin-bottom: 30px; }
      .stat-number { font-size: 2.2rem; }
    }
    @media (max-width: 767px) {
      .product-hero { padding: 30px 0 45px; }
      .product-title { font-size: 1.7rem; }
      .section-title { font-size: 1.5rem; }
      .product-cta { flex-direction: column; }
      .product-cta .btn { width: 100%; text-align: center; }
      .product-description, .specs-table-wrapper { padding: 22px 18px; }
      .product-thumbnails { grid-template-columns: repeat(4, 1fr); gap: 8px; }
      .stats-row .col-6 { margin-bottom: 20px; }
      .process-step { flex-direction: column; gap: 12px; }
    }
    @media (max-width: 575px) {
      .product-title { font-size: 1.45rem; }
      .product-thumbnails { grid-template-columns: repeat(2, 1fr); }
      .comparison-table thead { display: none; }
      .comparison-table tbody tr { display: block; margin-bottom: 20px; border: 2px solid var(--gray-200); border-radius: 12px; padding: 15px; }
      .comparison-table tbody td { display: block; text-align: left !important; padding: 8px 0; border: none; }
      .comparison-table tbody td::before { content: attr(data-label); font-weight: 700; color: var(--dark); display: block; font-size: 0.78rem; margin-bottom: 3px; }
    }
  
    /* paste footer css here */
/* ==========================================
   FOOTER - COMPLETE STYLES (CLEAN VERSION)
   ========================================== */

/* Footer Background */

/*** Footer – Clean Professional Version ***/
.footer {
    background: linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)),
                url(/img/footer.jpg) center center no-repeat;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 30px;
}
/* Footer Headings */
.footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Contact Info Text */
.footer p {
    color: #dddddd;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Footer Links */
.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

/* Arrow before links */
.footer .btn.btn-link::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

/* Hover Effect */
.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
}

/* Social Buttons */
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.footer .btn.btn-social:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

/* Copyright Section */
.footer .copyright {
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer .copyright a:hover {
    color: var(--primary);
}
.footer,
.footer p,
.footer a,
.footer h4 {
    color: #ffffff !important;
}

.footer a:hover {
    color: #00A878 !important;
}
/* LIGHT SECTIONS */
.bg-light, .section-bg {
    background: var(--light) !important;
}
footer, .footer {
    width: 100% !important;
    margin: 0 !important;
    padding: 0;
}
.container-fluid.footer {
    padding: 0 !important;
}

/* FOOTER */
.footer { background: var(--dark) !important; }
.footer a { color: var(--primary) !important; }

/* Fix check icon color inside footer */
.footer .fa-check {
    color: var(--primary) !important;
}
/* Mobile Footer Fix */
@media (max-width: 768px) {

    .footer {
        overflow-x: hidden;
    }

    .footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer .row {
        margin-left: 0;
        margin-right: 0;
    }

    .footer .col-lg-3,
    .footer .col-md-6 {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 20px;
    }

    .footer h4 {
        font-size: 18px;
    }

    .footer p,
    .footer .btn.btn-link {
        font-size: 14px;
    }
    
}

/* ===== PRODUCT AUTO SLIDER ===== */

.product-slider {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
}

.product-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background: linear-gradient(135deg, #f0faf6 0%, #e8f5f0 100%);
}

.product-slider .slide.active {
    opacity: 1;
}

/* Mini image thumbnails */
.thumb-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.thumb-card.active {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,168,120,0.25);
}

/* ===== FIX FAQ TYPOGRAPHY TO MATCH SITE ===== */

.faq-section .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

.faq-section .accordion-body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--gray-600);
}

.faq-section .accordion-body strong {
    color: var(--dark);
    font-weight: 600;
}

.cta-section .btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-section .btn-outline-light:hover {
    background: #ffffff;
    color: var(--primary);
}
.cta-section::before {
    pointer-events: none;
}
.cta-section {
    position: relative;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  background: #00A878;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,168,120,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ============================= */
/* THEMED INTERNAL INLINE LINKS */
/* ============================= */

.product-description a,
.process-section a,
.faq-section a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 168, 120, 0.35);
    transition: all 0.25s ease;
    padding-bottom: 2px;
}

.product-description a:hover,
.process-section a:hover,
.faq-section a:hover {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}

/* ============================= */
/* RELATED PRODUCTS LINK STYLE  */
/* ============================= */

.industry-card h5 a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.industry-card h5 a:hover {
    color: var(--primary);
}

.industry-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ============================= */
/* FOOTER AUTHORITY LINKS       */
/* ============================= */

.footer .small a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s ease;
}

.footer .small a:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}
/* ============================= */
/* FOOTER AUTHORITY LINKS       */
/* ============================= */

.footer .small a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s ease;
}

.footer .small a:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}



/* ===== MOBILE NAVBAR LAYOUT FIX ===== */

.navbar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.navbar-brand {
  flex: 1;
  min-width: 0;
}

.navbar-toggler {
  margin-left: auto;
}

@media (max-width: 575px){

  .navbar-brand img{
    height:40px;
  }

  .navbar-brand h2{
    font-size:0.9rem;
  }

}