*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}



section nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 0 10px #e1420d;
    background-color: #e1420d;
    
    position: fixed;
    left: 0;    
    z-index: 2;
    
}


section nav .logo img{
    width: 80px;
    cursor: pointer;
    margin: 10px 0; 
}

section nav ul{
    list-style: none;
}


section nav li{
    display: inline-block;
    padding: 0 20px;
}


section nav li a{
    text-decoration: none;
    color: black;
}

section nav li a:hover{
    color:#ffffff;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
}

section nav .social_icon i{
    margin: 0 8px;
    font-size: 30px;
}
section nav .social_icon button{
    margin: 0 8px;
    font-size: 12px;
    padding: 1px;
    position: center;
    bottom: 4px;
    left: 40px;
}



section nav .social_icon i:hover{
    color: #ffffff;
    cursor: pointer;
}

.testimonial-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  
    width: 200%;
    position: relative;
    
  }
  
  .testimonial-box {
    width: 800px;
    box-shadow: 2px 2px 30px hwb(0 31% 2% / 0.36);
    padding: 20px;
    justify-content: center;
    margin: 50px;
    cursor: pointer;
    transition: transform ease 0.3s; /* Corrected transition */
  }
  
  .profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 10px;
  }
  
  .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .name-user strong {
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
  
  .name-user span {
    color: #f9d71c;
  }
  
  .box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .client-comment p {
    /* Fixed selector */
    font-size: 0.9rem;
    color: #4b4b4b;
  }
  .testimonial-box {
    text-align: center;
    align-items: center;
  }
  .testimonial-box:hover {
    transform: translateY(-10px);
  }
  
  @media (max-width: 1060px) {
    .testimonial-box {
      width: 45%;
      padding: 10px;
    }
  }
  
  @media (max-width: 790px) {
    .testimonial-heading h1 {
      font-size: 1.4rem;
    }
  }
  
  @media (max-width: 340px) {
    .box-top {
      flex-wrap: wrap;
      margin-bottom: 10px;
    }
  } /* Make sure this closing bracket is present */
  
  ::selection {
    color: #ffffff;
    background-color: #3d3d3d;
  }
  
  #Comments,
  #Clients {
    text-align: center;
    font-size: 30px;
  }


  body {
    background-image: url(image/bookstore.jpg);
    height: 100vh;
    width: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    flex-direction: column;

  }
  