/* General */
*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins','Inter',sans-serif;}
body{background:#ffffff;color:#333;line-height:1.6;overflow-x:hidden;}
.container{width:90%;max-width:1200px;margin:auto;}
h1,h2,h3{color:#111;}
a{text-decoration:none;transition:.3s;}
a:hover{}
span{color:#0077ff;}
/* For WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0; /* Subtle track */
}

::-webkit-scrollbar-thumb {
  background: #c2c2c2; /* Neutral thumb */
  border-radius: 8px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #999; /* Slightly darker on hover */
}

/* For Firefox */
* {
  scrollbar-width: thin; /* Makes it thin */
  scrollbar-color: #c2c2c2 #f0f0f0; /* thumb track */
}

/* Highlight Keywords */
.highlight {
  font-weight: 700;
  color: #2563eb;
  background: linear-gradient(90deg, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
}
@keyframes shine {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
  100% { filter: brightness(1); }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e0e3f0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  /* Add subtle inset effect */
  backdrop-filter: blur(8px); /* Optional: adds slight glass-morphism */
}

/* Top Accent Bar (Add this HTML inside header or use pseudo-element) */
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6a5af9, #e74c3c);
  border-radius: 2px 2px 0 0;
  /* Optional: animate gradient */
  animation: shine 3s infinite linear;
}

/* Shine animation for gradient */
@keyframes shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Ensure header content has padding and relative positioning */
.header {
  position: relative;
  padding: 0 20px;
}
.header-inner{display:flex;justify-content:space-between;align-items:center;padding:15px 0;}
.logo {

   font-family: "Righteous", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 23px;
  color: #F54927;
  letter-spacing: 1px;
}

.logo span {
    font-weight: 600;
  color: #2AA63E;
}
.gradient-icon {
   font-size: 32px; /* adjust size */
  background: linear-gradient(90deg, #F54927, #FDBB2D, #2AA63E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
 
}

.nav-links a {
  font-weight: 600;
  color: #333;
}

.btn-primary,
.btn-outline {
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

/* Primary Button */
.btn-primary {
  background: #0077ff;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #005fcc;
}

/* Outline Button */
.btn-outline {
  background: transparent;
  border: 1.5px solid #0077ff;
  color: #0077ff;
}

.btn-outline:hover {
  background: #0077ff;
  color: #fff;
}


/* Hero */
.hero{text-align:center;padding:60px 10px;background:linear-gradient(135deg,#f9f9f9,#eef6ff);}
.hero h2{font-size:34px;margin-bottom:15px;font-weight:700;}
.hero p{max-width:700px;margin:10px auto 20px;font-size:18px;color:#555;}
.big{font-size:18px;padding:14px 28px;}
.hero {
  position: relative;
}

.hero-bottom-tag {
  position: absolute;
  bottom: -18px; /* Half out */
  left: 50%;
  transform: translateX(-50%);
  background: #ffeb3b; /* Yellow highlighter */
  padding: 4px 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Stats */
.stats {
  padding: 60px 0;
  background: #fff;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px 15px;
  border: 1px solid #e6e6e6;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.stat-icon {
  font-size: 26px;
  color: #444;
  margin-bottom: 12px;
}

.stat-card span {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.stat-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* Info */
.info {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fdfdfd 0%, #f9f9f9 100%);
  text-align: center;
}

.info h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

.info h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #0077ff;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.step {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  text-align: left;
  border: 1px solid #f0f0f0;
}

.step h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  border-color: #0077ff30;
}


.info-icon {
  display: inline-block;
  position: relative;
  margin-left: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #0077ff;
}

.info-icon .tooltip {
  visibility: hidden;
  width: 220px;
  background-color: #0077ff;
  color: #fff;
  text-align: left;
  padding: 10px;
  border-radius: 8px;
  position: absolute;
  top: 120%; /* below the icon */
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* Optional: small arrow below tooltip */
.info-icon .tooltip::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #0077ff transparent;
}

/* Clusters */
.clusters{padding:60px 20px;text-align:center;}
.grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;margin-top:30px;}
.cluster-card{background:#f9f9f9;padding:25px;border-radius:12px;transition:.3s;}
.cluster-card:hover{background:#eef6ff;transform:translateY(-5px);}
.demo-note{font-size:0.9rem;color:#6b7280;margin-bottom:1rem;font-style:italic;}

/* Dashboard */
.dashboard{padding:60px 20px;background:#f9fafb;text-align:center;border-radius:16px;position:relative;box-shadow:0 4px 20px rgba(0,0,0,0.05);}

.dash-box{background:#fff;padding:25px;border-radius:12px;margin-bottom:20px;box-shadow:0 4px 10px rgba(0,0,0,0.05);}
.dash-box span{font-weight:700;color:#00aa66;}

/* Register */
.register{padding:60px 20px;background:#fff;text-align:center;}
.register h2 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: 2.5rem;           /* Large and prominent */
  font-weight: 700;            /* Bold */
  text-align: center;
  color: #2c3e50;              /* Dark navy/charcoal – professional */
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 15px;
}

/* Add a subtle underline/border with gradient */
.register h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #8e44ad);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .register h2 {
    font-size: 2rem;
  }
}
.reg-form{margin:auto;display:grid;gap:15px;}
.reg-form input,.reg-form select{padding:12px;border:1px solid #ccc;border-radius:6px;width:100%;transition:.3s;}
.reg-form input:focus,.reg-form select:focus{border-color:#0077ff;box-shadow:0 0 6px rgba(0,119,255,0.3);}
.small{margin-top:10px;font-size:12px;color:#777;}

.testimonial-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 100%; /* each slide takes full width */
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.testimonial img {
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.testimonial h4 {
  font-size: 14px;
  color: #0077ff;
}

/* optional mobile adjustments */
@media(max-width:768px){
  .testimonial { padding: 15px; }
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #214954; /* Strong teal base */
  font-size: 14px;

  color: #ffffff; /* White text for good contrast */
}

footer a {
  color: #aee7ff; /* Light teal-blue accent for links */
  text-decoration: none;
}

footer a:hover {
  color: #ffffff; /* Turns white on hover */
}


/* Animations */
.fade-in{animation:fadeIn 1.2s ease;}
.fade-up{animation:fadeUp 1.2s ease;}
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}

/* Modal (Login) */
.modal{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.6);justify-content:center;align-items:center;z-index:10000}
.modal-content{background:#fff;padding:30px;border-radius:12px;width:90%;max-width:400px;position:relative;animation:fadeIn .5s;}
.close{position:absolute;top:10px;right:15px;font-size:24px;cursor:pointer;color:#555;}
.close:hover{color:#000;}

/* ===== Hamburger & Responsive Nav ===== */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1100; /* above nav */
  
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #2AA63E;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger active (X) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 768px) {
    html, body {
    overflow-x: hidden;
    width: 100%;
}

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* hidden by default */
    width: 250px;
    height: 100vh;
    background: #fff url('https://www.transparenttextures.com/patterns/bitcoin.png') repeat; /* Doodle-style digital money pattern */
    background-size: 200px;
    opacity: 0.95;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 1000;
}
  .nav-links.active {
    right: 0;
  }
    .modal{
        width: 100%;
    }
  .hamburger {
    display: flex; /* show hamburger on mobile */
  }

  /* Adjust hero font size */
  .hero h2 { font-size: 26px; }
  .hero p { font-size: 16px; }

  /* Grid adjustments */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Section padding */
  .hero, .stats, .info, .clusters, .dashboard, .register { padding: 40px 15px; }
}


/* Fixed Vertical Social Icons */
.social-icons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a.facebook { background: #1877F2; }
.social-icons a.twitter { background: #000000; } /* X (Twitter) */
.social-icons a.whatsapp { background: #25D366; }
.social-icons a.instagram { background: #E4405F; }
.social-icons a.telegram { background: #0088CC; }

.social-icons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
  .social-icons {  }
  .social-icon { width: 40px; height: 40px; }
  .social-icon svg { width: 18px; height: 18px; }
}


.notification-bell {
    position: absolute;
    top: 90px; /* adjust for header */
    right: 20px;
    z-index: 1000;
    cursor: pointer;
}

.bell-icon {
    width: 28px;
    height: 28px;
    color: #333;
    transition: color 0.3s ease;
}

.bell-icon:hover {
    color: #007bff;
}

.notification-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    display: none;
    animation: shake 0.8s infinite alternate;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(2px); }
}

.notification-dropdown {
    display: none;
    position: absolute;
    top: 35px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 10px;
}

.notification-dropdown h4 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.notification-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-dropdown ul li {
    padding: 8px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

.notification-dropdown ul li:last-child {
    border-bottom: none;
}

.notification-dropdown ul li a {
    color: #333;
    text-decoration: none;
}

.notification-dropdown ul li a:hover {
    color: #007bff;
}


/* OTP Section Fix */
.otp-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.otp-section {
  display: none; /* hidden until OTP is sent */
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.otp-section input {
  width: 150px;
  padding: 8px;
  font-size: 14px;
}

#otpStatus {
  font-size: 13px;
  margin-top: 3px;
}

/* Default disabled state */
#registerBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed; /* No hand symbol */
  pointer-events: none; /* Prevent hover click */
}

/* Enabled state */
#registerBtn:not(:disabled) {
  cursor: pointer; /* Show hand symbol */
  opacity: 1;
}

/* Compliance & Safety Section */
#compliance {
  background: #f9f9f9; /* soft light grey for contrast */
  padding: 50px 20px;
}

#compliance .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

#compliance h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #555;
  font-size: 1rem;
}



.legal-list b {
  color: #000;
  font-weight: 600;
}

/* Subtle fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  #compliance {
    padding: 40px 15px;
  }

  #compliance h2 {
    font-size: 1.5rem;
  }
/* ===== Referral Section ===== */
#referral {
  background-color: #ffffff;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

#referral h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #222;
  margin-bottom: 20px;
}

#referral .demo-note {
  text-align: center;
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 35px;
}

/* Grid Layout */
#referral .grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Referral Cards */
#referral .dash-box {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

#referral .dash-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

#referral .dash-box h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

#referral .dash-box p,
#referral .dash-box ul {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

#referral .dash-box ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

#referral .dash-box ul li {
  margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #referral h2 {
    font-size: 24px;
  }
  #referral .dash-box {
    padding: 18px;
  }
}

  .legal-list li {
    font-size: 0.95rem;
  }
}


/* ===== Referral Section ===== */
#referral {
  background-color: #ffffff;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

#referral h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #222;
  margin-bottom: 20px;
}

#referral .demo-note {
  text-align: center;
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 35px;
}

/* Grid Layout */
#referral .grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Referral Cards */
#referral .dash-box {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

#referral .dash-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

#referral .dash-box h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

#referral .dash-box p,
#referral .dash-box ul {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

#referral .dash-box ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

#referral .dash-box ul li {
  margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #referral h2 {
    font-size: 24px;
  }
  #referral .dash-box {
    padding: 18px;
  }
}
