
  .dashboard {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  } 
  .dcard {
    background: rgb(116, 86, 158);
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
   .dcard:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
   .icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
    padding: 15px;
    border-radius: 50%;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
  } 
  .dcard h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
  }
   .dcard p {
    font-size: 2rem;
    font-weight: bold;
    color: white;
  }
  .dcard-blue {
    background: linear-gradient(135deg, #007bff, #00c6ff);
  }
  
 .dcard-green {
    background: linear-gradient(135deg, #28a745, #90ee90);
  }
   .dcard-orange {
    background: linear-gradient(135deg, #f39c12, #f9d976);
  }  
  .dcard-purple {
    background: linear-gradient(135deg, #8e44ad, #c084fc);
  }
  @media (max-width: 768px) {
    .dashboard {
      flex-direction: column;
      align-items: center;
    }
  
    .dcard {
      width: 80%;
    }
  }
  