@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap');

/* Root Colors */
:root {
  --primary-color: #4c1d95;
  --secondary-color: #64748b;
  --dark-color: #1e293b;
  --light-bg-start: #f8f9ff;
  --light-bg-end: #e8f0ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins, sans-serif;
  background: linear-gradient(135deg, var(--light-bg-start) 0%, var(--light-bg-end) 100%);
  min-height: 100vh;
}

.navbar-brand img {
  height: 150px; /* Match your desired navbar height */
  object-fit: contain;
}

.proba-button {
  background-color: var(--primary-color);
}

.proba-button-two {
  border: var(--primary-color) solid 1px;
  color: var(--primary-color);
}

.title-text {
  color: var(--primary-color);
}

.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--light-bg-start);
  backdrop-filter: blur(10px);
  border-bottom: var(--light-bg-end);
}

.navbar-brand {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  color: var(--secondary-color) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.hero-title {
  font-size: 35px;
  color: var(--dark-color);
}

.hero-description {
  font-size: 15px;
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.stat-number {
  font-size: 2rem;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.icon-circle {
  width: 50px; 
  height: 50px;
  background-color: var(--primary-color);
}

@media (width < 768px) {
  .hero-title {
    font-size: 24px;
    margin-top: 100px;
    text-align: center;
  }

  .hero-image {
    height: 400px;
    margin-top: 3rem;
  }

  .hero-description {
    font-size: 12px;
    text-align: center;
  }

  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    display: flex;
    gap: 0.5rem; /* space between buttons */
    flex-wrap: nowrap; /* prevent wrapping */
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 9px;
  }
}

.highlight-text{
  color: var(--primary-color);
}

.contact-btn{
  background-color: var(--primary-color);
}

/* Pricing Section */
.billing-toggle {
  width: 186px;
  border: 1px solid var(--primary-color);
}

.billing-btn {
  padding: 8px 10px;
  background: transparent;
  color: black;
  font-weight: 500;
  transition: all 0.3s ease;
}

.billing-btn.active {
  background: var(--primary-color);
  color: var(--dark-bg);
}

.pricing-card {
  background-image: url('/assets/images/worflow-cards.png');
  background-position: center;
  border-radius: 35px;
}

.pricing-card.featured {
  background-image: url('/assets/images/worflow-cards.png');
  background-size: cover;
  background-position: center;
  border-radius: 35px;
  padding: 40px;
  transform: scale(1.05);
  border: 1px solid var(--primary-teal);
}

.plan-icon {
  width: 55px;
  height: 55px;
  font-size: 20px;
}

.pricing-card:not(.featured) .plan-icon {
  background: #2dd4bf1a; /* 10% opacity */
  color: var(--primary-teal);
}

.pricing-card.featured .plan-icon {
  background: #0f172a33; /* 20% opacity */
  color: var(--dark-bg);
}

.plan-description {
  margin-bottom: 30px;
  opacity: 0.8;
}

.price {
  margin-bottom: 5px;
  align-items: baseline;
  gap: 10px;
}

.currency {
  font-size: 1.5rem;
}

.period {
  opacity: 0.7;
  color: var(--primary-color) !important;
  font-size: 12px;
}

.cta-button {
  border-radius: 10px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin: 30px auto;
}

.pricing-card.featured .cta-button {
  background: var(--primary-color);
  color: var(--white-color);
}

.btn-two{
  border: 1px solid var(--primary-color) !important;
}

.features-title {
  font-weight: 200;
  font-size: 15px !important;
}

.feature-item {
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.75rem;
}

.feature-icon {
  width: 20px;
  height: 20px;
  font-size: 12px;
  flex-shrink: 0;
}

.pricing-card:not(.featured) .feature-icon {
  background: #2dd4bf1a; /* 10% opacity */
  color: var(--primary-teal);
}

.pricing-card.featured .feature-icon {
  background: #0f172a33; /* 20% opacity */
  color: var(--primary-teal);
}

.form-control:focus {
    border-color: var(--secondary-color);
}

.form-control{
  border-color: var(--primary-color) !important;
  font-size: 13px;
}

.social-icon{
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
}