/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
}

/* Gradient Background for Navbar and Hero */
.bg-gradient-primary {
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 50%, #8e2de2 100%);
}

/* Navbar Logo Styling */
.navbar-logo {
  width: 130px;
  object-fit: contain; /* keeps proportions without distortion */
  margin-left: 55px;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 992px) {
  .navbar-logo {
    width: 120px;
    height: 120px;
  }
}


/* Hero Section */
.hero-section {
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 50%, #8e2de2 100%);
}

/* Buttons */
.btn-primary {
  background-color: #2a5298;
  border: none;
}
.btn-primary:hover {
  background-color: #1e3c72;
}

.btn-outline-primary {
  border-color: #2a5298;
  color: #2a5298;
}
.btn-outline-primary:hover {
  background-color: #2a5298;
  color: #fff;
}

/* Pricing Card */
.pricing-card {
  max-width: 350px;
  border-radius: 12px;
  border: none;
}

/* Footer */
footer {
  font-size: 0.9rem;
}
