 
   /* ===== PAGE BANNER   ===== */
.page-banner {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--primary-dark) 100%);
  padding: 140px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s infinite ease-in-out alternate;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s infinite ease-in-out alternate-reverse;
}

.page-banner h1 {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.page-banner p {
  font-size: 17px;
  opacity: 0.8;
  max-width: 550px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.breadcrumb-custom li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-custom li a:hover {
  color: var(--accent-light);
}

.breadcrumb-custom li.active {
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-custom li.active::before {
  content: '›';
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  margin-right: 0;
}

 .gradient-text {
    background: linear-gradient(90deg, var(--accent-light), #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


  /* ===== SERVICES PAGE STYLES ===== */

  .services-hero {
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--primary-dark) 80%, var(--primary) 100%);
    padding: 120px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .services-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    animation: heroGlow 8s infinite ease-in-out alternate;
  }

  .services-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    animation: heroGlow 10s infinite ease-in-out alternate-reverse;
  }

  /* Stats Strip */
  .stats-strip {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    padding: 30px 20px;
    box-shadow: var(--shadow-soft);
  }

  .stat-item {
    text-align: center;
    padding: 16px 8px;
    position: relative;
  }

  .stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
  }

  .stat-item:last-child::after {
    display: none;
  }

  .stat-item .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    margin: 0 auto 10px;
  }

  .stat-item h3 {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
  }

  .stat-item p {
    color: #64748b;
    font-size: 12px;
    margin: 0;
    font-weight: 500;
  }

  /* Filter Tabs */
  .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
  }

  .filter-tab {
    background: var(--glass-card);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-soft);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .filter-tab:hover,
  .filter-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
  }

  .filter-tab i {
    font-size: 12px;
  }

  /* ===== SERVICE CARD V3 — IMAGE FIRST ===== */
  .svc-card-v3 {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .svc-card-v3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(13, 148, 136, 0.04), transparent);
    transition: height 0.4s ease;
    pointer-events: none;
  }

  .svc-card-v3:hover::after {
    height: 100%;
  }

  .svc-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(13, 148, 136, 0.3);
  }

  .svc-card-v3 .svc-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #ccfbf1, #e0f2fe, #f0fdfa);
    flex-shrink: 0;
  }

  .svc-card-v3 .svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
  }

  .svc-card-v3:hover .svc-img img {
    transform: scale(1.08);
  }

  .svc-card-v3 .svc-img .fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.3;
  }

  .svc-card-v3 .svc-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98), transparent);
    pointer-events: none;
  }

  .svc-card-v3 .svc-img .category-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .svc-card-v3 .svc-img .category-tag i {
    font-size: 10px;
  }

  .svc-card-v3 .svc-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }

  .svc-card-v3 .svc-icon-pill {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-top: -50px;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.25);
    position: relative;
    z-index: 4;
    transition: transform 0.4s ease;
    flex-shrink: 0;
  }

  .svc-card-v3:hover .svc-icon-pill {
    transform: scale(1.1) rotate(5deg);
  }

  .svc-card-v3 h4 {
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.3;
  }

  .svc-card-v3 .svc-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 12px;
  }

  .svc-card-v3 .svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
  }

  .svc-tag {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.07), rgba(6, 182, 212, 0.07));
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .svc-tag i {
    font-size: 9px;
    color: var(--primary);
  }

  .svc-card-v3 .svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
  }

  .svc-card-v3 .svc-link:hover {
    gap: 12px;
    color: var(--primary-dark);
  }

  .svc-card-v3 .svc-link i {
    transition: transform 0.3s ease;
    font-size: 12px;
  }

  .svc-card-v3 .svc-link:hover i {
    transform: translateX(4px);
  }

  /* Highlight Section */
  .svc-highlight-v2 {
    background: linear-gradient(160deg, var(--navy-dark), var(--navy), var(--primary-dark));
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
  }

  .svc-highlight-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .svc-hl-img-area {
    position: relative;
    overflow: hidden;
    min-height: 360px;
  }

  .svc-hl-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }

  .svc-hl-img-area .fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    position: absolute;
    inset: 0;
  }

  .svc-hl-body {
    padding: 50px 40px;
    position: relative;
    z-index: 2;
    color: #fff;
  }

  .svc-hl-body h3 {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .svc-hl-body p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.8;
  }

  .hl-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hl-feature:last-child {
    border: none;
  }

  .hl-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent-light);
    flex-shrink: 0;
  }

  .hl-feature h6 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
  }

  .hl-feature small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
  }

  /* Departments Mini Grid */
  .dept-pill {
    background: var(--glass-card);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    height: 100%;
  }

  .dept-pill:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(13, 148, 136, 0.3);
  }

  .dept-pill-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin: 0 auto 12px;
    transition: all 0.3s ease;
  }

  .dept-pill:hover .dept-pill-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
  }

  .dept-pill h6 {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 13px;
    margin-bottom: 4px;
  }

  .dept-pill p {
    color: #94a3b8;
    font-size: 11px;
    margin: 0;
  }

  /* CTA Banner */
  .svc-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius);
    padding: 50px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .svc-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  }

  .svc-cta h3 {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .svc-cta p {
    opacity: 0.9;
    font-size: 16px;
    margin-bottom: 24px;
  }

  .btn-cta-w {
    background: #fff;
    color: var(--primary-dark);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 14px;
  }

  .btn-cta-w:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    color: var(--primary-dark);
  }

  .btn-cta-ghost {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
  }

  .btn-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-3px);
  }
