 .tz-breadcrumb__title { text-align: center; }
    .tz-about2-experience__counter { font-size: 3.5rem; font-weight: 700; }
    .tz-wwa1-experience__counter-number, .tz-wwa1-experience__counter-number-stroke {
      font-size: 3rem;
      font-weight: 700;
    }.tz-dark-theme {
    background: #0a0a0c;
    color: #e2e8f0;
    font-family: 'Outfit', sans-serif;
  }

  /* Deep gradient background */


  /* --- Text Colors --- */
  .tz-text-neutral5 { color: #ffffff !important; }
  .tz-text-neutral6 { color: #94a3b8 !important; }
  .tz-text-primary { color: #85c815 !important; } /* Soft Blue */
  .tz-text-success { color: #4ade80 !important; }
  .tz-text-warning { color: #facc15 !important; }
  .tz-text-danger { color: #f87171 !important; }

  /* --- Section Titles & Subtitles --- */
  .tz-section-title {
  background: linear-gradient(90deg, #85c815,#85c815,#ffffff,#85c815, #85c815);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .tz-section-subtitle__line {
    background: linear-gradient(90deg, #85c815, #8b5cf6) !important;
    width: 60px !important;
    height: 3px !important;
  }

  /* --- Cards & Containers (Glassmorphism) --- */
  .tz-card,
  .tz-about2-content,
  .tz-about2-experience,
  .tz-process .bg-white.bg-opacity-10 {
    background: rgba(30, 41, 59, 0.3) !important;
    backdrop-filter: blur(16px);
    border: 2px solid #92d904c3;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
  }

  .tz-card:hover,
  .tz-about2-content:hover,
  .tz-process .bg-white.bg-opacity-10:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 50px rgba(121, 246, 59, 0.3),
                0 0 30px rgba(178, 246, 59, 0.2);
    border: 2px solid #85c815;
    background: rgba(30, 41, 59, 0.45) !important;
  }

  /* --- Process Timeline Enhancements --- */
  .tz-process {
    position: relative;
  }

  .tz-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, 85c815, transparent);
    z-index: 1;
  }

  .tz-step-number {
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .tz-step-number:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px currentColor;
  }

  /* --- Button Styling (Glowing) --- */
  .tz-button {
    background: transparent;
    color: #85c815;
    border: 2px solid #85c815;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .tz-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .tz-button:hover::before {
    opacity: 1;
  }

  .tz-button:hover {
    background: rgba(96, 165, 250, 0.15);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 30px 85c815;
    border-color: #85c815;
  }

  .tz-button-circle {
    background: #85c815;
    color: white;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px 85c815;
  }

  .tz-button-circle:hover {
    transform: translateY(-5px) rotate(15deg);
    box-shadow: 0 12px 30px rgba(96, 165, 250, 0.6);
  }

  /* --- Active State (Press Effect) --- */
  .tz-button:active,
  .tz-button-circle:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  }

  /* --- Image & Shape Effects --- */
  .rounded-3.shadow-lg {
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.5s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .rounded-3.shadow-lg:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px #85c815 !important;
  }

  .floating {
    animation: floating 6s ease-in-out infinite;
  }

  @keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
  }

  /* --- Icons Glow --- */
  .ph {
    transition: all 0.3s ease;
  }

  .ph:hover {
    color: #85c815 !important;
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.6);
  }

  /* --- Custom Scrollbar (Neon Blue) --- */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #0a0f1a;
  }

  ::-webkit-scrollbar-thumb {
    background: #85c815;
    border-radius: 10px;
    border: 2px solid #0a0f1a;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  }

 
  .tz-breadcrumb {
    background: linear-gradient(rgba(10, 15, 26, 0.7), rgba(10, 15, 26, 0.9)), url('../images/breadcrumb/About.jpg');
    background-blend-mode: overlay;
  }

  /* --- Remove any white backgrounds --- */
  .bg-white, .bg-white.bg-opacity-5, .bg-white.bg-opacity-10 {
    background: transparent !important;
  
  }
  /* Better contrast for body text on mobile */
@media (max-width: 767px) {
  .tz-text-neutral6 {
    color: #cbd5e1 !important; /* Lighter gray, better contrast on dark */
    opacity: 0.9; /* Slight transparency for softness, but readable */
  }

  /* Ensure primary headings pop */
  .tz-section-title {
    font-size: 1.8rem !important; /* Larger on mobile */
    background: linear-gradient(90deg, #85c815, #85c815);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    text-shadow: none; /* Avoid shadow interfering with gradient */
  }
}@media (max-width: 767px) {
  .tz-text-l {
    font-size: 1rem !important;     /* ~16px */
    line-height: 1.7 !important;
  }

  .tz-text-m {
    font-size: 0.9rem !important;   /* ~14.5px */
    line-height: 1.6 !important;
  }

  .tz-about2__title {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }

  .tz-section-title.tz-display-2 {
    font-size: 2rem !important;
  }
}@media (max-width: 767px) {
  .tz-card,
  .tz-about2-content,
  .tz-about2-experience,
  .bg-white.bg-opacity-10 {
    backdrop-filter: blur(8px); /* Reduced from 16px */
    border: 1px solid rgba(59, 130, 246, 0.15); /* Slightly less intense border */
  }

  /* Optional: remove blur entirely on low-end devices */
  @supports not (backdrop-filter: blur(8px)) {
    .tz-card, .tz-about2-content {
      backdrop-filter: none;
      background: rgba(30, 41, 59, 0.8) !important;
    }
  }
}.tz-breadcrumb {
  padding: 149px 0;
}

.tz-breadcrumb__content {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Adds depth */
}

@media (max-width: 767px) {
  .tz-breadcrumb__title {
    font-size: 2rem !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  }
}@media (max-width: 767px) {
  .tz-about-mission p {
    margin-bottom: 1rem;
  }

  .tz-about2__desc,
  .tz-text-l {
    margin-bottom: 1.2rem;
  }
}@media (max-width: 767px) {
  .tz-process::before,
  .position-absolute.w-100 {
    display: none; /* Hide central line on mobile */
  }

  .col-lg-6.mb-6 {
    display: flex;
    justify-content: center;
  }

  .tz-step-number {
    margin-right: 12px !important;
  }
}