    ::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #363636;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(142deg, #0f2018, rgba(153, 10, 10, 0.897) ) !important;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(142deg, rgba(153, 10, 10, 0.897) , #0f2018 ) !important;
}

p {
  color: #363636;
}


    .marquee-container {
      overflow: hidden;
      white-space: nowrap;
      width: 100%;
      box-sizing: border-box;
     
      padding: 20px 0;
    }

    .marquee {
      display: inline-block;
      animation: scroll-left 30s linear infinite;
       background: #fff;
       border-radius:12px !important;
    }

    .marquee.reverse {
      animation: scroll-right 30s linear infinite;
       background: #fff;
    }

    .marquee img {
      width: 150px;
      height: auto;
      margin: 0 15px;
      vertical-align: middle;
      box-shadow: 2px 2px 5px #990a0ae5;
      margin-top: 10px;
      margin-bottom: 10px;
    }

    @keyframes scroll-left {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @keyframes scroll-right {
      0%   { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }
  




  
    .product-card {
      position: relative;
      overflow: hidden;
    }

    .product-card img {
      transition: transform 0.4s ease;
    }

    .product-card:hover img {
      transform: scale(1.1); /* zoom effect */
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(153, 10, 10, 0.897);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: bold;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .product-card:hover .overlay {
      opacity: 1;
    }
  

    .rotating-wheel {
    position: fixed;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    overflow: hidden;
    z-index: 1000;
    pointer-events: none; 
}

.rotating-wheel img {
    width: 400px;
    height: 400px;
    opacity: 0.1; /* Low opacity as requested */
        animation: float 6s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}


/* Optional: Show only half wheel (bottom half) */
.rotating-wheel.half-wheel {
    height: 60px; /* Half the height */
    overflow: hidden;
}

.rotating-wheel.half-wheel img {
    position: relative;
    top: -60px; /* Move image up to show bottom half */
}



 #scrollCircle {
      position: fixed;
      bottom: 15px;
      right: 20px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-image: linear-gradient(to top, rgba(0, 0, 0, 0.685), #990a0ae5);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 9999;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .progress-ring {
      transform: rotate(-90deg);
      position: absolute;
      top: 0;
      left: 0;
      width: 60px;
      height: 60px;
    }

    .progress-ring-bg {
      fill: none;
      stroke: #990a0ae5;
      stroke-width: 2;
    }

    .progress-ring-circle {
      fill: none;
      stroke: rgba(211, 201, 201, 0.788);
      stroke-width: 2;
      stroke-dasharray: 163.36;
      stroke-dashoffset: 163.36;
      transition: stroke-dashoffset 0.2s ease;
    }

    #scrollText {
      font-family: Arial, sans-serif;
      font-size: 16px;
      color: white;
      font-weight: bold;
      z-index: 1;
      user-select: none;
       pointer-events: auto;
  transition:0.3s ease-in-outs;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
    }
    #scrollText.arrow {
  font-size: 21px; /* ← Increase default arrow size here */
}

    /* Arrow hover effect only when it's an arrow */
    #scrollText.arrow:hover {
      transform: scale(1.2);
      font-size: 23px;
      cursor: pointer;
    }



    .hero-section {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      overflow: hidden;
      padding: 0 5%;
    }

    .hero-text {
      flex: 1;
      z-index: 2;
    }

    .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-image img {
      max-width: 350px;
      width: 100%;
      height: auto;
      transition: transform 0.1s linear;
    }

    .content-section {
      min-height: 100vh;
      background: #f7f7f7;
      padding: 50px;
    }

    @media (max-width: 768px) {
      .hero-section {
        flex-direction: column;
        text-align: center;
      }
      .hero-image {
        margin-top: 20px;
      }
    }






/* Fixed Left Sidebar Toolbar */
.social-toolbar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 11px 5px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 25px 25px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toolbar-item {
    position: relative;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.toolbar-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.social-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Platform-specific backgrounds */
.toolbar-item[data-platform="whatsapp"] {
    background: #8a0b0c;
}

.toolbar-item[data-platform="linkedin"] {
    background: #8a0b0c;
}

.toolbar-item[data-platform="email"] {
    background: #8a0b0c;
}

/* Tooltip */
.tooltip {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: #333;
}

/* Hover Effects */
.toolbar-item:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.toolbar-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

.toolbar-item:hover .social-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Main content styling */
.main-content {
    margin-left: 100px;
    padding: 50px;
    min-height: 200vh; /* For scrolling demo */
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-toolbar {
        left: -8px;
        padding: 15px 8px;
        border-radius: 0 20px 20px 0;
    }
    
    .toolbar-item {
        width: 45px;
        height: 45px;
    }
    
    .social-icon {
        width: 25px;
        height: 25px;
    }
    
    .main-content {
        margin-left: 80px;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .social-toolbar {
        left: -4px;
        padding: 12px 6px;
        gap: 12px;
    }
    
    .toolbar-item {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        width: 22px;
        height: 22px;
    }
    
    .tooltip {
        left: 50px;
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .main-content {
        margin-left: 60px;
        padding: 20px;
    }
}


.counterimg{
    margin:0 auto;
}