/* ================= Font Weight Utilities ================= */
.fw-900 {
  font-weight: 900 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-400 {
  font-weight: 400 !important;
}

/* ================= SweetAlert2 Professional Styling ================= */

.yyt-swal-popup {
  border-radius: 12px !important;
  border: 1px solid rgba(176, 135, 71, 0.25) !important;
  background: #ffffff !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
  font-family: "Poppins", sans-serif;
}

.yyt-swal-title {
  color: #1b2932 !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
}

.yyt-swal-text {
  color: #4b5563 !important;
  font-size: 0.95rem !important;
}

.yyt-swal-btn {
  background: var(--brand-navy) !important;
  color: var(--brand-white) !important;
  border-radius: 8px !important;
  padding: 0.6rem 1.1rem !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.yyt-swal-btn:hover {
  background: var(--brand-navy-deep) !important;
}

.underline {
  text-decoration: underline !important;
}
.flex-stack {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-center {
  display: flex;
  align-items: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-1 {
  flex: 1;
}

.vertical-line {
  width: 1px;
  background-color: var(--Stroke-Color, #00000040);
}

.section-heading {
  color: var(--brand-white);
  font-weight: 600;
  font-size: clamp(1.625rem, 3vw, 2rem);
  /* font-size: clamp(2rem, 1.75rem + 1vw, 2.5rem);

  @media (max-width: 768px) {
    font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem);
  } */
}
.section-paragraph {
  color: var(--brand-white);
  font-weight: 400;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  margin: 0;

  @media (max-width: 768px) {
    font-size: clamp(0.875rem, 0.82rem + 0.3vw, 1rem);
  }
}

.radius-1 {
  border-radius: 1px;
}
.radius-2 {
  border-radius: 2px;
}
.radius-3 {
  border-radius: 3px;
}
.radius-4 {
  border-radius: 4px;
}
.radius-5 {
  border-radius: 5px;
}
