/* === Global Theme === */
        .tz-breadcrumb__title{
            text-align:center;
        }

    /* === Alternating Backgrounds === */
    .section-white {
      background: #ffffff;
      color: #111;
      padding: 100px 0;
    }

    .section-dark {
      background: #0f172a;
      color: #e0e0e0;
      padding: 100px 0;
    }

    /* === Hero Section (White) === */
    .tz-services-hero {
      background: #ffffff;
      padding: 50px 0;
      position: relative;
      color: #111;
    }

    .tz-services-hero h1 {
      font-size: 3.8rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
      color: #111;
    }

    .tz-services-hero h1 span {
      color: #91d904;
      position: relative;
    }

    .tz-services-hero h1 span::after {
      content: '';
      position: absolute;
      bottom: 8px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(59, 130, 246, 0.2);
      z-index: -1;
      border-radius: 4px;
    }

    .tz-services-hero p {
      font-size: 1.2rem;
      color: #555;
      max-width: 650px;
    }

    .badge-custom {
      background: #91d904;
      color: white;
      font-size: 0.85rem;
      padding: 6px 16px;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
      margin-bottom:20px;
    }

    /* === Service Cards (Dark Background) === */
    .service-card {
      background: #1a1a1a;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 30px;
      height: 100%;
      transition: all 0.4s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      border-color: #91d904;
    }

    .service-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: #91d904;
    }

    .service-card h3 {
      color: #fff;
      font-size: 1.6rem;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .service-card ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .service-card ul li {
      color: #aaa;
      font-size: 0.95rem;
      margin-bottom: 10px;
      position: relative;
      padding-left: 22px;
    }

    .service-card ul li::before {
      content: '•';
      color: #91d904;
      font-weight: bold;
      position: absolute;
      left: 0;
    }

    /* === Section Title (Reusable) === */
    .section-title {
      text-align: center;
      margin-bottom: 80px;
    }

    .section-title h2 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .section-title.dark h2 {
      color: #fff;
      background: linear-gradient(45deg, #fff, #999);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .section-title.light h2 {
      color: #111;
    }

    .section-title p {
      color: #aaa;
      max-width: 800px;
      margin: 10px auto 0;
      font-size: 1.1rem;
    }

    .section-title.light p {
      color: #555;
    }

    /* === Why Choose Us (White Background) === */
    .feature-card-modern {
      background: #f8f9fa;
      border: 1px solid #dee2e6;
      border-radius: 16px;
      padding: 25px;
      text-align: center;
      height: 100%;
      transition: all 0.4s ease;
    }

    .feature-card-modern:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      border-color: #91d904;
    }

    .feature-card-modern i {
      font-size: 2.2rem;
      color: #91d904;
      margin-bottom: 15px;
    }

    .feature-card-modern h4 {
      color: #111;
      margin-bottom: 12px;
    }

    .feature-card-modern p {
      color: #555;
      font-size: 0.95rem;
    }

    /* === Responsive === */
    @media (max-width: 992px) {
      .tz-services-hero h1 {
        font-size: 2.8rem;
      }

      .section-title h2 {
        font-size: 2.4rem;
      }

      .service-card, .feature-card-modern {
        padding: 25px;
      }
    }