.error {
  color: red;
  background: #ffe6e6;
  padding: 10px;
  border: 1px solid red;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
}

.success {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: green;
  background: #e6ffea;
  padding: 10px;
  border: 1px solid green;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
}

@keyframes blinkAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.blink {
  animation: blinkAnimation 0.5s linear infinite;
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading_icon {
  animation: rotateAnimation 0.5s linear infinite;
}

.sidebar_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  text-decoration: none;
  color: #000;
  background-color: #f0f0f0;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: background-color 0.3s;
  font-weight: 600;
}

.sidebar_link:hover {
  background-color: #e0e0e0;
}
.sidebar_link.active {
  background-color: #8d68ff;
  color: #fff;
}

.preview_image {
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.media-preview img,
.media-preview video {
  max-height: 200px;
  width: 100%;
  object-fit: contain;
}

.media-preview audio {
  width: 100%;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.noplan {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  color: #000;
  background: #fdffe6;
  padding: 10px;
  border: 1px solid rgb(255, 213, 0);
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
  min-height: 300px;
}

.badge-male {
  background-color: #0004ff; /* blue */
  color: #fff;
}
.badge-female {
  background-color: #e83e8c; /* pink */
  color: #fff;
}
.badge-other {
  background-color: #ffc107;
  color: #212529;
}

.like-button {
  height: 30px;
  width: 30px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0px;
  margin: 0px;
  background-color: transparent;
  border: none;
}

.like-button svg {
  width: 100%;
  height: 100%;
  fill: #999;
}

.like-button.liked svg {
  fill: red !important;
}

.iscenter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.tableHeader {
  font-weight: bold;
  font-size: 1.5em;
  color: #8d68ff !important;
}

.noUi-connect {
  background: var(--primary-color) !important;
}

.isblurred {
  filter: blur(5px);
  transition: filter 0.3s ease-in-out;
  pointer-events: none;
  cursor: not-allowed;
}

.isblurred td {
  text-wrap: wrap;

  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
  max-width: 200px; /* Adjust as needed */
}

.main_profile {
  position: relative;
}

.pay_box {
  position: absolute;
  top: 8px;
  right: 0px;
  margin: 1em;
}

.pay_box_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  color: #000;
  background: rgba(255, 230, 230, 0.633);
  padding: 20px;
  border: 1px solid #ff8080;
  border-radius: 5px;
  margin: auto;
  margin-bottom: 10px;
  text-align: center;
  max-width: 400px;
  box-sizing: border-box;
  min-height: 200px;
  /* Animation */
  animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 128, 128, 0.5);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 128, 128, 1);
  }
}

.pay_box_title {
  font-size: 1.5em;
  font-weight: bold;
  color: #ff0000;
}

/* From Uiverse.io by adamgiebl */
.pay_button {
  background: linear-gradient(-45deg, #60002a, #3b00a2, #27c8b7, #a000b5);
  background-size: 800% 400%;
  padding: 0.8em 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  color: white;
  transition: all 0.5s ease-in-out;
  animation: gradient 8s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99) both;
  text-decoration: none;
}

.pay_button:hover {
  animation: gradient 3s infinite;
  transform: scale(1.05);
}

