.service-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 5rem auto;
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  align-items: center;
}
.service-detail .image-col {
  flex: 1 1 40%;
}
.service-detail .text-col {
  flex: 1 1 55%;
  position: relative;
  padding-left: 2rem;
}

.service-detail .text-col::before,
.service-detail .text-col::after {
  content: "";
  position: absolute;
  left: 0; 
  width: 5px; 
  background: #2c466c; 
}

.service-detail .text-col::before {
  top: 0;
  height: 45%; 
}

.service-detail .text-col::after {
  bottom: 0;
  height: 45%; 
}

.service-detail .line-logo {
  position: absolute;
  left: -25px; 
  top: 50%;
  transform: translateY(-50%);
  background: #fff; 
  padding: 5px;
}
.service-detail .line-logo img {
  width: 45px; 
  height: auto;
  filter: invert(27%) sepia(19%) saturate(1109%) hue-rotate(178deg) brightness(92%) contrast(90%);

}
.service-detail img {
  width: 100%;
  border-radius: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-detail h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2c466c;
  margin-bottom: 1.5rem;
}
.service-detail p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #555;
}


.navbar-custom .nav-link:hover {
  color: #4d9fff;
}

.navbar-custom {
    background-color: rgba(0, 0, 0, 0.85); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.navbar-brand img {
    height: 40px;
    transition: filter 0.3s ease;
    filter: brightness(1.0)
}

.navbar-custom .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 0.70rem;
    padding: 0.3rem 0.6rem;
    transition: color 0.3s ease, font-size 0.3s ease, padding 0.3s ease;
}

.service-detail img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-detail h2 {
  font-size: 1.4rem;
  color: #2c466c;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

.service-detail .service-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: #555;
  line-height: 1.7;
}

.service-detail .service-list li {
  margin-bottom: 0.6rem;
}
