




.wallet-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background-color: #eafaff;
  padding: 10px 15px;
  border-radius: 10px;
}

.fund-btn {
  background-color: #0099cc;
  color: white;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.fund-btn:hover {
  background-color: #0077aa;
}






.hamburger {
  font-size: 30px;
  cursor: pointer;
  color: #00aaff;
}



/* Hide nav by default */
.nav-menu {
  display: none;
  position: absolute;
  top: 65px;
  right: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.2);
  padding: 10px 0;
  list-style: none;
  min-width: 180px;
  z-index: 999;
}

.nav-menu li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

.nav-menu li:last-child {
  border-bottom: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #00aaff;
  font-weight: 600;
  display: block;
}

.nav-menu li a:hover {
  background-color: #f0faff;
  color: #007acc;
  border-radius: 5px;
}




/* Toggle Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #00aaff;
}
input:checked + .slider:before {
  transform: translateX(24px);
}

/* DARK MODE STYLES */
body.dark {
  background-color: #121212;
  color: #e0e0e0;
}
body.dark .section {
  background-color: #1c1c1c;
}
body.dark .section-title {
  color: #00aaff;
}
body.dark .cta-section {
  background: linear-gradient(135deg, #004466, #002233);
}
body.dark .cta-button.pulse {
  background: #00aaff;
  color: white;
}
body.dark .cta-button.secondary {
  border-color: #00aaff;
  color: #00aaff;
}
body.dark .footer-content {
  background-color: #1a1a1a;
}
body.dark .achievement-card {
  background-color: #222;
  color: #eee;
}
body.dark .benefit-item {
  background: rgba(0, 170, 255, 0.1);
  color: #eee;
}

.hamburgerhome {
  font-size: 30px;
  color: #00aaff;
  cursor: pointer;
  user-select: none;
}



:root {
  --primary-color: #00aaff;
  --primary-dark: #008fcc;
  --secondary-color: #006bb3;
  --accent-color: #ffaa00;
  --dark-color: #0c1e30;
  --light-color: #f9f9f9;
  --text-color: #1e1e1e;
  --text-light: #666;
  --white: #ffffff;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: var(--light-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Reusable Sections */
.section {
  padding: 5rem 1rem;
  animation: fadeUp 1s ease both;
}
.section-titleh {
  color: white;
}
.section-title {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* About Us */
.about-container {
  max-width: 1200px;
  margin: auto;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
.about-text {
  flex: 1;
  min-width: 300px;
}
.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* Achievements */
.achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.achievement-card {
  flex: 1;
  min-width: 150px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.achievement-card:hover {
  transform: translateY(-5px);
}
.achievement-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.achievement-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.achievement-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.about-image:hover img {
  transform: scale(1.05);
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
}
.cta-container {
  max-width: 800px;
  margin: auto;
}
.cta-text {
  font-size: 1.2rem;
  margin: 1.5rem 0 2rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
}
.cta-button i {
  font-size: 1rem;
}
.cta-button.pulse {
  background: var(--accent-color);
  color: var(--white);
  animation: pulse 2s infinite;
}
.cta-button.pulse:hover {
  background: #e67e22;
}
.cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  color: var(--white);
}
.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.benefits {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.benefit-item i {
  color: var(--accent-color);
}


/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  .achievement-card {
    min-width: 100%;
  }
}



/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4faff;
  margin: 0;
  padding: 0;
}

/* Works Section */
.works-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  box-shadow: 0 15px 30px rgba(0, 170, 255, 0.15);
  border-color: #00aaff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: #00aaff;
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.step-card {
  background: white;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #e1f5fe;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: bold;
  color: #00aaff;
  background: #e1f5fe;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 170, 255, 0.15);
  border-color: #00aaff;
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #00aaff, #0066cc);
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
}

.step-card h3 {
  color: #00aaff;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.step-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Advertiser Section */
.advertiser-section {
  background: linear-gradient(135deg, #0066cc, #004080);
  color: white;
}

.advertiser-section .section-header h2 {
  color: white;
}

.advertiser-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.advertiser-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.advertiser-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.advertiser-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.advertiser-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.advertiser-card:hover .advertiser-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.advertiser-card h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.advertiser-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* CTA Box */
.cta-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-box h3 {
  color: #0066cc;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.cta-box p {
  color: #666;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: #00aaff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #00aaff;
}

.cta-button:hover {
  background: transparent;
  color: #00aaff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-steps, .advertiser-benefits {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
}


/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4faff;
  margin: 0;
  padding: 20px;
}

/* Benefits Section */
.benefits-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefits-section h2 {
  text-align: center;
  color: #00aaff;
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
}

.benefits-section h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #00aaff;
  margin: 10px auto;
}

/* Features List */
.features-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.benefit-card {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid #00aaff;
}

.benefit-card:hover {
  background-color: #e9f7fe;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.1);
}

.benefit-title {
  color: #00aaff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
}

.benefit-title i {
  font-size: 1.3rem;
  color: #00aaff;
}

.benefit-card li {
  margin-left: 42px; /* Align with icon */
  line-height: 1.6;
  padding: 5px 0;
}

/* Responsive Design */
@media (max-width: 600px) {
  .benefit-card {
    padding: 15px;
  }
  
  .benefit-title {
    font-size: 1.1rem;
  }
  
  .benefit-card li {
    margin-left: 35px;
  }
}


//* css/style.css*/

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.circle-logo {
  background-color: white;
  color: #00aaff;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}



 .hamburger {
      font-size: 30px;
      cursor: pointer;
      display: none;
    }
    
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 20px;
    }
    
    .nav-menu li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s;
    }
    
    .nav-menu li a:hover {
      color: #00aaff;
    }
    
    .nav-btn {
      background: #00aaff;
      color: white !important;
      padding: 8px 15px;
      border-radius: 5px;
    }
    
    .nav-btn:hover {
      background: #0088cc;
    }
    





header {
  background-color: #00aaff;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  margin-top: 10px;
  font-size: 1.2em;
}

.cta-buttons {
  margin-top: 20px;
}

.cta-buttons a,
.cta-button {
  text-decoration: none;
  background-color: white;
  color: #00aaff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  margin: 5px;
  display: inline-block;
  transition: 0.3s;
}
#r1{
  background-color: #00aaff; /* button background */
  color: white;
  border: none;
  border-radius: 25px; /* yawan kyewa */
  box-shadow: 0 4px 10px rgba(0, 170, 255, 0.4); /* shadow da launi */
  transition: all 0.3s ease;
}

}
#r1:hover{
  button:hover {
  background-color: #0090dd;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 170, 255, 0.5);
}

  
}
  
}
.cta-buttons a:hover,
.cta-button:hover {
  background-color: #e0f6ff;
}

