* {
  font-family: 'Cairo', sans-serif !important;
}
/* Hero section styling */
  .hero {
      background: url('/assets/images/shelfs.jpg') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
  }

  .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
  }

  .hero p {
      font-size: 1.5rem;
      margin-bottom: 30px;
  }
  /* Profile imgae */
    .profile-img {
      border: 3px solid #007bff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
  
    .profile-img:hover {
      transform: scale(1.05);
    }
    /* Qualifications styling */
        .custom-list {
          list-style-type: none;
          padding: 0;
          margin: 0;
        }
    
        .custom-list li {
          background: linear-gradient(90deg, #007bff, #6610f2);
          color: #fff;
          padding: 15px;
          margin-bottom: 10px;
          border-radius: 5px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          font-weight: bold;
          transition: transform 0.2s;
        }
    
        .custom-list li:hover {
          transform: scale(1.02);
        }
    
        .custom-list li:last-child {
          margin-bottom: 0;
        }
/* Footer Styling */
  footer {
      position: fixed;
      bottom: 0;
      width: 100%;
  }