:root {
--bs-primary: #0061f2;
--bs-primary-rgb: 0, 97, 242;
}


/* Optional: slightly darker hover state */
.btn-primary:hover,
.nav .nav-link:hover {
  --bs-primary: #5658dd;
  --bs-primary-rgb: 86, 88, 221;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f5f7ff 0%, #e0e7ff 100%);
  min-height: 100vh;
}
.navbar {
  background: rgba(13, 110, 253, 0.95) !important;
  backdrop-filter: blur(10px);
}
.hero {
  padding: 100px 0;
  background: url('assets/images/hero-bg.svg') center/cover no-repeat;
}
.pricing-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 1rem;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}
.pricing-card.popular {
  transform: scale(1.05);
  z-index: 10;
  border: 3px solid var(--bs-primary);
}
.price {
  font-size: 3.5rem;
  font-weight: 800;
}
.btn-custom {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

.loading-state {
    font-family: Arial;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loading {
    font-family: Arial;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid #ddd;
    border-top-color: orange;
    animation: loading 1s linear infinite;
}
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

