

    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

.price {
      background: linear-gradient(45deg, #0ea5e9, #14b8a6); 
      background-clip: text; -webkit-background-clip: text; 
      -webkit-text-fill-color: transparent; 
      font-weight: 900;
      font-size: 2rem;
    }

    .mymodal {
      display: none;
      position: fixed;
      z-index: 1;
      padding-top: 100px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: black;
    }

    .rounded-circle-avatar-bg {
      width: 210px;
      height: 210px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cursor-pointer {
      cursor: pointer;
    }

    .demo.active {
      border: 3px solid #0ea5e9;
    }

    .service-carousel {
      position: relative;
      overflow: hidden;
    }
    
    .service-images-container {
      display: flex;
      transition: transform 0.3s ease;
      width: fit-content;
    }
    
    .service-image-item {
      flex: 0 0 280px;
      width: 280px;
    }

    .image-hover-effect {
      transition: all 0.3s ease;
    }

    .service-image {
      height: 230px;
      cursor: pointer;
      transition: transform 0.5s ease;
    }

    .service-carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
      color: white;
      border: none;
      z-index: 10;
    }

    .service-carousel-control--prev {
      left: 10px;
    }

    .service-carousel-control--next {
      right: 10px;
    }

    .lightbox-image {
      width: 100%;
      height: 70vh;
      object-fit: contain;
    }

    .lightbox-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 16px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 10;
    }

    .lightbox-control--prev {
      left: 15px;
    }

    .lightbox-control--next {
      right: 15px;
    }

    .service-thumb {
      height: 60px;
      object-fit: cover;
    }

    .service-background {
      top: 0;
      left: 0;
      overflow: hidden;
      z-index: -1;
      pointer-events: none;
    }

    .service-background-svg {
      width: 100%;
      height: 100%;
      opacity: 0.15;
      top: 0;
    }

    .price-unit {
      font-size: 25px;
    }

    .other-product-item {
      transition: all 0.3s ease;
    }

    .other-product-image {
      height: 220px;
      cursor: pointer;
    }

    .floating-orb {
      position: absolute;
      border-radius: 50%;
    }

    .floating-orb-lg {
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: linear-gradient(135deg, rgba(58, 123, 213, 0.05), rgba(0, 210, 255, 0.05));
    }

    .floating-orb-sm {
      bottom: -30px;
      left: -30px;
      width: 150px;
      height: 150px;
      background: linear-gradient(135deg, rgba(58, 123, 213, 0.03), rgba(0, 210, 255, 0.03));
    }

    .rating-icon {
      font-size: large;
    }
    
    .image-hover-effect:hover img {
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      h2 {
        font-size: 20px;
      }
      h3 {
        font-size: 20px;
      }
      .service-carousel {
        padding: 0 15px;
      }
      .service-image-item {
        flex: 0 0 100% !important;
        width: 100% !important;
      }
    }
    
    @media (max-width: 480px) {
      .service-image-item {
        flex: 0 0 100% !important;
        width: 100% !important;
      }
    }

    /* Add pulsing effect to BUY NOW button */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
      }
    }
    
    .pulse-button {
      animation: pulse 2s infinite;
    }
