.card-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(145deg, #0b0b12, #1a1025);
    border: 1px solid #b300ff;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(179, 0, 255, 0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0e6ff;
}

.main-heading {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    color: #ff66cc;
    margin-bottom: 1rem;
    text-shadow: 0 0 4px #ff66cc, 0 0 8px #b300ff;
}

.subheading {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ccc;
    opacity: 0.85;
}

.section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d400ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 6px rgba(212, 0, 255, 0.3);
}

.paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #eae1f2;
}

.info-box {
    background: rgba(179, 0, 255, 0.08);
    border-left: 4px solid #ff00aa;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.05rem;
    color: #f8d9f8;
    margin-top: 1rem;
}

.info-box::before {
    content: '✧ ';
    color: #ff00aa;
    margin-right: 5px;
}

.list-section {
    background: rgba(25, 5, 45, 0.5);
    border: 1px solid rgba(179, 0, 255, 0.3);
    border-radius: 8px;
    padding: 1.2rem;
}

.list-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ff66cc;
    margin-bottom: 0.8rem;
}

.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 1.05rem;
}

.custom-list li::before {
    content: '✦ ';
    color: #b300ff;
    margin-right: 0.4rem;
}

.book-button-wrapper {
    text-align: center;
    margin-top: 2rem;
}

