/* ============================================
   MAIN WRAPPER
============================================ */
.services-page-section {
  position: relative;
  padding: 80px 0;
  font-family: var(--rv-font);
  color: var(--rv-text-color);
  /*background: linear-gradient(
    140deg,
    var(--rv-primary) 0%,
    var(--rv-secondary) 100%
  );*/
  overflow: hidden;
  z-index: 1;
}

/* Background glow elements */
.services-page-section::before,
.services-page-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  z-index: 0;
}

.services-page-section::before {
  background: var(--rv-secondary-light);
  top: -60px;
  left: -60px;
}

.services-page-section::after {
  background: var(--rv-primary-light);
  bottom: -60px;
  right: -60px;
}

/* ============================================
   INFO BOX
============================================ */
.services-page-section .info-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

/* ============================================
   UL LIST STYLING (GLASS CARDS + CHECKMARK)
============================================ */
.services-page-section ul {
  list-style: none;
  padding: 0 0 0 30px;
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.services-page-section ul li {
  position: relative;
  width: 100%;
  padding: 15px 18px 15px 50px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid transparent;
  border-image: linear-gradient(45deg, var(--rv-secondary), transparent 85%) 1;
  transition: 0.3s ease;
  color: var(--rv-heading-color);
}

/* ✔ CHECKMARK ICON */
.services-page-section ul li::before {
  content: "✔";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--rv-secondary);
  font-weight: 700;
}

/* Hover effect */
.services-page-section ul li:hover {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: var(--rv-secondary);
  transform: translateY(-3px);
}

/* ============================================
   TABS NAVIGATION
============================================ */
.services-page-section .costom-nev {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  padding-bottom: 35px;
  gap: 12px;
  position: relative;
  z-index: 2;
}

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

/* Tab Buttons */
.services-page-section .costom-nev .tebHendlers span {
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  border: 1px solid var(--rv-primary);
  font-weight: 600;
  cursor: pointer;
  color: var(--rv-primary);
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.services-page-section .costom-nev .tebHendlers span:hover {
  background: var(--rv-primary);
  color: var(--rv-white);
  box-shadow: 0 0 10px var(--rv-primary);
}

/* Active Tab */
.services-page-section .costom-nev .tebHendlers.active span {
  background: var(--rv-primary);
  color: var(--rv-white);
  box-shadow: 0 0 12px var(--rv-primary);
}

/* ============================================
   TAB CONTENT BOX
============================================ */
.services-page-section .nevdisc-box {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  margin-top: 25px;
  z-index: 2;
  position: relative;
  color: var(--rv-heading-color);
}

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

.services-page-section .nevdisc-box ul li {
  color: var(--rv-text-color);
}

/* ============================================
   IMAGE
============================================ */
.services-page-section .image {
  float: right;
  padding: 30px 30px 0 30px;
  max-width: 45%;
  position: relative;
  z-index: 2;
}

.services-page-section .image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  transition: 0.3s ease;
}

.services-page-section .image img:hover {
  transform: scale(1.03);
}
