/* Reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    padding: 20px;
    background: url("../media/index.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  /* Cards Container */
  .cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 1000px;
  }
  
  /* Individual Card */
  .card {
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none; /* Remove underline from links */
    color: white; /* Text color */
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    background-color: rgba(255, 255, 255, 0.1); /* Transparent background */
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.4);
  }
  
  /* Icon Styling */
  .card i {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  /* Text Styling */
  .card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 1.2rem;
  }
  
  /* Specific Card Colors with Transparency */
  .card-1 {
    background: linear-gradient(343deg, rgb(13 16 89 / 67%), rgb(97 152 180 / 60%)) ; 
}
  
