

.our-clients {
    overflow: hidden;
    position: relative;
  }
  
  .our-clients .service-content {
    transition: transform 0.3s ease;
  }
  
  .our-clients .read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: #001b7a;
    color: #fff;
    text-align: center;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
  
  .our-clients:hover .read-more {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .our-clients .read-more {
    cursor: pointer;
  }
  

.shadow-box {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  .shadow-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }






.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.stat {
    background-color: #0073e6;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 150px;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.member {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #eee;
}

.member h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #27aae1;
}

.member p {
  font-size: 0.95rem;
  color: #777;
}


.writing-services h2 {
  font-weight: 700;
}

.icon-box .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}



