@charset "utf-8";
/* Container */
.services-container {
    width: 1700px;
    height: 1200px;
    padding-top: 80px;
    padding-right: 80px;
    padding-left: 80px;
    padding-bottom: 80px;
    box-sizing: border-box;
    margin-left: 140px;
}

/* Service Box */
.service-box {
  width: 45%;              
  height: 500px;           
  float: left;             
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #4D8EA2;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  color: #fff;
  transition: transform 0.3s ease;
  margin-right: 20px;
  margin-bottom: 20px;
}

/* Hover effect */
.service-box:hover {
  transform: translateY(-8px);
}

/* Thumbnail images */
.service-box img {
  width: 376px;
  height: 450px;        /* portrait, bigger */
  border-radius: 12px;
  object-fit: cover;
  margin-right: 20px;
  margin-left: 25px;
}

/* Service info */
.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.service-info p {
  font-size: 20px;
  color: #ccc;
}

.hire-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #01A8DB, #001D39);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    width: 80px;
    height: 30px;
}

.hire-btn:hover {
  background: linear-gradient(135deg, #001D39, #01A8DB);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

