<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> .image-comparison {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: relative;
      }

      .image-comparison img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .image-comparison .images-container {
        position: relative;
        height: 250px;
      }

      .image-comparison .before-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
      }

      .image-comparison .after-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        z-index: 2;
        overflow: hidden;
      }

      .image-comparison .slider-line {
        position: absolute;
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        background-color: white;
        z-index: 3;
        transform: translateX(-50%);
        pointer-events: none;
      }

      .image-comparison .slider-handle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        z-index: 4;
      }

      .image-comparison .slider-handle i {
        font-size: 1rem;
        color: #555;
      }

      .image-comparison .labels {
        position: absolute;
        bottom: 10px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 15px;
        z-index: 5;
        color: white;
        font-weight: bold;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        font-size: 0.8rem;
      }

      .image-comparison .before-label,
      .image-comparison .after-label {
        background-color: rgba(0, 0, 0, 0.5);
        padding: 3px 10px;
        border-radius: 15px;
      }

      .comparison-card {
        height: 100%;
      }

      .comparison-card .card-body {
        padding: 0;
      }

      @media (max-width: 992px) {
        .image-comparison .images-container {
          height: 200px;
        }
      }

      @media (max-width: 768px) {
        .image-comparison .images-container {
          height: 250px;
        }
      }

       :root {
        --primary-blue: #007cfb;
        --primary-yellow: #ffd600;
        --light-blue: #e6f2ff;
        --light-yellow: #fff9e6;
        --gradient-bg: linear-gradient(135deg, #e6f2ff 0%, #fff9e6 100%);
        --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
      }

      .process-section {
        background: rgba(255, 255, 255, 0.95);
        padding: 90px 0 80px 0;
        position: relative;
        overflow: hidden;
        border-radius: 30px;
        box-shadow: var(--shadow);
        margin: 40px 0;
      }

      .process-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .process-header h2 {
        color: var(--primary-blue);
        font-weight: 800;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
        letter-spacing: 1px;
        font-size: 2.5rem;
      }

      .process-header .lead {
        color: #444;
        font-size: 1.2rem;
        margin-top: 10px;
      }

      .process-steps {
        position: relative;
        z-index: 1;
      }

      .process-steps::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: calc(100% - 80px);
        background: linear-gradient(
          to bottom,
          var(--primary-blue),
          var(--primary-yellow)
        );
        border-radius: 3px;
        z-index: 0;
        opacity: 0.15;
      }

      .process-step {
        position: relative;
        margin-bottom: 50px;
        padding: 38px 36px 32px 36px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 6px 24px rgba(0, 124, 251, 0.07);
        transition: box-shadow 0.3s, transform 0.3s;
        border-left: 6px solid var(--primary-blue);
        z-index: 2;
      }

      .process-step:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 16px 40px rgba(0, 124, 251, 0.13);
        border-left: 6px solid var(--primary-yellow);
      }

      .process-step:nth-child(even) {
        margin-left: auto;
        width: calc(50% - 40px);
        border-left: none;
        border-right: 6px solid var(--primary-yellow);
        background: linear-gradient(90deg, #fffbe6 60%, #fff 100%);
      }

      .process-step:nth-child(odd) {
        margin-right: auto;
        width: calc(50% - 40px);
        background: linear-gradient(90deg, #e6f2ff 60%, #fff 100%);
      }

      .step-number {
        position: absolute;
        top: -28px;
        left: 50%;
        transform: translateX(-50%);
        width: 56px;
        height: 56px;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--primary-yellow)
        );
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.5rem;
        box-shadow: 0 4px 18px rgba(0, 124, 251, 0.18);
        border: 4px solid #fff;
        z-index: 3;
        transition: background 0.3s, color 0.3s;
      }

      .process-step:nth-child(even) .step-number {
        background: linear-gradient(
          135deg,
          var(--primary-yellow),
          var(--primary-blue)
        );
        color: #333;
      }

      .process-step h3 {
        color: var(--primary-blue);
        margin-bottom: 15px;
        font-weight: 700;
        font-size: 1.3rem;
        letter-spacing: 0.5px;
      }

      .process-step p {
        color: #555;
        line-height: 1.7;
        font-size: 1.05rem;
      }

      .step-icon {
        font-size: 2.3rem;
        margin-bottom: 18px;
        color: var(--primary-blue);
        background: #e6f2ff;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 2px 8px rgba(0, 124, 251, 0.08);
        transition: background 0.3s, color 0.3s;
      }

      .process-step:nth-child(even) .step-icon {
        color: var(--primary-yellow);
        background: #fffbe6;
      }

      .process-step:hover .step-icon {
        background: var(--primary-yellow);
        color: var(--primary-blue);
      }

      @media (max-width: 1200px) {
        .process-step,
        .process-step:nth-child(even) {
          width: 80%;
          margin-left: auto;
          margin-right: auto;
        }
      }
      @media (max-width: 992px) {
        .process-step,
        .process-step:nth-child(even) {
          width: 95%;
          margin-left: auto;
          margin-right: auto;
        }
        .process-header h2 {
          font-size: 2rem;
        }
      }
      @media (max-width: 768px) {
        .process-section {
          padding: 30px 0 20px 0;
          border-radius: 0;
          margin: 0;
        }
        .process-header h2 {
          font-size: 1.5rem;
        }
        .process-header .lead {
          font-size: 1rem;
        }
        .process-steps::before {
          left: 18px;
          width: 3px;
          top: 30px;
          height: calc(100% - 60px);
        }
        .process-step,
        .process-step:nth-child(even) {
          width: calc(100% - 24px);
          margin-left: 12px;
          margin-right: 0;
          border-left: 4px solid var(--primary-blue);
          border-right: none;
          background: #fff;
          padding: 24px 16px 18px 20px;
        }
        .step-number {
          left: -18px;
          width: 38px;
          height: 38px;
          font-size: 1rem;
          border-width: 2px;
          top: -18px;
        }
        .step-icon {
          width: 32px;
          height: 32px;
          font-size: 1.3rem;
          margin-bottom: 10px;
        }
      }
      @media (max-width: 480px) {
        .process-header h2 {
          font-size: 1.1rem;
        }
        .process-header .lead {
          font-size: 0.95rem;
        }
        .process-step,
        .process-step:nth-child(even) {
          padding: 14px 6px 10px 10px;
        }
        .step-number {
          width: 28px;
          height: 28px;
          font-size: 0.85rem;
          top: -12px;
          left: -12px;
        }
        .step-icon {
          width: 22px;
          height: 22px;
          font-size: 1rem;
        }
        .process-step:nth-child(odd){
            margin-right: 0;
            width: 100%;
        }
      }
      /* Animation for process steps */
      .process-step {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
      }
      .process-step.visible {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
      }
      .benifits-section.rs-services.services-style1
        .services-item
        .services-text
        .services-txt {
        height: 135px;
      } 
      .why-choose-us {
        padding: 80px 0;
        background-color: white;
        position: relative;
      }

      .benefit-card {
        background: white;
        border-radius: 10px;
        padding: 30px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-top: 4px solid var(--primary-blue);
        position: relative;
        overflow: hidden;
      }

      .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      }

      .benefit-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          rgba(0, 124, 251, 0.03) 0%,
          rgba(255, 214, 0, 0.03) 100%
        );
        z-index: 0;
      }

      .benefit-icon {
        width: 70px;
        height: 70px;
        background: var(--light-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--primary-blue);
        font-size: 1.8rem;
        transition: all 0.3s ease;
      }

      .benefit-card:hover .benefit-icon {
        background: var(--primary-blue);
        color: white;
        transform: rotate(10deg) scale(1.1);
      }

      .benefit-card h3 {
        font-size: 20px;
        line-height: 1.3em;
      }

      .benefit-card p{
        text-align: left;
      }
    
      @media (max-width: 768px) {
        .why-choose-us {
          padding: 60px 0;
        }
      }

      
      
</pre></body></html>