
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black; 
    color: white; 
    line-height: 1.6;
  }
  

  .category-section {
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-bottom: 1px solid #444;
  }
  
  .category-section h1 {
    font-size: 2rem;
    color: #00c1ff; 
    text-align: center;
    margin-bottom: 15px;
  }
  
  .category-section p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #ccc; 
  }
  
 
  .category-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
  }
  
 
  .card {
    background: #222; 
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
  }
  
  .card h2 {
    font-size: 1.5rem;
    color: #f0a500; 
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 15px;
  }
  
  .card a {
    display: inline-block;
    font-size: 0.9rem;
    color: #00c1ff; 
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #00c1ff;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .card a:hover {
    background: #00c1ff;
    color: black;
  }
  
  
  /* !!!!===========> */

  /* Footer Styling */
.site-footer {
    background-color: #111; 
    color: white;
    padding: 30px 20px;
    font-size: 0.9rem;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1 1 300px;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00c1ff; 
  }
  
  .footer-section p {
    color: #ccc; 
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #00c1ff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #f0a500; 
  }
  
  .social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #00c1ff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #f0a500;
  }
  
 
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
    color: #ccc;
  }
  

  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      text-align: center;
    }
  
    .social-links a {
      display: block;
      margin: 5px 0;
    }
  }
  


  @media (max-width: 768px) {
    .category-content {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 90%; 
    }
  }
  
  @media (max-width: 480px) {
    .category-section h1 {
      font-size: 1.8rem;
    }
  
    .category-section p {
      font-size: 1rem;
    }
  
    .card {
      padding: 15px;
    }
  
    .card h2 {
      font-size: 1.2rem;
    }
  
    .card p {
      font-size: 0.9rem;
    }
  
    .card a {
      font-size: 0.8rem;
    }
  }
  