.pay_button:active {
  animation: gradient 3s infinite;
  transform: scale(0.8);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.is_success {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  color: green;
  background: #e6ffea;
  padding: 10px;
  border: 1px solid green;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
}

.is_failed {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  color: red;
  background: #ffe6e6;
  padding: 10px;
  border: 1px solid red;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
}

footer {
  background-color: #f0f0f0;
  color: #000;
  padding: 3em 0;
  margin-top: 1em;
  overflow: hidden;
  border-top: 3px solid var(--light-color);
}

.social,
.pagelinks,
.contact {
  display: flex;
  flex-direction: column;
  gap: 1em 10px;
}

.pagelinks a,
.social_links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.pagelinks a:hover,
.social_links a:hover {
  color: var(--primary-color);
}
.social_link {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social_link svg {
  display: flex;
  background-color: var(--primary-color);
  fill: #fff;
  padding: 5px;
  border-radius: 50%;
  align-items: center;
}
.footer_heading {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 1em;
}
.footer_widgets {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer_copyright {
  text-align: center;
  padding-top: 1em;
  margin-top: 1em;
  color: #000;
  border-top: 1px solid #e0e0e0;
}
.contact_item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.contact_item svg {
  fill: var(--primary-color);
}

.sliderBox {
  aspect-ratio: 16 / 6;
}

.sliderBox img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 6;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 769px) and (max-width: 1450px) {
  .sliderBox,
  .sliderBox img {
    aspect-ratio: 16 / 7;
  }
}

@media screen and (max-width: 768px) {
  .footer_contact {
    width: 100%;
    margin-bottom: 1em;
  }

  .sliderBox,
  .sliderBox img {
    aspect-ratio: 16 / 9;
  }
}

.top-bar {
  background-color: #e53935;
  color: white;
  text-align: center;
  padding: 2em 20px;
  font-size: 14px;
}

.about-us {
  padding: 60px 20px;
}

.about-img {
  max-width: 150px;
  border-radius: 50%;
}

.counter {
  background-color: #f5f5f5;
  padding: 40px 20px;
  background-image: url("/assets/images/counterbg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.counter-box {
  background-color: #f44336;
  color: white;
  padding: 20px;
  text-align: center;
  margin: 10px 0;
  border-radius: 8px;
}

.scheme-box {
  background-color: #f44336;
  color: white;
  padding: 30px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: center;
  min-height: 140px;
}

.scheme-box i {
  font-size: 80px;
  margin-bottom: 10px;
  display: block;
}

.site_tag_line {
  font-size: 0.8em;
  color: #555;
}

/* Icon 3 */

.menubar {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
}

.menubar:focus,
.menubar:active,
.menubar:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
  -khtml-box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -moz-tap-highlight-color: transparent !important;
  -o-tap-highlight-color: transparent !important;
  -ms-tap-highlight-color: transparent !important;
  -khtml-tap-highlight-color: transparent !important;
  border: none !important;
  background: transparent !important;
}
.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  margin: 0px;
  outline: none;
}
.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.blink_slow {
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.alertFlex {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

/* Warning Alert */
.alert-warning {
  background: linear-gradient(
    135deg,
    #ff6b6b,
    #ff8e53
  ); /* Red-orange gradient */
  color: #ffffff; /* White text for contrast */
  border: 2px solid #ff4d4d; /* Vibrant red border */
  border-radius: 8px; /* Softer rounded corners */
  padding: 20px 25px; /* Generous padding */

  font-weight: 600; /* Bold text */
  /* Animation */
  animation: shake-alert 0.6s ease-in-out 1;
  text-align: center;
}

@keyframes shake-alert {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-8px);
  }
  40% {
    transform: translateX(8px);
  }
  60% {
    transform: translateX(-6px);
  }
  80% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Success Alert */
.alert-success {
  background: linear-gradient(135deg, #2ecc71, #27ae60); /* Green gradient */
  color: #ffffff; /* White text for contrast */
  border: 2px solid #27ae60; /* Darker green border */
  border-radius: 8px; /* Softer rounded corners */
  padding: 20px 25px; /* Generous padding */
  font-weight: 600; /* Bold text */
}

@media (max-width: 990px) {
  .responsive-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }

  .alertFlex {
    display: inline-block; /* Stack elements vertically */
  }
}

.messageBoxInner {
  position: relative;
  width: 100%;
  background-color: #fcfaff;
  padding: 15px;
  border-radius: 8px;
  border: 2px dashed #8d68ff;
}

.messageBox .svg {
  width: 30px;
  height: 30px;
  color: #fff;
  position: absolute;
  background-color: #8d68ff;

  border-radius: 50%;
  display: flex;

  justify-content: center;
  align-items: center;
  top: -15px;
  left: -10px;
}

.messageBox .closebtn {
  position: absolute;

  top: -20px;
  right: 10px;
}

.spin {
  animation-name: spin;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.noUi-target {
  height: 6px !important; /* Adjust track thickness */
  margin-top: 10px;
}

/* Smaller slider handle */
.noUi-handle {
  width: 18px !important;
  height: 14px !important;
  top: -4px !important;

  border-radius: 50%;
}

/* Optional: Reduce tooltip font size */
.noUi-tooltip {
  font-size: 12px !important;
  padding: 2px 5px !important;
}

.noUi-handle:after,
.noUi-handle:before {
  display: none !important; /* Hide the tooltip */
}

.emailBox {
  width: 100%;
  background-color: #fff9f6;
  padding: 15px;
  border-radius: 8px;
  border: 2px dashed #ff8e68;
}

.analytic-box-favorite {
  color: #fff;
  font-weight: 600;
  padding: 1em;
  border-radius: 5px;
  background: #196e62;
  background: linear-gradient(
    335deg,
    rgba(25, 110, 98, 1) 0%,
    rgba(0, 115, 71, 1) 100%
  );
}

.analytic-box-purchase {
  color: #fff;
  font-weight: 600;
  background: #19456e;
  background: linear-gradient(
    335deg,
    rgba(25, 69, 110, 1) 0%,
    rgba(0, 34, 115, 1) 100%
  );
  padding: 1em;
  border-radius: 5px;
}

.analytic-box-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 4em;
}
.analytic-box-details {
  background: #19456e;
  background: linear-gradient(
    -335deg,
    rgb(245, 247, 228) 0%,
    rgb(239, 212, 251) 100%
  );
  padding: 1em 5px;
  border-radius: 5px;
}

.table-no-bg tr:nth-child(even),
.table-no-bg tr:nth-child(odd),
.table-no-bg th,
.table-no-bg td {
  background-color: transparent !important;
}

.readonly-input {
  background-color: #aaaaaa !important; /* Light gray */
  background: #aaaaaa !important; /* Light gray */
  pointer-events: none; /* Disable click/focus */
  user-select: none; /* Prevent text selection */
  outline: none !important; /* Remove focus outline */
  box-shadow: none !important; /* Remove Bootstrap focus */
}

.otp-inputs {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.otp-box {
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s;
}

.otp-box:focus {
  border-color: #333;
}

.otp-buttons {
  display: flex;
  justify-content: space-between;
}

.order_box {
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 5px;
  padding: 1em;
}

.category-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .analytic-box-details,
  .analytic-box-purchase,
  .analytic-box-favorite {
    margin-top: 1em;
  }
}

.hero_outer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 400px;

    background-image:
        radial-gradient(circle at 75% 26%, rgba(116, 116, 116, 0.04) 0%, rgba(116, 116, 116, 0.04) 50%, rgba(222, 222, 222, 0.04) 50%, rgba(222, 222, 222, 0.04) 100%),
        radial-gradient(circle at 62% 63%, rgba(60, 60, 60, 0.04) 0%, rgba(60, 60, 60, 0.04) 50%, rgba(152, 152, 152, 0.04) 50%, rgba(152, 152, 152, 0.04) 100%),
        radial-gradient(circle at 80% 64%, rgba(108, 108, 108, 0.04) 0%, rgba(108, 108, 108, 0.04) 50%, rgba(252, 252, 252, 0.04) 50%, rgba(252, 252, 252, 0.04) 100%),
        radial-gradient(circle at 97% 83%, rgba(184, 184, 184, 0.04) 0%, rgba(184, 184, 184, 0.04) 50%, rgba(137, 137, 137, 0.04) 50%, rgba(137, 137, 137, 0.04) 100%),
        radial-gradient(circle at 60% 7%, rgba(69, 69, 69, 0.04) 0%, rgba(69, 69, 69, 0.04) 50%, rgba(211, 211, 211, 0.04) 50%, rgba(211, 211, 211, 0.04) 100%),
        linear-gradient(270deg, #d4f5ef, #fd7bae, #fdf6b2, #d4f5ef);

    background-size: 400% 400%;
    animation: animatedGradient 10s ease infinite;
}

@keyframes animatedGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.hero_box{
    padding: 5em 5px 2em 5px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    
}

.word-rotator {
  display: inline-block;
  position: relative;
  width: auto;
  height: auto;
  vertical-align: middle;
}

.rotator-word {
  display: inline-block;
  padding: 5px 10px;
  color: white;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  white-space: nowrap;
}

.isvisible {
  opacity: 1;
  position: relative;
  z-index: 2;
}

.ishidden {
  opacity: 0;
  z-index: 1;
}

.bg3 {
  background: linear-gradient(135deg, #f12711, #f5af19);
}
.bg2 {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}
.bg1 {
  background: linear-gradient(135deg, #ff0000, #da1884);
}



  .services-box {
    background: #dadbde ;
      padding: 40px 0px;
    }



  .services-container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }
    h2.title {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2rem;
      color: #800050;
    }
    .grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .card {
      background: #fff;
      display: flex;
      flex-direction: row;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .card img {
      width: 140px;
      height: auto;
      object-fit: cover;
    }
    .card-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .card-content h3 {
      margin: 0 0 10px;
      font-size: 1.2rem;
      color: #800050;
    }
    .card-content p {
      margin: 0;
      font-size: 0.90rem;
      line-height: 1.5;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
    .grid {
  
      grid-template-columns:  1fr;
    }
    
      .card {
        flex-direction: column;
      }
      .card img {
        width: 100%;
        height: 200px;
      }
    }
    
    
    
    
    
    
    
    
    
    
    .card-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-block: 2em;
    }

    @media (min-width: 600px) {
      .card-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 900px) {
      .card-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .info-card {
     background-image: linear-gradient(-45deg, #ffe8d5 0%, #ffc3d4 100%);
      border-radius: 12px;
      padding: 20px;
      color: #000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 180px;
      font-weight: bold;
    }

    .info-card:nth-child(2n) {
    background-image: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%);
       
    }

    .info-card:nth-child(6n) {
    background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
     
    }

    .info-card:nth-child(4n) {
     background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
  
    }
    
        .info-card:nth-child(5n) {
 background-image: linear-gradient(to top, #d5dee7 0%, #ffafbd 0%, #fff4d6 100%);
   
    }

    .info-card:hover {
      transform: scale(1.03);
    }

    .info-card strong {
      display: block;font-weight: bold;
      font-size: 1.3em;
      margin-bottom: 5px;
    }
    
    
    
    
    
    
    