 

.z-index-2 {
  z-index: 2;
}

.text-white-50 {
  color: rgba(255,255,255,0.5) !important;
}

/* =========================================================
   STICKY HEADER (LOGO ONLY)
========================================================= */
.simple-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 10px 0;
}

.simple-header .logo img {
  height: 55px;
  width: auto;
  display: block;
}

/* =========================================================
   SIMPLE FOOTER
========================================================= */
.simple-footer {
  background: #08053b;
  padding: 15px 0;
}

.simple-footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.simple-footer a:hover {
  text-decoration: underline;
}

/* =========================================================
   SCHOLARSHIP HERO SECTION
========================================================= */
.scholarship-banner {
  min-height: 70vh;
  color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.banner-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* =========================================================
   SCHOLARSHIP STATS CARD
========================================================= */
.scholarship-stats {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* =========================================================
   FEE FLOATING BOX
========================================================= */
.scholarship-fee-fixed {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1050;
  width: 240px;
}

.fee-box {
  background: linear-gradient(145deg, #ffffff, #fefefe);
  border: 2px solid #ffc107;
  border-radius: 20px;
  padding: 1.75rem 1.25rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  backdrop-filter: blur(12px);
  animation: feeSlideUp 0.4s ease-out 0.3s forwards;
  opacity: 0;
}

@keyframes feeSlideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.btn-close-fee {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: #dc3545;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(220,53,69,0.4);
}

.btn-close-fee:hover {
  background: #c82333;
}

/* Fee Content */
.fee-header {
  font-size: 0.9rem;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.fee-item {
  text-align: center;
  padding: 0.75rem;
  border-radius: 12px;
  font-weight: 600;
}

.fee-item.cbse {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border: 1px solid #f59e0b;
  color: #b45309;
}

.fee-item.ib {
  background: linear-gradient(135deg, #dbeafe, #93c5fd);
  border: 1px solid #2563eb;
  color: #1e40af;
}

.fee-item strong {
  font-size: 1.1rem;
}

.btn-apply {
  margin-top: 0.75rem;
  background: linear-gradient(135deg, #0d6efd, #2563eb);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem;
  border-radius: 10px;
  text-decoration: none;
  display: block;
  text-align: center;
}

/* =========================================================
   MOBILE OPTIMISATION
========================================================= */
@media (max-width: 768px) {
  .scholarship-banner h1 {
    font-size: 2.5rem !important;
  }

  .scholarship-stats {
    margin-top: 2rem;
  }

  .scholarship-fee-fixed {
    bottom: 110px;
    right: 15px;
    width: 220px;
  }
}

.scholarship-form-card {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
}

.scholarship-form-card input,
.scholarship-form-card select {
  height: 48px;
  font-size: 0.95rem;
}

.scholarship-form-card button {
  padding: 12px;
  font-size: 1rem;
}

/* ===== PREMIUM FORM UI ===== */
.section-heading {
  font-weight: 700;
  color: #0d3b66;
  border-left: 4px solid #0d6efd;
  padding-left: 12px;
}

.form-label {
  font-size: 0.9rem;
  color: #1f2937;
}

.form-control,
.form-select {
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  transition: all 0.25s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.card {
  border-radius: 18px;
}

.card-body {
  background: #ffffff;
}

.upload-area {
  border-radius: 16px;
}

.upload-area label {
  font-size: 0.95rem;
}

.upload-area input[type="file"] {
  padding: 10px;
}

.invalid-feedback {
  font-size: 0.8rem;
}

/* Submit button enhancement */
.btn-proceed-payment {
  border-radius: 14px;
  padding: 14px;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 20px rgba(255,193,7,0.35);
}

.btn-proceed-payment:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255,193,7,0.45);
}

/* Step indicator polish */
.bg-green-light {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

/* Mobile spacing */
@media (max-width: 768px) {
  .card-body {
    padding: 1.5rem !important;
  }
}

/* ===== TRENDY BACKGROUND ===== */
.trendy-bg {
  background: linear-gradient(135deg, #f0f9ff 0%, #eef2ff 50%, #fdf4ff 100%);
  min-height: 100vh;
}

/* ===== GLASS FORM CARD ===== */
.trendy-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-weight: 700;
  color: #1e3a8a;
  border-left: 4px solid #6366f1;
  padding-left: 14px;
  margin-bottom: 1.2rem;
}

/* ===== INPUTS ===== */
.form-control,
.form-select {
  border-radius: 14px;
  padding: 13px 15px;
  border: 1px solid #c7d2fe;
  background: #ffffff;
  transition: all 0.25s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 5px rgba(99, 102, 241, 0.18);
}

/* ===== LABELS ===== */
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

/* ===== UPLOAD AREA ===== */
.upload-area {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border: 2px dashed #6366f1;
  border-radius: 18px;
}

/* ===== BUTTON ===== */
.btn-proceed-payment {
  border-radius: 16px;
  padding: 15px;
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.btn-proceed-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 193, 7, 0.55);
}

/* ===== SMOOTH ANIMATION ===== */
[data-aos] {
  transition-duration: 800ms !important;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .trendy-card {
    border-radius: 16px;
  }
}


