      html {
          scroll-behavior: smooth;
      }

      .services-carousel {
          padding: 100px 0;
          position: relative;
      }

      .service-item {
          background: #fff;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
          margin: 15px;
      }

      .service-item:hover {
          transform: translateY(-10px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      }

      .service-body {
          padding: 30px;
      }

      .service-title {
          font-size: 20px;
          font-weight: 700;
          margin-bottom: 15px;
          color: #1c2c34;
      }

      .service-title a {
          color: inherit;
          text-decoration: none;
      }

      .service-desc {
          font-size: 15px;
          color: #666;
          line-height: 1.6;
      }

      .service-desc ul {
          padding-left: 20px;
          margin-top: 10px;
      }

      .service-desc li {
          margin-bottom: 5px;
      }

      .service-img {
          position: relative;
          height: 200px;
      }

      .service-img .bg-img {
          height: 100%;
      }

      .service-img img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }

      .service-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.3);
          transition: 0.3s;
      }

      .service-item:hover .service-overlay {
          background: rgba(0, 0, 0, 0.1);
      }

      .btn-block {
          border-radius: 0;
          padding: 15px 25px;
          font-weight: 600;
          display: flex;
          align-items: center;
      }

      .report-section-wrap {
          padding-top: 80px;
      }

      .heading-subtitle {
          text-transform: uppercase;
          letter-spacing: 2px;
          font-weight: 700;
          font-size: 14px;
          display: block;
          margin-bottom: 10px;
      }

      .heading-title {
          font-size: 42px;
          font-weight: 800;
          color: #1c2c34;
      }