/* Services Navigation */
.services-navigation {
  position: sticky;
  top: 160px;
  background-color: white;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 1 !important;
}
.service-link {
  display: inline-block;
  position: relative;
  padding-left: 20px; /* Space for the bullet */
}

.service-link::before {
  content: "\2022"; /* Unicode character for the bullet */
  color: blue; /* Set the bullet color */
  font-size: 20px; /* Increase the font size to make the bullet bigger */
  position: absolute;
  left: 0; /* Position the bullet on the left */
  top: 50%; /* Center the bullet vertically */
  transform: translateY(-50%);
}
.services-navigation .service-link {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.services-navigation .service-link:hover {
  background-color: #f8f8f8;
  color: #01204c;
}

/* Main Content Section */
.services-main {
  padding: 20px;
}

.services-entry {
  display: flex;
  margin-bottom: 30px;
  margin: 0 auto !important;
}

.service-info p {
  width: 87%;
  padding-top: 20px;
}
.services-entry {
  padding-bottom: 40px;
}
.service-info {
  flex: 8; /* Takes up 8 parts of the flex container */
  padding-right: 20px;
}

.service-info h3 {
  margin-top: 0;
}

.service-info .btn {
  margin-top: 20px;
  background-color: #01204c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 22px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
}


.service-info .btn:hover {
  background-color: #01204c;
}

.service-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-navigation {
      position: static;
      width: 100%;
  }

  .services-entry {
      flex-direction: column;
  }

  .service-info {
      margin-bottom: 20px;
  }
}
