:root {
  --brand-green: #198754;
  --brand-gold: #f9a825;
  --brand-black: #212529;
  --light-gray: #f9fafb;
  --soft-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  --rounded: 16px;
}

body {
  background-color: var(--light-gray);
  font-family: 'Segoe UI', sans-serif;
  color: var(--brand-black);
  margin: 0;
  padding: 0;
}

.hero {
  padding: 60px 20px;
  text-align: center;
}
/* Base modal color styles */
.modal-content {
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  border-color: var(--bs-border-color);
}

/* Light theme overrides (Bootstrap default) */
body:not(.dark-mode) .modal-content {
  background-color: #ffffff;
  color: #212529;
  border-color: #dee2e6;
}

/* Dark theme overrides */
body.dark-mode .modal-content {
  background-color: #1e1e1e;
  color: #f8f9fa;
  border-color: #333;
}

/* Optional: Make buttons adapt */
body.dark-mode .btn-outline-success {
  color: #90ee90;
  border-color: #90ee90;
}

body.dark-mode .btn-outline-success:hover {
  background-color: #90ee90;
  color: #000;
}

/* Optional: Make input areas look better in dark mode */
body.dark-mode .form-control {
  background-color: #2b2b2b;
  color: #f1f1f1;
  border-color: #444;
}

.hero h1 {
  color: var(--brand-green);
}

.btn-main {
  background-color: var(--brand-green);
  border: none;
  color: white;
}

.btn-main:hover {
  background-color: #157347;
}

.btn-outline-secondary:hover {
  background-color: #dee2e6;
}

.features {
  background-color: white;
  color: #555;
  border-radius: var(--rounded);
  padding: 30px 20px;
  margin-top: 30px;
  box-shadow: var(--soft-shadow);
}

.testimonials {
  background-color: #e3f9f1;
  border-radius: var(--rounded);
  padding: 30px;
  margin-top: 40px;
  color: var(--brand-black);
}

.withdraw-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--brand-green);
}

.card-header {
  background-color: var(--brand-green);
  color: white;
}

.card-footer a {
  color: var(--brand-green);
  text-decoration: none;
}

.card-footer a:hover {
  text-decoration: underline;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .withdraw-amount {
    font-size: 2rem;
  }
  .features,
  .testimonials {
    padding: 20px;
  }
}:root {
  --primary-green: #1ABC9C;
  --highlight-gold: #F1C40F;
  --text-dark: #2C3E50;
  --bg-light: #F9F9F9;
  --hover-green: #16A085;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

.hero {
  padding: 60px 20px;
  background-color: white;
  border-radius: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.hero h1 {
  color: var(--primary-green);
}

.btn-main {
  background-color: var(--primary-green);
  border: none;
  color: white;
  transition: background-color 0.3s ease-in-out;
}

.btn-main:hover {
  background-color: var(--hover-green);
}

.withdraw-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--highlight-gold);
}

