
    .breadcrumb-header {
      background: url('your-image.jpg') no-repeat center center;
      background-size: cover;
      position: relative;
      padding: 100px 0;
      color: white;
      text-align: center;
    }

    .breadcrumb-header::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
      z-index: 0;
    }

    .breadcrumb-header .container {
      position: relative;
      z-index: 1;
    }

    .breadcrumb-header h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .breadcrumb-header .breadcrumb {
      justify-content: center;
      background: transparent;
      margin-top: 10px;
    }

    .breadcrumb-header .breadcrumb-item a {
      color: #ffffff;
      text-decoration: none;
    }

    .breadcrumb-header .breadcrumb-item.active {
      color: #ffffff;
    }

    .breadcrumb-header .breadcrumb-item + .breadcrumb-item::before {
      color: #fff;
      content: "»";
    }


    /* servicess  details */


      h2, h5 {
      font-weight: 700;
    }

    .text-purple {
      color: #0B2E33;
    }

    .btn-purple {
      background-color: #0B2E33;
      color: #fff;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-purple:hover {
      background-color: #0B2E33;
      color: #fff;
    }

    /* Left Content Styling */
    .main-content {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .main-img {
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .video-section {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 40px;
    }

    .video-box {
      flex: 1;
      position: relative;
      min-width: 280px;
    }

    .video-box img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #0B2E33;
      color: white;
      border: none;
      padding: 16px;
      font-size: 22px;
      border-radius: 50%;
      box-shadow: 0 0 0 8px rgba(111, 66, 193, 0.15);
      transition: 0.3s;
    }

    .play-btn:hover {
      transform: translate(-50%, -50%) scale(1.1);
      background: #0B2E33;
    }

    .features-list {
      flex: 1;
    }

    .features-list ul {
      list-style: none;
      padding-left: 0;
    }

    .features-list li {
      margin-bottom: 10px;
      font-weight: 500;
    }

    .features-list i {
      color: #0B2E33;
      margin-right: 8px;
    }

    /* Sidebar Styling */
    .sidebar-card {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .services-list .list-group-item {
      border: none;
      font-weight: 500;
      border-radius: 10px;
      padding: 12px 16px;
      margin-bottom: 8px;
      background-color: #f9f9f9;
      transition: 0.3s;
    }

    .services-list .list-group-item:hover {
      background-color: #93B1B5;
      color: #0B2E33;
      cursor: pointer;
    }

    .gradient-card {
      background: linear-gradient(135deg, #0B2E33 0%, #165a65 100%);
      color: white;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .gradient-card .btn {
      margin-top: 15px;
      background: white;
      color: #0B2E33;
      font-weight: 600;
      border-radius: 30px;
      padding: 10px 24px;
      transition: 0.3s;
    }

    .gradient-card .btn:hover {
      background-color: #f8f8f8;
    }