    body {
        /*background: linear-gradient(to bottom right, #f4fff8, #e7f3ef);*/
        background: linear-gradient(to bottom, #ede7f6 0%, #ffffff 100%);
        font-family: 'Segoe UI', sans-serif;
    }
    .navbar {
        background-color: #fff;
        border: none;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .navbar-brand img {
      height: 40px;
  }
  .hero {
      text-align: center;
      padding: 50px 20px 30px;
  }
  .hero h2 {
      color: #155d27;
      font-weight: 700;
  }
  .hero p {
      color: #4a4a4a;
      font-size: 15px;
      margin-top: 10px;
  }
  .dashboard-card {
      background: #ffffff;
      border-radius: 14px;
      text-align: center;
      padding: 35px 20px;
      box-shadow: 0 3px 12px rgba(0,0,0,0.08);
      margin-bottom: 30px;
      transition: all 0.3s ease-in-out;
  }
  .dashboard-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }
  .dashboard-card img {
      width: 90px;
      height: 90px;
      margin-bottom: 15px;
  }
  .dashboard-card h4 {
      color: #1b4332;
      font-weight: 600;
      font-size: 16px;
  }
  footer {
    color: white;
    background-color: #530781;
      text-align: center;
      padding: 20px;
      color: #777;
      font-size: 13px;
      margin-top: 180px;
  }