/* Page-specific CSS for services/service-template.php */
/* Extracted from inline styles */

.page-title .title {
      font-size: 55px;
    }
    .about-section-four {
      padding: 120px 0 64px;
    }
    @media (max-width: 767px) {
      .page-title .title {
        font-size: 40px !important;
      }
    }

/* === Services Showcase Section === */
      .svc-showcase {
        position: relative;
        padding: 100px 0 90px;
        background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 50%, #f1f5f9 100%);
        overflow: hidden;
      }

      /* Soft decorative dot pattern */
      .svc-showcase::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(13,110,253,0.04) 1px, transparent 1px);
        background-size: 28px 28px;
        pointer-events: none;
      }

      /* Large decorative circle accents */
      .svc-showcase .svc-deco-circle {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(13,110,253,0.06);
        pointer-events: none;
      }
      .svc-showcase .svc-deco-circle-1 {
        width: 400px; height: 400px;
        top: -160px; right: -100px;
        border-width: 2px;
        border-color: rgba(13,110,253,0.05);
      }
      .svc-showcase .svc-deco-circle-2 {
        width: 300px; height: 300px;
        bottom: -100px; left: -80px;
        border-width: 2px;
        border-color: rgba(13,110,253,0.04);
      }



      /* Section header — uses site's native sec-title pattern */
      .svc-showcase .svc-header {
        position: relative;
        text-align: center;
        margin-bottom: 55px;
        z-index: 2;
      }
      .svc-showcase .svc-header .sub-title {
        position: relative;
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        font-family: var(--title-font);
        color: var(--theme-color1);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 10px;
        padding-top: 20px;
      }
      .svc-showcase .svc-header .sub-title::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 43px;
        height: 5px;
        border-radius: 5px;
        background: var(--theme-color1);
      }
      .svc-showcase .svc-main-title {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--headings-color);
        font-family: var(--title-font);
        margin-bottom: 12px;
        line-height: 1.25;
      }
      .svc-showcase .svc-desc {
        font-size: 1rem;
        color: var(--text-color);
        max-width: 580px;
        margin: 0 auto;
        line-height: 1.7;
        font-style: italic;
      }

      /* Card grid */
      .svc-showcase .svc-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
      }

      /* Individual card */
      .svc-showcase .svc-card {
        position: relative;
        background: #ffffff;
        border-radius: 16px;
        padding: 44px 28px 38px;
        text-align: center;
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        overflow: hidden;
      }

      /* Left accent bar */
      .svc-showcase .svc-card::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, #0d6efd, #3d8bfd);
        border-radius: 0 4px 4px 0;
        transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      }

      /* Bottom gradient shimmer */
      .svc-showcase .svc-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, #0d6efd 50%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      .svc-showcase .svc-card:hover {
        transform: translateY(-8px);
        box-shadow:
          0 20px 40px rgba(13,110,253,0.1),
          0 8px 16px rgba(0,0,0,0.06);
        border-color: rgba(13,110,253,0.12);
      }
      .svc-showcase .svc-card:hover::before {
        height: 50%;
      }
      .svc-showcase .svc-card:hover::after {
        opacity: 1;
      }

      /* Step number */
      .svc-showcase .svc-step {
        position: absolute;
        top: 14px;
        right: 16px;
        font-size: 38px;
        font-weight: 900;
        font-family: var(--title-font);
        color: rgba(13,110,253,0.05);
        line-height: 1;
        transition: color 0.4s ease;
        pointer-events: none;
      }
      .svc-showcase .svc-card:hover .svc-step {
        color: rgba(13,110,253,0.1);
      }

      /* Icon circle */
      .svc-showcase .svc-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #eef4ff 0%, #dbeafe 100%);
        position: relative;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      }
      /* Ring around icon */
      .svc-showcase .svc-icon::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        border: 2px dashed rgba(13,110,253,0.15);
        transition: all 0.5s ease;
        animation: svcSpin 20s linear infinite;
      }
      @keyframes svcSpin {
        to { transform: rotate(360deg); }
      }
      .svc-showcase .svc-card:hover .svc-icon {
        background: linear-gradient(135deg, #0d6efd, #3d8bfd);
        transform: scale(1.08);
        box-shadow: 0 8px 25px rgba(13,110,253,0.3);
      }
      .svc-showcase .svc-card:hover .svc-icon::before {
        border-color: rgba(13,110,253,0.3);
        inset: -6px;
      }
      .svc-showcase .svc-icon i {
        font-size: 28px;
        color: var(--theme-color1);
        transition: all 0.4s ease;
      }
      .svc-showcase .svc-card:hover .svc-icon i {
        color: #ffffff;
        transform: scale(1.12);
      }

      /* Card title */
      .svc-showcase .svc-card-title {
        font-size: 14px;
        font-weight: 800;
        color: var(--headings-color);
        margin: 0;
        line-height: 1.4;
        font-family: var(--title-font);
        text-transform: uppercase;
        letter-spacing: 0.02em;
        transition: color 0.3s ease;
      }
      .svc-showcase .svc-card:hover .svc-card-title {
        color: var(--theme-color1);
      }

      /* Responsive */
      @media (max-width: 991px) {
        .svc-showcase .svc-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .svc-showcase .svc-main-title {
          font-size: 1.8rem;
        }
        .svc-showcase {
          padding: 80px 0 70px;
        }
      }
      @media (max-width: 575px) {
        .svc-showcase {
          padding: 60px 0 50px;
        }
        .svc-showcase .svc-grid {
          grid-template-columns: 1fr;
          max-width: 380px;
          margin: 0 auto;
        }
        .svc-showcase .svc-main-title {
          font-size: 1.5rem;
        }
        .svc-showcase .svc-card {
          padding: 36px 24px 30px;
        }
      }

      /* Staggered entrance */
      .svc-showcase .svc-card {
        opacity: 0;
        transform: translateY(30px);
        animation: svcFadeUp 0.6s ease forwards;
      }
      .svc-showcase .svc-card:nth-child(1) { animation-delay: 0.1s; }
      .svc-showcase .svc-card:nth-child(2) { animation-delay: 0.2s; }
      .svc-showcase .svc-card:nth-child(3) { animation-delay: 0.3s; }
      .svc-showcase .svc-card:nth-child(4) { animation-delay: 0.4s; }

      @keyframes svcFadeUp {
        to { opacity: 1; transform: translateY(0); }
      }

