
    :root {
      --navy: #0a1628;
      --blue: #1a3a6e;
      --gold: #f5c518;
      --orange: #e8631a;
      --green: #1a7a3e;
      --light: #f0f4ff;
      --white: #ffffff;
      /* naye add karo */
  --navy-light: #0f1e35;
  --border:     rgba(255,255,255,0.07);
  --border-gold:rgba(245,197,24,0.25);
  --text-dim:   rgba(255,255,255,0.6);
  --text-faint: rgba(255,255,255,0.3);
  --green:      #2ecc71;
  --green-dim:  rgba(46,204,113,0.12);
  --red:        #e74c3c;
  --red-dim:    rgba(231,76,60,0.12);
  --gold-dim:   rgba(245,197,24,0.12);
  --sidebar-w:  240px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ===== NAVBAR ===== */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(10, 22, 40, 0.95);
      backdrop-filter: blur(10px);
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(245, 197, 24, 0.2);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .nav-logo-icon {
      width: 42px;
      height: 42px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 900;
      color: var(--navy);
    }

    .nav-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: var(--white);
      line-height: 1.1;
    }

    .nav-logo-text span {
      display: block;
      font-size: 10px;
      font-family: 'DM Sans', sans-serif;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-btn {
      background: var(--gold);
      color: var(--navy);
      padding: 10px 22px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .nav-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(245, 197, 24, 0.4);
    }
    /* Hidden by default */
.login-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Hidden */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

/* :target — jab #login-popup url mein aaye */
.login-overlay:target {
  opacity: 1;        /* ✅ visible ho jao */
  visibility: visible;
}

.login-box {
  background: #0f1e35;
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s;
}

.login-overlay:target .login-box {
  transform: translateY(0);  /* niche aayega */
}

.login-close {
  position: absolute;
  top: 15px; right: 20px;
  background: rgba(255,255,255,0.1);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s;
}

.login-close:hover {
  background: rgba(245,197,24,0.3);
}


  
/* Logo */
.login-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

/* Title */
.login-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: white;
  margin-bottom: 5px;
}

.login-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 25px;
}

/* Input */
.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  font-size: 15px;
  transition: border 0.3s;
  outline: none;
}

.input-group input:focus {
  border-color: var(--gold);
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 5px;
  transition: all 0.3s;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,197,24,0.3);
}

/* Message */
#login-message {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
}

