body {
  font-family: 'Barlow', sans-serif;
  background: #F9F5F1
}

/* Bootstrap Overrides */
.btn-outline-warning:hover {
    background-color: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
}

.btn-outline-warning {
    --bs-btn-color: #4f46e5;
    --bs-btn-border-color: #4f46e5;
}

.btn:hover {
    background-color: #4f46e5;
    color: #f9fdff;
    border-color: #4f46e5;
}

.bg-purple {
    background-color: #4f46e5;
}

.text-purple {
    color: #4f46e5;
}

.bold {
      font-weight: 700;
  font-size: 1rem;
}

/* Navigation Hover Effect */
.nav-hover {
    transition: all 0.2s ease-in-out;
    border-radius: 8px;
    padding: 8px 12px !important;
}

.nav-hover:hover {
    background-color: rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar {
    font-weight: 550;
    font-size: 17px;
    min-height: 64px;
}
/*Footer CSS*/
.custom-footer {
    background-color: #1e293b;
}

.footer-heading {
    color: #ffffff;
    font-weight: 700;
}

.footer-text {
    color: #cbd5e1;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fbbf24; 
}


/* Navigation Divider */
.nav-divider {
    width: 1px;
    height: 24px;
    background-color: #f9fdff;
    align-self: center;
    margin: 0 12px;
}

/* Orange Button Styles */
.bg-navbar {
    background-color: #f9fdff;
}

/* Button Sytles */
.btn-primary,
.btn-outline,
.btn-red,
.btn-grey{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 170px;
  height: 54px;
  border-radius: 12px;
  text-decoration: none;
  line-height: 1.1;
  font-family: inherit;
  font-weight: inherit;
}

.btn-primary{
  background: #4f46e5;
  color: #fff;
  border: 2px solid transparent;
}

.btn-red{
  background: #e54646;
  color: #fff;
  border: 2px solid transparent;
}

.btn-grey {
    background: #6b7280;
    color: #fff;
    border: 2px solid transparent;
     font-weight: 700;
    border-radius: 12px;
    padding: 12px 16px;
}

.btn-primary:hover{ filter: brightness(0.98); }

.btn-red:hover{ filter: brightness(0.98); }

.btn-grey:hover{ filter: brightness(0.98); }

.btn-outline{
  background: #fff;
  color: #4f46e5;
  border: 2px solid #4f46e5;
}

.btn-arrow{
  font-size: 18px;
  margin-left: 2px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: #fff;
  color: #4f46e5;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.75);
}
