:root {
  --primary-color: #ffb33e;

  /* Backgrounds */
  --body-bg: linear-gradient(
    0deg,
    rgba(41, 39, 43, 1) 0%,
    rgba(30, 29, 32, 1) 100%
  );
  --light-bg: #f8f9fa; /* Soft light gray */
  --light-bg-alt: #eaeaea; /* Slightly darker alternative */
  --dark-bg: #1e1d20; /* Deep dark background */
  --mid-bg: #2b2a2e; /* Mid-tone dark card background */

  /* Text Colors */
  --text-color: #ffffff;
  --text-light: #f1f1f1;
  --text-muted: #bbbbbb;
  --text-dark: #2c2c2c;
  --text-contrast: #000000;

  /* Accent Colors */
  --accent-color: #ff6b6b; /* Soft red for alerts/buttons */
  --accent-color-2: #4cd964; /* Green for success highlights */
  --accent-color-3: #5ac8fa; /* Sky blue for info or secondary */
  --accent-color-4: #a66dd4; /* Purple accent for creative elements */

  /* Borders and Separators */
  --border-color: #444;
  --light-border: #ddd;

  /* Hover & Active States */
  --hover-bg: rgba(255, 179, 62, 0.1); /* Primary hover highlight */
  --hover-dark: rgba(255, 255, 255, 0.05);
  --active-bg: rgba(255, 179, 62, 0.2);
}
:root {
  --smm-primary: #ffb33e;
  --smm-body-bg: linear-gradient(0deg, rgba(41, 39, 43, 1) 0%, rgba(30, 29, 32, 1) 100%);
  --smm-card-bg: #2b2a2e;
  --smm-text: #ffffff;
  --smm-text-muted: #bbbbbb;
  --smm-border: #444;
  --smm-hover: rgba(255, 179, 62, 0.1);
}
.btn-primary {
  --bs-btn-color: var(--text-contrast); /* #000000 */
  --bs-btn-bg: var(--primary-color); /* #ffb33e */
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--text-contrast);
  --bs-btn-hover-bg: #ff9900; /* Darker shade of primary for hover */
  --bs-btn-hover-border-color: #ff9900;
  --bs-btn-focus-shadow-rgb: 255, 179, 62; /* Based on --primary-color */
  --bs-btn-active-color: var(--text-contrast);
  --bs-btn-active-bg: #e68a00; /* Even darker for active state */
  --bs-btn-active-border-color: #e68a00;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
  --bs-btn-disabled-color: var(--text-dark); /* #2c2c2c */
  --bs-btn-disabled-bg: #ffd27c; /* Muted version of primary */
  --bs-btn-disabled-border-color: #ffd27c;
}
.btn-secondary {
  --bs-btn-color: var(--text-contrast); /* #000000 */
  --bs-btn-bg: var(--accent-color-3); /* #5ac8fa */
  --bs-btn-border-color: var(--accent-color-3);
  --bs-btn-hover-color: var(--text-contrast);
  --bs-btn-hover-bg: #40bfff; /* Slightly darker blue on hover */
  --bs-btn-hover-border-color: #40bfff;
  --bs-btn-focus-shadow-rgb: 90, 200, 250; /* Based on accent-color-3 */
  --bs-btn-active-color: var(--text-contrast);
  --bs-btn-active-bg: #2aa8e6; /* Deeper blue for active state */
  --bs-btn-active-border-color: #2aa8e6;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15);
  --bs-btn-disabled-color: var(--text-dark); /* #2c2c2c */
  --bs-btn-disabled-bg: #b2e6fc; /* Muted light version of the accent */
  --bs-btn-disabled-border-color: #b2e6fc;
}
.btn {
  border-radius: 30px;
  padding: 8px 30px;
  font-weight: bold;
  box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset,
    rgba(255, 255, 255, 0.5) -1px 0 0 0 inset;
}
.btn i {
  color: var(--dark-bg);
}

