/* service */

.sidebar {
  background: rgba(33, 45, 69, 0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.sidebar:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.profile-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--primary-color);
  transition: 0.3s;
}

.profile-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--primary-color);
}

.sidebar h5 {
     color: #fff;
    margin-bottom: 5px;
}

.service-links {
  padding: 10px 5px;
  border-radius: 8px;

  h5 {
    color: #333;
    font-size: 22px;

    margin-bottom: 10px;
  }

  a {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-size: 16px;
    margin-bottom: 5px;
    color: white;
    display: block;
    padding: 8px 8px;
    margin: 5px 0;
    border-radius: 6px;
    transition: 0.3s;
  }
}

.service-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
}

.sidebar hr {
  border: 1px solid rgb(255, 255, 255);
}

.form-control,
.btn {
  border-radius: 10px;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
}

.btn-primary:hover {
  background-color: #11b485;
}

/* --- Main Content --- */
.content {
  padding: 10px 15px 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content-image {
  width: 100%;
  border-radius: 15px;
  margin: 0 0 20px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s;
  border: 1px solid var(--secondary-color);
}

.content-image:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.service-title {
  color: var(--secondary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 8px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.service-title:first-child {
  margin: 0;
}

.content p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.content ul,
.content ol {
  padding-left: 25px;
  margin-bottom: 20px;
}

.content ul li,
.content ol li {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.1rem;
}

.content table th,
.content table td {
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .content {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .content ul,
  .content ol {
    padding-left: 20px;
  }

  .content p {
    font-size: 1rem;
  }
  .content ul li,
  .content ol li {
    font-size: 1rem;
  }

  .content table th,
  .content table td {
    font-size: 1rem;
    padding: 4px;
  }
}
