/* Our Capabilities css file */

      /* ---------------------------
        Services Wrapper
      ---------------------------- */
      .services-wrapper {
        width: 90%;
        margin: 50px auto;
        display: flex;
        flex-direction: column;
        gap: 70px;
      }

      /* ---------------------------
        Service Block
      ---------------------------- */
      .service-block {
        display: flex;
        align-items: center;
        gap: 40px;
        background: #fff;
        border-radius: 14px;
        padding: 30px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        transition: 0.3s ease;
      }

      /* .service-block:hover {
        transform: translateY(-5px);
      } */

      /* Reverse layout (image right) */
      .service-block.reverse {
        flex-direction: row-reverse;
      }

      /* Image Styling */
      .service-image img {
        width: 100%;
        border-radius: 12px;
        transition: 0.4s ease;
      }

      /* .service-image img:hover {
        transform: scale(1.04);
      } */

      /* Text Content */
      .service-content {
        flex: 1;
      }

      .service-tag {
        font-size: 15px;
        font-weight: 600;
        color: #3a6073;
        text-transform: uppercase;
        letter-spacing: 2px;
      }

      .service-content h3 {
        margin-top: 10px;
        font-size: 28px;
        font-weight: 700;
        color: #222;
      }

      .service-content p {
        margin-top: 10px;
        color: #555;
        line-height: 1.6;
      }

      /* Features List */
      .features {
        margin-top: 15px;
        padding-left: 18px;
      }

      .features li {
        margin-bottom: 6px;
        font-size: 15px;
        color: #444;
      }

      /* CTA Button */
      .cta-btn {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 24px;
        background: #006dc5;
        color: #fff;
        font-weight: 600;
        border-radius: 6px;
        text-decoration: none;
        transition: 0.3s ease;
        cursor: pointer;
      }


      .cta-btn:hover {
        background: #221e4f;
        color: #fff;
      }

      /* Make all service images the same size */
      .service-image-02 {
        width: 100%;
        height: 350px;          /* Fixed height to make all equal */
        object-fit: cover;      /* Crop without distortion */
        border-radius: 12px;
      }

      /* ---------------------------
        Responsive
      ---------------------------- */

      /* Responsive for tablets */
      @media (max-width: 992px) {
        .service-block,
        .service-block.reverse {
          flex-direction: column;
          text-align: center;
        }

        .service-content {
          margin-top: 20px;
        }

        .service-image-02 {
          height: 300px;
        }
      }

      /* Responsive for mobile */
      @media (max-width: 576px) {
        .services-wrapper {
          width: 95%;
        }

        .service-image-02 {
          height: 250px;
        }

        .service-content h3 {
          font-size: 22px;
        }

        .page-heading h2 {
          font-size: 32px;
        }
      }