body {
  background: var(--body-bg);
  color: var(--text-color);
  font-family: "Inter", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  line-height: 1;
}

section.firstSec {
  padding: 50px 0;
}
section.firstSec .top-Cont .subheadTop {
  background: var(--mid-bg);
  padding: 5px 10px;
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 20px;
  padding-right: 15px;
  color: var(--text-muted);
}
section.firstSec .top-Cont .subheadTop i {
  color: var(--primary-color);
  margin-right: 5px;
}
section.firstSec .top-Cont h1 {
  margin-bottom: 15px;
}
section.firstSec .top-Cont h1 span {
  color: var(--primary-color);
}
section.firstSec .top-Cont p {
  color: var(--text-muted);
}
.topcontBtn {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
section.firstSec .top-Cont .avatarteams p {
  margin: 0;
  font-weight: bold;
  color: var(--text-color);
  font-size: 18px;
  line-height: 1;
}
section.firstSec .top-Cont .avatarteams img {
  max-width: 90px;
}
section.firstSec .top-Cont .avatarteams {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 0 0;
  gap: 10px;
}
section.firstSec .top-Cont .avatarteams small {
  margin: 0;
  color: var(--text-muted);
  line-height: 1;
}
.loginCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: var(--dark-bg);
  border-radius: 15px;
  border: 2px solid #ffffff30;
  box-shadow: 0 0 0 3px #ffffff10;
  max-width: 500px;
  margin: 20px auto;
}
.loginTopcont i {
  font-size: 20px;
  background: var(--primary-color);
  height: 50px;
  width: 50px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-dark);
  font-weight: 900;
  margin-bottom: 10px;
  box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset,
    rgba(255, 255, 255, 0.5) -1px 0 0 0 inset;
}
.loginTopcont h2 {
  margin-bottom: 5px;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: var(--text-muted);
}
.loginTopcont h2 span {
  color: var(--text-color);
}
.loginTopcont {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}
.loginTopcont p {
  color: var(--text-muted);
  margin-top: 5px;
  margin-bottom: 0;
}

.platformslider {
  overflow: hidden;
  background: transparent;
  padding: 20px 0;
  position: relative;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 25%,
    rgb(0, 0, 0) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}
.platformslider-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  will-change: transform;
}
.platformslide {
  min-width: 130px;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  font-size: 1.5rem;
  color: #fff;
  gap: 10px;
  flex-shrink: 0;
}
.platformslide span {
  font-size: 1rem;
  font-weight: bold;
}
.platformslide i {
  height: 40px;
  width: 40px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.facebook i {
  background: #3b5998;
}
.twitter i {
  background: #1da1f2;
}
.instagram i {
  background: #e1306c;
}
.linkedin i {
  background: #0077b5;
}
.youtube i {
  background: #ff0000;
}
.tiktok i {
  background: #000000;
}
.pinterest i {
  background: #bd081c;
}
.snapchat i {
  background: #fffc00;
  text-shadow: 1px 1px 1px #000, -1px -1px 0px #000, 0px -1px 0 #000,
    -1px 0 0 #000;
}
.reddit i {
  background: #ff4500;
}
.whatsapp i {
  background: #25d366;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.platformslider-track:hover {
  animation-play-state: paused;
}
section.platformsliderSec {
  background: var(--mid-bg);
}

.col-lg-3:nth-child(odd) .statBox i {
  background: var(--accent-color-3);
}
.statBox i {
  font-size: 18px;
  background: var(--primary-color);
  height: 40px;
  width: 40px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-contrast);
  margin-bottom: 15px;
  box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset,
    rgba(255, 255, 255, 0.5) -1px 0 0 0 inset;
}
.statBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--mid-bg);
  padding: 20px;
  border-radius: 12px;
  margin: 10px 0;
}
.statBox h3 {
  margin-bottom: 5px;
  font-size: 25px;
}
.statBox span,
.statBox h3 span {
  color: var(--text-muted);
}
section.secondSec {
  padding: 20px 0;
}

