.work_block_inner .nav-pills {
  max-width: 600px;
  justify-content: space-between;
}
.topbar {
  background: #00bcd4;
  color: #fff;
  font-size: 14px;
  padding: 6px 15px;
  display: flex;
  justify-content: space-between;
}
.navbar-brand img {
  height: 60px;
}
.navbar-nav .nav-link {
  font-weight: 500;
  margin-right: 15px;
}
.service-card {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eaeaea;
  transition: 0.3s;
  cursor: pointer;
}
.service-card img {
  height: 50px;
  margin-bottom: 10px;
}
.service-card:hover {
  background: #f9f9f9;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
}
.contact-form h5 {
  margin-bottom: 20px;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  border-radius: 6px;
}
.info-box {
  position: absolute;
  top: 50%;
  transform:translateY(-50%);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  max-width: 320px;
  text-align: left;
}
.info-box h6 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 20px;
}
.info-box p {
  margin-bottom: 8px;
  font-size: 15px;
}
.image-container {
  height: 400px;
  overflow: hidden;
  position: relative;
  border: 2px solid #d3d3d3;
  border-bottom: 0;
}
.image-container img {
  width: 100%;
  display: block;
  transition: transform 10s ease-in-out;
}
.image-container:hover img {
  transform: translateY(-50%);
}
.works-part{
    position: relative;
}
.info-box img{
  max-width: 100px;
  margin-bottom: 15px;
}
.info-box small{
  font-size: 14px;
}
/* ===== Responsive ===== */
@media screen and (max-width:767px){
    .info-box {
    position: relative;
    top: 0;
    transform: none;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    max-width: 100%;
    text-align: left;
    margin-top: 30px;
}
}