.career-form-custom {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 20px;
}

.form-header h2 {
  font-size: 28px;
  margin: 0;
  color: #333;
}

.form-header p {
  color: #666;
  margin: 6px 0 0;
}

/* Form layout */
.career-form-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.career-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.career-col {
  flex: 1;
  min-width: 260px;
}

.career-col label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #444;
}

.career-col input,
.career-col textarea,
.career-col select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  font-size: 15px;
  box-sizing: border-box;
  transition: 0.3s;
}

.career-col input:focus,
.career-col textarea:focus,
.career-col select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  color: #fff;
  font-size: 16px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,123,255,0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .career-row {
    flex-direction: column;
  }
}

/* Donation Section */
.donate-section{
  padding:60px 20px;
  background:#f4f7fc;
  font-family:"Segoe UI", sans-serif;
}

/* Header */
.donate-header{
  text-align:center;
  max-width:600px;
  margin:0 auto 40px;
}
.donate-header__title{
  font-size:32px;
  color:#1f4fd8;
  margin-bottom:10px;
}
.donate-header__subtitle{
  font-size:16px;
  color:#555;
}

/* Form Box */
.donate-form{
  max-width:480px;
  margin:0 auto;
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* Form Rows */
.donate-form__row{
  margin-bottom:18px;
}
.donate-form__label{
  display:block;
  font-size:14px;
  margin-bottom:6px;
  color:#444;
}
.donate-form__input,
.donate-form__select{
  width:100%;
  padding:12px 14px;
  font-size:14px;
  border-radius:8px;
  border:1px solid #ddd;
  outline:none;
}
.donate-form__input:focus,
.donate-form__select:focus{
  border-color:#1f4fd8;
}

/* Amount Buttons */
.donate-amount{
  display:flex;
  gap:10px;
  margin-bottom:20px;
}
.donate-amount__btn{
  flex:1;
  padding:10px;
  border-radius:8px;
  border:1px solid #1f4fd8;
  background:#fff;
  color:#1f4fd8;
  font-size:14px;
  cursor:pointer;
  transition:all .3s ease;
}
.donate-amount__btn:hover{
  background:#1f4fd8;
  color:#fff;
}

/* Payment Button */
.donate-action{
  width:100%;
  padding:15px;
  background:#1f4fd8;
  color:#fff;
  font-size:16px;
  border:none;
  border-radius:10px;
  cursor:pointer;
  transition:background .3s ease;
}
.donate-action:hover{
  background:#173db2;
}

/* Payment Flow Placeholder */
.donate-flow{
  max-width:480px;
  margin:30px auto 0;
  padding:25px;
  background:#eef3ff;
  border-radius:14px;
  text-align:center;
  display:none; /* JS ke through show karna */
}
.donate-flow__title{
  color:#1f4fd8;
  margin-bottom:8px;
}
.donate-flow__text{
  font-size:14px;
  color:#555;
}
.d-btn {
  margin-top:20px;
}
.nice-select{
margin-bottom: 20px;
}

/* Responsive */
@media(max-width:600px){
  .donate-header__title{
    font-size:26px;
  }
  .donate-form{
    padding:22px;
  }
}
.admission-section {
  padding: 60px 20px;
  background: #f4f7fc;
  font-family: "Segoe UI", sans-serif;
}

.admission-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}
.admission-header h2 {
  font-size: 30px;
  color: #1f4fd8;
  margin-bottom: 6px;
}
.admission-header p {
  font-size: 15px;
  color: #d63031;
  font-weight: 600;
}

/* Form */
.admission-form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Full width rows */
.form-row.full-width {
  grid-column: 1 / -1;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
  box-sizing: border-box;
}

.form-row input:focus,
.form-row select:focus {
  border-color: #1f4fd8;
  box-shadow: 0 0 0 2px rgba(31,79,216,0.1);
}

/* Aadhaar Highlight */
input[name="aadhaar"] {
  border: 1px solid #ff7675;
}
input[name="aadhaar"]:focus {
  border-color: #d63031;
}

/* Readonly fee */
input[readonly] {
  background: #f1f4ff;
  color: #1f4fd8;
  font-weight: 600;
  cursor: not-allowed;
}

/* Action Button */
.form-action {
  margin-top: 25px;
}
.form-action button {
  width: 100%;
  padding: 16px;
  background: #1f4fd8;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.form-action button:hover {
  background: #173db2;
}

/* Responsive */
@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .admission-form {
    padding: 25px;
  }
}

.fs-wrapper{
  width:100%;
  padding:20px;
}

.fs-card{
  max-width:880px;
  margin:auto;
  background:#fff;
  border-radius:18px;
  padding:48px 56px;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
  animation:fs-fadeUp .7s ease forwards;
}

.fs-status{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:28px;
}

.fs-status-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#16a34a;
  display:flex;
  align-items:center;
  justify-content:center;
  animation:fs-popIn .6s ease;
}

.fs-status-icon i{
  color:#fff;
  font-size:30px;
}

.fs-status-text h1{
  font-size:30px;
  font-weight:700;
  margin-bottom:4px;
}

.fs-status-text p{
  color:#6b7280;
  font-size:15px;
}

.fs-divider{
  height:1px;
  background:#e5e7eb;
  margin:32px 0;
}

.fs-details{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.fs-detail-box{
  background:#f9fafb;
  border-radius:14px;
  padding:22px;
  border:1px solid #e5e7eb;
}

.fs-detail-box span{
  font-size:12px;
  color:#6b7280;
  letter-spacing:.08em;
  display:block;
  margin-bottom:6px;
}

.fs-detail-box strong{
  font-size:17px;
  font-weight:600;
}

.fs-actions{
  margin-top:36px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.fs-btn{
  padding:14px 26px;
  border-radius:12px;
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  transition:.3s;
}

.fs-btn-primary{
  background:#2563eb;
  color:#fff;
}

.fs-btn-primary:hover{
  background:#1d4ed8;
}

.fs-btn-outline{
  border:1px solid #d1d5db;
  background:#fff;
  color:#1f2937;
}

.fs-btn-outline:hover{
  background:#f3f4f6;
}

.fs-note{
  margin-top:28px;
  font-size:14px;
  color:#6b7280;
}

@media(max-width:768px){
  .fs-card{padding:32px 24px;}
  .fs-status{flex-direction:column;align-items:flex-start;}
  .fs-details{grid-template-columns:1fr;}
}

@keyframes fs-popIn{
  from{transform:scale(.5);opacity:0}
  to{transform:scale(1);opacity:1}
}

@keyframes fs-fadeUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:none}
}