ul#platformTabs li button span {
  height: 35px;
  display: inline-flex;
  width: 35px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 10px;
}
ul#platformTabs {
  background: var(--mid-bg);
  padding: 10px;
  border: 0;
  border-radius: 12px;
  gap: 10px;
}
ul#platformTabs li button {
  padding: 6px;
  padding-right: 12px;
  border-radius: 30px;
  color: var(--text-muted);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
ul#platformTabs li button.active {
  background: var(--dark-bg);
  color: var(--text-color);
}
.card.service-card {
  background: var(--mid-bg);
  border: 0;
  border-radius: 12px;
}
.card.service-card .card-body .card-text {
  color: var(--text-muted);
  margin-bottom: 5px;
}
.card.service-card p.bottomtxttit {
  background: var(--dark-bg);
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
  margin-top: 15px;
}

section.featSec {
  background: var(--dark-bg);
  padding: 50px 0;
}
.headingSec span {
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(255, 179, 62, 0.15);
  color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.headingSec span i {
  color: var(--primary-color);
  margin-right: 5px;
}
.headingSec h2 b {
  color: var(--primary-color);
}
.headingSec p {
  margin: 0;
  color: var(--text-muted);
}
.headingSec {
  margin-bottom: 50px;
  text-align: center;
}
.featContcard span {
  background: var(--mid-bg);
  padding: 5px;
  margin-bottom: 10px;
  display: inline-block;
  border-radius: 20px;
  padding-right: 15px;
  color: var(--text-muted);
  font-size: 13px;
}
.featContcard h2 {
  margin: 0;
  margin-bottom: 10px;
}
.featContcard p {
  color: var(--text-muted);
}
.featContcard span i {
  font-size: 14px;
  background: var(--accent-color-3);
  height: 25px;
  width: 25px;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--text-contrast);
  margin-right: 5px;
  box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset,
    rgba(255, 255, 255, 0.5) -1px 0 0 0 inset;
}

