body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  
  header {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 20px 0;
  }
  
  h1 {
    margin: 0;
    font-size: 2rem;
  }
  
  .team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  
  .team-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
    transition: transform 0.3s;
  }
  
  .team-card:hover {
    transform: scale(1.05);
  }
  
  .team-card img {
    width: 100%;
    height: auto;
  }
  
  .card-info {
    padding: 15px;
  }
  
  .card-info h3 {
    margin: 10px 0;
    color: #333;
  }
  
  .card-info p {
    margin: 5px 0;
    color: #777;
    font-size: 0.9rem;
  }
  
  .social-icons {
    margin-top: 10px;
  }
  
  .social-icons a {
    color: #777;
    margin: 0 10px;
    font-size: 1.2rem;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    color: #333;
  }
  /* Animation when cards appear */
.team-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .team-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Smooth hover animation for social icons */
  .social-icons a {
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
  }
/* style.css */



.tiles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tile {
    flex: 1 0 300px;
    background-color: #e5e5e9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.h3 {
    color: white;
}

.tile:hover {
    transform: scale(1.05);
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
  