@charset "UTF-8";

  
         .emp {
  text-align: center;
  font-size: 1.50rem;
  font-weight:bold;
  color: #007cf0;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: 0.8px;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.emp::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.emp:hover::after {
  width: 120px;
}


    .portal-container-1 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
      padding: 0 10px;
    }

    .portal-item-1 {
      width: 100%;
    }

    .portal-box {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      padding: 12px 16px;
      border-radius: 14px;
      color: #333;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      cursor: pointer;
      background: #ffffff;
      height: 120px;
    }

    .portal-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
      filter: brightness(1.05);
    }

    .portal-box img {
      width: 55px;
      height: 55px;
    }

    .portal-title {
      font-size: 1.1rem;
      font-weight: 500;
      color: linear-gradient(135deg, #f2fffc, #d6f0ff, #007cf0, #e4fdf6);
      
    }

  
.box16  { background: linear-gradient(135deg, #e8f0fe, #d0e3ff); }  
.box2  { background: linear-gradient(135deg, #e0fff7, #c6f4e9); }  
.box3  { background: linear-gradient(135deg, #dff7ff, #c2ebf7); }   
.box4  { background: linear-gradient(135deg, #ffe9ec, #ffd1d8); }  
.box5  { background: linear-gradient(135deg, #e5e9ff, #ccd3ff); }   
.box6  { background: linear-gradient(135deg, #ffe9f5, #ffcfe8); }  
.box7  { background: linear-gradient(135deg, #e5fff4, #ccf5e7); }   
.box8  { background: linear-gradient(135deg, #f5f5f5, #eaeaea); }  
.box9  { background: linear-gradient(135deg, #fff5dc, #ffecc3); }  
.box10 { background: linear-gradient(135deg, #e8fcff, #d0f3f8); }  
.box11 { background: linear-gradient(135deg, #fff8d6, #ffefb8); }   
.box12 { background: linear-gradient(135deg, #edf3ff, #d6e2ff); }  
.box17 {background: linear-gradient(135deg, #ffecd2, #fcb69f); }   


    a {
      text-decoration: none;
      color: inherit;
    }

    @media (max-width: 480px) {
      .portal-box {
        flex-direction: column;
        align-items: flex-start;
      }
      .portal-box img {
        width: 40px;
        height: 40px;
      }
    }