/* Original Neon Button (with glow softened slightly) */
.neon-button {
    position: relative;
    display: inline-block;
    padding: 14px 36px;
    margin-top: 20px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    background: transparent;
    border: 1px solid white;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.neon-button:hover {
    color: #b300ff;
    text-shadow: 0 0 4px #ff66cc;
    border-color: #b300ff;
    box-shadow: 0 0 10px #b300ff, 0 0 20px rgba(179, 0, 255, 0.25);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.5s;
}

.neon-button:hover .button-glow {
    left: 100%;
}

.button-sparkle {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.neon-button:hover .button-sparkle {
    opacity: 0.4;
    transform: scale(1);
}

.button-text {
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    .main-heading {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .paragraph,
    .info-box,
    .custom-list {
        font-size: 1rem;
    }
}



/* Compact How It Works Steps */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
  justify-content: space-between;
}

.step {
  flex: 1 1 180px;
  min-width: 0;
  background: rgba(179, 0, 255, 0.08);
  border: 1px solid rgba(179, 0, 255, 0.3);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(179, 0, 255, 0.15);
  box-shadow: 0 0 15px rgba(179, 0, 255, 0.2);
  transform: translateY(-3px);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  background: rgba(255, 102, 204, 0.2);
  color: #ff66cc;
  border-radius: 50%;
  font-size: 18px;
  border: 1px solid #ff66cc;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ff66cc;
  margin-bottom: 5px;
}

.step p {
  font-size: 0.85rem;
  color: #eae1f2;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .step {
    flex: 1 1 150px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .steps-container {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 auto;
  }
}

/* Plans/Tiers Section */
.plans-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.plan-card {
  flex: 1 1 280px;
  background: rgba(25, 5, 45, 0.7);
  border: 1px solid rgba(179, 0, 255, 0.3);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(179, 0, 255, 0.2);
  border-color: rgba(179, 0, 255, 0.5);
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff00aa, #b300ff);
}

.plan-header {
  margin-bottom: 20px;
  text-align: center;
}

.plan-name {
  font-size: 1.4rem;
  color: #ff66cc;
  margin-bottom: 5px;
  font-weight: 700;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.plan-price span {
  font-size: 1rem;
  color: #ccc;
  font-weight: 400;
}

.plan-duration {
  color: #b300ff;
  font-size: 0.9rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.plan-features li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(179, 0, 255, 0.2);
  color: #eae1f2;
  font-size: 0.95rem;
  position: relative;
  padding-left: 25px;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff66cc;
  font-weight: bold;
}

.plan-button {
  display: block;
  text-align: center;
  padding: 12px;
  background: linear-gradient(90deg, #b300ff, #ff00aa);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.plan-button:hover {
  background: linear-gradient(90deg, #ff00aa, #b300ff);
  box-shadow: 0 0 15px rgba(179, 0, 255, 0.5);
}

/* Popular Plan Highlight */
.popular-plan {
  border: 1px solid #ff66cc;
  box-shadow: 0 0 20px rgba(255, 102, 204, 0.2);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff00aa;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .plans-container {
    gap: 15px;
  }
  
  .plan-card {
    flex: 1 1 100%;
  }
}


.txtcenter{
    text-align:center;
}


/* Booking Options */
.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.option-card {
  border: 1px solid #6f00ff;
  border-radius: 0.75rem;
  padding: 1rem;
  background: #0c0c0c;
  box-shadow: 0 0 6px #6f00ff;
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.option-card:hover {
  box-shadow: 0 0 14px #ff1493;
  transform: translateY(-2px);
}

.option-header.neon-header {
  background-color: #ff1493;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  padding: 0.6rem 1rem;
  text-align: center;
  box-shadow: 0 0 8px #ff1493;
  margin: -1rem -1rem 1rem -1rem;
}

.option-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}

.option-icon {
  color: #fff;
  font-size: 1rem;
}

.premium-badge {
  font-size: 0.7rem;
  color: #ff1493;
  border: 1px solid #ff1493;
  padding: 0.1rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
  background-color: rgba(255, 20, 147, 0.1);
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.75rem;
}

.custom-list li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #ccc;
}

.list-icon {
  color: #ff4dd2;
}

.locations, .benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.location-tag {
  border: 1px solid #ff1493;
  color: #ffc7f5;
  padding: 0.25rem 0.55rem;
  border-radius: 0.4rem;
  font-size: 0.8rem;
  background: rgba(255, 20, 147, 0.05);
}

.benefit-item {
  font-size: 0.85rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.benefit-icon {
  color: #ff4dd2;
}

.no-deposit-banner {
  font-size: 0.85rem;
  color: #ffa8e2;
  border-left: 3px solid #ff1493;
  padding-left: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.option-footer {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-top: 1px dashed #350044;
  padding-top: 0.75rem;
}

/* How It Works Styling */
.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #6f00ff;
  box-shadow: 0 0 4px rgba(111, 0, 255, 0.4);
  transition: 0.25s ease;
}

.step:hover {
  box-shadow: 0 0 12px #ff1493;
  transform: translateY(-2px);
}

.step-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 50%;
  background: #ff1493;
  box-shadow: 0 0 10px #ff1493;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffc7f5;
  margin: 0;
  margin-bottom: 0.3rem;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

.easy-process {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #999;
  text-align: center;
  border-top: 1px dashed #350044;
  padding-top: 1rem;
}

.easy-process i {
  color: #ff1493;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}





.neonn-gloss-heading {
  
  font-size: 3rem;
 
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: normal;
  text-shadow:
    0 0 5px #ff3cac,
    0 0 10px #ff3cac,
    0 0 20px #ff3cac,
    0 0 30px #a334fe,
    0 0 50px #a334fe,
    0 0 70px #a334fe;
}

/* Mobile screens (max width 576px in Bootstrap terms) */
@media (max-width: 576px) {
  .neonn-gloss-heading {
    font-size: 30px; /* Adjust for small phones */
  }
}




.neo-gloss-heading {
  font-family: 'NeoFont', sans-serif;
  font-size: 5rem;
  margin: 0 auto;
  padding-bottom:15px;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: normal;
  text-shadow:
    0 0 5px #ff3cac,
    0 0 10px #ff3cac,
    0 0 20px #ff3cac,
    0 0 30px #a334fe,
    0 0 50px #a334fe,
    0 0 70px #a334fe;
}

/* Mobile screens (max width 576px in Bootstrap terms) */
@media (max-width: 576px) {
  .neo-gloss-heading {
    font-size: 3rem; /* Adjust for small phones */
  }
}

/* Medium screens (tablet) */
@media (max-width: 768px) {
  .neo-gloss-heading {
    font-size: 4rem; /* Slightly smaller than desktop */
  }
}




.neon-gloss-heading {
  font-family: 'NeonFont', sans-serif;
  font-size: 6rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: normal;
  text-shadow:
    0 0 5px #ff3cac,
    0 0 10px #ff3cac,
    0 0 20px #ff3cac,
    0 0 30px #a334fe,
    0 0 50px #a334fe,
    0 0 70px #a334fe;
}

/* Mobile screens (max width 576px in Bootstrap terms) */
@media (max-width: 576px) {
  .neon-gloss-heading {
    font-size: 3rem; /* Adjust for small phones */
  }
}

/* Medium screens (tablet) */
@media (max-width: 768px) {
  .neon-gloss-heading {
    font-size: 4rem; /* Slightly smaller than desktop */
  }
}




			
			
			
  .h2-super {
    background: linear-gradient(90deg, #5800dd 0%, rgb(131, 24, 93) 50%, rgb(255, 9, 7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;
    display: inline-block;
  }
   .neo-price-tag {
    background: linear-gradient(90deg, #5800dd 0%, rgb(131, 24, 93) 50%, rgb(255, 9, 7) 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    display: inline-block;
  }

  .neo-price-tag h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
  }
  
  
  
  /* new model badge */
/* Style for the 'New Model' badge */
.new-model-badge {
    position: absolute;
    top: 10px;  /* Adjust the position so it's outside the image */
    left: 10px;
    background-color: rgba(248, 0, 178, 0.8);  /* Pinkish background */
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 5px;
    z-index: 1;  /* Keep it above the image */
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(248, 0, 178, 0.8), 0 0 20px rgba(248, 0, 178, 0.8), 0 0 30px rgba(248, 0, 178, 0.8); /* Neon glow effect */
    animation: neon-blink 1s infinite alternate; /* Apply neon blinking effect */
}

/* Neon LED Blinking Effect */
@keyframes neon-blink {
    0% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(248, 0, 178, 0.8), 0 0 20px rgba(248, 0, 178, 0.8), 0 0 30px rgba(248, 0, 178, 0.8); /* Neon glow */
    }
    50% {
        opacity: 0.4;
        box-shadow: 0 0 10px rgba(248, 0, 178, 0.5), 0 0 20px rgba(248, 0, 178, 0.5), 0 0 30px rgba(248, 0, 178, 0.5); /* Dimmed glow */
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(248, 0, 178, 0.8), 0 0 20px rgba(248, 0, 178, 0.8), 0 0 30px rgba(248, 0, 178, 0.8); /* Neon glow */
    }
}

/* Responsive: Adjust badge size and position for mobile screens */
@media (max-width: 768px) {
    .new-model-badge {
        top: 5px;  /* Adjust position for mobile */
        left: 5px;
        font-size: 14px;  /* Smaller font size */
        padding: 6px 12px;  /* Smaller padding */
        box-shadow: 0 0 8px rgba(248, 0, 178, 0.8), 0 0 16px rgba(248, 0, 178, 0.8), 0 0 24px rgba(248, 0, 178, 0.8); /* Adjust glow for smaller screens */
    }
}

@media (max-width: 480px) {
    .new-model-badge {
        top: 5px;  /* Adjust position for smaller screens */
        left: 5px;
        font-size: 12px;  /* Even smaller font size */
        padding: 4px 8px;  /* Even smaller padding */
        box-shadow: 0 0 6px rgba(248, 0, 178, 0.8), 0 0 12px rgba(248, 0, 178, 0.8), 0 0 18px rgba(248, 0, 178, 0.8); /* Adjust glow for even smaller screens */
    }
}


/* Ensure the portfolio-thumblink-item is positioned relative */
.sk__portfolio-item {
    position: relative;
}

    
            
            
            
            
            
            
            
        .gradient-text {
    position: relative; /* Position the pseudo-element relative to the span */
    display: inline-block; /* Ensures the background width matches the text width */
    color: white; /* Text color */
    padding: 2px 10px;
 
}

.gradient-text::before {
    content: ''; /* Empty content to create the pseudo-element */
    position: absolute; /* Position it relative to the span */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,rgb(218, 18, 185),rgb(49, 3, 82)); /* Gradient from purple to dark purple */
    z-index: -1; /* Make sure the pseudo-element stays behind the text */
    width: 100%; /* Match the width of the text */
    height: 100%; /* Match the height of the text */
    border-radius:10px;
}

  .partner-button {
  padding: 12px 24px;
  margin-bottom: 15px;
  border: 2px solid #9d00ff;
  border-radius: 35px;
  background: transparent;
  color: #ff00e6;
  font: bold 18px/1 'inherit';
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 0 8px #ff00e6;
  box-shadow: 0 0 15px #9d00ff, 0 0 25px #ff00e6;
  cursor: pointer;
  transition: all 0.3s;
}

.partner-button:hover {
  box-shadow: 0 0 20px #9d00ff, 0 0 35px #ff00e6;
}

  
  .banners-container {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ff00e6;
    box-shadow: 0 0 20px #9d00ff;
  }
  
  .banner-item {
    display: inline-block;
    margin: 10px;
    transition: transform 0.3s;
  }
  
  .banner-item:hover {
    transform: scale(1.05);
  }
  
  .banner-image {
    border-radius: 6px;
    border: 1px solid #ff00e6;
    box-shadow: 0 0 15px #9d00ff;
    max-width: 100%;
  }
  
  .seo-banner {
    display: inline-block;
    margin: 10px;
    transition: all 0.3s;
    width: 160px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #ff00e6;
    border-radius: 8px;
    box-shadow: 0 0 15px #9d00ff;
    background: rgba(0,0,0,0.7);
  }
  
  .seo-banner:hover {
    box-shadow: 0 0 20px #ff00e6;
    transform: scale(1.05);
  }
  
  .seo-banner a {
    font-family: Arial;
    font-size: 11px;
    color: #9d00ff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 5px #ff00e6;
    display: block;
  }
  
  .happy-escorts-banner {
    display: inline-block;
    margin: 10px;
    transition: all 0.3s;
    overflow: hidden;
  }
  
  .happy-escorts-banner:hover {
    box-shadow: 0 0 25px #ff00e6;
    transform: scale(1.02);
  }
  
  .freeweb-banner {
    display: inline-block;
    margin: 10px;
    padding: 5px;
    transition: all 0.3s;
    border: 1px solid #ff00e6;
    border-radius: 8px;
    box-shadow: 0 0 15px #9d00ff;
    background: rgba(0,0,0,0.7);
  }
  
  .freeweb-banner:hover {
    box-shadow: 0 0 20px #ff00e6;
    transform: scale(1.05);
  }
  
  .text-links {
    margin-top: 15px;
    color: #ff00e6;
    text-shadow: 0 0 5px #9d00ff;
  }
  
  .text-links a {
    color: #ff00e6;
    text-decoration: none;
    margin: 0 10px;
  }
  
  			/* Style for the tab buttons */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between buttons */
}

.tab-button {
    background-color: transparent; /* Flat background */
    color: #f2f2f2; /* Default text color */
    border: 2px solid transparent; /* No border visible by default */
    padding: 10px 20px; /* Space inside buttons */
    font-size: 16px;
    cursor: pointer; /* Pointer cursor on hover */
    text-transform: uppercase;
    transition: all 0.3s ease; /* Smooth transition for hover and active states */
}

.tab-button:hover {
    color: #fff; /* White text color on hover */
    background-color: #333; /* Dark background on hover */
    border-color: #333; /* Border color on hover */
}

.tab-button.active {
    color: #fff; /* White text color for the active button */
    background-color: #333; /* Dark background for active button */
    border-color: #333; /* Border color for active button */
}


span.sk__iconbox-icon-dash {
	background: rgb(129,21,255);
	background: -webkit-gradient(linear,left top, left bottom,from(#000),to(#000)) padding-box, -webkit-gradient(linear, left top, right top, from(rgba(129,21,255,1)), color-stop(50%, rgba(255,42,208,1)), to(rgba(255,143,42,1))) border-box;
	background: -o-linear-gradient(#000,#000) padding-box, -o-linear-gradient(left, rgba(129,21,255,1) 0%, rgba(255,42,208,1) 50%, rgba(255,143,42,1) 100%) border-box;
	background: linear-gradient(#000,#000) padding-box, linear-gradient(90deg, rgba(129,21,255,1) 0%, rgba(255,42,208,1) 50%, rgba(255,143,42,1) 100%) border-box;
}

.sk__gradient-back-v1,
.sk__gradient-back-v1-hover:hover, 
.btn:not([class*="btn-"]):before, 
.btn-gradient:before, 
.btn-gradient-outline, 
.btn-gradient-outline:before, 
.btn-gradient-outline-hard, 
.btn-gradient-outline-hard:before, 
span.sk__underliner:before {
	background: rgb(129,21,255);
	background: -o-linear-gradient(left, rgba(129,21,255,1) 0%, rgba(255,42,208,1) 50%, rgba(255,143,42,1) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(129,21,255,1)), color-stop(50%, rgba(255,42,208,1)), to(rgba(255,143,42,1)));
	background: linear-gradient(90deg, #5800dd 0%, rgb(131 24 93) 50%, rgb(255 9 7) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
}

.sk__clipped-text,
.sk__clipped-text-hover:hover {
	display: inline-block;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sk__gradient-fancy-text,  
a.sk__iconbox-icon-link:hover span[class*="icon-"].sk__gradient-fancy-text {
	background: rgb(129,21,255);
	background: -webkit-gradient(linear, left top, right top, from(rgba(129,21,255,1)), color-stop(52%, rgba(255,42,208,1)), to(rgba(255,143,42,1)));
	background: -o-linear-gradient(left, rgba(129,21,255,1) 0%, rgba(255,42,208,1) 52%, rgba(255,143,42,1) 100%);
	background: linear-gradient(90deg, rgba(129, 21, 255, 1) 0%, rgb(195 0 88) 52%, rgb(255 0 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
	-webkit-background-clip: text;
	color: #000000;
	padding: 3px;
	padding: 0.065em;
}
a.sk__iconbox-icon-link:hover span[class*="icon-"].sk__gradient-fancy-text {
	color: rgba(0,0,0,0.65);
}

.sk__gradient-fancy-text-back {
	/* to make this (copy) fall behind front gradient text (original) */
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	-webkit-transform: translate(5px, 5px);
	    -ms-transform: translate(5px, 5px);
	        transform: translate(5px, 5px);
	z-index: -1;
	/* to set its own styling */
	background: rgb(129,21,255);
	background: -webkit-gradient(linear, left top, right top, from(rgba(129,21,255,0.7035189075630253)), color-stop(52%, rgba(255,42,208,0.4990371148459384)), to(rgba(255,143,42,0.4009978991596639)));
	background: -o-linear-gradient(left, rgba(129,21,255,0.7035189075630253) 0%, rgba(255,42,208,0.4990371148459384) 52%, rgba(255,143,42,0.4009978991596639) 100%);
	background: linear-gradient(90deg, rgba(129,21,255,0.7035189075630253) 0%, rgba(255,42,208,0.4990371148459384) 52%, rgba(255,143,42,0.4009978991596639) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
	-webkit-background-clip: text;
	color: #000000;
	padding: 3px;
	padding: 0.065em;
}

.sk__gradient-background-tint {
	background: rgb(129,21,255);
	background: -o-linear-gradient(315deg, rgba(129,21,255,0.12290266106442575) 0%, rgba(255,42,208,0.07007352941176472) 11%, rgba(255,143,42,0) 20%);
	background: linear-gradient(135deg, rgba(129,21,255,0.12290266106442575) 0%, rgba(255,42,208,0.07007352941176472) 11%, rgba(255,143,42,0) 20%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
}

.sk__subtle-divider {
	background: rgb(129,21,255);
	background: -webkit-gradient(linear, left top, right top, from(rgba(129,21,255,0.3169642857142857)), color-stop(52%, rgba(255,42,208,0.20772058823529416)), to(rgba(255,143,42,0.14)));
	background: -o-linear-gradient(left, rgba(129,21,255,0.3169642857142857) 0%, rgba(255,42,208,0.20772058823529416) 52%, rgba(255,143,42,0.14) 100%);
	background: linear-gradient(90deg, rgba(129,21,255,0.3169642857142857) 0%, rgba(255,42,208,0.20772058823529416) 52%, rgba(255,143,42,0.14) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
}

.gradient-links {
	background: rgb(198,198,198);
	background: -webkit-gradient(linear, left top, right top, from(rgba(198,198,198,1)), color-stop(25%, rgba(198,198,198,1)), color-stop(43%, rgba(129,21,255,1)), color-stop(72%, rgba(255,42,208,1)), to(rgba(255,171,0,1)));
	background: -o-linear-gradient(left, rgba(198,198,198,1) 0%, rgba(198,198,198,1) 25%, rgba(129,21,255,1) 43%, rgba(255,42,208,1) 72%, rgba(255,171,0,1) 100%);
	background: linear-gradient(90deg, rgba(198,198,198,1) 0%, rgba(198,198,198,1) 25%, rgba(129,21,255,1) 43%, rgba(255,42,208,1) 72%, rgba(255,171,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c6c6c6",endColorstr="#ffab00",GradientType=1);
}

.gradient-links-bright {
	background: rgb(255,255,255);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255,255,255,1)), color-stop(25%, rgba(255,255,255,1)), color-stop(43%, rgba(129,21,255,1)), color-stop(72%, rgba(255,42,208,1)), to(rgba(255,171,0,1)));
	background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(129,21,255,1) 43%, rgba(255,42,208,1) 72%, rgba(255,171,0,1) 100%);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(129,21,255,1) 43%, rgba(255,42,208,1) 72%, rgba(255,171,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffab00",GradientType=1);
}

.gradient-links, 
.gradient-links-bright {
	display: table;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 400% 400%;
	background-position: 0% 100%;
}

a.sk__iconbox-icon-link > span.sk__iconbox-icon > span.sk__iconbox-trail {
	background: rgb(129,21,255);
	background: -moz-linear-gradient(90deg, rgba(129,21,255,0) 45%, rgba(129,21,255,0.25253851540616246) 62%, rgba(255,42,208,0.35898109243697474) 85%, rgba(255,143,42,0.5158438375350141) 99%, rgba(255,169,17,0.8239670868347339) 100%);
	background: -webkit-linear-gradient(90deg, rgba(129,21,255,0) 45%, rgba(129,21,255,0.25253851540616246) 62%, rgba(255,42,208,0.35898109243697474) 85%, rgba(255,143,42,0.5158438375350141) 99%, rgba(255,169,17,0.8239670868347339) 100%);
	background: linear-gradient(90deg, rgba(129,21,255,0) 45%, rgba(129,21,255,0.25253851540616246) 62%, rgba(255,42,208,0.35898109243697474) 85%, rgba(255,143,42,0.5158438375350141) 99%, rgba(255,169,17,0.8239670868347339) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ffa911",GradientType=1);
}

/* Your existing CSS here — unchanged */
  .chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .chat-button {
    background: linear-gradient(135deg, #e5b5a1, #f2ccb7);
    color: #c7326b;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow:
      0 0 10px #963b56,
      0 0 20px #963b56,
      0 0 30px #963b56;
    border: none;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
    animation: containerBounce 4s cubic-bezier(0.28, 0.84, 0.42, 0.98) infinite;
    transform-origin: center bottom;
  }

  @keyframes containerBounce {
    0%, 20%, 50%, 100% { transform: translateY(0); }
    10% { transform: translateY(-15px); }
    30% { transform: translateY(-8px); }
  }

  .text-cloud {
    position: absolute;
    right: 0;
    bottom: 80px;
    background: #9f00ff;
    color: white;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    box-shadow:
      0 0 10px rgba(159, 0, 255, 0.7),
      0 0 20px rgba(159, 0, 255, 0.5);
    width: 220px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    animation: containerBounce 4s cubic-bezier(0.28, 0.84, 0.42, 0.98) infinite;
    z-index: 2;
  }

  .text-cloud:after {
    content: '';
    position: absolute;
    right: 15px;
    bottom: -10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #9f00ff;
    border-bottom: 0;
    filter: drop-shadow(0 3px 5px rgba(159, 0, 255, 0.5));
  }

  .text-cloud.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }

  .cloud-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 190px;
  }

  .cloud-menu li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
  }

  .cloud-menu li:last-child {
    border-bottom: none;
  }

  .cloud-menu li:hover {
    color: #f2ccb7;
    transform: translateX(3px);
    text-shadow: 0 0 5px white;
  }

  .cloud-menu li i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
    font-size: 16px;
  }

  .chat-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #1a001f;
    border-radius: 12px;
    padding: 15px;
    box-shadow:
      0 0 12px rgba(159, 0, 255, 0.5),
      0 0 24px rgba(159, 0, 255, 0.3);
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 0, 255, 0.4);
    z-index: 1;
  }

  .chat-widget.active .chat-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .chat-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
  }

  .chat-option:hover {
    background: rgba(159, 0, 255, 0.2);
    transform: translateX(2px);
  }

  .chat-option i {
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
  }

  .chat-option.whatsapp i {
    color: #25D366;
  }

  .chat-option.telegram i {
    color: #0088cc;
  }

  .chat-option-text {
    font-size: 14px;
    font-weight: 500;
  }

  .booking-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    background: rgba(255, 193, 7, 0.1);
  }

  .booking-option:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateX(2px);
  }

  .booking-option i {
    color: #FFC107;
  }
  .text-cloud.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.online-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background-color: #28a745;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 5px #28a745;
  z-index: 2;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

