
         /* Gallery Image Hover Effect */
         /* Gallery Image Hover Effect */
         .video-container {
         position: relative;
         overflow: hidden;
         border-radius: 15px;
         box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
         animation: neonPulse 3s infinite alternate;
         background: linear-gradient(45deg, #ff0000, #ff7300, #ffeb00, #00ff00, #00eaff, #0000ff, #8000ff, #ff0080);
         background-size: 400% 400%;
         animation: gradientBG 8s infinite linear;
         }
         /* Video Styling */
         .video-container video {
         width: 100%;
          height: 250px;
         display: block;
         border-radius: 15px;
         transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
         }
         /* Hover Effect */
         .video-container:hover video {
         transform: scale(1.05);
         box-shadow: 0px 10px 40px rgba(255, 0, 255, 0.7);
         }
         /* Neon Pulse Animation */
         @keyframes neonPulse {
         0% {
         box-shadow: 0px 0px 20px rgba(255, 0, 255, 0.5);
         }
         100% {
         box-shadow: 0px 0px 40px rgba(0, 255, 255, 0.8);
         }
         }
         /* Dynamic Gradient Background */
         @keyframes gradientBG {
         0% {
         background-position: 0% 50%;
         }
         50% {
         background-position: 100% 50%;
         }
         100% {
         background-position: 0% 50%;
         }
         }
         /* Play Button Animation */
         .video-container::before {
         content: "▶";
         font-size: 50px;
         font-weight: bold;
         color: white;
         position: absolute;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         opacity: 0.8;
         transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
         text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
         }
         /* Hide Play Button on Hover */
         .video-container:hover::before {
         opacity: 0;
         transform: scale(1.2);
         }
         .gallery-item {
         cursor: pointer;
         overflow: hidden;
         border-radius: 10px;
         border: 3px solid #000165;
         /* Add border */
         padding: 5px;
         /* Space between border and image */
         }
         /* Gallery Images */
         .gallery-item img {
         width: 100%;
         height: auto;
         transition: transform 0.3s ease-in-out;
         border-radius: 10px;
         }
         /* Hover Zoom Effect */
         .gallery-item:hover img {
         transform: scale(1.1);
         border-color: #007bff;
         /* Change border color on hover */
         }
         /* Modal Image Full Width */
         .modal-img {
         max-width: 100%;
         height: auto;
         margin: auto;
         display: block;
         border-radius: 10px;
         border: 3px solid #000165;
         /* Add border in modal */
         }
        .product-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .product-card:hover {
      transform: translateY(-5px);
    }
    .product-img {
      height: 220px;
      object-fit: cover;
      width: 100%;
    }
    .discount-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: red;
      color: #fff;
      font-size: 14px;
      padding: 4px 8px;
      border-radius: 5px;
    }
    .wishlist {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #fff;
      border-radius: 50%;
      padding: 5px;
      font-size: 16px;
      cursor: pointer;
    }
    .card-body {
      padding: 15px;
    }
    .price {
      color: red;
      font-weight: bold;
      font-size: 18px;
    }
    .old-price {
      text-decoration: line-through;
      color: gray;
      font-size: 14px;
      margin-left: 5px;
    }
    .color-dots span {
      height: 15px;
      width: 15px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 6px;
      cursor: pointer;
      border: 1px solid #ccc;
    }
    .bottom-btn {
        background: linear-gradient(90deg, #669902, #0098fe);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 8px 15px;
      font-size: 14px;
      font-weight: bold;
      transition: 0.3s;
    }
    .bottom-btn:hover {
      opacity: 0.9;
    }
      .section-title {
      border-left: 5px solid #fe6701;
      padding-left: 15px;
      margin-bottom: 20px;
    }
    .section-title h2 {
      color: #fe6701;
      font-weight: 700;
    }
    .feature-box {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }
    .feature-icon {
      min-width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      margin-right: 12px;
    }
    .feature-box:nth-child(1) .feature-icon { background-color: #fe6701; }
    .feature-box:nth-child(2) .feature-icon { background-color: #ffcc01; }
    .feature-box:nth-child(3) .feature-icon { background-color: #5e9915; }
    .feature-box:nth-child(4) .feature-icon { background-color: #0798ec; }
    .feature-box:nth-child(5) .feature-icon { background-color: #fe6701; }
    .feature-box:nth-child(6) .feature-icon { background-color: #ffcc01; }
    .feature-box h5 {
      font-weight: 600;
      margin-bottom: 5px;
    }
    .feature-box p {
      font-size: 14px;
      margin: 0;
      color: #555;
    }
    .highlight-badge {
      background: #0798ec;
      color: #fff;
      display: inline-block;
      padding: 8px 15px;
      border-radius: 8px;
      font-weight: 600;
      position: absolute;
      top: 20px;
      right: 20px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }
    .highlight-badge i {
      margin-right: 6px;
    }
    .image-container {
      position: relative;
    }
    img {
      border-radius: 10px;
      width: 100%;
    }

     .service-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }
    .service-img {
      height: 180px;
      object-fit: cover;
      width: 100%;
    }
    .service-body {
      padding: 15px;
    }
    .service-title {
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    /* Color classes */
    .orange { color: #fe6701; }
    .yellow { color: #ffcc01; }
    .green  { color: #5e9915; }
    .blue   { color: #0798ec; }

    .counter-card {
            background: #fff;
            border-radius: 15px;
            padding: 0px 23px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease-in-out;
            height: 100%;
        }

        .counter-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .counter-card h5 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .counter-card span {
            font-size: 16px;
            color: #555;
        }