/* Register Link */
.login-register {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.login-register a {
  color: var(--gold);
  text-decoration: none;
}

.login-register a:hover {
  text-decoration: underline;
}

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      padding-top: 80px;
      background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 50%, #0a2a1e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
      50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 0 20px;
      animation: fadeUp 1s ease forwards;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-badge {
      display: inline-block;
      background: rgba(245,197,24,0.15);
      border: 1px solid rgba(245,197,24,0.4);
      color: var(--gold);
      padding: 6px 18px;
      border-radius: 20px;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 6vw, 72px);
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .hero h1 span { color: var(--gold); }

    .hero-sub {
      font-size: 18px;
      color: rgba(255,255,255,0.7);
      margin: 15px 0 10px;
      font-style: italic;
    }

    .hero-tag {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 1px;
      margin-bottom: 30px;
    }

    .hero-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.75);
      max-width: 550px;
      margin: 0 auto 35px;
      line-height: 1.7;
    }

    .hero-btns {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      padding: 14px 32px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(245,197,24,0.4);
    }

    .btn-outline {
      border: 2px solid rgba(255,255,255,0.4);
      color: white;
      padding: 14px 32px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ===== STATS ===== */
    .stats {
      background: rgba(255,255,255,0.04);
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 40px 20px;
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
    }

    .stat-item { text-align: center; }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: var(--gold);
      font-weight: 900;
    }

    .stat-label {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* ===== SECTIONS ===== */
    section {
      padding: 80px 40px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-tag {
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.2;
      margin-bottom: 15px;
    }

    .section-desc {
      color: rgba(255,255,255,0.65);
      font-size: 16px;
      line-height: 1.7;
      max-width: 600px;
      margin-bottom: 50px;
    }

    /* ===== VISION MISSION ===== */
    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
    }

    .vm-card {
      background: linear-gradient(135deg, rgba(26,58,110,0.5), rgba(26,122,62,0.3));
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 35px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s;
    }

    .vm-card:hover { transform: translateY(-5px); }

    .vm-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px;
      height: 100%;
      background: var(--gold);
    }

    .vm-icon {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .vm-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .vm-card p {
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
      font-size: 15px;
    }

    /* ===== INCOME TYPES ===== */
    .income-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .income-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 28px;
      text-align: center;
      transition: all 0.3s;
      cursor: default;
    }

    .income-card:hover {
      background: rgba(245,197,24,0.08);
      border-color: rgba(245,197,24,0.3);
      transform: translateY(-5px);
    }

    .income-num {
      width: 42px;
      height: 42px;
      background: var(--gold);
      color: var(--navy);
      border-radius: 50%;
      font-weight: 700;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
    }

    .income-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      color: var(--white);
      margin-bottom: 8px;
    }

    .income-card p {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      line-height: 1.5;
    }

    /* ===== MEMBERSHIP ===== */
    .membership-box {
      background: linear-gradient(135deg, rgba(26,58,110,0.6), rgba(10,22,40,0.8));
      border: 1px solid rgba(245,197,24,0.3);
      border-radius: 20px;
      padding: 50px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .membership-price {
      font-family: 'Playfair Display', serif;
      font-size: 60px;
      color: var(--gold);
      font-weight: 900;
      line-height: 1;
    }

    .membership-price span {
      font-size: 20px;
      color: rgba(255,255,255,0.6);
    }

    .membership-benefits {
      list-style: none;
    }

    .membership-benefits li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.8);
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .membership-benefits li::before {
      content: '✓';
      color: var(--gold);
      font-weight: 700;
    }
    /*======COMMUNITY TEAM TREE==*/

    .tree-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.svg-tree-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 30px;
  margin: 40px 0;
  overflow-x: auto;
}

.tree-income {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tree-income-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 140px;
  text-align: center;
}

.tree-income-item.highlight {
  border-color: var(--gold);
  background: rgba(245,197,24,0.08);
}

.ti-level { font-size: 11px; color: var(--gold); letter-spacing: 1px; }
.ti-team  { font-size: 18px; font-weight: 700; }
.ti-comm  { font-size: 12px; color: rgba(255,255,255,0.5); }
.ti-total { font-size: 16px; color: var(--gold); font-weight: 700; }

.tree-note {
  margin-top: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-style: italic;
}
/*=====Direct Sponser Income====*/
.sponsor-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, rgba(26,58,110,0.4), rgba(10,22,40,0.6));
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 20px;
  padding: 50px;
}

.sponsor-amount {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}

.sponsor-amount span {
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
}

.sponsor-tag {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  color: var(--gold);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 10px 0;
}

.sponsor-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 10px;
}

.sponsor-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sponsor-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 22px;
  transition: all 0.3s;
}

.sponsor-card:hover {
  border-color: rgba(245,197,24,0.3);
  transform: translateX(5px);
}

.sponsor-card.highlight-card {
  border-color: rgba(245,197,24,0.4);
  background: rgba(245,197,24,0.06);
}

.sponsor-icon {
  font-size: 28px;
}

.sponsor-info h4 {
  font-size: 15px;
  color: white;
  margin-bottom: 4px;
}

