body {
  font-family: "Poppins", "Outfit", sans-serif;
}

/* Ad popop */
  .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent dark overlay */
  backdrop-filter: blur(5px); /* blur effect on background */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* ensure it's above all content */
}

.popup-overlay.show {
  display: flex;
}

      
      .pop-up {
        background: white;
        max-width: 750px;
        width: 70%;
        margin: 10vh auto;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        z-index: 50;
      }

      .headImg {
        width: 80%;
        height: 80px;
      }
      .headImg img {
        max-width: 200px;
        position: relative;
        top: -85px;
        margin: 0 auto;
      }

      .textImg {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 1rem;
      }

      .textImg p {
        font-size: 15px;
        color: #333;
        margin-bottom: 0.8rem;
        max-width: 400px;
      }

      .textImg > div:first-child {
        flex: 1 1 45%;
      }

      .textImg > div:last-child img {
        max-width: 300px;
        width: 100%;
        display: block;
        margin: 0 auto;
      }

      .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        background: linear-gradient(to right, #ff6900, #e74c3c);
        color: white;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.3s ease;
      }

      .cta-button:hover {
        opacity: 0.9;
        transform: scale(1.05);
      }

      @media (max-width: 600px) {
        .headImg img {
         width: 150px;
         position: relative;
         top: -69px;
        }

        .textImg {
          flex-direction: column;
          text-align: left;
          font-size: 4px;
          gap: 0;
        }
        .textImg > div:last-child img {
          width: 200px;
        }
        .cta-button {
        padding: 6px 20px;
        font-size: 0.7rem;
      }
        
        
      }

      .popup-close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 2rem;
        color: #f40303;
        background-color: #fff;
        cursor: pointer;
        transition: 0.3s;
      }

      .popup-close:hover {
        color: #e74c3c;
        transform: rotate(90deg);
      }
    
  
.read-more-btn {
  background-color: #e63203;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: white;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
  display: inline-block;
}
.read-more-btn:hover {
  background-color: white;
  color: #e63203;
}


/* Logo Carousel */

  @keyframes slideLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .animate-slide-left {
    animation: slideLeft 25s linear infinite;
  }

  /* Viral Section */
#viral-img {
  position: relative;
  display: flex;
  align-items: center;
}

#viral-img img {
  position: absolute;
}

#viral-img1 {
  z-index: 1;
  animation: UD linear 2s infinite;
}

#viral-img2 {
  z-index: 2;
}

#content {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 50%;
}

#content p {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin: 0.5rem 0;
}

#hero-img {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}


.read-more-btn {
  background-color: #e63203;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: white;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
  display: inline-block;
}
.read-more-btn:hover {
  background-color: white;
  color: #e63203;
}


@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes UD {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Artist Section */

#ArtistSec {
  background-image: url(/images/Gradient\ shape\ centered.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

#ArtistSec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/Gradient\ shape\ centered.png");
  background-size: cover;
  background-position: center;
  animation: Rotate360 5s linear infinite;
  z-index: 0;
}

#ArtistSec > * {
  position: relative;
  z-index: 1;
}

@keyframes Rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.slide-line2 {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    #e63203,
    #ffa500
  ); /* match your theme */
  border-radius: 9999px;
  transition: width 0.3s ease;
}


/* Youtube Video Section */
@keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(50%);
  }
}

.animate-slideLeft {
  animation: slideLeft 40s linear infinite;
}

.animate-slideRight {
  animation: slideRight 40s linear infinite;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.youtube-facade {
  background-color: #000;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}

.youtube-facade::after {
  content: "";
  background: url("https://img.icons8.com/ios-filled/100/ffffff/play--v1.png")
    no-repeat center center;
  background-size: 60px;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.youtube-iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* Testimonial Section */

#testimonialSec {
  background-image: url(/images/Gradient\ shape\ centered3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

#testimonialSec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/Gradient\ shape\ centered3.png");
  background-size: cover;
  background-position: center;
  animation: Rotate360 3s linear infinite;
  z-index: 0;
}

#testimonialSec > * {
  position: relative;
  z-index: 1;
}

#testimonialText,
#testimonialAuthor,
#testimonialAvatar {
  transition: opacity 0.5s ease-in-out;
}

@keyframes swipe {
  0% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

.animate-swipe {
  animation: swipe 1s ease-in-out;
}

.footer:hover {
  text-decoration-color: #e63203;
}

/* usp netwrok */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fade-in-up 1s ease-out both;
}

