      /* Make each video responsive (9:16 Shorts ratio) */
  .shorts-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%; /* 9:16 aspect ratio (16/9 = 56.25%, 9/16 = 177.77%) */
    height: 0;
    overflow: hidden;
  }

  .shorts-wrapper lite-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }


  .whatsapp-container {
  position: fixed;
  bottom: 300px;
  right: 10px;
  transform: translateY(-50%);
  z-index: 9999;
}

/* WhatsApp main button */
.flashbutton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  margin-right: 10px;
  font-weight: bold;
  color: #fff;
  background-color: rgba(37, 211, 102, 0.8);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  
}

.flashbutton:hover {
  color: #fff !important;
}

.flashbutton i {
  font-size: 24px;
}

/* Popup message */
.whatsapp-msg {
  position: absolute;
  bottom: 60px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  color: red;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 8px;
  border: 2px solid red;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  white-space: nowrap;
  animation: zoomInOut 2s infinite ease-in-out;
  display: none; /* hidden initially */
  text-decoration: none;
  font-weight: bold;
}

.whatsapp-msg:hover {
  color: red !important;
}

@keyframes zoomInOut {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.phone-container {
  position: fixed;
  bottom: 210px;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
}

/* Phone button style */
.phone {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  font-size: 18px;
  color: #fff;
  background: rgba(83, 31, 92, 0.8);
  margin-right: 20px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone i {
  color: #fff;
  font-size: 18px;
}





 .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }

  .video-container lite-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }

    .custom-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}

.custom-video img.video-thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.custom-video .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  z-index: 2;
}

.custom-video .play-button::after {
  content: '';
  position: absolute;
  left: 32px;
  top: 24px;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent #fff;
}


#back-to-top-btn{
  right: 15px !important;
}

lite-youtube::before,
lite-youtube::after {
  background: none !important;
  box-shadow: none !important;
}
