body {
    margin: 0;
    padding: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(521071.jpg);
    background-size: cover;
    background-position: center;
  }

  .navbar {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
  }
  
  .logo {
    width: 96px;
    height: 96px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    left: 20px;
  }  
  
  .navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
  }
  
  .navbar ul li {
    margin: 0 15px;
    position: relative;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: #fff;
    position: relative;
  }
  
  .navbar ul li::after {
    content: '';
    height: 3px;
    width: 0;
    background: pink;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: width 0.5s;
  }
  
  .navbar ul li:hover::after {
    width: 100%;
    left: 0;
  }
  
  
  .services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(521071.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .service-box {
    width: 200px;
    height: 200px;
    background-color: transparent;
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 10px 2px pink;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  
  .service-box:hover {
    background-color: rgba(255, 192, 203, 0.3);
    transform: scale(1.05);
    box-shadow: 0 0 20px 4px pink;
  }
  
  .service-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .service-box p {
    font-size: 18px;
    line-height: 1.4;
    margin-top: auto;
  }  