.features {
  background: #fff;
  color: var(--text-dark);
  border-radius: 16px;
  padding: 30px 20px;
  margin-top: 30px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.testimonials {
  background: #e3f9f1;
  border-radius: 16px;
  padding: 30px;
  margin-top: 40px;
  color: var(--text-dark);
}

.carousel-item p {
  margin-bottom: 0.3rem;
}
.navbar {
  background-color: #2C3E50;
}
.navbar-brand {
  font-size: 1.5rem;
  color: var(--highlight-gold) !important;
}
.navbar-nav .nav-link {
  color: #fff !important;
}
.navbar-nav .nav-link:hover {
  color: var(--highlight-gold) !important;
}
footer {
  background-color: #2C3E50;
}
body {
  background: url('https://images.unsplash.com/photo-1557683304-673a23048d34') no-repeat center center fixed;
  background-size: cover;
  backdrop-filter: brightness(0.95);
}

.card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
}
/* Background */
body {
    background: url('../assets/bg-login.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* Login Card */
.login-card {
    position: relative;
    z-index: 1;
    margin-top: 6rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    padding: 2rem;
}

/* Buttons and Inputs */
.form-control {
    border-radius: 12px;
}
.btn-success {
    border-radius: 12px;
}
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body > .container {
    flex: 1;
}
:root {
  --primary-green: #198754;
  --hover-green: #157347;
  --accent-yellow: #ffc107;
  --light-bg: #f9fafb;
  --text-dark: #212529;
  --white: #ffffff;
}

body {
  background-color: var(--light-bg);
  color: var(--text-dark);
  font-family: 'Segoe UI', sans-serif;
}

.btn-main {
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
}

.btn-main:hover {
  background-color: var(--hover-green);
}

.text-accent {
  color: var(--accent-yellow);
}

.card {
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.navbar {
  background-color: var(--primary-green);
}
.admin-login {
    background: #f4f8fb;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.login-container h2 {
    margin-bottom: 1.5rem;
    color: #0d6efd;
    text-align: center;
}

.login-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.login-container input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.login-container button {
    width: 100%;
    background-color: #0d6efd;
    color: white;
    padding: 0.6rem;
    border: none;
    border-radius: 6px

}
body {
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.hero {
  background: linear-gradient(to right, #e0ffe6, #ffffff);
  border-radius: 10px;
}

.features,
.calculator,
.testimonials,
.faq,
.referral {
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.btn-success {
  background-color: #28a745;
  border: none;
  transition: 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
}

.navbar {
  background-color: #1c1c1c !important;
}

.nav-link {
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffc107 !important;
}

footer {
  background-color: #121212;
}

footer a {
  text-decoration: none;
}

.carousel-inner img {
  border: 4px solid #28a745;
  padding: 3px;
}

.accordion-button {
  background-color: #f0fff3;
  color: #000;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: #d1ffe0;
  color: #28a745;
}

#withdrawAmount {
  font-size: 2rem;
  font-weight: 600;
  color: #28a745;
}
footer a:hover {
  color: #ffc107;
}
/* 🌐 Base Styles */
body {
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

/* 🌟 Navbar */
.navbar {
  background-color: #1c1c1c !important;
}

.nav-link {
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffc107 !important;
}

/* 🎯 Buttons */
.btn-success {
  background-color: #28a745;
  border: none;
  transition: 0.3s ease-in-out;
}

.btn-success:hover {
  background-color: #218838;
}

.btn-outline-secondary:hover {
  background-color: #e2e6ea;
  color: #000;
}

/* 🌠 Hero Section */
.hero {
  background: linear-gradient(135deg, #e0ffe6, #ffffff);
  border-radius: 10px;
  padding: 60px 20px;
}

/* 📋 Features */
.features,
.calculator,
.testimonials,
.faq,
.referral {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* 📉 Calculator Range */
input[type="range"] {
  accent-color: #28a745;
}

/* 💬 Testimonials */
.carousel-inner img {
  border: 4px solid #28a745;
  padding: 3px;
}

/* ❓ FAQs */
.accordion-button {
  background-color: #f0fff3;
  color: #000;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: #d1ffe0;
  color: #28a745;
}

.accordion-item {
  border: none;
}

/* 📢 Referral Section */
.referral {
  background-color: #ffe58a;
  color: #000;
}

/* 🦶 Footer */
footer {
  background-color: #121212;
}

footer a {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
}

footer i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

footer i:hover {
  transform: scale(1.2);
  color: #ffc107;
}

/* 📱 Responsive Tweaks */
@media (max-width: 576px) {
  .calculator .w-75,
  .faq .w-75 {
    width: 100% !important;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
.referral .btn-dark {
  background-color: #212529;
  border: none;
  color: #fff;
}
.referral .btn-dark:hover {
  background-color: #343a40;
}
footer i:hover {
  color: #ffc107;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.navbar-nav .nav-link {
  transition: color 0.3s ease;
}
