@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;
}
    

    .grid-container_2 {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color:  #fcf1ea;
    }

    .card {
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      color: #333;
      text-decoration: none;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

   .card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


    .card-title {
      font-size: 16px;
      font-weight: 600;
    }

   .color1  { background-color: #FFEBEE; }  
.color2  { background-color: #E3F2FD; }  
.color3  { background-color: #E8F5E9; }  
.color4  { background-color: #FFFDE7; }  
.color5  { background-color: #F3E5F5; } 
.color6  { background-color: #FAF0E6; }  
.color7  { background-color: #F0FFFF; } 
.color8  { background-color: #FFFACD; }  
.color9  { background-color: #E6E6FA; }  
.color10 { background-color: #F0FFF0; } 

.color11 { background-color: #F0D9FF; }  
.color12 { background-color: #D0F0C0; }  
.color13 { background-color: #FEEBCB; }  
.color14 { background-color: #D6EAF8; } 
.color15 { background-color: #FFE6CC; } 




.card-title a {
  color: #2c3e50;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.card-title a:hover {
  color: #e67e22;
  text-decoration: underline;
}
 


