.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
  }
  .card {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .icon {
    border-radius: 50%;
  }

  
  .card {
    animation: fadeInUp 1.0s ease-in-out;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
 
      
 .nav {
  padding: 0;
  list-style: none;
}

.nav-item {
  margin: 4px 0;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background 0.3s;
}

.nav-link:hover {
  background: #f1f5f9;
  color: #007bff;
}

.nav-icon {
  font-size: 16px;
  margin-right: 10px;
  color: #007bff;
}

.section-title {
  display: block;
  margin: 15px 0 5px 10px;
  font-size: 13px;
  font-weight: bold;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hover-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.icon-container {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
}

.card {
  border-radius: 1rem;
}
.card-header {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
