/* General List Styling */
.services-page-section ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

.services-page-section ul li {
    position: relative;
    background: linear-gradient(45deg, rgba(84, 182, 49, 0.8) 0%, rgba(84, 182, 49, 0.2) 100%);
    color: #fff;
    margin-bottom: -6px;
    padding: 10px 5px 10px 55px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, padding 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}   .side-nav {
        background-color: #f8f9fa; /* Light background */
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .side-nav-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
    }

    .side-nav-item {
        margin-bottom: 10px;
    }

    .side-nav-link {
        text-decoration: none;
        color: #007bff; /* Blue color */
        font-size: 1rem;
        font-weight: 500;
        display: block;
        transition: color 0.3s ease;
    }

    .side-nav-link:hover {
        color: #0056b3; /* Darker blue on hover */
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .side-nav {
            padding: 15px;
        }

        .side-nav-title {
            font-size: 1.2rem;
        }

        .side-nav-link {
            font-size: 0.9rem;
        }
    }

/* Hover Effect for List Item */
.services-page-section ul li:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, rgba(84, 182, 49, 1) 0%, rgba(84, 182, 49, 0.5) 100%);
  padding-left: 70px; /* Expands the padding to give more space for the icon */
  filter: brightness(1.1);
}

/* Icon Styling */
.services-page-section ul li::after {
  content: "\f270";
  position: absolute;
  font-family: "bootstrap-icons";
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect on Icon */
.services-page-section ul li:hover::after {
  color: #fff;
  transform: translateY(-50%) scale(1.2);
}

/* Focus Effect on List Item */
.services-page-section ul li:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(84, 182, 49, 0.7);
  background: linear-gradient(45deg, rgba(84, 182, 49, 1) 0%, rgba(84, 182, 49, 0.8) 100%);
}

/* Active State for List Item */
.services-page-section ul li:active {
  transform: translateY(2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background: linear-gradient(45deg, rgba(84, 182, 49, 1) 0%, rgba(84, 182, 49, 0.3) 100%);
}

/* Styling for Additional Box */
.services-page-section .nevdisc-box {
  display: none;
}

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

.services-page-section .nevdisc-box ul li {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  padding: 10px 0;
}

/* Image Styling (Optional) */
.services-page-section .image {
  float: right;
  padding: 30px;
  padding-top: 0;
}

.services-page-section .image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.services-page-section .image img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Tabs Styling */
.services-page-section .costom-nev {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  padding-bottom: 30px;
  justify-content: center;
}

/* Tab Handlers */
.services-page-section .costom-nev .tebHendlers {
  padding: 15px;
  margin: 10px;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

/* Active Tab Handler */
.services-page-section .costom-nev .tebHendlers.active span {
  background: #ff6f61;
  color: #fff;
  border: none;
}

/* Tab Span Styling */
.services-page-section .costom-nev .tebHendlers span {
  padding: 12px 25px;
  border-radius: 50px;
  border: 2px solid #ff6f61;
  font-weight: 600;
  cursor: pointer;
  color: #ff6f61;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
}

/* Hover Effect on Tab Span */
.services-page-section .costom-nev .tebHendlers span:hover {
  background-color: #ff6f61;
  color: #fff;
  transform: scale(1.05);
}

/* Active State for Tab Span */
.services-page-section .costom-nev .tebHendlers span:active {
  transform: scale(0.98);
  background-color: #e55b4b;
  color: #fff;
}

/* Pseudo-Class for Focused Tab */
.services-page-section .costom-nev .tebHendlers span:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255, 111, 97, 0.7);
}
/* Basic Styling */
.side-nav ul {
    padding: 0;
    margin: 0;
}

.side-nav-item a.side-nav-link {
    text-decoration: none;
}

.side-nav-item {
    list-style: none;
}

.side-nav-link {
    display: block;
    padding: 10px 20px;
    margin: 5px 0;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover effect */
.side-nav-link:hover {
    background-color: #54b631;
    cursor: pointer;
    transform: scale(1.05);
    color: #fff;
}

/* Active state */
.side-nav-link:active {
    background-color: #003f7f;
    transform: scale(1);
}

/* Focus effect for accessibility */
.side-nav-link:focus {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

/* Optional: Add a subtle shadow on hover */
.side-nav-link:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
