:root {
  /* Typography */
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  /* Primary Colors */
  --color-bg: #0a0a0a;
  --color-text: #ffffff;
  --color-subtext: #cccccc;
  --color-gold: #ffd700;
  --color-gold-glow: #fff8cc;

  /* Accent Colors */
  --color-accent: #111;
  --color-shadow: rgba(255, 215, 0, 0.3);
  --color-outline: rgba(255, 215, 0, 0.6);

  /* Utility */
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;

  --shadow-soft: 0 4px 15px rgba(255, 215, 0, 0.15);
  --shadow-glow: 0 0 20px var(--color-gold);
  --shadow-inset: inset 0 0 12px var(--color-gold);

  --transition-fast: all 0.3s ease-in-out;
  --transition-slow: all 0.6s ease;
}

/* Basic Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  padding-top: 80px; /* ya jitni height aapki navbar ki ho */
}

.section-title {
  color: var(--color-gold);
  text-shadow: var(--shadow-glow);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
}


/* Navbar */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #0a0a0a;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}


.logo img {
  width: 150px;
  filter: drop-shadow(0 0 8px var(--primary, #ffd700));
    height: 40px;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.logo a:hover img {
  transform: scale(1.05);
}

#hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

#hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary, #ffd700);
  margin-bottom: 5px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  nav {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li a {
  color: var(--muted, #ccc);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: var(--primary, #ffd700);
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary, #ffd700);
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

/* Overlay for mobile menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 8rem 1.5rem 6rem;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
  color: var(--text, #fff);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary, #ffd700);
  text-shadow: 0 0 10px var(--primary, #ffd700);
}

.hero h1 span {
  color: #fff;
}

.typing-wrapper {
  font-family: var(--font-heading, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--primary, #ffd700);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  user-select: none;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.typing-static {
  opacity: 0.8;
}

.typing-dynamic {
  min-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid var(--primary, #ffd700);
}

#hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted, #ccc);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-primary {
  background: var(--primary, #ffd700);
  color: #000;
  padding: 0.9rem 2.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px #ffd70088;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: #fff6b8;
  box-shadow: 0 0 25px #ffd700cc;
}

/* Responsive */
@media (max-width: 900px) {
  #hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 240px;
    height: 100%;
    background: #111;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.8rem;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li a {
    font-size: 1.1rem;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .typing-wrapper {
    font-size: 1.4rem;
  }
  #hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }
}
/*why*/
/* Why Bitgold Section */
.section {
  padding: 5rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text, #fff);
}

.why-bitgold {
  background: radial-gradient(ellipse at center, #111111 0%, #0a0a0a 100%);
  text-align: center;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary, #ffd700);
  text-shadow: 0 0 10px var(--primary, #ffd700);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted, #bbb);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 15px #ffd70044;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #ffd700bb;
}

.feature-card img {
  width: 60px;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 5px var(--primary, #ffd700));
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary, #ffd700);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 1rem;
  color: var(--muted, #ccc);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .section-title {
    font-size: 2.2rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .feature-card {
    padding: 1.5rem 1rem;
  }
  .feature-card img {
    width: 50px;
  }
}
/*decentralisation*/
/* Decentralisation Section */
.decentralisation {
  background: radial-gradient(ellipse at center, #121212 0%, #0a0a0a 100%);
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  color: var(--text, #fff);
}

.decentralisation .section-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary, #ffd700);
  text-shadow: 0 0 10px var(--primary, #ffd700);
  margin-bottom: 0.5rem;
}

.decentralisation .section-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted, #bbb);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 15px #ffd70044;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #ffd700bb;
}

.feature-box img {
  width: 60px;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 5px var(--primary, #ffd700));
}

.feature-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary, #ffd700);
  margin-bottom: 0.6rem;
}

.feature-box p {
  font-size: 1rem;
  color: var(--muted, #ccc);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .decentralisation .section-title {
    font-size: 2.2rem;
  }
  .decentralisation .section-subtitle {
    font-size: 1rem;
  }
  .feature-box {
    padding: 1.5rem 1rem;
  }
  .feature-box img {
    width: 50px;
  }
}
/*opportunity*/
/* Opportunity of the Century Section */
.opportunity {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: var(--text, #fff);
  text-align: center;
  padding: 5rem 1.5rem 4rem;
}

.opportunity .section-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--primary, #ffd700);
  text-shadow: 0 0 10px var(--primary, #ffd700);
  margin-bottom: 0.5rem;
}

.opportunity .section-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted, #bbb);
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.op-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.op-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 15px #ffd70044;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.op-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #ffd700bb;
}

.op-card img {
  width: 60px;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 5px var(--primary, #ffd700));
}

.op-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary, #ffd700);
  margin-bottom: 0.6rem;
}

.op-card p {
  font-size: 1rem;
  color: var(--muted, #ccc);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .opportunity .section-title {
    font-size: 2.2rem;
  }
  .opportunity .section-subtitle {
    font-size: 1rem;
  }
  .op-card {
    padding: 1.5rem 1rem;
  }
  .op-card img {
    width: 50px;
  }
}
/* CTA Section */
.cta-final {
  background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
  padding: 5rem 1.5rem 6rem;
  text-align: center;
  color: #000;
  box-shadow: 0 0 40px #ffd700aa inset;
  border-radius: 20px;
  margin: 4rem auto;
  max-width: 900px;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px #b8860b;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
  text-decoration: none;
  display: inline-block;
  min-width: 140px;
  box-shadow: 0 0 15px #ffd700bb;
}

.btn-primary {
  background-color: #000;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.btn-primary:hover {
  background-color: #ffd700;
  color: #000;
  box-shadow: 0 0 25px #ffd700ff;
}

.btn-secondary {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: #b8860b;
  color: #fff;
  border-color: #b8860b;
  box-shadow: 0 0 20px #b8860bbb;
}

/* Responsive */
@media (max-width: 600px) {
  .cta-title {
    font-size: 2rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
  .btn-cta {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    min-width: 120px;
  }
}
/*tokenomics*/
/* Tokenomics Section */
.tokenomics-section {
  padding: 5rem 1.5rem 6rem;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
  color: var(--text);
  font-family: var(--font-body);
}

.container-tokenomics {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title.shine {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.75rem;
  color: var(--primary);
  text-shadow: 0 0 15px var(--primary);
  margin-bottom: 3rem;
  text-align: center;
}

.tokenomics-columns {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left: chart + logo */
.tokenomics-left {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.chart-container {
  position: relative;
  width: 320px;
  height: 320px;
}

#tokenChart {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Logo centered absolutely in pie chart */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 0 8px var(--primary));
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffd700cc 0%, transparent 80%);
}

/* Right: text content */
.tokenomics-right {
  flex: 1 1 550px;
  max-width: 600px;
  text-align: left;
  font-family: var(--font-body);
  color: var(--text);
}

.tokenomics-right .subheading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-shadow: 0 0 8px var(--primary);
}

.tokenomics-right .description {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.unlock-list {
  list-style: disc inside;
  margin-left: 1rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.unlock-list li {
  margin-bottom: 0.8rem;
}

.quote {
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 2rem;
  opacity: 0.9;
  user-select: none;
}

/* Legend for pie slices */
.legend {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 1.05rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.legend li {
  position: relative;
  padding-left: 2.4rem;
  line-height: 1.3;
  cursor: default;
}

.legend li span {
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.3rem;
  display: inline-block;
}

/* Responsive */
@media (max-width: 900px) {
  .tokenomics-columns {
    flex-direction: column;
    align-items: center;
  }
  .tokenomics-left,
  .tokenomics-right {
    max-width: 100%;
    flex: none;
    text-align: center;
  }
  .tokenomics-left {
    margin-bottom: 3rem;
  }
  .tokenomics-right {
    text-align: left;
    padding: 0 1rem;
  }
  .legend {
    grid-template-columns: 1fr;
  }
  .center-logo {
    width: 100px;
    height: 100px;
  }
  .chart-container {
    width: 250px;
    height: 250px;
  }
}
/* Rewards Section */
.rewards-section {
  background: #0a0a0a;
  color: var(--text);
  padding: 5rem 1.5rem;
  font-family: var(--font-body);
}

.rewards-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title.shine {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--primary);
  text-align: center;
  text-shadow: 0 0 10px var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 3rem auto;
  font-size: 1.15rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.reward-card {
  background: #121212;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  box-shadow:
    0 0 12px #ffd70055,
    inset 0 0 8px #ffd70033;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}

.reward-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 20px #ffd700cc,
    inset 0 0 12px #ffd700aa;
}

.reward-icon {
  font-size: 3.8rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px var(--primary));
}

.reward-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.reward-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 320px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .rewards-section {
    padding: 3rem 1rem;
  }
  
  .reward-card p {
    max-width: 100%;
  }
}
/*community*/
/* Community Section */
.community-section {
  background: #0a0a0a;
  color: var(--text);
  padding: 5rem 1.5rem;
  font-family: var(--font-body);
}

.community-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title.shine {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--primary);
  text-align: center;
  text-shadow: 0 0 10px var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 3rem auto;
  font-size: 1.15rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.community-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.community-left,
.community-right {
  flex: 1 1 350px;
  min-width: 320px;
}

/* Stats */
.community-stat {
  background: #121212;
  border-radius: 16px;
  padding: 1.8rem 2rem;
  margin-bottom: 2rem;
  box-shadow:
    0 0 12px #ffd70055,
    inset 0 0 8px #ffd70033;
  text-align: center;
  color: var(--primary);
}

.community-stat h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.community-stat p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

/* Testimonials */
.testimonial {
  background: #121212;
  border-radius: 16px;
  padding: 1.8rem 2rem;
  margin-bottom: 2rem;
  box-shadow:
    0 0 12px #ffd70055,
    inset 0 0 8px #ffd70033;
  color: var(--text);
  font-style: italic;
  line-height: 1.5;
  position: relative;
}

.testimonial h4 {
  margin-top: 1.2rem;
  text-align: right;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
}

/* Responsive */
@media (max-width: 900px) {
  .community-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .community-left,
  .community-right {
    min-width: 100%;
  }
}
/*CTA2*/
.cta-final .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  min-width: 160px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px #ffd700cc;
  border: 2px solid transparent;
  color: #ffd700;
  background-color: transparent;
}

.btn-cta.primary-btn {
  border-color: #ffd700;
  background: linear-gradient(145deg, #ffd700, #fff6b8);
  color: #000;
  box-shadow: 0 0 20px #ffd700ee;
}

.btn-cta.primary-btn:hover {
  background: #fff6b8;
  box-shadow: 0 0 30px #ffd700ff;
  color: #000;
}

.btn-cta.secondary-btn {
  border-color: #ffd700;
  color: #ffd700;
  background-color: transparent;
}

.btn-cta.secondary-btn:hover {
  background: #ffd700;
  color: #000;
  box-shadow: 0 0 25px #ffd700cc;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-top: 1rem;
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700cc;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin: 1rem 0 2rem;
  color: #fff;
  line-height: 1.5;
}

.highlight {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 0 10px #ffd700cc;
}

.cta-footnote {
  margin-top: 3rem;
  font-size: 1rem;
  color: #aaa;
}

/* Crypto icons row */
.crypto-icons-row {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.crypto-icon {
  height: 48px;
  width: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px #ffd700cc);
}

.bitgold-logo {
  height: 56px;
  width: 56px;
  filter: drop-shadow(0 0 8px #ffd700);
}
/*roadmap*/
/* Roadmap Section Styling */
.roadmap-section {
  background: #0a0a0a;
  color: #ffd700;
  font-family: 'Poppins', sans-serif;
}

.roadmap-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.roadmap-section .section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 15px #ffd700aa;
}

.roadmap-section .section-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: #f0d843cc;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Timeline Container */
.timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 20px;
  border-left: 3px solid #ffd700bb;
  max-width: 700px;
}

/* Timeline Items */
.timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
  padding-left: 60px;
  text-align: left;
}

/* Timeline Icons */
.timeline-icon {
  position: absolute;
  left: -36px;
  top: 0;
  background: #ffd700;
  color: #0a0a0a;
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  box-shadow: 0 0 15px #ffd700dd;
  user-select: none;
}

/* Timeline Content Headings */
.timeline-content h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
  text-shadow: 0 0 8px #ffd700aa;
}

/* Timeline Content Paragraphs */
.timeline-content p {
  font-size: 1.1rem;
  color: #f5f5d7cc;
  line-height: 1.4;
  max-width: 480px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .timeline {
    max-width: 100%;
    padding-left: 15px;
    border-left: 2px solid #ffd700cc;
  }

  .timeline-item {
    padding-left: 50px;
    margin-bottom: 2.8rem;
  }

  .timeline-icon {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    line-height: 40px;
    left: -28px;
  }

  .timeline-content h3 {
    font-size: 1.4rem;
  }

  .timeline-content p {
    font-size: 1rem;
    max-width: 100%;
  }
}
/*faq*/
/* FAQ Section Styles */
  #faq {
    background: #0a0a0a;
    color: #fff;
  }
  #faq .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .faq-live-counter {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
  }
  #faq-search {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 2rem;
    border: 2px solid #ffd700;
    border-radius: 6px;
    background: #1a1a1a;
    color: #fff;
    font-size: 1rem;
  }
  #faq-search::placeholder {
    color: #ccc;
  }

  .faq-columns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .faq-column {
    flex: 1 1 45%;
    min-width: 280px;
  }
  .faq-item {
    border-bottom: 1px solid #444;
    margin-bottom: 0.5rem;
  }
  .faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1rem 0;
    font-size: 1.15rem;
    color: #ffd700;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
  }
  .faq-question:hover,
  .faq-question[aria-expanded="true"] {
    color: #fff;
  }
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  .faq-question[aria-expanded="true"]::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
  }
  .faq-answer {
    padding: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
  }

  @media (max-width: 640px) {
    .faq-columns {
      flex-direction: column;
    }
    .faq-column {
      flex: 1 1 100%;
    }
  }
/*social media*/
/* Socials Section */
.socials-section {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 4rem 0rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.socials-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.section-title.shine {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: #ffd700;
  text-shadow: 0 0 8px #ffd700, 0 0 20px #ffd700;
}
.section-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: #ccc;
}
/* Social Grid Layout */
/* Social Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  margin-top: 2rem;
  margin-left: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1.5rem;
  padding:  0 1rem;
  scroll-behavior: smooth;
}

/* Social Card Base */
.social-card {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease-in-out;
}
.social-card:hover {
  transform: scale(1.08);
}

/* Glowing Ring on Hover */
.social-card:hover .card-inner {
  box-shadow: 0 0 20px #ffd700, 0 0 40px #ffd70066;
}

/* Card Inner Flip */
.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  border-radius: 50%;
  background: radial-gradient(#1a1a1a, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Front & Back */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  font-weight: bold;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem;
}

.card-front {
  background: #111;
  color: #ffd700;
}
.card-back {
  background: #ffd700;
  color: #0a0a0a;
  transform: rotateY(180deg);
}

/* Icons */
.card-front i {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
  color: #ffd700;
  filter: drop-shadow(0 0 4px #ffd700);
}

/* Tooltip */
.social-card[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #ffd700;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.social-card:hover::after {
  opacity: 1;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .social-grid {
    gap: 1.2rem;
    padding-bottom: 1.5rem;
  }
  .social-card {
    width: 85px;
    height: 85px;
  }
  .card-front i {
    font-size: 1.5rem;
  }
}

/* Fade-in Entry Animation */
.social-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}
.social-card:nth-child(1) { animation-delay: 0.2s; }
.social-card:nth-child(2) { animation-delay: 0.4s; }
.social-card:nth-child(3) { animation-delay: 0.6s; }
.social-card:nth-child(4) { animation-delay: 0.8s; }
.social-card:nth-child(5) { animation-delay: 1s; }
.social-card:nth-child(6) { animation-delay: 1.2s; }

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* Sticky Ribbon Base */
.mobile-social-ribbon {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border-top: 1px solid #333;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.6rem 0.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(255, 215, 0, 0.3);
}

/* Icons */
.mobile-social-ribbon a {
  background: #111;
  border: 2px solid #ffd700;
  border-radius: 50%;
  padding: 0.5rem;
  color: #ffd700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 10px #000;
}

.mobile-social-ribbon a:hover {
  background: #ffd700;
  color: #111;
  box-shadow: 0 0 12px #ffd700, 0 0 24px #ffd700;
}

/* Only show on mobile */
@media (min-width: 769px) {
  .mobile-social-ribbon {
    display: none;
  }
}
/*footer*/
/* === FOOTER MASTER STYLE === */
.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 4rem 1.5rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  z-index: 2;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Column Base Style === */
.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

/* === Column 1: Logo === */
.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 0.5rem;
  z-index: 1;
  position: relative;
  animation: glowPulse 3s ease-in-out infinite;
}

/* Glowing background circle behind logo */
.footer-logo-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #ffd70040 0%, transparent 80%);
  border-radius: 50%;
  filter: blur(15px);
  z-index: 0;
}

/* === Quick Links / Resources === */
.footer-menu-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.footer-menu-col ul {
  list-style: none;
  padding: 0;
}

.footer-menu-col ul li {
  margin-bottom: 0.6rem;
}

.footer-menu-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu-col ul li a:hover {
  color: #ffd700;
}

/* === Social Media Column === */
.footer-social-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.footer-social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
  color: #ffd700;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer-social-icons a:hover {
  background: #ffd700;
  color: #111;
  border-color: #ffd700;
  box-shadow: 0 0 12px #ffd70080;
}

/* === Footer Bottom Bar === */
.footer-bottom {
  margin-top: 2.5rem;
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 1.2rem;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-bottom .credit {
  margin-top: 4px;
  color: #ffd700;
  font-weight: 500;
}

/* === Animations === */
@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 4px #ffd700);
  }
  50% {
    filter: drop-shadow(0 0 15px #ffd700aa);
  }
  100% {
    filter: drop-shadow(0 0 4px #ffd700);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }
}
/*scrolltotop*/
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffd700;
  color: #111;
  border: none;
  border-radius: 50%;
  padding: 12px 16px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 12px #ffd70080;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

#scrollToTopBtn.visible {
  opacity: 1;
  pointer-events: auto;
}
