@font-face {
  font-family: 'Rubik';
  src: url('/assets/fonts/Rubik-VariableFont_wght.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('/assets/fonts/Rubik-Italic-VariableFont_wght.ttf') format('truetype');
  font-style: italic;
  font-display: swap;
}

:root {
  --brand-purple: #7E3CDF;
  --brand-blue: #111E6C;
  --brand-gradient: linear-gradient(92.43deg, #9962E6 3.44%, #5500D3 30.44%, #1E00B3 52.9%, #00ADB3 86.67%);
  --button-gradient: linear-gradient(135deg, #9962E6 0%, #5500D3 50%, #00ADB3 100%);
  --bs-font-sans-serif: 'Rubik', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Light mode (default) */
[data-bs-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-primary: #111E6C;
  --text-secondary: #4400AB;
  --border-color: rgba(126, 60, 223, 0.15);
  --card-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 255, 0.9) 100%);
  --card-border: rgba(126, 60, 223, 0.2);
  --tab-bg: rgba(255, 255, 255, 0.7);
  --tab-border: rgba(126, 60, 223, 0.2);
  --tab-hover-bg: rgba(255, 255, 255, 0.95);
  --content-bg: rgba(255, 255, 255, 1);
  --content-border: rgba(126, 60, 223, 0.15);
  --glow-1: rgba(153, 98, 230, 0.1);
  --glow-2: rgba(0, 173, 179, 0.1);
}

/* Dark mode */
[data-bs-theme="dark"] {
  --bg-primary: #0a0e27;
  --bg-secondary: #151a33;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --border-color: rgba(255, 255, 255, 0.1);
  --card-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  --card-border: rgba(255, 255, 255, 0.15);
  --tab-bg: rgba(255, 255, 255, 0.05);
  --tab-border: rgba(255, 255, 255, 0.1);
  --tab-hover-bg: rgba(255, 255, 255, 0.08);
  --content-bg: rgba(255, 255, 255, 0.03);
  --content-border: rgba(255, 255, 255, 0.1);
  --glow-1: rgba(153, 98, 230, 0.15);
  --glow-2: rgba(0, 173, 179, 0.15);
}

body {
  font-family: var(--bs-font-sans-serif);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, var(--glow-1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, var(--glow-2) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.single-content {
  background: var(--bg-primary);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(126, 60, 223, 0.15);
}

.single-content::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, var(--glow-1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, var(--glow-2) 0%, transparent 50%);
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
}

/* Theme Toggle Button */
.theme-toggle {
  margin: 10px;
  z-index: 1000;
  background: var(--tab-bg);
  border: 2px solid var(--tab-border);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.theme-toggle:hover {
  background: var(--tab-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(126, 60, 223, 0.2);
}

.nav-tabs .nav-link {
  background: var(--tab-bg);
  border: 2px solid var(--tab-border);
  color: var(--text-secondary);
  padding: 1rem 2.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  --bs-nav-tabs-border-radius: var(--bs-border-radius-xl) !important;
  width: max-content;
}

.nav-tabs .nav-link:hover {
  background: var(--tab-hover-bg);
  color: var(--text-primary);
  border-color: var(--brand-purple);
}

.nav-tabs .nav-link.active {
  background: var(--bg-primary);
  border-color: transparent;
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
  /* box-shadow: 0 8px 32px rgba(126, 60, 223, 0.4); */
}

.nav-tabs .nav-link.active .tab-text {
  background: var(--button-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Typography */
.display-4 {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  color: var(--text-secondary);
  font-size: 1.25rem;
  line-height: 1.8;
}

/* Feature Cards */
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-gradient);
}

.feature-card h3 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Button */
.btn-gradient {
  background: var(--button-gradient);
  border: none;
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(126, 60, 223, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #b084f5 0%, #7d3de6 50%, #00c5cb 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(126, 60, 223, 0.5);
  color: #fff;
}

.btn-gradient:hover::before {
  opacity: 1;
}

.btn-gradient span {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .tab-content {
    padding: 2rem 1.5rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .nav-tabs .nav-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .nav-tabs {
    gap: 0.5rem;
  }

  .theme-toggle {
    bottom: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}


/* Pricing Cards */
.pricing-card {
  background: var(--bg-primary);
  border: 3px solid var(--card-border);
  border-radius: 24px;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(126, 60, 223, 0.15);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(126, 60, 223, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  border: 5px solid var(--bg-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 10;
}



/* Button */
.btn-navy {
  background: linear-gradient(135deg, #1E00B3 0%, #0054b3 60%, #00ADB3 100%);
  ;
  border: none;
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(126, 60, 223, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

.btn-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4022d8 0%, #1f75d6 60%, #00c5cb 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(126, 60, 223, 0.5);
  color: #fff;
}

.btn-navy:hover::before {
  opacity: 1;
}

.btn-navy span {
  position: relative;
  z-index: 1;
}

.pricing-badge-navy {
  background: #111E6C;
}

.pricing-badge-purple {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}


.btn-buy-now {
  transition: all 0.3s ease;
}

.btn-buy-now:hover {}

@media (max-width: 768px) {

  .pricing-badge {
    width: 120px;
    height: 120px;
  }

  .pricing-amount {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.5rem;
  }

}

@media (max-width: 576px) {
  .pricing-badge {
    width: 100px;
    height: 100px;
  }

  .pricing-amount {
    font-size: 1.75rem;
  }

  .pricing-period {
    font-size: 0.75rem;
  }
}