:root {
  --pink-secondary-color: "#c81798";
}
html,
body {
  scroll-behavior: smooth !important;
  scroll-padding-top: 100px !important;
}

.checkon {
  position: relative;
}

#three-container {
  position: relative;
}

div#three-container:after {
  content: "";
  position: absolute;
  background: url(../img/banner-shadow.png);
  transform: translate(0, 171px);
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}
.pointer {
  cursor: pointer;
}

.fc-slides,
.fc-slides li,
.fc-slides li a,
.fc-slides li a img {
  height: 100%;
}
.img-custom {
  width: 330px;
  height: auto;
}

#header .header-row {
  /* margin-bottom: -25px; */
}

.list-group-item {
  border: 1px solid var(--bs-list-group-border-color) !important;
  border-radius: 10px !important;
  padding: 1rem;
  margin: 5px 0;
}
.list-group-item p {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
  color: #212529;
}
.list-group-item.show-text p {
  white-space: initial;
}

.custom-list-badge {
  min-width: 30px;
  width: 30px;
  height: 30px;
  background: #de17b6;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  font-size: 1.15rem;
  font-weight: 400;
  margin-right: 1rem;
}
 
#header .header-logo {
  margin: 5px 0;
}
.float-message-btn {
  position: fixed;
  top: 50%;
  border-radius: 50%;
  right: 0;
}

.accordion-button:focus {
  box-shadow: none !important;
}
 /* Basic reset for the modal */
 .video-modal {
  display: none; /* Hidden by default, use JS to toggle display */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow: hidden;
}

/* Show the modal when it has the 'video-active' class */
.video-modal.video-active {
  display: flex;
}

/* Center the video box */
.video-animated-box {
  position: relative;
  /* max-width: 90%; */
  /* max-height: 90vh; */
  height: 90%;
  background: #000;
  border-radius: 8px;
  /* overflow: hidden; */
  animation: scaleIn 0.3s ease-out;
  display: flex;
}

/* Close button styling */
.video-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--secondary);
  color: #fff;
  border: none;
  /* padding: 8px 12px; */
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  width: 30px;
  height: 30px;
  z-index: 999999;
}

.video-close-button:hover {
  background: var(--secondary);
}

/* Container for the video to ensure it fits nicely */
.video-animated-box video {
  width: 100%;
  border-radius: 8px;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .video-animated-box {
    width: 95%;
    height: auto;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.svg-overlay {
  position: absolute;
  /* z-index: ; */
  /* top: 172px;
   left: 59%; */
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
}
.glowing-dot {
  fill: white;
  fill-opacity: 0.3;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.4);
  stroke: white;
  stroke-width: 2px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.6))
    drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
  stroke-opacity: 0.5;
}

.bannerContainer {
  position: absolute;
  top: 150px;
  left: 150px;
  bottom: 150px;
  right: 150px;
  /* width: 100%;
  height: 100%; */
  /* margin-top: 100px; */
  overflow: hidden;
  box-sizing: border-box;
  z-index: 999;
  /* border: 1px solid red; */
}
.bg-form {
  background-color: #12212f;
  border-radius: 16px;
  overflow: hidden;
  padding: 24px;
}

.circle-container {
  position: relative;
  transition: transform 1.5s ease-out, opacity 1s ease-in;
  z-index: 99999;
  cursor: pointer;
}
.pulsating-circle {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  animation: pulse 4s infinite;
  position: absolute;
  z-index: 1;
}
.static-circle {
  width: 50px;
  height: 50px;
  background-color: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
}
.play-button {
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
/* once all the content is added we can remove */
/* div#sec1 .owl-dots {
  display: none;
} */

.owl-item p.lead {
  min-height: 90px;
}
/* .owl-item{
  border: 1px solid red;
}
.owl-item img{
  border: 1px solid blue;
} */

@keyframes pulse {
  0% {
    transform: scale(1);
    background-color: rgba(255, 255, 255, 30);
  }
  50% {
    transform: scale(2);
    background-color: rgba(255, 255, 255, 0.1);
  }
  80% {
    transform: scale(1);
    background-color: rgba(255, 255, 255, 30);
  }
  100% {
    transform: scale(1);
    background-color: rgba(255, 255, 255, 20);
  }
}
/* internal css ends here */

@media (max-width: 991px) {
  #header .header-nav-main nav > ul li {
    padding: 0.5rem 0;
  }
  .svg-overlay {
    display: none;
  }
}
@media (max-width: 767px) {
  .owl-carousel:not(.product-thumbs-slider) {
    height: 315px !important;
  }
  .owl-carousel.nav-inside.nav-inside-plus .owl-nav button.owl-prev {
    left: 0;
  }
  .owl-carousel.nav-inside.nav-inside-plus .owl-nav button.owl-next {
    right: 0;
  }
  .static-circle {
    right: -25px;
    top: 38px;
  }
  .pulsating-circle {
    right: -25px;
    top: 38px;
  }
  html,
  body {
    scroll-padding-top: 0px !important;
  }
  .owl-item p.lead {
    max-height: 115px;
    font-size: 15px;
    line-height: normal;
}
}
