.slider-area {
    position: relative;
    background: #000;
    overflow: hidden;
    height: 100vh;
}

/* Common star style */
.star, .star2 {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    opacity: 0.7;
}

/* First set: moves upward-left */
.star {
    animation: drift1 20s linear infinite;
}

@keyframes drift1 {
    0% {
        transform: translate(0, 0);
        opacity: 0.7;
    }
    100% {
        transform: translate(-300px, -300px);
        opacity: 0;
    }
}

/* Second set: moves downward-right */
.star2 {
    animation: drift2 25s linear infinite;
    opacity: 0.5;
}

@keyframes drift2 {
    0% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: translate(300px, 300px);
        opacity: 0;
    }
}

.brand-carousel-wrapper {
    padding-top: 50px;
    overflow: hidden;
    width: 100%;
    margin: auto;
  }

  .brand-carousel {
    display: flex !important;
    align-items: center;
  }

  .brand-carousel li {
    width: auto !important;
    display: inline-block !important;
    margin: 0 30px;
  }

  .brand-carousel img {
    max-height: 50px;
    width: auto;
    display: inline-block;
  }

  /* Force slick slider container to allow scroll */
  .slick-track {
    display: flex !important;
    align-items: center;
  }
            

  /* Style for floating whatsapp icon */
/* start */
.whatsapp-icon {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    padding: 10px;
    box-shadow: 2px 2px 10px white,
    -2px 2px 10px white,
    -2px -2px 10px white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    animation: bounce-pulse 2s  infinite;
    text-decoration: none;
  }
  
  .whatsapp-icon i {
    color: white;
    font-size: 24px;
  }
  
  .whatsapp-icon img {
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
  }
  @keyframes bounce-pulse {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-30px) scale(1.2);
    }
    60% {
        transform: translateY(-15px) scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
  }

