@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #2563EB;
  --color-secondary: #10B981;
  --color-accent: #1F2937;
  --color-background: #F9FAFB;
  --color-section-background: #ffffff;
  --color-error: #EF4444;
  --color-success: #22C55E;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #0d0f1a;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  background-color: #0d0f1a;
  padding: 15px 0;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #4af497;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Transform to X on open */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-dropdown {
  background: rgba(13, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  width: 100%;
}

.mobile-dropdown.active {
  max-height: 500px; /* enough to fit all content */
}

.mobile-dropdown nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px 16px;
  width: 100%;
}


.mobile-dropdown nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-dropdown .btn {
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
}

.mobile-dropdown nav a:hover {
  color: #4af497;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4af497;
}

.nav-cta {
  padding: 8px 20px;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.hero-section {
  position: relative;
  background: linear-gradient(180deg, #0d0f1a 0%, #0b0c17 100%);
  color: #ffffff;
  padding: 130px 0 100px; 
  overflow: hidden;
  text-align: center;
}

.hero-overlay {
  background: url('../assets/bg.jpg') no-repeat center/cover;
  opacity: 0.3;
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.hero-text {
  max-width: 550px;
  margin: 0 auto;
}

.hero-tag {
  color: #4af497;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  color: #b5b5b5;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 26px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}


.btn-primary {
  position: relative;
  background-color: #4af497;
  color: #000;
  overflow: hidden;
  border: none;
}

/* .btn-outline-primary {
  position: relative;
  border-color: #4af497;
  color: #4af497;
  overflow: hidden;
} */

.btn-primary:hover {
  background-color: #3ec47b;
}

.btn-primary::after {
  content: "→";
  margin-left: 10px;
  opacity: 0;
  transform: translateX(-10px);
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  overflow: hidden;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.tradingview-widget-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.how-it-works {
  background-color: #0d0f1a;
  
}

.how-it-works h2 {
  color: white;
}

.how-it-works p {
  color: #CBD5E0;
}

.how-it-works .card {
  background-color: var(--color-section-background);
}

.how-it-works img {
  height: 80px;
  object-fit: contain;
}

.how-it-works .transition-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-it-works .transition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.investment-plans {
  background-color: #0f1322;
}

.investment-plans p {
  color: #CBD5E0;
}

.investment-plans .card {
  background-color: var(--color-section-background);
}

.why-quickvest {
  background-color: #0d0f1a;
}

.why-quickvest p {
  color: #CBD5E0;
}


.why-quickvest .text-accent {
  color: #5f8dff;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(95, 141, 255, 0.2);
}

.about-us {
  background-color: #0f1322;
}

.about-us p {
  color: #CBD5E0;
}

.referral-highlight {
  background-color: #0d0f1a;
}

.referral-highlight p {
  color: #CBD5E0;
}

.referral-highlight .glassy-box {
  border: 1px solid var(--color-accent);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border-radius: 1rem;
}

.glassy-box p {
  color: #CBD5E0;
}

.glassy-box .step-icon {
  color: #CBD5E0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 255, 0.4);
  background: rgba(0, 255, 255, 0.08);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-section {
  background-color: #0f1322;
}

.testimonial-section p {
  color: #CBD5E0;
}

.testimonial-section .testimonial-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.testimonial-glass:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
  transform: translateY(-5px);
}

.testimonial-section .trust-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}


.trust-badge:hover {
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  transform: translateY(-3px);
}

.live-market {
  background-color: #0d0f1a;
}

.live-market p {
  color: #CBD5E0;
}


.icon-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  max-width: 50px;
  max-height: 50px;
  overflow: hidden;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--electric, #00ffff);
  color: #111;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.icon-circle .icon {
  font-size: 1rem;
  line-height: 1;
}

.glassy {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.faq-section {
  background-color: #0f1322;
}

.faq-section p {
  color: #CBD5E0;
}

.bg-glass-gradient {
  background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-electric {
  background-color: #0ef;
  color: #000;
  transition: 0.3s ease;
}

.btn-electric:hover {
  background-color: #0bd;
  color: #fff;
}

.bg-dark-glass {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
}

footer .nav-link:hover {
  color: #0ef !important;
  text-decoration: underline;
}

footer p {
  color: #CBD5E0;
}

@media (max-width: 768px) {
  .hero-overlay {
    background: url('../assets/bg-mobile.jpeg') no-repeat center/cover;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }
}