:root {
    --color-primary: #6c63ff;
    --color-success: #00bf8e;
    --color-warning: #f7c94b;
    --color-danger: #f75842;
    --color-danger-variant: rgba(247, 88, 66, 0.4);
    --color-white: #fff;
    --color-light: rgba(255, 255, 255, 0.7);
    --color-black: #000;
    --color-bg: #1f2641;
    --color-bg1: #2e3267;
    --color-bg2: #424890;
  
    --container-width-lg: 80%;
    --container-width-md: 90%;
    --container-width-sm: 94%;
  
    --transition: all 400ms ease;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background: var(--color-bg);
    /* padding: 40px 10px; */
    padding-top: 120px;
  }
 .title h2 {
    text-align: center;
    margin-bottom: 20px;

  }
  .title h4 {
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: lighter;

  }
    
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  
  .product-card {
    background: var(--color-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease forwards;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .product-image:hover img {
    transform: scale(1.05);
  }
  
  .product-details {
    padding: 20px;
  }
  
  .product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-bg2);
  }
  
  .product-description {
    font-size: 0.95rem;
    color: var(--color-bg1);
    margin-bottom: 15px;
  }
  
  
  .btn {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .btn:hover {
    background: var(--color-bg2);
    transform: translateY(-2px);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  