  /* Services Page Specific Styles */
  .services-banner {
      background-color: #5e7fb1;
      /* Muted blue from screenshot */
      padding: 80px 0;
      text-align: left;
      position: relative;
  }

  .services-banner h1 {
      color: white;
      font-size: 3rem;
      font-weight: 800;
      text-transform: uppercase;
      margin: 0;
      padding-left: 20px;
      /* Align with container if needed, usually handled by container class */
  }

  .services-layout {
      display: flex;
      gap: 40px;
  }

  /* SIDEBAR (Left) */
  .service-sidebar {
      flex: 0 0 300px;
      /* Fixed width sidebar */
      background: #fff;
      padding: 0;
  }

  /* Note: Title style if needed in future */
  .service-nav-title {
      background-color: var(--secondary);
      color: white;
      padding: 20px;
      font-size: 1.2rem;
      font-weight: 700;
      text-transform: uppercase;
      text-align: center;
  }

  .service-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
      border: 1px solid #eee;
      /* Force vertical stacking */
      display: flex;
      flex-direction: column;
  }

  .service-nav-item {
      display: block;
      width: 100%;
      /* Ensure full width for anchor */
      padding: 15px 20px;
      font-weight: 600;
      color: #062365;
      text-decoration: none;
      border-bottom: 1px solid #eee;
      transition: all 0.3s ease;
      cursor: pointer;
      background: white;
  }

  .service-nav-item:last-child {
      border-bottom: none;
  }

  .service-nav-item:hover {
      color: var(--secondary);
      background-color: #f9f9f9;
      padding-left: 25px;
      /* Slight slide effect */
  }

  .service-nav-item.active {
      color: #062365 !important;
      background-color: #f8fbff;
      /* Very light blue tint */
      border-left: 5px solid #062365;
      padding-left: 15px;
      /* Adjust padding to compensate for border */
  }

  /* Content Styling */
  .service-content-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      margin-bottom: 30px;
      border-radius: 4px;
  }

  .service-content-area h2,
  .service-content-area h3 {
      font-family: 'Open Sans', sans-serif !important;
      font-weight: 800 !important;
      font-size: 38px !important;
      color: #062365 !important;
      margin-bottom: 20px !important;
      text-transform: none !important;
  }

  .service-content-area p {
      color: #333;
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: 0.95rem;
      text-align: justify;
  }

  @media (max-width: 992px) {
      .services-layout {
          flex-direction: column;
      }

      .service-sidebar {
          width: 100%;
          margin-bottom: -50px;
      }
  }

  .service-tab-content {
      display: none;
      animation: fadeIn 0.5s;
  }

  .service-tab-content.active {
      display: block;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  /* Slider Styles */
  .service-slider {
      position: relative;
      max-width: 100%;
      height: 400px;
      margin-bottom: 30px;
      overflow: hidden;
      border-radius: 4px;
  }

  .slider-wrapper {
      width: 100%;
      height: 100%;
  }

  .slide {
      display: none;
      width: 100%;
      height: 100%;
  }

  .slide.active {
      display: block;
      animation: fade 1.5s;
  }

  .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .slider-btn {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      margin-top: -22px;
      padding: 16px;
      color: #062365;
      font-weight: bold;
      font-size: 18px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
      background-color: white;
      border: none;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .slider-btn.next {
      right: 0;
      border-radius: 3px 0 0 3px;
  }

  .slider-btn:hover {
      background-color: #062365;
      color: white;
  }

  /* Dots */
  .slider-dots {
      text-align: center;
      margin-top: 10px;
      position: absolute;
      bottom: 15px;
      width: 100%;
  }

  .dot {
      cursor: pointer;
      height: 10px;
      width: 10px;
      margin: 0 2px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
  }

  .dot.active,
  .dot:hover {
      background-color: #062365;
      /* Primary */
      width: 25px;
      /* Elongated active dot */
      border-radius: 5px;
  }

  @keyframes fade {
      from {
          opacity: .4
      }

      to {
          opacity: 1
      }
  }