/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body{
  background:#eef2f6;
  color:#222;
}

/* =========================
   TOOLBAR
========================= */
.toolbar{
  background:#0b2e59;
  padding:16px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.logo{
  height:32px;
  margin-right:12px;
}

.check-status-icon{
  height:26px;
  cursor:pointer;
  transition:0.2s ease;
}

.check-status-icon:hover{
  transform:scale(1.1);
}

.toolbar-title{
  font-size:18px;
  font-weight:600;
  letter-spacing:0.5px;
}

/* =========================
   MAIN CONTAINER
========================= */
.main-container{
  max-width:950px;
  margin:auto;
  padding:24px 18px 40px 18px;
}

/* =========================
   WHITE CARDS
========================= */
.card{
  background:#ffffff;
  padding:22px;
  border-radius:16px;
  margin-bottom:20px;
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
  transition:0.2s ease;
}

.card:hover{
  transform:translateY(-2px);
}

.card-title{
  font-size:24px;
  font-weight:600;
  margin-bottom:10px;
  color:#1c1c1c;
}

.card-sub{
  font-size:16px;
  color:#666;
}

.desc-text{
  font-size:16px;
  color:#333;
  line-height:1.6;
}

/* =========================
   LOAN GRADIENT CARD
========================= */
.loan-card{
  background:linear-gradient(135deg,#1fa6c3,#1b7fa8);
  padding:28px 22px;
  border-radius:18px;
  color:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  margin-bottom:10px;
}

.loan-label{
  font-size:14px;
  opacity:0.9;
  margin-bottom:10px;
  font-weight:500;
}

/* Amount Input */
/* PROFESSIONAL ₹ INPUT */

.loan-input-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ffffff;
  border-radius:14px;
  padding:8px 14px;
  margin-bottom:15px;
}

.rupee-box{
  font-size:30px;
  font-weight:700;
  color:#1c1c1c;
  margin-right:6px;
}

.loan-input{
  border:none;
  outline:none;
  font-size:34px;
  font-weight:700;
  text-align:left;
  width:auto;
  min-width:120px;
  color:#1c1c1c;
  background:transparent;
}

/* Remove number arrows */
.loan-input::-webkit-outer-spin-button,
.loan-input::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin:0;
}

.loan-input[type=number]{
  -moz-appearance:textfield;
}
/* Rupee symbol centered */
.rupee-symbol{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-70%, -50%);
  font-size:36px;
  font-weight:700;
  color:#1c1c1c;
  pointer-events:none;
}

/* Text below input */
.loan-range-text{
  font-size:14px;
  opacity:0.95;
  margin-bottom:6px;
}

.loan-note{
  font-size:12px;
  opacity:0.85;
  margin-bottom:16px;
  line-height:1.4;
}

.emi-text{
  font-size:15px;
  margin-bottom:16px;
  font-weight:600;
}

/* =========================
   CHECK OFFER BUTTON
========================= */
.check-offer-btn{
  width:100%;
  padding:15px;
  background:#ff6a00;
  border:none;
  border-radius:10px;
  color:#fff;
  font-weight:600;
  font-size:16px;
  cursor:pointer;
  transition:0.3s ease;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.check-offer-btn:hover{
  background:#e65f00;
  transform:translateY(-1px);
}

/* =========================
   TERMS TEXT
========================= */
.tnc{
  text-align:center;
  margin-top:15px;
  font-size:14px;
  color:#666;
}

.tnc span{
  color:#ff6a00;
  font-weight:500;
  cursor:pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){

  .card-title{
    font-size:20px;
  }

  .loan-input{
    font-size:28px;
  }

  .main-container{
    padding:18px 14px 30px 14px;
  }
}

/* =========================
   ELIGIBILITY CARD
========================= */

.eligibility-card{
  background:#f4f5f7;
  padding:24px;
  border-radius:18px;
  margin-top:25px;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.eligibility-card h2{
  font-size:22px;
  font-weight:600;
  margin-bottom:10px;
  color:#1c1c1c;
}

.eligibility-sub{
  color:#6b6b6b;
  margin-bottom:18px;
  font-size:15px;
}

.eligibility-card h3{
  font-size:18px;
  font-weight:600;
  margin-top:18px;
  margin-bottom:8px;
  color:#1c1c1c;
}

.eligibility-card p{
  font-size:15px;
  line-height:1.6;
  color:#4a4a4a;
  margin-bottom:10px;
}

.age-text{
  font-weight:500;
  margin-top:10px;
}

.small-note{
  font-size:13px;
  color:#777;
}

/* Mobile refinement */
@media(max-width:768px){
  .eligibility-card{
    padding:18px;
  }

  .eligibility-card h2{
    font-size:19px;
  }

  .eligibility-card h3{
    font-size:16px;
  }
}

/* =========================
   FEES & CHARGES CARD
========================= */

/* =========================
   FEES & CHARGES TABLE FIXED
========================= */

.fees-card{
  background:#f4f5f7;
  padding:24px;
  border-radius:20px;
  margin-top:30px;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.fees-card h2{
  font-size:22px;
  font-weight:600;
  margin-bottom:18px;
}

/* Table wrapper for mobile scroll */
.fees-table-wrapper{
  overflow-x:auto;
}

/* Actual table */
.fees-table{
  width:100%;
  border-collapse:collapse;
  min-width:600px; /* prevents breaking on mobile */
  background:#fff;
  border:1px solid #cfcfcf;
  border-radius:18px;
  overflow:hidden;
}

.fees-table th,
.fees-table td{
  border:1px solid #cfcfcf;
  padding:18px;
  text-align:left;
  vertical-align:top;
  font-size:15px;
  line-height:1.6;
}

.fees-table th{
  background:#efefef;
  font-weight:600;
}

/* =========================
   FAQ SECTION
========================= */

.faq-card{
  background:#f4f5f7;
  padding:24px;
  border-radius:20px;
  margin-top:30px;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.faq-card h2{
  font-size:22px;
  font-weight:600;
  margin-bottom:18px;
}

/* FAQ Item */
.faq-item{
  background:#e9edf3;
  border-radius:12px;
  margin-bottom:12px;
  overflow:hidden;
  transition:0.3s ease;
}

.faq-question{
  padding:16px 18px;
  font-size:16px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-arrow{
  color:#ff6a00;
  font-size:18px;
  transition:0.3s ease;
}

.faq-answer{
  padding:0 18px 18px 18px;
  font-size:15px;
  line-height:1.6;
  color:#555;
  display:none;
}

/* Active State */
.faq-item.active .faq-answer{
  display:block;
}

.faq-item.active .faq-arrow{
  transform:rotate(180deg);
}

/* Show More */
.faq-show-more{
  text-align:center;
  margin-top:10px;
  color:#ff6a00;
  font-weight:600;
  cursor:pointer;
}

/* Mobile */
@media(max-width:768px){
  .faq-card{
    padding:18px;
  }

  .faq-question{
    font-size:15px;
  }

  .faq-answer{
    font-size:14px;
  }
}

.faq-arrow{
  display:flex;
  align-items:center;
  transition:0.3s ease;
}

.faq-item.active .faq-arrow{
  transform:rotate(180deg);
}