/* Products Section Styles */

/* Section Background */
.products-section {
    background: #ffffff;
  }
  
  /* Section Title */
  .products-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343434;
  }
  
  .products-section .section-title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #05f5f5 0%, #05f5f5 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(5, 245, 245, 0.5);
  }
  
  /* Product Card */
  .product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border: 2px solid rgba(5, 245, 245, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
  }
  
  .product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(5, 245, 245, 0.25) !important;
    border-color: #05f5f5 !important;
  }
  
  /* Product Image Container */
  .product-image-container {
    height: 280px;
  }
  
  .product-card img {
    transition: transform 0.5s ease;
  }
  
  .product-card:hover img {
    transform: scale(1.1);
  }
  
  /* Image Overlay */
  .product-image-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(5, 245, 245, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .product-card:hover .product-image-overlay {
    opacity: 1;
  }
  
  /* Product Number Badge */
  .product-badge {
    background: linear-gradient(135deg, #343434 0%, #05f5f5 100%);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(5, 245, 245, 0.4);
  }
  
  /* Product Title */
  .product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #343434;
    transition: color 0.3s ease;
  }
  
  .product-card:hover .product-title {
    color: #434343;
  }
  
  /* Product Description */
  .product-desc {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 0.95rem;
  }
  
  /* Read More Link */
  .product-read-more {
    color: #343434;
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  .product-read-more i {
    transition: transform 0.3s ease;
  }
  
  .product-card:hover .product-read-more i {
    transform: translateX(5px);
  }
  
  [dir="rtl"] .product-card:hover .product-read-more i {
    transform: translateX(-5px);
  }
  
  /* View All Button */
  .btn-modern {
    background: linear-gradient(135deg, #05f5f5 0%, #05f5f5 100%);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(5, 245, 245, 0.4);
  }
  
  .btn-modern:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(5, 245, 245, 0.5) !important;
    background: linear-gradient(135deg, #05f5f5 0%, #05f5f5 100%) !important;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .products-section .section-title {
      font-size: 2rem !important;
    }
    
    .product-card {
      margin-bottom: 1rem;
    }
  }
  
  