
       body {
      background-color: #f9f9fb;
    }
    .focus-item {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      padding: 15px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      font-size: 1rem;
      font-weight: 500;
    }
    .focus-item i {
      color: #1197da;
      font-size: 1.2rem;
      margin-right: 10px;
    }
    .focus-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(23, 127, 245, 0.42);
      background: #1197da;
      color:#ffffff;
    }
    .focus-item:hover i {
      color:#F68634;
    }
        .focus-item:hover .focus-item {
      color:#F68634;
    }
    .info-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
    border-left: 5px solid #1197da; /* highlight border */
  }

  .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  }

  .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F68634, #F68634);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
  }

  .info-card h5 {
    font-weight: 500;
    margin-top: 20px;
    color: #333;
  }

  .info-card p {
    color: #555;
    line-height: 1.6;
    text-align: justify;
  }
  