.sponsor-info p {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .sponsor-box {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}
    /* ===== DAILY TEAM TABLE ===== */
    .table-wrap {
      overflow-x: auto;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    table {
      width: 100%;
      border-collapse: collapse;
    }

    th {
      background: rgba(245,197,24,0.15);
      color: var(--gold);
      padding: 14px 20px;
      text-align: left;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    td {
      padding: 12px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.8);
      font-size: 14px;
    }

    tr:hover td { background: rgba(255,255,255,0.03); }

    .highlight-row td { color: var(--gold); font-weight: 600; }

    /* ===== DESIGNATION ===== */
    .desig-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .desig-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 22px;
      transition: all 0.3s;
    }

    .desig-card:hover {
      border-color: rgba(245,197,24,0.4);
      transform: translateY(-4px);
    }

    .desig-level {
      font-size: 11px;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .desig-title {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      margin-bottom: 8px;
    }

    .desig-info {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
    }

    .desig-cap {
      display: inline-block;
      margin-top: 8px;
      background: rgba(245,197,24,0.15);
      color: var(--gold);
      padding: 3px 10px;
      border-radius: 10px;
      font-size: 12px;
      font-weight: 600;
    }

    /* REPURCHASE income*/
.repurchase-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.repurchase-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
}

.rp-card:hover {
  border-color: rgba(245,197,24,0.3);
  transform: translateX(5px);
}

.rp-card.highlight-card {
  border-color: rgba(245,197,24,0.4);
  background: rgba(245,197,24,0.06);
}

.rp-icon { font-size: 28px; }

.rp-card h4 {
  font-size: 15px;
  color: white;
  margin-bottom: 4px;
}

.rp-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* BONUS */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.bonus-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s;
}

.bonus-card:hover { transform: translateY(-5px); }

.bonus-header {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.bonus-header.leadership {
  background: linear-gradient(135deg, #1a3a6e, #0a2a4e);
  border-bottom: 1px solid rgba(245,197,24,0.3);
}

.bonus-header.carfund {
  background: linear-gradient(135deg, #4a1a1a, #2a0a0a);
  border-bottom: 1px solid rgba(232,99,26,0.3);
}

.bonus-icon { font-size: 32px; }

.bonus-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
}

.bonus-body {
  background: rgba(255,255,255,0.03);
  padding: 25px 30px;
}

.bonus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 15px;
}

.bonus-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  min-width: 100px;
}

.bonus-value {
  font-size: 14px;
  color: white;
  text-align: right;
}

.bonus-highlight {
  margin-top: 18px;
  background: rgba(245,197,24,0.08);
  border-left: 3px solid var(--gold);
  padding: 12px 15px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .repurchase-box,
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}


    /* ===== TERMS ===== */
    .terms-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .term-item {
      background: rgba(255,255,255,0.04);
      border-left: 3px solid var(--gold);
      padding: 16px 20px;
      border-radius: 0 8px 8px 0;
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      line-height: 1.6;
    }
    /*=======Our Team Member====*/

    .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,197,24,0.3);
  background: rgba(245,197,24,0.05);
}

/* Founder card alag dikhega */
.team-card.founder {
  border-color: rgba(245,197,24,0.4);
  background: rgba(245,197,24,0.06);
}

.team-img-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(245,197,24,0.4);
}

/*Founder image badi*/
.founder .team-img-wrap {
  width: 140px;
  height: 140px;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(245,197,24,0.3);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-badge {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  color: var(--gold);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: white;
  margin-bottom: 6px;
}

.team-designation {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 5px;
}

.team-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
    

    /* ===== NGO ===== */
    .ngo-banner {
      background: linear-gradient(135deg, #1a7a3e, #0d4a25);
      border-radius: 20px;
      padding: 50px;
      text-align: center;
    }

    .ngo-banner h2 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      margin-bottom: 10px;
    }

    .ngo-banner p {
      color: rgba(255,255,255,0.8);
      font-size: 16px;
      margin-bottom: 5px;
    }

    .ngo-cin {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 1px;
    }

    /* ===== FOOTER ===== */
    footer {
      background: rgba(0,0,0,0.4);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 40px;
      text-align: center;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .footer-tagline {
      font-style: italic;
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      margin-bottom: 20px;
    }

    .footer-info {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      line-height: 1.8;
    }

    .footer-info a {
      color: var(--gold);
      text-decoration: none;
    }

    /* ===== DIVIDER ===== */
    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(245,197,24,0.3), transparent);
      margin: 0 40px;
    }

     @media (max-width: 768px) {
      nav { padding: 12px 20px; }
      .nav-links { display: none; }
      section { padding: 60px 20px; }
      .vm-grid, .income-grid, .desig-grid, .terms-list { grid-template-columns: 1fr; }
      .membership-box { grid-template-columns: 1fr; }
      .stats { gap: 30px; }
    }
/*===========Delivery Detaila======*/
  