.realFame-section {
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.trust-badge {
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(255, 179, 62, 0.15);
  color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
}
.section-title span {
  -webkit-text-fill-color: var(--primary-color);
}
.social-proof {
  color: var(--text-muted);
  font-size: 1.1rem;
  position: relative;
  padding-left: 1.5rem;
}
.social-proof::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  width: 1rem;
  background: var(--primary-color);
}
.value-card {
  display: flex;
  gap: 1rem;
  padding: 14px;
  border-radius: 8px;
  background: var(--mid-bg);
  transition: all 0.3s ease;
  height: 100%;
}
.value-card:hover {
  background: rgba(43, 42, 46, 0.7);
  transform: translateY(-3px);
}
.value-icon {
  font-size: 1.5rem;
  margin-top: 0.2rem;
  min-width: 24px;
}
.value-card h3 {
  margin: 0 0 5px 0;
  color: var(--text-light);
  font-size: 16px;
}
.value-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.primary-cta {
  background: var(--primary-color);
  color: var(--text-contrast);
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.primary-cta:hover {
  background: #ffa01a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 179, 62, 0.3);
}
.secondary-cta {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.secondary-cta:hover {
  background: var(--hover-bg);
  transform: translateY(-2px);
}

/* Stats Section */
.stats-card {
  background: var(--mid-bg);
  padding: 2rem;
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
}
.stats-card h3 {
  margin-top: 0;
  color: var(--text-light);
}
.stat-highlight {
  text-align: center;
  background: rgba(255, 179, 62, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 179, 62, 0.2);
}
.stat-highlight div {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.stat-highlight span {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.feature-pill {
  background: var(--mid-bg);
  padding: 0.8rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.feature-pill:hover {
  background: rgba(255, 179, 62, 0.1);
  transform: translateY(-2px);
}
.feature-pill span {
  font-size: 1.2rem;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .value-card {
    padding: 1.25rem;
  }

  .stats-card {
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .value-card {
    flex-direction: column;
  }

  .value-icon {
    margin-bottom: 0.5rem;
  }
}
.stats-section {
  max-width: 800px;
  margin: 10px auto;
  background: var(--accent-color-3);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.stats-section .stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-contrast);
  font-weight: bold;
}
section.realFamesec-section {
  background: var(--dark-bg);
  padding: 50px 0;
}
.feature-card {
  background: var(--mid-bg);
  padding: 30px 20px;
  border-radius: 12px;
  margin: 10px 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 179, 62, 0.2);
}
.feature-card.center-feature {
  background: var(--primary-color);
}
.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 179, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 20px;
  color: var(--primary-color);
}
.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
  background: rgba(255, 179, 62, 0.2);
}
span.feature-tag {
  background: var(--dark-bg);
  padding: 8px;
  display: inline-flex;
  border-radius: 40px;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  margin-bottom: 10px;
}
.feature-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.feature-card p {
  color: var(--text-muted);
  margin: 0;
}
.feature-card h3 span {
  color: var(--primary-color);
}
.feature-card.center-feature h3 span {
  color: var(--dark-bg);
}
.feature-card.center-feature p {
  color: #00000099;
}
.feature-card.center-feature .feature-icon {
  background: var(--text-color);
}

.section-header {
  margin-bottom: 50px;
}
.section-header span.badge {
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(255, 179, 62, 0.15);
  color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-header p {
  color: var(--text-muted);
  margin: 0;
}

.faq-accordion {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--mid-bg);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-header {
  margin: 0;
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 12px 15px;
  background: var(--mid-bg);
  color: var(--text-light);
  border: none;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.faq-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--text-dark);
}

.faq-button:hover {
  background: rgba(255, 179, 62, 0.2);
  color: var(--text-light);
}

.faq-button:not(.collapsed):hover {
  background: var(--primary-color);
  opacity: 0.9;
}

.faq-button:focus {
  box-shadow: none;
}

.faq-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-button:not(.collapsed) .faq-number {
  background: var(--text-dark);
  color: var(--primary-color);
}

.faq-collapse {
  transition: all 0.3s ease;
}

.faq-body {
  padding: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  background: var(--mid-bg);
}

.faq-button::after {
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.faq-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c2c2c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
p.faq-norm {
  color: var(--text-muted);
}
section.FaqSec {
  padding: 50px 0;
}

.logo-section {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.logo-box {
  background-color: var(--mid-bg);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 100px;
  transition: transform 0.2s ease;
}
.logo-box:hover {
  transform: scale(1.05);
}
.logo-img {
  height: 40px;
}
section.paymethSec {
  padding: 50px 0;
  background: var(--dark-bg);
}

.process-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.process-card {
  background: var(--mid-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 10px 0;
}
.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 179, 62, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 179, 62, 0.1);
}
.step-number {
  position: absolute;
  font-size: 200px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  z-index: 1;
  line-height: 1;
  top: -18%;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.process-card:hover .step-number {
  opacity: 1;
}
.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 179, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  border: 2px solid var(--primary-color);
}
.step-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}
.process-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
  position: relative;
  z-index: 2;
}
.process-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.process-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.process-divider .divider-line {
  height: 2px;
  background: var(--border-color);
  flex: 1;
}
.process-divider .divider-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--mid-bg);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
}
.process-divider .divider-icon i {
  color: var(--primary-color);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .process-divider {
    margin: 40px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .process-card {
    margin-bottom: 30px;
  }
}

section.servSec {
  padding: 50px 0;
}
section.secondSec {
  background: var(--dark-bg);
}


nav.navbar.guestnav {
  background: var(--body-bg);
  padding: 15px;
  box-shadow: #0003 0 4px 6px -1px, #0000001f 0 2px 4px -1px;
}
nav.navbar.navbar-expand-lg.guestnav.StickyNav.stickyactive {
  position: sticky;
  top: 0;
  z-index: 11;
  transform: translateY(0);
  animation: navbarAnim 0.5s;
}

@keyframes navbarAnim {
  0% {
    transform: translateY(-70px);
  }
  100% {
    transform: translateY(0px);
  }
}

nav.navbar.guestnav ul li a {
  color: #fff;
  padding: 8px 15px;
  margin: 5px;
  min-width: 75px;
  text-align: center;
  border-radius: 30px;
}
nav.navbar.guestnav ul li a.active {
  box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.5) -1px 0 0 0 inset;
  background: var(--primary-color);
  font-weight: bold;
}
a.navbar-brand {
  padding: 0;
}
.navbar-brand img {
  max-width: 120px;
  height: auto;
}

