.services-page-section ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.services-page-section ul li {
  color: var(--rv-black);
  position: relative;
  background: linear-gradient(45deg, rgba(134, 150, 189, 0.2) 0%, transparent 80%);
  margin-bottom: 15px;
  padding: 15px 15px 15px 50px;  /* Adjust padding for better spacing */
  border-radius: 8px;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  transition: all 0.3s ease; /* Smooth transition on hover */
  font-size: 16px; /* Increased font size for readability */
  font-weight: 500; /* Lighter font weight for better design */
}

.services-page-section ul li:hover {
  background: linear-gradient(45deg, rgba(134, 150, 189, 0.6) 0%, transparent 85%);
  transform: translateY(-8px); /* More pronounced lift effect */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Add subtle shadow on hover */
}

.services-page-section ul li::after {
  content: "\f270";
  position: absolute;
  font-family: "bootstrap-icons";
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--rv-primary);
}

.services-page-section .nevdisc-box {
  display: none;
}

.services-page-section .nevdisc-box.show {
  display: block;
}

.services-page-section .nevdisc-box ul li {
  color: var(--rv-black);
  font-size: 14px;  /* Smaller font size for secondary items */
}

.services-page-section .image {
  float: right;
  padding: 25px;
  padding-top: 0;
}

.services-page-section .image img {
  width: 100%;
  border-radius: 8px; /* Soft corner radius */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow around images */
}

.services-page-section .costom-nev {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  padding-bottom: 30px;
}

.services-page-section .costom-nev .tebHendlers {
  padding: 15px;
}

.services-page-section .costom-nev .tebHendlers.active span {
  background: var(--rv-primary);
  color: var(--rv-white);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for active tab */
}

.services-page-section .costom-nev .tebHendlers span {
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid var(--rv-primary);
  font-weight: 600;
  cursor: pointer;
  color: var(--rv-primary);
  transition: background 0.3s, color 0.3s;
}

.services-page-section .costom-nev .tebHendlers span:hover {
  background: var(--rv-primary);
  color: var(--rv-white);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); /* Shadow on hover for better effect */
}
