      .services-section {
        background: #fff;
        margin: 0 auto;
        padding: 0;
        margin-top: calc(90px + 50px);
      }

      .services-header-section {
        background: #076461;
        color: white;
        text-align: center;
        padding: 60px 20px;
      }

      .services-header-section h1 {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
      }

      .services-header-section p {
        font-size: 18px;
        font-weight: 300;
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.6;
        opacity: 0.95;
      }

      .services-grid {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        padding: 60px 40px;
        background-color: #ffffff;
      }

      .service-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
        cursor: pointer;
      }

      .service-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
      }

      .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .service-card h3 {
        padding: 20px;
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        text-align: center;
        min-height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .services-header-section h1 {
          font-size: 36px;
        }

        .services-header-section p {
          font-size: 16px;
          max-width: 400px;
        }

        .services-grid {
          grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
          gap: 20px;
          padding: 40px 20px;
        }
      }

      @media (max-width: 480px) {
        .services-header-section {
          padding: 40px 15px;
        }

        .services-header-section h1 {
          font-size: 24px;
        }

        .services-header-section p {
          font-size: 12px;
          max-width: 250px;
        }

        .services-grid {
          grid-template-columns: 1fr;
          gap: 20px;
          padding: 30px 15px;
        }
      }

      @media (max-width: 850px) {
        .services-section {
          margin-top: calc(40px);
        }
      }

      @media (max-width: 576px) {
        .services-section {
          margin-top: calc(90px);
        }
      }

      /* =========================
              Animations
        ========================= */
      .services-header-section {
        opacity: 0;
        transform: translateY(30px);
      }

      .services-header-section.reveal-header {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.9s ease;
      }

      .service-card {
        opacity: 0;
        transform: perspective(800px) rotateX(15deg) translateY(40px);
      }

      .service-card.reveal-card {
        opacity: 1;
        transform: perspective(800px) rotateX(0) translateY(0);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }

      /* stagger delay */
      .service-card.reveal-card:nth-child(1) {
        transition-delay: 0.1s;
      }
      .service-card.reveal-card:nth-child(2) {
        transition-delay: 0.2s;
      }
      .service-card.reveal-card:nth-child(3) {
        transition-delay: 0.3s;
      }
      .service-card.reveal-card:nth-child(4) {
        transition-delay: 0.4s;
      }
      .service-card.reveal-card:nth-child(5) {
        transition-delay: 0.5s;
      }
      .service-card.reveal-card:nth-child(6) {
        transition-delay: 0.6s;
      }
      .service-card.reveal-card:nth-child(7) {
        transition-delay: 0.7s;
      }

      /* =========================
           IMAGE: soft zoom-in
        ========================= */
      .service-image img {
        transform: scale(1.15);
        opacity: 0;
      }

      .service-card.reveal-card .service-image img {
        transform: scale(1);
        opacity: 1;
        transition:
          transform 1s ease,
          opacity 1s ease;
      }

      .service-card:hover .service-image img {
        transform: scale(1.1);
        transition: transform 0.3s ease;
      }