
    body {
      background-color: #0f1724;
      color: #e6eef8;
      font-family: 'Inter', sans-serif;
      scroll-behavior: smooth;
    }

   /* Top bar with gradient */
.submenu {
  background: linear-gradient(90deg, #6a11cb, #2575fc); /* purple → blue */
  color: #fff;
  font-size: 14px;
  font-family: Arial, sans-serif;
}

/* Container layout */
.submenu .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left info styling */
.submenu .left-info span {
  margin-right: 20px;
}

.submenu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.submenu a:hover {
  color: #ffea00; /* yellow hover */
}

/* Icon colors */
.email-icon {
  color: #ff4b2b; /* red */
}
.phone-icon {
  color: #ffca28; /* yellow */
}
.address-icon {
  color: #00e676; /* green */
}

.submenu i {
  margin-right: 6px;
}

/* Colorful vertical separator */
.submenu .separator {
  width: 2px;
  height: 24px;
  margin: 0 15px;
  background: linear-gradient(to bottom, #ff416c, #ff4b2b); /* pink → red */
  border-radius: 2px;
}

/* Right info styling */
.submenu .right-info {
  white-space: nowrap;
}

/* Mobile styling */
@media (max-width: 768px) {
  .submenu .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .submenu .left-info span {
    display: block;
    margin: 5px 0;
  }

  .submenu .separator {
    display: none; /* hide separator on mobile */
  }

  .submenu .right-info {
    margin-top: 5px;
  }
}


    /* Navbar */
    .navbar { background-color: rgba(10, 14, 25, 0.7); backdrop-filter: blur(10px); }

    /* Banner */
  
    @keyframes fadeIn { from { opacity: 0; transform: translateY(20px);} to {opacity: 1; transform: translateY(0);} }
    .text-gold { color: #d4af37; }

    /* Cards */
    .bg-card {
      background: #111827;
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s;
    }
    .bg-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.4); border: 1px solid #d4af37; }
    .bg-card i { margin-bottom: 15px; }

    /* Stats Section */
    .stats-section { display: flex; justify-content: center; gap: 50px; text-align: center; margin: 50px 0; }
    .stats-section .stat { font-size: 1.8rem; font-weight: bold; color: #d4af37; }
    .stats-section .stat span { font-size: 2.5rem; display: block; }

    /* Two Column Sections */
    .two-col-section { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-bottom: 50px; }
    .two-col-section img { width: 100%; border-radius: 12px; }

    /* FAQ + Contact Section */
    #faqcontact .faq-item { background: #0c1220; border-radius: 10px; padding: 15px; margin-bottom: 10px; cursor: pointer; }
    #faqcontact .contact-form input, #faqcontact .contact-form textarea { width: 100%; padding: 10px; margin-bottom: 10px; border-radius: 6px; border: none; }
    #faqcontact .contact-form button { background: #d4af37; color: #0f1724; border: none; padding: 10px 20px; border-radius: 6px; }

    /* Testimonials */
    .testimonial-carousel { background: #111827; padding: 50px 0; text-align: center; color: #e6eef8; }
    .testimonial-carousel img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 15px; }
    .testimonial-carousel .carousel-item { padding: 20px; }
    .testimonial-carousel p { font-style: italic; color: #d4af37; }

    /* Footer */
    footer { background: #111827; padding: 40px 0 10px; color: #e6eef8; }
    footer a { color: #d4af37; text-decoration: none; margin-right: 15px; }
    footer p { margin-top: 20px; font-size: 0.9rem; }

    @media(max-width: 768px){
      .two-col-section { flex-direction: column; }
      .stats-section { flex-direction: column; gap: 20px; }
    }
	/* Centered Fancy Section Separator */
.section-separator {
  width: 200px; /* short line */
  height: 4px;
  margin: 40px auto; /* centers it */
  background: linear-gradient(90deg, #d4af37, #f0e68c, #d4af37);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.5);
  animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
  0% { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}
/* Floating buttons container on the left */
.floating-buttons {
  position: fixed;
  left: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* Button style */
.float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Colors */
.float-btn.telegram { background: #0088cc; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.contact { background: #ff416c; }

/* Hover effect */
.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Labels */
.float-btn .label {
  position: absolute;
  left: 60px; /* distance from button */
  background-color: rgba(0,0,0,0.85);
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 14px;
  pointer-events: none;
}

/* Show label on hover */
.float-btn:hover .label {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .floating-buttons {
    left: 10px;
    bottom: 20px;
    gap: 10px;
  }
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .float-btn .label {
    display: none; /* hide labels on mobile for simplicity */
  }
}
/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  right: 20px;   /* adjust for left/right placement */
  bottom: 80px;  /* slightly above floating buttons */
  z-index: 999;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* hidden by default */
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  #scrollTopBtn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    bottom: 70px;
  }
}
.recovery-process {
  background: #0d111a;
  color: #fff;
}

.text-gold {
  color: #d4af37 !important;
}

/* Process Cards */
.process-card {
  background: #141a26;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: 0.35s ease;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

/* Glow Animation on Hover */
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  border-color: #d4af37;
}

/* Icon Circle */
.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  transition: 0.4s ease;
  animation: floatIcon 3s infinite ease-in-out;
}

/* Icon hover spin */
.process-card:hover .icon-box {
  transform: rotate(8deg) scale(1.08);
}

/* Floating animation */
@keyframes floatIcon {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* Step number */
.step-number {
  font-size: 38px;
  font-weight: bold;
  color: #d4af37;
  opacity: 0.9;
  margin-bottom: 10px;
}

.process-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-text {
  font-size: 14px;
  color: #c9c9c9;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .step-number {
    font-size: 34px;
  }

  .process-card {
    padding: 25px;
  }
}

/* Section Background */
.review-testimonial-section {
  background-color: #1b1b1b; /* dark background matching main website */
  padding: 60px 0;
}

/* Review Box */
.review-box {
  background-color: #2c2c2c;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* Left review stars (yellow boxes) */
.review-stars .star-box {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  padding: 6px 10px;
  margin: 2px;
  border-radius: 6px;
}

/* Rating number */
.rating-number {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}

/* Testimonial Cards */
.testimonial-card {
  background-color: #2c2c2c;
  border-left: 5px solid #c7a14a;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Testimonial Text */
.testimonial-text {
  color: #fff;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
}

/* Testimonial Stars (plain gold) */
.testimonial-stars .star-box {
  display: inline;
  background: none;
  color: #ffcc00;
  font-size: 16px;
  padding: 0;
  margin-right: 2px;
}

/* Avatar */
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #c7a14a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60%;
}

.partners-section {
  background-color: #1b1b1b; /* match testimonial section */
  padding: 60px 0;
}

.section-title {
  color: #c7a14a;
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 40px;
}

.partner-logo {
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1); /* white logos for dark background */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.1);
  filter: brightness(1.2) invert(1);
}


.services-section {
  background-color: #1b1b1b;
  padding: 80px 0;
}

.services-title {
  font-size: 36px;
  font-weight: 700;
  color: #c7a14a;
  text-shadow: 0 0 10px rgba(199,161,74,0.6);
}

.services-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  background: linear-gradient(145deg, #222, #1a1a1a);
  border-radius: 20px;
  padding: 70px 20px 20px 20px; /* extra top padding for floating image */
  flex: 1 1 18%; /* 5 cards in one row on desktop */
  min-width: 180px;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(199,161,74,0.6);
  border: 2px solid #c7a14a;
}

.service-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #c7a14a;
  background-color: #1b1b1b;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.text-gold {
  color: #c7a14a;
  font-weight: bold;
}

.service-text {
  color: #ddd;
  font-size: 0.95rem;
  margin-top: 10px;
  line-height: 1.4;
}

/* Animated Entrance */
.animate-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) { .service-card { flex: 1 1 28%; } }
@media (max-width: 992px)  { .service-card { flex: 1 1 45%; } }
@media (max-width: 576px)  { .service-card { flex: 1 1 100%; } }




:root{
  --bg:#0d111a;
  --circle-bg:#0f1621;
  --accent1:#6a11cb;
  --accent2:#2575fc;
  --gold:#d4af37;
  --muted:#c0c7d6;
}

.circle-scam-section{
  background: var(--bg);
  padding: 70px 0;
  color: #fff;
}

.circle-title{
  text-align:center;
  color:var(--gold);
  font-size:30px;
  font-weight:700;
  margin-bottom:10px;
}

.circle-subtitle{
  text-align:center;
  max-width:780px;
  color:var(--muted);
  margin:0 auto 40px;
  font-size:15px;
}

.circle-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap:30px;
  justify-items:center;
}

.circle-card{
  width:230px;
  height:230px;
  background: var(--circle-bg);
  border-radius:50%;
  padding:10px;
  text-align:center;
  position:relative;
  border:3px solid transparent;
  background-image:
    linear-gradient(var(--circle-bg), var(--circle-bg)),
    linear-gradient(135deg, var(--accent1), var(--accent2));
  background-origin:border-box;
  background-clip:content-box, border-box;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.45);
}

.circle-icon{
  font-size:28px;
  color:#fff;
  margin-bottom:10px;
}

.circle-card h3{
  font-size:17px;
  margin:0 0 6px;
  color:#fff;
}

.circle-card p{
  font-size:13px;
  color:var(--muted);
  margin:0 auto;
  width:85%;
}

/* Arrow under circle */
.circle-arrow{
  width:0;
  height:0;
  border-left:12px solid transparent;
  border-right:12px solid transparent;
  border-top:18px solid var(--accent1);
  position:absolute;
  bottom:-25px;
  left:50%;
  transform:translateX(-50%);
  filter:drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

@media(max-width:600px){
  .circle-card{
    width:200px;
    height:200px;
  }
}

/* ---- LUXURY STYLE ---- */

/* Section background */
.luxury-scam-section {
  background: #0d0d0d; /* ultra-black luxury tone */
  padding: 80px 0;
}

/* Title */
.luxury-title {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #d5b36a, #f5e7c6, #d5b36a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.luxury-subtitle {
  color: #bfbfbf;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
}

/* Grid */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

/* Card */
.luxury-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 140, 0.15);
  
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  
  backdrop-filter: blur(12px);
  
  box-shadow: 
    0 6px 25px rgba(0,0,0,0.5),
    inset 0 0 15px rgba(255, 215, 140, 0.08);

  transition: all .35s ease;
  position: relative;
}

/* Hover luxury glow */
.luxury-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 215, 140, 0.35);
  box-shadow:
    0 10px 40px rgba(255, 215, 140, 0.25),
    0 8px 35px rgba(0,0,0,0.7);
}