.section {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

.section h2 {
  color: #00aaff;
  font-size: 2em;
}

footer {
  background-color: #00aaff;
  color: white;
  text-align: center;
  padding: 50px;
  margin-top: 30px;
}

blockquote {
  font-style: italic;
  background-color: #eefaff;
  padding: 15px;
  border-left: 5px solid #00aaff;
  margin: 15px 0;
}
/css/style.css (append this at the bottom)

.register-container {
  max-width: 300px;
  margin: 50px auto;
  padding: 30px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}
.register-container h1{
  color: #00aaff;
  
}
.register-container h2 {
  color: #00aaff;
  margin-bottom: 20px;
}

.register-container form {
  display: flex;
  flex-direction: column;
}

.register-container input {
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1em;
}

.register-container button {
  padding: 12px;
  background-color: #00aaff;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.register-container button:hover {
  background-color: #0090dd;
}

.login-link {
  margin-top: 15px;
}

.login-link a {
  color: #00aaff;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Login and Register form share .register-container */
/* Buttons already have hover, animation, shadow */
.register-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 30px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}

.register-container h2 {
  color: #00aaff;
  margin-bottom: 20px;
}

.register-container form {
  display: flex;
  flex-direction: column;
}

.register-container input {
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.register-container button {
  padding: 12px;
  background-color: #00aaff;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 170, 255, 0.3);
}

.register-container button:hover {
  background-color: #0090dd;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 170, 255, 0.5);
}

.login-link {
  margin-top: 15px;
}

.login-link a {
  color: #00aaff;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}
/ css/style.css (append below previous styles)

.hamburger {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 8px;
    z-index: 999;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    margin-bottom: 10px;
  }
}

/* Dashboard Page Styles */
.dashboard {
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px;
  font-family: sans-serif;
}

.dashboard h2 {
  color: #00aaff;
  margin-bottom: 20px;
  text-align: center;
}

.card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.card h3 {
  color: #00aaff;
  margin-bottom: 10px;
}

.card p {
  font-size: 1.4em;
  font-weight: bold;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.referral-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.referral-box input {
  flex: 1;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.referral-box button {
  background-color: #00aaff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.referral-box button:hover {
  background-color: #0090dd;
  
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  margin: 8px 0;
  font-size: 1em;
}

.cta-button {
  text-decoration: none;
  display: inline-block;
  background-color: #00aaff;
  color: white;
  padding: 10px 20px;
  margin: 8px 5px 0 0;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.cta-button:hover {
  background-color: #0090dd;
}

/* Navbar & Hamburger */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.nav-brand {
  font-size: 1.5em;
  color: #00aaff;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu li a:hover {
  color: #00aaff;
}

.hamburger {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 8px;
    z-index: 999;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    margin-bottom: 10px;
  }
}
/* Profile Form */
.edit-profile-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.edit-profile-form label {
  font-weight: bold;
  color: #333;
}

.edit-profile-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.edit-profile-form input[readonly] {
  background-color: #f4f4f4;
  cursor: not-allowed;
}

.edit-profile-form button {
  background-color: #00aaff;
  color: white;
  padding: 12px;
  font-size: 1em;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.edit-profile-form button:hover {
  background-color: #0090dd;
}



/* Withdraw Form */
.withdraw-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.withdraw-form label {
  font-weight: bold;
  color: #333;
}

.withdraw-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.withdraw-form button {
  background-color: #00aaff;
  color: white;
  padding: 12px;
  font-size: 1em;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.withdraw-form button:hover {
  background-color: #0090dd;
}


.transaction-table {
  overflow-x: auto;
  margin-top: 20px;
}

.transaction-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.transaction-table th,
.transaction-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.transaction-table thead {
  background-color: #00aaff;
  color: white;
}

.transaction-table tbody tr:hover {
  background-color: #f5faff;
}

.transaction-table .success {
  color: green;
  font-weight: bold;
}

.transaction-table .pending {
  color: orange;
  font-weight: bold;
}




//*wannan karine //


/* Notification Dot */


/* Progress Bar */
.progress-bar {
  width: 100%;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}
.progress-fill {
  background: #00aaff;
  color: white;
  padding: 5px;
  text-align: center;
  font-weight: bold;
}

/* Quick Grid CTA */
.card-grid a.cta-button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: #00aaff;
  padding: 10px;
  border-radius: 10px;
  margin: 5px;
  flex: 1 1 45%;
}
.nav-brand {
  display: flex;
  align-items: center;
  font-weight: bold;
}


.brand-text {
  margin-left: 10px;
  font-size: 22px;
  color: white;
}

.leaderboard-page {
  padding: 20px;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.leaderboard-table th,
.leaderboard-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

.leaderboard-table th {
  background-color: #00aaff;
  color: white;
}

.leaderboard-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.leaderboard-table tr:hover {
  background-color: #f1f1f1;
}


/* ========== Universal Sidebar Styles ========== */

.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 220px;
  height: 100%;
  background-color: #00aaff;
  color: white;
  padding-top: 60px;
  transition: left 0.3s ease-in-out;
  z-index: 1001;
}

.sidebar.active {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: block;
  transition: background 0.3s;
}

.sidebar ul li a:hover {
  background-color: rgba(255,255,255,0.1);
  border-radius: 5px;
}

/* Top bar that includes hamburger */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00aaff;
  color: white;
  padding: 14px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.topbar .brand {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
}

.topbar .hamburger {
  display: block;
  font-size: 24px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

@media (min-width: 769px) {
  .sidebar {
    left: -250px;
  }
}



/* Referral Link Box */
.referral-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.referral-box input {
  flex: 1;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.referral-box button {
  background-color: #00aaff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.referral-box button:hover {
  background-color: #0090dd;
}

/* Sidebar Styles */
.sidebar {
  width: 220px;
  background: #ffffff;
  border-right: 1px solid #ddd;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -220px;
  transition: left 0.3s ease;
  padding-top: 60px;
  z-index: 900;
}

.sidebar.active {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.sidebar ul li a:hover {
  color: #00aaff;
}

/* Topbar */
.topbar {
  height: 60px;
  background: #00aaff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.hamburger {
  font-size: 1.5em;
  cursor: pointer;
}

/* Page content should shift */
.dashboard {
  margin-left: 0;
  padding: 20px;
  transition: margin-left 0.3s ease;
}

@media (min-width: 768px) {
  .sidebar.active ~ .dashboard {
    margin-left: 220px;
  }
}

/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8fafc;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Earnings Section */
.earnings-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: white;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.section-header p {
  color: white;
  font-size: 1.1rem;
}

/* Stats Container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.stat-box {
  background: white;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 5px solid;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.users-box {
  border-left-color: #00aaff;
}

.money-box {
  border-left-color: #28a745;
}

.tasks-box {
  border-left-color: #ffc107;
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}

.users-box .stat-icon {
  background: linear-gradient(135deg, #00aaff, #0088cc);
}

.money-box .stat-icon {
  background: linear-gradient(135deg, #28a745, #1e7e34);
}

.tasks-box .stat-icon {
  background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.users-box .stat-number {
  color: #00aaff;
}

.money-box .stat-number {
  color: #28a745;
}

.tasks-box .stat-number {
  color: #ffc107;
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

/* Transactions Feed */
.transactions-feed {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.transactions-feed h3 {
  color: #00aaff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.transaction-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.transaction-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.transaction-item:nth-child(1) { animation-delay: 0.1s; }
.transaction-item:nth-child(2) { animation-delay: 0.3s; }
.transaction-item:nth-child(3) { animation-delay: 0.5s; }
.transaction-item:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeIn {
  to { opacity: 1; }
}

.transaction-item:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.transaction-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.earning {
  background: linear-gradient(135deg, #00aaff, #0066cc);
}

.referral {
  background: linear-gradient(135deg, #6f42c1, #4b2e83);
}

.withdrawal {
  background: linear-gradient(135deg, #28a745, #1e7e34);
}

.bonus {
  background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.transaction-text1 {
  font-weight: 500;
  margin-bottom: 5px;
  color: #00aaff;
}

.transaction-time {
  color: #666;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .stat-box {
    flex-direction: column;
    text-align: center;
  }
}
.section {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 170, 255, 0.2);
}

.section h2 {
  color: #00aaff;
  margin-top: 0;
}
.nav-brand-l{
  color: white;
  font-weight: bold;
  font-size: 30px;
}

/*wannan shine page na earner withdrawal*/

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f2faff;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 25px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 0px;
  height: 50px;
  background: #fff;
  color: #00aaff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px rgba(0,170,255,0.3);
  transition: 0.3s ease;
}
.logo-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0,170,255,0.6);
}

.nav-brand {
  font-size: 25px;
  font-weight: 700;
  color: #00aaff;
}

.hamburger {
  font-size: 30px;
  color: #00aaff;
  cursor: pointer;
  user-select: none;
}

/* Navigation Menu */
.nav-menu {
  display: none;
  position: absolute;
  top: 65px;
  right: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.2);
  padding: 10px 0;
  list-style: none;
  min-width: 180px;
  z-index: 999;
}
.nav-menu.show {
  display: block;
}
.nav-menu li {
  padding: 10px 20px;
}
.nav-menu li a {
  text-decoration: none;
  color: #00aaff;
  font-weight: 600;
  display: block;
}
.nav-menu li a:hover {
  background-color: #f0faff;
  color: #007acc;
  border-radius: 6px;
}
.nav-menu li a.active {
  color: #007acc;
  font-weight: 700;
}

/* Wallet Section */
.wallet-section {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wallet-section h2 {
  text-align: center;
  color: #00aaff;
  margin-bottom: 20px;
}

/* Balance Box */
.wallet-balance-box {
  background: #e0f7ff;
  border-left: 6px solid #00aaff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  animation: pulse 1.5s infinite;
}
.wallet-balance-box h3 {
  margin-bottom: 8px;
  color: #0077cc;
}
.wallet-amount {
  font-size: 28px;
  font-weight: bold;
  color: #007acc;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.01); }
  100% { transform: scale(1); }
}

/* Fund Button */
.fund-wallet-btn {
  display: block;
  margin: 0 auto 30px;
  padding: 12px 20px;
  background: #00aaff;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,170,255,0.3);
}
.fund-wallet-btn:hover {
  background: #0077cc;
  transform: scale(1.03);
}

/* Withdraw Form */
.withdraw-form {
  margin-bottom: 40px;
}
.withdraw-form h3 {
  color: #00aaff;
  text-align: center;
  margin-bottom: 15px;
}

label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.withdraw-form button {
  width: 100%;
  background: #00aaff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.withdraw-form button:hover {
  background: #0077cc;
  transform: scale(1.02);
}

/* Withdraw Message */
#withdrawMessage {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}

/* History */
.history-heading {
  color: #00aaff;
  text-align: center;
  margin-bottom: 15px;
}

.wallet-history {
  width: 100%;
  border-collapse: collapse;
}
.wallet-history th,
.wallet-history td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 14px;
}
.wallet-history th {
  background: #00aaff;
  color: white;
}






.testimonials {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #00aaff;
  margin-bottom: 30px;
}

.testimonial-card {
  background: white;
  max-width: 500px;
  margin: 20px auto;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  animation: fadeIn 1s ease;
  border-bottom: 5px solid #00aaff;
 border-top: 5px solid #00aaff;

}

.testimonial-card blockquote {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card blockquote::before {
  content: "“";
  font-size: 40px;
  color: #00aaff;
  position: absolute;
  left: -10px;
  top: -20px;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  }

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #00aaff;

}

.user p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.why {
  width: 300px;
  height: 200px;
  background: linear-gradient(135deg, #00aaff, #0066cc);
  border-radius: 12px;
  color: white;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

/* HOVER EFFECTS */
.why:hover {
  transform: translateY(-10px); /* Slight lift on hover */
  box-shadow: 0 15px 30px rgba(0, 170, 255, 0.3); /* Stronger shadow */
  background: linear-gradient(135deg, #0066cc, #00aaff); /* Gradient reverse */
}

/* PULSE ANIMATION (OPTIONAL) */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.why.pulse {
  animation: pulse 2s infinite;
}

/* GLOW EFFECT (OPTIONAL) */
.why.glow:hover {
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.7);
}

<h2 style="color: #00aaff; animation: fadeInUp 1s ease forwards;">
  <i class="fas fa-user-tie"></i> How It Works for Earners
</h2>


