.why-choose {
  background: #000;
  padding: 80px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}

.why-choose h2 span {
  color: #eec135;
}

.why-choose .subtitle {
  max-width: 600px;
  margin: 0 auto 50px;
  color: #bbb;
  font-size: 16px;
  line-height: 1.6;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.choose-card {
  background: #111;
  border-radius: 14px;
  padding: 35px 25px;
  transition: all 0.3s ease;
  border: 1px solid #1f1f1f;
}

.choose-card:hover {
  transform: translateY(-8px);
  border-color: #eec135;
  box-shadow: 0 10px 25px rgba(255, 152, 0, 0.15);
}

.choose-card .icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.choose-card h3 {
  color: #eec135;
  font-size: 20px;
  margin-bottom: 12px;
}

.choose-card p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-choose {
    padding: 60px 15px;
  }

  .why-choose h2 {
    font-size: 28px;
  }

  .choose-grid {
    grid-template-columns: 1fr;
  }
}
.cta-section {
  background: linear-gradient(135deg, #eec135, #eec135);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-box {
  background: #000;
  max-width: 900px;
  width: 100%;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-box h2 {
  font-size: 36px;
  color: #eec135;
  margin-bottom: 15px;
}

.cta-box p {
  color: #ddd;
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #eec135;
  color: #000;
}

.primary-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.secondary-btn {
  border: 2px solid #eec135;
  color: #eec135;
}

.secondary-btn:hover {
  background: #eec135;
  color: #000;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cta-box {
    padding: 45px 25px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
.table-section {
  background: #000;
  padding: 90px 20px;
  text-align: center;
}

.table-section h2 {
  color: #eec135;
  font-size: 36px;
  margin-bottom: 8px;
}

.table-subtitle {
  color: #bbb;
  font-size: 16px;
  margin-bottom: 50px;
}

.table-wrapper {
  max-width: 1100px;
  margin: auto;
  overflow-x: auto;
}

.gold-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
}

.gold-table thead {
  background: linear-gradient(135deg, #eec135, #eec135);
}

.gold-table th {
  padding: 18px;
  font-size: 15px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gold-table td {
  padding: 20px;
  color: #ddd;
  font-size: 15px;
  border-bottom: 1px solid #1f1f1f;
}

.gold-table tr:hover {
  background: rgba(255, 152, 0, 0.06);
}

.gold-table .highlight {
  background: rgba(255, 152, 0, 0.12);
}

.table-btn {
  padding: 10px 22px;
  border-radius: 25px;
  border: none;
  background: transparent;
  color: #eec135;
  font-weight: 600;
  border: 2px solid #eec135;
  cursor: pointer;
  transition: 0.3s ease;
}

.table-btn:hover {
  background: #eec135;
  color: #000;
}

.table-btn.active {
  background: #eec135;
  color: #000;
}

/* Mobile Table Card Layout */
@media (max-width: 768px) {
  .gold-table thead {
    display: none;
  }

  .gold-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    padding: 10px;
  }

  .gold-table td {
    display: flex;
    justify-content: space-between;
    padding: 14px;
    border-bottom: none;
    font-size: 14px;
  }

  .gold-table td::before {
    content: attr(data-label);
    color: #eec135;
    font-weight: 600;
  }
}
.about-section {
  background: linear-gradient(180deg, #000, #060606);
  padding: 38px 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.about-intro h2 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 15px;
}

.about-intro h2 span {
  color: #eec135;
}

.about-intro p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.8;
}

/* Mission & Vision Cards */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  position: relative;
  padding: 45px 35px;
  border-radius: 20px;
  background: #0d0d0d;
  border: 1px solid #1f1f1f;
  transition: all 0.35s ease;
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,152,0,0.15), transparent 60%);
  opacity: 0;
  transition: 0.35s ease;
}

.mv-card:hover::before {
  opacity: 1;
}

.mv-card:hover {
  transform: translateY(-8px);
  border-color: #eec135;
  box-shadow: 0 15px 40px rgba(255, 152, 0, 0.15);
}

.mv-card h3 {
  color: #eec135;
  font-size: 24px;
  margin-bottom: 15px;
}

.mv-card p {
  color: #ddd;
  font-size: 16px;
  line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 30px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mv-card {
    padding: 35px 25px;
  }
}
.about-card-section {
  background: #000;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.about-card {
  max-width: 900px;
  width: 100%;
  background: linear-gradient(145deg, #0b0b0b, #000);
  border-radius: 24px;
  padding: 60px 50px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.about-card h2 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.about-card h2 span {
  color: #eec135;
}

/* List Styling */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 152, 0, 0.15);
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list .icon {
  font-size: 32px;
  min-width: 40px;
  color: #eec135;
}

.about-list h3 {
  font-size: 22px;
  color: #eec135;
  margin-bottom: 8px;
}

.about-list p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
}

/* Hover effect per list item */
.about-list li:hover {
  background: rgba(255, 152, 0, 0.04);
  border-radius: 14px;
  padding-left: 10px;
  transition: 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .about-card {
    padding: 45px 25px;
  }

  .about-card h2 {
    font-size: 30px;
  }

  .about-list li {
    gap: 18px;
  }
}