/* Icon circle */
.luxury-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;

  background: radial-gradient(circle, #f9e6b3 0%, #d4b56c 60%, #a68641 100%);
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 38px;
  color: #111;

  box-shadow: 
    0 6px 12px rgba(255, 215, 140, 0.3),
    inset 0 0 8px rgba(255,255,255,0.6);
  
  transition: all .35s ease;
}

/* Icon hover */
.luxury-card:hover .luxury-icon {
  transform: scale(1.08) rotate(2deg);
  box-shadow:
    0 12px 25px rgba(255, 215, 140, 0.45),
    inset 0 0 12px rgba(255,255,255,0.9);
}

/* Titles inside card */
.luxury-card h3 {
  font-size: 20px;
  color: #f4e7c7;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Text */
.luxury-card p {
  font-size: 15px;
  color: #c9c9c9;
  line-height: 1.6;
}

	/* Mega Dropdown Styling */
.mega-dropdown {
  width: 100%;
  background: #1b1f2b;
  border: 1px solid #2d3342;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Fade-in animation */
.nav-item.dropdown.show .mega-dropdown {
  opacity: 1;
  transform: translateY(0px);
}

/* Menu item style */
.mega-dropdown .dropdown-item {
  padding: 8px 0;
  color: #e6eef8;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Hover effect */
.mega-dropdown .dropdown-item:hover {
  color: #d4af37;
  transform: translateX(4px);
}

/* Column titles */
.mega-dropdown h6 {
  color: #d4af37;
  border-bottom: 1px solid #2c2f3c;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

/* Gold icon style */
.mega-dropdown .dropdown-item i {
  color: #d4af37;
}

/* ---------------------------- */
/* Mega Dropdown Styling - All Devices */
/* ---------------------------- */
.mega-dropdown {
  width: 100%;
  background: #1b1f2b;
  border: 1px solid #2d3342;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  left: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  overflow: visible;
}

/* Fade-in animation for desktop */
.nav-item.dropdown.show .mega-dropdown {
  opacity: 1;
  transform: translateY(0);
}

/* Menu items */
.mega-dropdown .dropdown-item {
  padding: 8px 0;
  color: #e6eef8;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Hover effect */
.mega-dropdown .dropdown-item:hover {
  color: #d4af37;
  transform: translateX(4px);
}

/* Column titles */
.mega-dropdown h6 {
  color: #d4af37;
  border-bottom: 1px solid #2c2f3c;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

/* Icon color */
.mega-dropdown .dropdown-item i {
  color: #d4af37;
}

/* ---------------------------- */
/* Mobile Specific Styling */
/* ---------------------------- */
@media (max-width: 991px) {

  /* Make dropdown stack and scrollable */
  .navbar .dropdown-menu {
    max-height: 70vh !important;
    overflow-y: auto !important;
    position: static !important; /* essential for scroll */
    padding-bottom: 20px;
    box-shadow: none;
  }

  /* Mega dropdown behaves like regular dropdown on mobile */
  .mega-dropdown {
    position: static !important;
    width: 100% !important;
    opacity: 1 !important; /* show fully on mobile */
    transform: translateY(0) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  /* Optional: add spacing between items for mobile readability */
  .mega-dropdown .dropdown-item {
    padding: 12px 0;
  }
}

/* ---------------------------- */
/* Optional: Desktop Hover Fix */
/* ---------------------------- */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }

  /* disable click pointer on desktop to avoid conflicts */
  .nav-item.dropdown > a[data-bs-toggle="dropdown"] {
    pointer-events: none;
  }
}


.text-gold {
    color: #d4af37;
}



.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.btn-gold {
    background-color: #d4af37;
    color: #0d111a;
    border: none;
}
.btn-gold:hover {
    background-color: #b8932c;
    color: #fff;
}

.service-section {
    padding: 60px 0;
}

.service-section h2 {
    color: #d4af37;
    margin-bottom: 20px;
}

.service-section p, .service-section li {
    line-height: 1.6;
    font-size: 1rem;
}
.service-section ul {
    padding-left: 1.5rem;
}