/* =======================
   Unsecured Loan Calculator Styling (Refined)
========================= */

#unsecured-calculator {
    font-family: "Poppins", sans-serif;
    color: #333;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  #unsecured-calculator h1 {
    text-align: center;
    font-size: 38px;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  /* ===== Step Numbers ===== */
  .step {
    position: relative;
    padding-left: 70px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
  }
  
  .step:before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #00a79d;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  
  /* ===== Input Field ===== */
  #loan-amount {
    border: 2px solid #ffb84d;
    background: #fff8e5;
    padding: 8px 15px;
    font-size: 22px;
    border-radius: 6px;
    width: 100%;
    text-align: center;
    color: #00a79d;
    font-weight: 600;
  }
  
  /* ===== Range Sliders ===== */
 .ui-slider {
    position: relative;
    /* height: 10px; */
    background: #f9c157 !important;
    border-radius: 50px;
    margin: 10px 0;
  }
  
  .ui-slider-range {
    background: linear-gradient(90deg, #ff4d00, #ff7043) !important;
    border-radius: 50px;
  }
  
  .ui-slider-handle {
    background: #ff4d00 !important;
    border: 3px solid #fff !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50%;
    top: -10px !important;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  }
  
  .range {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-top: 5px;
    font-size: 16px;
  }
  
  .range .min,
  .range .max {
    color: #e74c3c;
  }
  
  /* ===== Labels & Headings ===== */
  .calculate-section .calc-heading {
    font-weight: 700;
    font-size: 18px;
    color: #333;
  }
  
  .amount {
    font-size: 24px;
    color: #00a79d;
    font-weight: 700;
    text-align: right;
  }
  
  .term {
    font-size: 22px;
    color: #00a79d;
    font-weight: 700;
    text-align: right;
  }
  
  /* ===== Right Panel ===== */
  #col-2 {
    border-left: 2px solid #f9c157;
    padding-left: 30px;
  }
  
  #calculation-section {
    background: #fff8e5;
    padding: 25px;
    border-radius: 10px;
  }
  
  #calculation-section .calc-heading {
    font-weight: 600;
    font-size: 18px;
  }
  
  #calculation-section .amount.fig-1 {
    font-size: 36px;
    color: #00a79d;
    font-weight: 700;
  }
  
  .calc-row {
    border-bottom: 1px dashed #f9c157;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 600;

  }
  
/* ===== Apply Now Button (Enhanced) ===== */
.apply-btn {
  background: linear-gradient(135deg, #ff4d00, #ff7043);
  color: #fff !important;
  border: none;
  padding: 18px 60px;
  font-size: 22px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 30px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  width: 100%;
}

.apply-btn:hover {
  background: linear-gradient(135deg, #ff7043, #ff4d00);
  transform: translateY(-3px);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.3);
}

  