.feature-grid-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--mid-bg);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}
.feature-card.highlight-card {
  border: 2px solid var(--primary-color);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.feature-card h4 {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.feature-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.feature-badge {
  display: inline-block;
  background: rgba(76, 217, 100, 0.15);
  color: var(--accent-color-2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.feature-stats {
  margin-top: 1rem;
}
.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.security-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.security-badges img {
  height: 25px;
  border-radius: 4px;
}
.support-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.stars {
  color: var(--primary-color);
}
.stars i {
  font-size: 0.9rem;
}
.support-rating span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.form-control, .form-control:active, .form-control:focus {
  background: #ffffff10;
  border: 0;
  padding: 12px;
  border-radius: 8px !important;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  color: #fff;
}

.form-group {
  margin-bottom: 1em;
}
.form-control::placeholder {
  color: #ffffff50;
}


.sidebarCont {
  background: var(--dark-bg);
  position: fixed;
  left: 0;
  top: 0;
  width: 270px;
  z-index: 10;
  height: -webkit-fill-available;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}
ul.sidebarul li a p {
  margin: 0;
}
ul.sidebarul {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
  margin: 15px;
  height: -webkit-fill-available;
}

ul.sidebarul div.menuboxes li:last-child a {
  border: 0;
}
div.menuboxes {
  background: var(--mid-bg);
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
ul.sidebarul li a i {
  width: 30px;
}
ul.sidebarul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: #fff;
  padding: 8px;
  font-weight: 500;
  border-bottom: 1px solid #ffffff10;
  position: relative;
  padding-left: 12px;
}

.menuboxes p.menusubs:after {
  content: '';
  background: linear-gradient(45deg, #ffffff45, transparent);
  height: 1px;
  width: 100%;
  display: block;
}
.menuboxes p.menusubs:before {
  content: '';
  background: linear-gradient(-45deg, #ffffff45, transparent);
  height: 1px;
  width: 20%;
  display: block;
}
.menuboxes p.menusubs {
  margin: 0;
  padding: 8px;
  color: #ffffff99;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
  justify-content: flex-start;
  border-bottom: 1px solid #ffffff10;
}
.userwrap {
  margin-left: 270px;
  transition: all 0.5s ease;
}
nav.usernav {
  margin: 10px;
  margin-left: 280px;
  transition: all 0.5s ease;
  padding: 10px;
  background: var(--mid-bg);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
button#hamburget {
  display: none;
}
@media (max-width: 992px) {
  .sidebarCont {
    transform: translateX(-270px);
  }
  .userwrap {
    margin-left: 0;
  }
  nav.usernav {
    margin: 10px;
  }
  button#hamburget {
    display: block;
  }
  .sidebarCont.collapsed {
    transform: translateX(0);
  }
}

ul.sidebarul li.active a:before {
  content: '';
  height: 60%;
  width: 4px;
  background: var(--primary-color);
  display: block;
  position: absolute;
  left: 0;
  border-radius: 10px;
}
ul.sidebarul li.active a i {
  color: var(--primary-color);
}

.profTop {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 15px;
  gap: 10px;
  margin-bottom: 0;
}
span.profInitial {
  box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.5) -1px 0 0 0 inset;
  height: 40px;
  width: 40px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  border-radius: 10px;
}
.profTop p {
  margin: 0;
  font-weight: bold;
}
.profTop small {
  color: #ffffff99;
}
.profTop a {
  color: var(--primary-color);
  font-size: 16px;
  margin-left: auto;
}
.dropdown.profileDD {
  margin-left: auto;
  margin-right: 10px;
}

.sidebarFtr button {
  font-size: 12px;
  font-weight: bold;
  width: 100%;
  background: var(--mid-bg);
  color: #ffffff;
  border: 0;
  padding: 10px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  position: relative;
  overflow: hidden;
  line-height: 1.2;
  text-shadow: 2px 2px 2px #00000050;
}
.sidebarFtr button span {
  font-size: 65px;
  position: absolute;
  left: -12px;
  top: -35px;
  transform: rotate(-28deg);
  opacity: 0.15;
}
.sidebarFtr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
}

.dropdown.profileDD button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: var(--dark-bg);
  border: 0;
  border-radius: 10px;
  color: #fff;
}
/* Slide-down animation */
@keyframes slideDown {
  from {
    transform: translateY(-10%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Trigger animation when .show is added */
.ddpptop {
  padding: 14px;
  border-bottom: 1px solid #ffffff10;
}
.dropdown-menu.show {
  animation: slideDown 0.3s ease-out;
}
.dropdown.profileDD ul.dropdown-menu {
  right: 0;
  left: auto !important;
}
ul.dropdown-menu {
  background: var(--dark-bg);
  color: #fff;
  padding: 0;
  border: 1px solid #ffffff10;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  overflow: auto;
}
.dropdown-menu li:last-child a {
  border: 0;
}
.dropdown-menu li a {
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid #ffffff10;
}
.dropdown-menu li a:hover {
  background: #18171a;
  color: #fff;
}
.acc-name {
  font-size: 14px;
  font-weight: bold;
}
.acc-mail {
  font-size: 13px;
  margin-bottom: 10px;
  color: #ffffff99;
}
.ddpptop a.btn.btn-primary {
  padding: 4px 12px;
  width: 100%;
}
.dropdown-menu li a i {
  margin-right: 5px;
}


.smm-card {
  border-radius: 20px;
  padding: 2rem;
  background: var(--mid-bg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}
.smm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.smm-welcome-box {
  background: linear-gradient(135deg, #2b2a2e, #1e1d20);
  border: 1px solid var(--smm-primary);
}
.smm-badge {
  background-color: var(--smm-primary);
  color: #000;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  font-weight: 600;
}
.smm-title {
  font-size: 1.5rem;
  font-weight: 600;
}
.smm-highlight {
  color: var(--smm-primary);
}
.smm-info-box {
  background: var(--mid-bg);
  padding: 1rem;
  border-radius: 12px;
  height: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
.smm-info-box small {
  color: var(--smm-text-muted);
}
.smm-social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  border: none;
  animation: 20s linear infinite gradientMove;
}
.smm-social-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.smm-whatsapp {
  background: linear-gradient(115deg, #075e0c, #148c12, #38d325, #1ebe42, #128c19, #105e07);
  background-size: 300% 300%;
  box-shadow: rgba(255, 255, 255, .5) 0 1px 0 0 inset;
  border: 1px solid #ffffff20;
}
.smm-telegram {
  background: linear-gradient(115deg, #07445e, #125f8c, #2593d3, #1e90be, #12728c, #07465e);
  background-size: 300% 300%;
  box-shadow: rgba(255, 255, 255, .5) 0 1px 0 0 inset;
  border: 1px solid #ffffff20;
}
.smm-social-card > div > div {
  font-size: 16px;
}
.smm-social-card small {
  color: #ffffff99;
  font-size: 13px;
}
.smm-text-muted {
  color: var(--smm-text-muted) !important;
}
.smm-info-box i {
  background: var(--accent-color-3);
  height: 40px;
  width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: rgba(255, 255, 255, 0.5) 0 1px 0 0 inset, rgba(255, 255, 255, 0.5) -1px 0 0 0 inset;
}

.card {
  padding: 30px;
  background: var(--mid-bg);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
@keyframes gradientMove {
  0%,100% {
    background-position: 0 50%
  }
  50% {
    background-position: 100% 50%
  }
}
.smm-social-card i {
  font-size: 30px !important;
  text-shadow: 2px 2px 30px #fff;
}

.hamburger-container {
  display: none;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.hamburger-container:hover {
  background: #e0e0e0;
}
.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2), 
.hamburger span:nth-child(3) {
  top: 8px;
}
.hamburger span:nth-child(4) {
  top: 16px;
}
/* When clicked (active state) */
.hamburger-container.active span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}
.hamburger-container.active span:nth-child(2) {
  transform: rotate(45deg);
}
.hamburger-container.active span:nth-child(3) {
  transform: rotate(-45deg);
}
.hamburger-container.active span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

@media (max-width: 992px) {
  .hamburger-container {
    display: flex;
  }
}



ul.servFiltr li button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border: 0;
  padding: 5px 10px;
  gap: 10px;
  border-radius: 35px;
  height: 45px;
  width: 45px;
  font-size: 20px;
  color: #fff;
}
ul.servFiltr {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 10px;
  overflow: auto;
  list-style: none;
}
ul.servFiltr::-webkit-scrollbar {
  display: none;
}
button.CatFltr.insta {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}
button.CatFltr.fb {
  background: #1877F2;
}
button.CatFltr.tweet {
  background: #1DA1F2;
}
button.CatFltr.yt {
  background: #FFFFFF;
  color: #FF0000;
  border: 1px solid #FF0000;
}
button.CatFltr.yt i {
  color: #FF0000;
}
button.CatFltr.spt {
  background: #1DB954;
}
button.CatFltr.tele {
  background: #0088CC;
}
button.CatFltr.sndcld {
  background: linear-gradient(180deg, #FF5500, #FF3300);
}
button.CatFltr.wbst {
  background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
}
button.CatFltr.lnkin {
  background: #0A66C2;
}
button.CatFltr.dis {
  background: #5865F2;
}
button.CatFltr.pin {
  background: #E60023;
}
button.CatFltr.wa {
  background: #25D366;
}
button.CatFltr.threads {
  background: #000000;
  color: #FFFFFF;
}
button.CatFltr.twitch {
  background: #9146FF;
}
button.CatFltr.snap {
  background: #FFFC00;
  color: #000000;
}
button.CatFltr.quora {
  background: #AA2200;
}
button.CatFltr.google {
  background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
}
button.CatFltr.apple {
  background: #000000;
  color: #FFFFFF;
}
button.CatFltr.onlyfans {
  background: linear-gradient(135deg, #00AFF0, #0088CC);
  color: #FFFFFF;
}
button.CatFltr.onlyfans i {
  color: #FFFFFF;
}
button.CatFltr.tt {
  background: #000000;
  color: #FFFFFF;
}
.nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: #ffffff10;
}
/*.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
background: var(--primary-color);
color: #000;
}*/
.nav-pills .nav-link.act, .nav-pills .show > .nav-link {
  background: var(--primary-color);
  color: #000;
}

.select2-container .select2-dropdown {
  padding: 0;
  border-radius: 15px !important;
  margin-top: 10px !important;
  overflow: auto;
  animation: slideDown 0.3s ease-out;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[aria-selected=true]:hover {
  background-color: var(--primary-color) !important;
}
.select2-container--default .select2-results__option[aria-selected=true] a {
  color: #000;
}
.select2-container .dropdown-menu > li > a {
  padding: 5px 10px;
}
.select2-container .dropdown-menu > li > a:hover {
  background-color: var(--primary-color) !important;
}


/* Final Services */
/* Services Page - Improved Styling */
/* Base Table Styles */
.table-dark {
  background-color: transparent;
  color: var(--text-light);
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.table-rounder {
  border-radius: 8px;
  overflow: hidden;
}

.table-borderless td, 
.table-borderless th {
  border: none;
}

/* Table Header */
.table thead th {
  background-color: var(--dark-bg);
  border: none;
  font-weight: 600;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Table Body Rows */
.table tbody tr {
  background-color: var(--dark-bg);
  transition: all 0.2s ease;
  border-radius: 6px;
  overflow: hidden;
}
.table > :not(caption) > * > * {
  background-color: var(--dark-bg);
}
.table tbody tr:hover {
  background-color: var(--mid-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.table tbody td {
  padding: 12px 15px;
  vertical-align: middle;
  border-top: 1px solid var(--border-color);
}
/* Category Rows - Improved */
.cattr {
  cursor: pointer;
  background-color: var(--mid-bg);
  position: relative;
  border-radius: 6px !important;
  margin-bottom: 5px;
}
.cattr td {
  padding: 12px 15px !important;
  border-top: none !important;
}
/* Remove spacer rows */
.spacertr {
  display: none;
}
/* Golden category header - improved */
.goldencattrborder {
  background-color: rgba(255, 179, 62, 0.1);
  border-left: 3px solid var(--primary-color);
}
.goldencattrborder .spanNrCattr {
  padding-left: 12px; /* Align with border */
}
.spanNrCattr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.categoryNamecattr {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.categoryNamecattr i {
  color: var(--primary-color);
}
.servicQuan {
  color: var(--text-muted);
  font-size: 12px;
  background: var(--mid-bg);
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: 10px;
}
.indicatorExpand i {
  transition: transform 0.3s ease;
}
.cattr.expanded .indicatorExpand i {
  transform: rotate(45deg);
}
/* Service Rows - Improved */
.servMinwid {
  display: flex;
  align-items: center;
  gap: 8px;
}
.servcId {
  color: var(--primary-color);
  font-weight: 600;
  min-width: 40px;
  display: inline-block;
}
.copbut {
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  margin-left: 5px;
}
.copbut:hover {
  color: var(--primary-color);
}
/* First column in service rows (favorite star) */
.table tbody tr > td:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
/* Last column in service rows */
.table tbody tr > td:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
/* Price and Quantity Cells */
.servPrc {
  color: var(--primary-color);
  font-weight: 600;
  white-space: nowrap;
}
.servPrc small {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.quanServ {
  font-size: 0.9rem;
}
.quanServ span {
  color: var(--text-muted);
  display: inline-block;
  min-width: 40px;
}
.quanServ b {
  color: var(--text-light);
}

/* Know More Button */
.specbtnserv {
  background-color: rgba(255, 179, 62, 0.1);
  color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 179, 62, 0.3);
}
.specbtnserv:hover {
  background-color: rgba(255, 179, 62, 0.2);
  color: var(--primary-color);
}
/* Favorite Star */
[data-favorite-icon] {
  color: var(--text-muted);
  transition: all 0.2s ease;
  cursor: pointer;
}
.favorite-active [data-favorite-icon],
[data-favorite-icon]:hover {
  color: var(--primary-color);
}
/* Remove bottom borders from all rows */
.table tbody tr {
  border-bottom: none;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .table thead {
    display: none;
  }
  .table tbody tr {
    display: block;
    margin-bottom: 15px;
    border-radius: 6px;
  }
  .table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px !important;
    border-top: 1px solid var(--border-color);
  }
  .table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 15px;
  }
  .servMinwid {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
  /* Remove rounded corners on mobile for individual cells */
  .table tbody tr > td:first-child,
  .table tbody tr > td:last-child {
    border-radius: 0;
  }
  .table tbody tr > td:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  .table tbody tr > td:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom: none;
  }
}