body {
      font-family: 'Outfit', sans-serif;
      background-color: #0f172a;
      color: #e2e8f0;
      line-height: 1.7;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Teko', sans-serif;
      letter-spacing: 0.8px;
    }

    /* Breadcrumb & Header */
    .tz-breadcrumb1 {
      position: relative;
      height: 300px;
      background-image: url('.././images/breadcrumb/Services.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
    }

    
    .tz-breadcrumb__title {
      font-size: 2.8rem;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
    }

    .tz-breadcrumb__content {
      text-align: center;
    }

    /* Service Cards */
    .service-card {
      background: #1e293b;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      height: 100%;
      border: 1px solid #334155;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    }

    .service-card-img {
      height: 200px;
      overflow: hidden;
    }

    .service-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .service-card:hover .service-card-img img {
      transform: scale(1.1);
    }

    .service-card-body {
      padding: 24px;
    }

    .service-card-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #91d904; /* Vibrant green for app theme */
      margin-bottom: 12px;
    }

    .service-card-desc {
      color: #cbd5e1;
      font-size: 0.95rem;
    }

    .service-card-list {
      list-style: none;
      padding: 0;
      margin-top: 16px;
    }

    .service-card-list li {
      padding: 6px 0;
      display: flex;
      align-items: center;
    }

    .service-card-list li:before {
      content: "✓";
      color: #91d904;
      font-weight: bold;
      margin-right: 10px;
    }

    /* Section Titles */
    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
      color: white;
      position: relative;
      padding-bottom: 12px;
    }

    .section-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 60px;
      height: 4px;
      background: #91d904;
      border-radius: 2px;
    }

    /* Stats Section */
    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }

    .stat-item {
      text-align: center;
      padding: 20px;
      background: #1e293b;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: #91d904;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #94a3b8;
    }

    /* Sidebar */
    .sidebar {
      background: #1e293b;
      padding: 24px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .sidebar-title {
      font-size: 1.3rem;
      color: #91d904;
      font-weight: 600;
      margin-bottom: 16px;
      position: relative;
      padding-left: 12px;
    }
.tz-breadcrumb__title{
  margin-top: 20px;
}
    .sidebar-title::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 100%;
      background: #91d904;
      border-radius: 2px;
    }

    .sidebar-link {
      display: block;
      color: #e2e8f0;
      padding: 12px 0;
      border-bottom: 1px dashed #334155;
      transition: color 0.3s;
    }

    .sidebar-link:hover {
      color: #91d904;
    }

    .contact-cta {
      margin-top: 24px;
    }

    .btn-primary {
      background: #91d904;
      color: #0f172a;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: background 0.3s;
    }

    .btn-primary:hover {
      background: #b8d81b;
    }

    .contact-info {
      font-size: 0.95rem;
      color: #cbd5e1;
      margin-top: 16px;
      line-height: 2;
    }

    .contact-info a {
      color: #91d904;
    }

    /* Spacing */
    .py-5 {
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .mt-5 {
      margin-top: 60px;
    }

    footer {
      margin-top: 100px;
    }
  