

    :root {
      --primary: #1B488A;
      --secondary: #0A6828;
      --primary-gradient: linear-gradient(135deg, #1B488A, #2e6bb0);
    }
    
    /* Float Buttons */
    .float-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25d366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      transition: 0.3s;
      text-decoration: none;
    }
    .float-btn.call {
      bottom: 90px;
      background: #1B488A;
    }
    .float-btn:hover {
      transform: scale(1.1);
      color: white;
    }
    
    /* Page Header */
    .page-header {
      background: linear-gradient(135deg, #1B488A, #0A6828);
      padding: 40px 0;
      text-align: center;
      color: white;
    }
    .page-header h1 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    @media (max-width: 768px) {
      .page-header h1 {
        font-size: 1.8rem;
      }
    }
    .page-header .breadcrumb {
      background: transparent;
      justify-content: center;
    }
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
    }
    .page-header .breadcrumb-item.active {
      color: white;
    }
    
    /* Product Detail Section */
    .product-detail {
      padding: 40px 0;
    }
    
    /* Buttons */
    .btn-enquiry, .btn-call, .btn-whatsapp {
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 600;
      margin-right: 8px;
      margin-bottom: 10px;
      display: inline-block;
      text-decoration: none;
      font-size: 0.95rem;
    }
    @media (max-width: 768px) {
      .btn-enquiry, .btn-call, .btn-whatsapp {
        display: block;
        width: 100%;
        margin-right: 0;
        text-align: center;
      }
    }
    .btn-enquiry {
      background: var(--primary-gradient);
      color: white;
      border: none;
    }
    .btn-enquiry:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(27,72,138,0.3);
      color: white;
    }
    .btn-call {
      background: #28a745;
      color: white;
      border: none;
    }
    .btn-call:hover {
      background: #218838;
      transform: translateY(-3px);
      color: white;
    }
    .btn-whatsapp {
      background: #25d366;
      color: white;
      border: none;
    }
    .btn-whatsapp:hover {
      background: #128C7E;
      transform: translateY(-3px);
      color: white;
    }
    
    /* Special Features */
    .features-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }
    .features-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
    }
    .feature-icon {
      width: 32px;
      height: 32px;
      background: var(--primary-gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.85rem;
      margin-right: 12px;
      flex-shrink: 0;
    }
    .feature-text {
      flex: 1;
      color: #4a5568;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    
    /* Table */
    .table-responsive {
      margin: 30px 0;
      border-radius: 12px;
      overflow-x: auto;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      font-size: 0.85rem;
    }
    th {
      background: var(--primary);
      color: white;
      padding: 12px 8px;
      font-weight: 600;
      white-space: nowrap;
      font-size: 0.85rem;
    }
    td {
      padding: 10px 8px;
      border-bottom: 1px solid #e2e8f0;
      white-space: nowrap;
      font-size: 0.85rem;
    }
    
    /* Product Card */
    .product-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      transition: 0.3s;
      height: 100%;
      border: 1px solid #eee;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(27,72,138,0.1);
      border-color: var(--primary);
    }
    .product-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }
    .product-body {
      padding: 15px;
    }
    .product-body h4 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--primary);
    }
    .product-link {
      color: var(--secondary);
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.9rem;
    }
    
    .section-title {
      font-size: 1.8rem;
      color: var(--primary);
      margin: 30px 0 20px;
      position: relative;
    }
    .section-title:after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: var(--secondary);
      margin-top: 8px;
    }
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.5rem;
      }
    }
    
    /* Product Image */
    .product-main-img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    /* Gear Box Drive */
    .gear-box {
      text-align: center;
      margin: 20px 0;
      font-weight: 600;
      color: var(--primary);
    }
    .gear-box span {
      background: #f0f0f0;
      padding: 6px 20px;
      border-radius: 50px;
      font-size: 0.95rem;
    }

    /* Mobile Spacing */
    @media (max-width: 768px) {
      .product-detail {
        padding: 30px 0;
      }
      .row.g-5 {
        --bs-gutter-y: 2rem;
      }
      .product-main-img {
        margin-bottom: 10px;
      }
    }
  