/* =========================================================
   1) GLOBAL / BASE
   ========================================================= */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
  touch-action: pan-y; /* allows only vertical scroll */
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #f2e9fa; /* light violet background */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9); /* purple gradient */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

/* Dark mode support */
body.dark-mode ::-webkit-scrollbar-track {
  background: #1e1e2f;
}

body.dark-mode ::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

/* =========================================================
   1) GLOBAL / BASE
   ========================================================= */


/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 font-family: 'Poppins' , sans-serif;
}

body {
  background: #f9f9fc;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* =========================================================
   2) HEADER / NAVIGATION
   ========================================================= */

header {
  width: 100%;
  padding: 15px 40px;
  background: linear-gradient(135deg, #0a0a1a 40%, #1a0033 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

header.scrolled {
  background: linear-gradient(135deg, #0a0a1a 40%, #1a0033 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled .menu a {
  color: #ffffff; /* make nav links dark for visibility */
}

header.scrolled .menu a:hover {
  color: #cf68ff; /* make nav links dark for visibility */
}

header.scrolled .logo h2 {
  color: #4c2dff;
}

.logo h2 {
  color: #a64ce3;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}

.logo h2:hover {
  color: #3a44fe;
}

/* Nav Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 28px;
}

.menu li {
  position: relative;
}

.menu a {
  color: #fff;
  padding: 10px 5px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #6A11CB, #2575FC);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: #b168f9;
}

/* Login Button */
.login-btn a {
  background: linear-gradient(90deg, #6A11CB, #2575FC);
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.login-btn a:hover {
  background: linear-gradient(90deg, #110a96, #4d0276);
  transform: scale(1.08);
  color: white;
}

.dropdown{
    position: relative;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  border-radius: 12px;
  overflow: hidden;
  /* Glass */
  background: rgba(26, 0, 51, 0.75);
  backdrop-filter: blur(14px);
  /* Glow border */
  border: 1px solid rgba(156, 64, 248, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
              0 0 20px rgba(156, 64, 248, 0.25);

  animation: dropdownFade 0.35s ease forwards;
  z-index: 999;
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.dropdown-menu li a {
  padding: 16px 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 0%;
  width: 3px;
  background: linear-gradient(90deg, #6A11CB, #2575FC);
  border-radius: 4px;
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgba(156, 64, 248, 0.15);
  color: #a95af8;
  padding-left: 28px;
}

.dropdown-menu li a:hover::before {
  height: 60%;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown animation */
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.4s ease;
}

/* Animate to X when active */
.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(6px, -6px);
}

/* =========================================================
   5) RESPONSIVE NAV (MOBILE ≤ 900px)
   ========================================================= */

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

  nav {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    text-align: center;
    animation: slideDown 0.4s ease forwards;
  }

  nav.active {
    display: flex;
    padding: 20px;
  }

  .menu {
    flex-direction: column;
    gap: 20px;
  }

  .menu li {
    width: 100%;
  }

  .menu li a {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .login-btn a {
    display: block;
    width: 80%;
    margin: 16px auto;
  }
}

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

/* =========================================================
   6) UTILITY EFFECT CLASSES
   ========================================================= */

.fade-in-right { animation: fadeRight 0.8s ease forwards; }
.fade-in-left  { animation: fadeLeft  0.8s ease forwards; }
.fade-out      { animation: fadeOut   0.4s ease forwards; }

/* =========================================================
   7) ANIMATIONS (single definitions, no duplicates)
   ========================================================= */

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(156, 64, 248, 0.5)); }
  50%      { filter: drop-shadow(0 0 40px rgba(144, 64, 248, 0.8)); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-15px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes moveDots {
  from { background-position: 0 0; }
  to   { background-position: 100px 100px; }
}

@keyframes auroraShift {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.9;
    background-position:
      15% 30%,
      85% 20%,
      60% 80%;
  }
  100% {
    transform: translateY(-2%) translateX(1%) scale(1.02);
    opacity: 1;
    background-position:
      25% 40%,
      75% 25%,
      55% 70%;
  }
}

@keyframes dotsDrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(100px, 100px, 0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0a0a1a 40%, #1a0033 100%);
  color: #fff;
  padding: 60px 25px 20px;
  line-height: 1.6;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #6A11CB, #2575FC);
  display: block;
  margin-top: 8px;
}

.footer-col ul li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #ddd;

    /* Ensure icon stays left and text shrinks instead of overflowing */
    flex-wrap: nowrap;         /* no wrapping to next line */
    overflow-wrap: anywhere;   /* allow breaking within long words if necessary */
}

.footer-col ul li i {
    margin-right: 10px;       /* gap between icon and text */
    flex-shrink: 0;           /* icon never shrinks */
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;

    /* allow long emails to break within container */
    overflow-wrap: anywhere;
    word-break: break-word;
}


.footer-col ul li a:hover {
  color: #8a12f3;
}

/* Logo & Social */
.footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;              /* circle size */
  height: 40px;
  border: solid 1px;
  border-radius: 50%;       /* makes it a circle */
  background: #22222200;         /* default circle background */
  color: #bbb;              /* icon color */
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #7712f3;      /* circle background on hover */
  color: #fff;              /* icon color on hover */
  transform: scale(1.1);    /* slight zoom effect */
  box-shadow: 0 4px 12px rgba(119, 18, 243, 0.4);
}

/* ================= LEGAL SECTION ================= */
.footer-legal {
  color: #ccc;
  padding: 10px 5px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  line-height: 1.7;
}

.footer-legal h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #bb8bf6;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-legal h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #6A11CB, #2575FC);
  margin-top: 6px;
  border-radius: 2px;
}

.footer-legal p {
  margin-bottom: 18px;
  color: #bbb;
  text-align: justify;
}

.footer-legal p:last-child {
  margin-bottom: 0; /* no gap after last paragraph */
}

/* Responsive */
@media (max-width: 768px) {
  .footer-legal {
    font-size: 13px;
    padding: 30px 15px;
  }
  .footer-legal h3 {
    font-size: 15px;
  }
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: #888;
}

.footer-bottom .footer-social {
  gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 500px) {
  .footer-logo {
    margin-left: 0;
    margin-right: auto; /* aligns left */
    display: block;      /* ensure margin works */
    text-align: left;    /* optional if needed inside container */
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 90px;   /* moved up so it doesn’t overlap */
  right: 35px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #7712f3, #5a0dcf);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #5a0dcf, #3a0aa3);
  transform: scale(1.1);
}

/* Floating Dark Mode Toggle */
.dark-toggle {
  position: fixed;
  left: 20px;
  bottom: 20px;   /* stays at bottom */
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1200;
}

.dark-toggle:hover {
  background: #333;
  transform: scale(1.1);
}


/* Responsive adjustments already inherit from previous CSS */
body.dark-mode {
  background: #0f0f1a; /* dark mode support */
  color: #f1f1f1;
}

/* Header */
body.dark-mode header {
  background: linear-gradient(135deg, #111111 40%, #1a0033 100%);
}

/* Dark mode header after scroll */
body.dark-mode header.scrolled {
  background: linear-gradient(135deg, #0d0d0d 40%, #1a0033 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

body.dark-mode .menu a {
  color: #ddd;
}

body.dark-mode .menu a:hover {
  color: #c57aff;
}

body.dark-mode .login-btn a {
  background: linear-gradient(90deg, #150c55, #220944);
}

/* Dropdown */
body.dark-mode .dropdown-menu {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(156, 64, 248, 0.4);
}


/* ================= DARK MODE FOOTER ================= */
.dark-mode .footer {
  background: linear-gradient(135deg, #000000 40%, #0d0d2e 100%);
  color: #e0e0e0;
}

.dark-mode .footer-col h4 {
  color: #fff;
}

.dark-mode .footer-col h4::after {
  background: linear-gradient(90deg, #bb86fc, #3700b3);
}

.dark-mode .footer-col ul li {
  color: #ccc;
}

.dark-mode .footer-col ul li i {
  color: #bb86fc; /* icons match dark theme accent */
}

.dark-mode .footer-col ul li a {
  color: #aaa;
}

.dark-mode .footer-col ul li a:hover {
  color: #bb86fc;
}

/* Social icons */
.dark-mode .footer-social a {
  border-color: rgba(255,255,255,0.2);
  color: #aaa;
}

.dark-mode .footer-social a:hover {
  background: #bb86fc;
  color: #fff;
  box-shadow: 0 4px 12px rgba(187,134,252,0.4);
}

/* Legal section */
.dark-mode .footer-legal {
  color: #bbb;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.dark-mode .footer-legal h3 {
  color: #bb86fc;
}

.dark-mode .footer-legal h3::after {
  background: linear-gradient(90deg, #bb86fc, #3700b3);
}

.dark-mode .footer-legal p {
  color: #aaa;
}

/* Footer bottom */
.dark-mode .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.dark-mode .footer-bottom p {
  color: #aaa;
}


.logo img {
    height: 50px;           
    width: auto;
    display: block;
    border-radius: 0 !important; /* prevent rounding */
}


@media (max-width: 768px) {
    .logo img {
        height: 40px;       /* smaller logo for mobile */
    }
}

/*___________________________________________________________________________________________*/


/* ============================
   FUND MANAGEMENT SECTION
=============================*/

.container1 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
    margin-top: 70px;
}

.fund-management-section {
    max-width: 1200px;
    width: 100%;
   /* background: #ffffff; */
    padding: 40px;
   /* border-radius: 14px;
    box-shadow: 0 4px 25px rgba(120, 22, 220, 0.15);
    border-left: 6px solid #7a2cff;
    font-family: "Poppins", sans-serif; */
}

/* ============================
   TITLES
=============================*/

.fund-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
      background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    animation: fadeSlideUp 0.8s ease forwards
}

.fund-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
          background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    animation: fadeSlideUp 1s ease forwards;
}

/* ============================
   PARAGRAPHS
=============================*/

.fund-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 22px;
    font-weight: 400;
    text-align: justify;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

.fund-paragraph:last-child {
    margin-bottom: 0;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);

    }
    to {
        opacity: 1;
        transform: translateY(0);

    }
}

/* ============================
   HOVER + ANIMATIONS
=============================

.fund-management-section:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
    box-shadow: 0 6px 30px rgba(120, 22, 220, 0.25);
} */

/* ============================
   DARK MODE (If You Want Later)
=============================*/

body.dark-mode .container1 {
    background: #0a0118;
}

body.dark-mode .fund-management-section {
   /* background: #120026; */
    color: #ddd;
   /* box-shadow: 0 0 25px rgba(173, 98, 255, 0.3);
    border-left-color: #a96bff; */
}

body.dark-mode .fund-paragraph {
    color: #ccc;
}

body.dark-mode .fund-title {
    color: #d9b5ff;
}

body.dark-mode .fund-subtitle {
    color: #b880ff;
}

/* ============================================
   RESPONSIVE DESIGN
   Works on all devices (320px → 4K screens)
============================================ */

/* ---------- Large Desktop (1440px+) ---------- */
@media (min-width: 1440px) {
    .fund-title {
        font-size: 46px;
    }
    .fund-subtitle {
        font-size: 20px;
    }
    .fund-paragraph {
        font-size: 18px;
        line-height: 1.9;
    }
}

/* ---------- Laptops (1024px – 1439px) ---------- */
@media (max-width: 1439px) {
    .fund-management-section {
        padding: 35px;
    }
    .fund-title {
        font-size: 38px;
    }
}

/* ---------- Tablets (768px – 1023px) ---------- */
@media (max-width: 1023px) {

    .container1 {
        padding: 30px 18px;
    }

    .fund-management-section {
        padding: 30px;
    }

    .fund-title {
        font-size: 34px;
    }

    .fund-subtitle {
        font-size: 17px;
    }

    .fund-paragraph {
        font-size: 15.5px;
        line-height: 1.7;
    }
}

/* ---------- Large Mobile (480px – 767px) ---------- */
@media (max-width: 767px) {

    .container1 {
        margin-top: 40px;
        padding: 20px 15px;
    }

    .fund-management-section {
        padding: 25px;
    }

    .fund-title {
      margin-top: 30px;
        font-size: 30px;
        line-height: 1.2;
    }

    .fund-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .fund-paragraph {
        font-size: 15px;
        text-align: justify;
    }
}

/* ---------- Small Mobile (up to 479px) ---------- */
@media (max-width: 479px) {

    .container1 {
        padding: 20px 12px;
        margin-top: 30px;
    }

    .fund-management-section {
        padding: 18px;
    }

    .fund-title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .fund-subtitle {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .fund-paragraph {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 18px;
    }
}

/* ---------- Ultra Small Devices (Fold phones, 320px screens) ---------- */
@media (max-width: 360px) {
    .fund-title {
        font-size: 24px;
    }
    .fund-subtitle {
        font-size: 14px;
    }
    .fund-paragraph {
        font-size: 13.5px;
    }
}


/* =============================
      GROWTH PLAN SECTION
==============================*/

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.growth-plan-section {
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    padding: 40px;
    margin-bottom: 10px;
    border-radius: 14px;
    box-shadow: 0 4px 25px rgba(120, 22, 220, 0.15);
    border-left: 6px solid #7d33ff;
    font-family: "Poppins", sans-serif;
}

/* TITLES */
.growth-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
              background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.growth-sub {
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
              background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.growth-note {
    font-size: 15px;
    color: #3f3f3f;
    margin-bottom: 15px;
    font-style: italic;
}

/* TABLES */
.growth-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.growth-table thead {
    background: linear-gradient(90deg, #8b52f5, #3591f9);
    color: white;
}

.growth-table th, 
.growth-table td {
    padding: 14px 18px;
    text-align: center;
    font-size: 15px;
}

.growth-table tbody tr:nth-child(even) {
    background: #f5ebff;
}

.growth-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.growth-table tbody tr:hover {
    background: #ead8ff;
    transition: 0.2s;
}

/* DARK MODE SUPPORT */
body.dark-mode .growth-plan-section {
    background: #0a0118;
    border-left-color: #2d1747;
    color: #ddd;
}

body.dark-mode .growth-table thead {
    background: linear-gradient(90deg, #661eed85, #0b3e7979);
}

body.dark-mode .growth-table tbody tr:nth-child(even) {
    background: #2c0a4d7a;
}

body.dark-mode .growth-table tbody tr:nth-child(odd) {
    background: #1c012f71;
}

body.dark-mode .growth-table tbody tr:hover {
    background: #39156684;
}

body.dark-mode .growth-note {
  color: #dad6d6;
}

/* =============================
      RESPONSIVE DESIGN
==============================*/

/* Mobile Devices – up to 600px */
@media (max-width: 600px) {

    .growth-plan-section {
        padding: 25px 15px;
        margin: 0 10px 20px 10px;
    }

    .growth-heading {
        font-size: 28px;
        line-height: 1.2;
    }

    .growth-sub {
        font-size: 18px;
    }

    .growth-note {
        font-size: 13px;
    }

    /* Table Responsive Scroll */
    .growth-table-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .growth-table {
        width: 700px; /* minimum width to keep table readable */
    }

    .growth-table th,
    .growth-table td {
        padding: 10px;
        font-size: 13px;
    }
}

/* Tablets – 600px to 900px */
@media (min-width: 600px) and (max-width: 900px) {

    .growth-plan-section {
        padding: 30px 20px;
    }

    .growth-heading {
        font-size: 34px;
    }

    .growth-sub {
        font-size: 20px;
    }

    .growth-table th,
    .growth-table td {
        padding: 12px;
        font-size: 14px;
    }
}

/* Large Screens – 1200px+ */
@media (min-width: 1200px) {
    .growth-plan-section {
        padding: 50px;
    }

    .growth-heading {
        font-size: 44px;
    }

    .growth-sub {
        font-size: 24px;
    }

    .growth-table th,
    .growth-table td {
        font-size: 16px;
        padding: 16px 20px;
    }
}

/* Hide scrollbar for Chrome, Safari, Edge */
.growth-table-wrapper::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
.growth-table-wrapper {
    scrollbar-width: none;
}

/* Hide scrollbar for Internet Explorer / old Edge */
.growth-table-wrapper {
    -ms-overflow-style: none;
}


/* ================================
   INCOME PLAN – PURPLE SLIDER (Pricing Card Style)
================================ */

.income-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
                  background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    
}

@media (max-width: 600px) {
  .income-heading {
     font-size: 30px;
     margin-bottom: 1px;
  }
}


/* Wrapper */
.slides-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 25px 20px;
}

/* Scroll Area */
.slides-container {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 20px 10px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.slides-container::-webkit-scrollbar {
    display: none;
}

/* Card / Slide */
.slide {
    min-width: 300px;
    max-width: 400px;
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    scroll-snap-align: start;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid #e0e0e0;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0; /* For animation */
    transform: translateY(50px);
}

/* Card Hover */
.slide:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #7725fc;
    box-shadow: 0 12px 35px rgba(119,37,252,0.2);
}

/* Show animation when visible */
.slide.show {
    opacity: 1;
    transform: translateY(0);
}

/* Month heading */
.slide h3 {
    font-size: 22px;
    font-weight: 700;
    color: #7025fc;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

/* Optional underline for heading */
.slide h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #6a08d2, #2575fc);
    border-radius: 2px;
}

/* List styling */
.slide ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slide ul li {
    font-size: 14px;
    padding: 10px 12px;
    margin: 6px 0;
    color: #726683;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #fafafa;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* Add ✔ symbol before each feature 
.slide ul li::before {
    content: "✔";
    color: #5725fc;
    font-weight: bold;
    flex-shrink: 0;
} */

/* Hover effect for features */
.slide ul li:hover {
    transform: translateY(-4px);
    border-color: #8625fc;
    background: #fff;
    box-shadow: 0 4px 12px rgba(37,117,252,0.15);
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #7725fc;
    border: none;
    color: white;
    font-size: 26px;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(119,37,252,0.4);
    transition: 0.2s;
}

.nav-arrow:hover {
    background: #5f0fd4;
}

.left-arrow {
    left: 5px;
}

.right-arrow {
    right: 5px;
}

/* Dots */
.dots {
    text-align: center;
    margin-top: 15px;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #c5a8ff;
    border-radius: 50%;
    margin: 5px;
    transition: 0.3s;
}

.dots .active {
    width: 12px;
    height: 12px;
    background: #7725fc;
}

/* DARK MODE */
body.dark-mode .slide {
    background: #1a003300;
    color: #ddd;
    border-color: #b077ff;
}

body.dark-mode .slide h3 {
    color: #b077ff;
}

body.dark-mode .slide ul li {
    background: #2c0a4d5f;
    color: #d8b8ff;
}

body.dark-mode .slide ul li::before {
    color: #b077ff;
}

body.dark-mode .nav-arrow {
    background: #b077ff;
}

body.dark-mode .dots span {
    background: #9d65ff;
}

body.dark-mode .dots .active {
    background: #b077ff;
}

/* ================= PRO ACCOUNT SUMMARY ================= */
.pro-account-summary {
    max-width: 1200px;
    margin: 50px auto;
    font-family: 'Poppins', sans-serif;

}

.summary-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1); /* Glass background */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 2px solid #6a08d2;
    z-index: 1;
}

/* Hover effect */
.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(127, 37, 252, 0.4);
}

/* Header */
.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.summary-header h2 {
    font-size: 35px;
    font-weight: 700;
                  background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Dark color for light theme */
}

.account-amount {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Darker purple accent */

    padding: 5px 12px;
    border-radius: 12px;
    border: 1px solid #8b52f5;
}

/* Subtitle */
.summary-sub {
    font-size: 18px;
    font-weight: 500;
    color: #1e1e1e; /* Dark text */
    margin-bottom: 25px;
}

/* Points list */
.summary-points {
    list-style: none;
    padding: 0;
}

.summary-points li {
    font-size: 16px;
    color: #333333cc; /* Dark text for light theme */
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Icon */
.summary-points li i {
    font-size: 18px;
    background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Darker accent */
    flex-shrink: 0;
    margin-top: 2px;
}

/* ================= DARK MODE ================= */
body.dark-mode .summary-card {
    background: rgba(30, 20, 60, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

body.dark-mode .summary-card::before {
    background: linear-gradient(135deg, #b074ff, #6a08d2, #2575fc, #ff6bcf);
    filter: blur(20px);
}

body.dark-mode .summary-header h2 {
    color: #ffffff;
}

body.dark-mode .account-amount {

    border: 1px solid #6a08d2,;
    color: #ff9ef4;
}

body.dark-mode .summary-sub {
    color: #d0b8ff;
}

body.dark-mode .summary-points li {
    color: #ffffffcc;
}

body.dark-mode .summary-points li i {
    color: #ff9ef4;
}

/* ============================
   RESPONSIVE STYLES
============================ */

/* Large Tablets & small desktops (992px and below) */
@media (max-width: 992px) {
    .summary-card {
        padding: 25px 30px;
    }
    .summary-header h2 {
        font-size: 30px;
    }
    .account-amount {
        font-size: 18px;
        padding: 4px 10px;
    }
    .summary-sub {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .summary-points li {
        font-size: 15px;
    }
    .summary-points li i {
        font-size: 16px;
    }
}

/* Tablets / Large Mobile (768px and below) */
@media (max-width: 768px) {
  .pro-account-summary{
    padding: 5px 15px;
  }
    .summary-card {
        padding: 20px 25px;
    }
    .summary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .summary-header h2 {
        font-size: 28px;
    }
    .account-amount {
        font-size: 16px;
        padding: 3px 8px;
    }
    .summary-sub {
        font-size: 15px;
    }
    .summary-points li {
        font-size: 14px;
    }
    .summary-points li i {
        font-size: 15px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .summary-card {
        padding: 15px 20px;
    }
    .summary-header h2 {
        font-size: 24px;
    }
    .account-amount {
        font-size: 14px;
        padding: 2px 6px;
    }
    .summary-sub {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .summary-points li {
        font-size: 13px;
        gap: 8px;
    }
    .summary-points li i {
        font-size: 14px;
    }
}

/* ============================
   RESPONSIVE POINTS LIST IMPROVEMENT
============================ */

/* Medium screens (768px and below) */
@media (max-width: 768px) {
    .summary-points li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        flex-wrap: wrap; /* Allows text to wrap under the icon */
    }
    .summary-points li i {
        flex-shrink: 0;
        margin-top: 4px; /* Adjusts vertical alignment for wrapped text */
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .summary-points li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        flex-wrap: wrap;
    }
    .summary-points li i {
        flex-shrink: 0;
        margin-top: 3px;
    }
}

/* ============================
   RESPONSIVE ACCOUNT AMOUNT
============================ */

/* Medium screens (768px and below) */
@media (max-width: 768px) {
    .summary-header {
        flex-direction: column; /* Stack header items vertically */
        align-items: center;    /* Center all items */
        gap: 10px;              /* Space between heading and account amount */
    }

    .account-amount {
        margin: 0 auto; /* Center horizontally */
    }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
    .summary-header h2 {
        font-size: 28px; /* Slightly smaller heading */
        text-align: center;
    }

    .account-amount {
        font-size: 18px; /* Adjust size if needed */
    }
}


/* ------------------------------
   CONTAINER & WRAPPER
------------------------------ */
.legal-wrapper {
  max-width: 1200px;
  margin: 50px auto;
  font-family: 'Poppins', sans-serif;
}

.legal-container {
  /*background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px; */
  padding: 20px;
  /*border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 35px rgba(0,0,0,0.25); */
  animation: fadeIn 0.8s ease;
}

/* ------------------------------
   HEADINGS
------------------------------ */
.legal-container h2 {
  font-size: 35px;
  font-weight: 700;
      background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.legal-container h3 {
  font-size: 18px;
  font-weight: 500;
      background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  opacity: 0.9;
  text-align: center;
}

/* ------------------------------
   ACCORDION ITEM
------------------------------ */
.legal-item {
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 8px;
  transition: all 0.3s ease;
}

.legal-item:hover {
  border-color: #5f0fd4;
  transition: 0.3s ease;
}

.legal-item.active {
  border-color: #5f0fd4;
  box-shadow: 0 4px 18px rgba(95,15,212,0.15);
  border-radius: 10px;
  padding: 8px 15px 12px 15px;
  background: rgba(95,15,212,0.05);
}

/* ------------------------------
   QUESTION BUTTON
------------------------------ */
.legal-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 600;
  color: #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease;
}

.legal-question:hover {
  color: #5f0fd4;
  transform: translateX(3px);
}

.legal-question i {
  background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  transition: color 0.3s;
}

.legal-item.active .legal-question i {
  background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ICON ROTATION */
.legal-icon {
  font-weight: bold;
  font-size: 20px;
  background: linear-gradient(90deg, #8b52f5, #3591f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.legal-item.active .legal-icon {
  transform: rotate(45deg);
}

/* ------------------------------
   ANSWER BODY (WITH ANIMATION)
------------------------------ */
.legal-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 25px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.3s ease;
  text-align: justify;
}

.legal-item.active .legal-answer {
  max-height: 600px;
  padding: 10px 0 15px 25px;
}

.legal-answer ul {
  margin-left: 20px;
  list-style: disc;
  padding-top: 8px;
}

/* Divider Glow */
.legal-item.active {
  border-left: 3px solid #6a0ff7;
  padding-left: 15px;
}

/* ------------------------------
   DARK MODE UPGRADE
------------------------------ */
body.dark-mode .legal-container {
  background: rgba(10,8,20,0.65);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

body.dark-mode .legal-container h2,
body.dark-mode .legal-container h3 {
  color: #fff;
}

body.dark-mode .legal-question {
  color: #fff;
}

body.dark-mode .legal-question:hover {
  color: #aa81e8;
}

body.dark-mode .legal-question i,
body.dark-mode .legal-icon {
  color: #ff9ef4;
}

body.dark-mode .legal-item.active {
  background: rgba(216, 158, 255, 0.05);
  border-color: #d29eff;
}

body.dark-mode .legal-answer {
  color: #e0d4ff;
}

/* Neon Border */
body.dark-mode .legal-item.active {
  box-shadow: 0 0 12px rgba(255,158,244,0.25);
}

/* ------------------------------
   ANIMATION
------------------------------ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* ==============================
   RESPONSIVE LEGAL SECTION
=============================== */

/* Medium screens (tablet) */
@media (max-width: 992px) {
  .legal-wrapper {
    margin: 30px 20px;
    padding: 0 10px;
  }

  .legal-container {
    padding: 15px 20px;
  }

  .legal-container h2 {
    font-size: 28px;
  }

  .legal-container h3 {
    font-size: 16px;
  }

  .legal-question {
    font-size: 16px;
    padding: 15px 0;
  }

  .legal-answer {
    font-size: 14px;
    padding-left: 20px;
  }
}

/* Small screens (mobile) */
@media (max-width: 576px) {
  .legal-wrapper {
    margin: 20px 15px;
  }

  .legal-container {
    padding: 12px 15px;
  }

  .legal-container h2 {
    font-size: 24px;
  }

  .legal-container h3 {
    font-size: 14px;
  }

  .legal-item {
    padding-bottom: 5px;
  }

  .legal-question {
    font-size: 15px;
    padding: 12px 0;
  }

  .legal-answer {
    font-size: 13px;
    padding-left: 15px;
  }

  .legal-answer ul {
    margin-left: 15px;
  }

  .legal-icon, .legal-question i {
    font-size: 18px;
  }
}

/* Extra small screens (very small phones) */
@media (max-width: 375px) {
  .legal-container h2 {
    font-size: 20px;
  }

  .legal-container h3 {
    font-size: 13px;
  }

  .legal-question {
    font-size: 14px;
  }

  .legal-answer {
    font-size: 12px;
    padding-left: 12px;
  }

  .legal-answer ul {
    margin-left: 12px;
  }
}