.gold-card-section {
  background: #000;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.gold-card {
  max-width: 900px;
  width: 100%;
  padding: 60px 50px;
  border-radius: 26px;
  background: rgba(20, 20, 20, 0.85);
  box-shadow:
    0 25px 60px rgba(255, 152, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.gold-card h2 {
  font-size: 38px;
  text-align: center;
  color: #eec135;
  margin-bottom: 40px;
}

.gold-card h2 span {
  color: #fff;
}

/* List Styling */
.gold-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gold-list li {
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.gold-list li:last-child {
  border-bottom: none;
}

.gold-list strong {
  display: block;
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
}

.gold-list p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}

/* Subtle Hover Glow */
.gold-card:hover {
  box-shadow:
    0 35px 70px rgba(255, 152, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  transition: 0.35s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .gold-card {
    padding: 45px 25px;
  }

  .gold-card h2 {
    font-size: 30px;
  }

  .gold-list strong {
    font-size: 18px;
  }
}
.plans-section {
  background: #000;
  padding: 90px 20px;
  text-align: center;
}

/* Heading */
.section-title {
  color: #eec135;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 60px;
}

/* Cards */
.plans-wrapper {
  max-width: 1100px;
  margin: auto;
  /* display: grid; */
      display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.plan-card {
  background: linear-gradient(145deg, #ffcc70, #eec135, #eec135);
  padding: 45px 40px;
  border-radius: 24px;
  text-align: left;
  box-shadow: 0 25px 60px rgba(255, 152, 0, 0.35);
  transition: 0.35s ease;
  width: 100%;
}


.below-mid-card ul li{
  color: #000;
}

.plan-card:hover {
  transform: translateY(-8px);
}

.plan-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #000;
}

.plan-desc {
  font-size: 15px;
  margin-bottom: 25px;
  margin-top: 25px;
  color: #1a1a1a;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-card li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  font-size: 15px;
}

.plan-card li span {
  font-weight: 600;
    color: #1a1a1a;
}

/* Bottom paragraph */
.section-note {
  max-width: 700px;
  margin: 60px auto 0;
  font-size: 15px;
  color: #bbb;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 900px) {
  .plans-wrapper {
    grid-template-columns: 1fr;
    display: grid
  }

  .section-title {
    font-size: 28px;
  }
}
.mid-card{
  background: #111;
    border-radius: 14px;
    padding: 35px 25px;
    transition: all 0.3s ease;
    border: 1px solid #1f1f1f;
}
.mid-card h5{
color: #eec135;
}
.section-title {
  font-size: 36px;
    color: #fff;
    margin-bottom: 40px;
}
.section-title span{
  color: #eec135;
}
.key{
  text-align: left;
      margin-top: 46px;
}
.key p{
  font-size: 18px;
    color: #eec135;
}
.key ul li{
 
    color: #fff;
    line-height: 1.7;
}
.points{
 padding: 30px;
    max-width: 1100px;
    margin: auto;
}


.terms-section {
  background: #000;
  padding: 34px 20px;
}

.terms-card {
  max-width: 900px;
  margin: auto;
  background: rgba(20, 20, 20, 0.85);
  border-radius: 28px;
  padding: 60px 55px;
  box-shadow: 0 30px 80px rgba(255, 152, 0, 0.45);
}

/* Headings */
.terms-title {
  font-size: 36px;
  font-weight: 700;
  color: #eec135;
  margin-bottom: 5px;
}

.terms-subtitle {
  font-size: 26px;
  color: #fff;
  margin-bottom: 40px;
}

/* List */
.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-list li {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.terms-list li span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.terms-list li p {
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
}

.terms-list li p strong {
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .terms-card {
    padding: 40px 25px;
  }

  .terms-title {
    font-size: 28px;
  }

  .terms-subtitle {
    font-size: 22px;
  }

  .terms-list li {
    flex-direction: column;
    gap: 8px;
  }
}

.what{
  color: #eec135;
      margin-top: 8px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,195,100,0.15);
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 0px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #eec135;
  font-weight: 700;
  font-size: 18px;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
}

.nav-btn {
  background: linear-gradient(135deg, #eec135, #d89c2f);
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #eec135;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #000;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  z-index: 999;
}

.mobile-menu a {
  color: #fff;
  font-size: 16px;
  margin: 12px 0;
  text-decoration: none;
}

.mobile-btn {
  margin-top: 15px;
  padding: 12px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #eec135, #d89c2f);
  border: none;
  font-weight: 600;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  padding-top: 120px;
  background: radial-gradient(circle at top, #1a1a1a, #000 70%);
  color: #fff;
}

.hero-content {
  max-width: 850px;
  margin: auto;
  text-align: center;
  padding: 80px 20px 0;
}

.hero-icon {
  font-size: 32px;
  color: #eec135;
}

.welcome-text {
  font-size: 12px;
  letter-spacing: 2px;
  color: #eec135;
}

.hero-content h1 {
  font-size: 48px;
  margin: 20px 0;
}

.hero-content h1 span {
  color: #eec135;
}

.hero-subtitle {
  font-size: 18px;
  color: #e5e5e5;
}

.hero-desc {
  font-size: 14px;
  color: #bbb;
  margin-top: 10px;
  line-height: 1.7;
}

/* Buttons */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

.btn.primary {
  background: linear-gradient(135deg, #eec135, #d89c2f);
  color: #000;
}

.btn.outline {
  border: 1px solid #eec135;
  color: #000;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-buttons {
    flex-direction: column;
  }
}



