.hero-btns {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btns .btn {
  transition: all 0.3s ease;
  font-size: 16px;
}

.hero-btns .btn-warning {
  background: #e8bb0a;
  border-color: #e8bb0a;
  color: #1d428b;
}

.hero-btns .btn-warning:hover {
  background: #d62828;
  border-color: #d62828;
  color: #fff;
  transform: translateY(-3px);
}

.hero-btns .btn-outline-light:hover {
  background: #fff;
  color: #1d428b;
  transform: translateY(-3px);
}

@media (max-width: 576px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 230px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------ */

/* admission process section styling starts from here */
.admission-process {
  background: #f8fbff;
  position: relative;
}

.section-padding {
  padding: 30px 0;
}

.section-title span {
  color: #1d428b;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.process-card {
  background: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
  border: 1px solid #edf0f5;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #e8bb0a;
  font-size: 42px;
  font-weight: 800;
  opacity: 0.3;
}

.process-icon {
  width: 85px;
  height: 85px;
  margin: auto;
  border-radius: 50%;
  background: #1d428b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  transition: 0.4s;
}

.process-card:hover .process-icon {
  background: #e8bb0a;
  color: #1d428b;
  transform: rotateY(180deg);
}

.process-card h4 {
  margin: 30px 0 15px;
  color: #1d428b;
  font-weight: 700;
  font-size: 22px;
}

.process-card p {
  color: #666;
  line-height: 28px;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 15px;
    line-height: 28px;
  }

  .process-card {
    padding: 35px 25px;
  }

  .process-icon {
    width: 75px;
    height: 75px;
    font-size: 28px;
  }

  .process-card h4 {
    font-size: 20px;
  }
}

/* admission from section  */
.step {
  text-align: center;
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #dcdcdc;
  color: #555;
  line-height: 50px;
  margin: auto;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
}

.step.active .circle {
  background: #0d6efd;
  color: #fff;
}

.step p {
  margin-top: 10px;
  font-weight: 600;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

/*=============================
SECTION CARD
=============================*/

.admission-section {
  background: #ffffff;

  border: 1px solid #e8edf5;

  border-radius: 18px;

  padding: 30px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);

  transition: 0.35s;
}

.admission-section:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/*=============================
SECTION HEADER
=============================*/

.section-header {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 30px;

  padding-bottom: 18px;

  border-bottom: 1px solid #edf2f8;
}

.section-icon {
  width: 70px;

  height: 70px;

  border-radius: 18px;

  background: linear-gradient(135deg, #1d428b, #2f66d0);

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  font-size: 28px;

  flex-shrink: 0;
}

.section-header h3 {
  margin: 0;

  color: #1d428b;

  font-size: 26px;

  font-weight: 700;
}

.section-header p {
  margin: 4px 0 0;

  color: #777;

  font-size: 14px;
}

/*=============================
INPUTS
=============================*/

#admissionForm label {
  font-size: 14px;

  font-weight: 600;

  color: #1d428b;

  margin-bottom: 8px;
}

#admissionForm .form-control,
#admissionForm .form-select {
  height: 48px;

  border-radius: 12px;

  border: 1px solid #d8e2f0;

  box-shadow: none;

  padding: 12px 16px;

  transition: 0.3s;
}

#admissionForm textarea.form-control {
  height: auto;

  min-height: 110px;
}

#admissionForm .form-control:focus,
#admissionForm .form-select:focus {
  border-color: #1d428b;

  box-shadow: 0 0 0 0.15rem rgba(29, 66, 139, 0.12);
}

/*=============================
FILE INPUT
=============================*/

input[type="file"] {
  padding: 10px;
}

input[type="file"]::file-selector-button {
  background: #1d428b;

  color: #fff;

  border: none;

  border-radius: 8px;

  padding: 8px 14px;

  margin-right: 12px;
}

/*=============================
BUTTON
=============================*/

#nextStep {
  padding: 13px 40px;

  border-radius: 50px;

  background: #1d428b;

  border: none;

  font-weight: 600;
}

#nextStep:hover {
  background: #15336d;
}

/*=============================
MOBILE
=============================*/

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;

    text-align: center;
  }

  .section-icon {
    width: 60px;

    height: 60px;

    font-size: 24px;
  }

  .section-header h3 {
    font-size: 22px;
  }

  .admission-section {
    padding: 20px;
  }
}

/* Section spacing */

.admission-section {
  margin-bottom: 25px;
}

/* Card Header */

.section-header {
  margin-bottom: 25px;
}

/* Textarea */

#admissionForm textarea {
  min-height: 120px;
}

/* Better Row */

#admissionForm .row {
  --bs-gutter-y: 1.3rem;
}

/* File Upload */

input[type="file"] {
  height: 48px;
}

/* Nice Hover */

.admission-section:hover {
  border-color: #1d428b;
}

/* Section Animation */

.admission-section {
  transition: 0.35s;
}

/*==========================
Extra Icons
==========================*/

.mother-icon {
  background: linear-gradient(135deg, #d63384, #ff70ad);
}

.guardian-icon {
  background: linear-gradient(135deg, #198754, #38c172);
}

/*==========================
Buttons
==========================*/

.btn-outline-primary {
  border: 2px solid #1d428b;

  color: #1d428b;

  border-radius: 50px;

  padding: 12px 34px;

  font-weight: 600;
}

.btn-outline-primary:hover {
  background: #1d428b;

  color: #fff;
}

/*==========================
Card Hover
==========================*/

.admission-section {
  position: relative;

  overflow: hidden;
}

.admission-section::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 5px;

  height: 100%;

  background: #1d428b;

  transform: scaleY(0);

  transition: 0.35s;
}

.admission-section:hover::before {
  transform: scaleY(1);
}

/*==========================
Section Title
==========================*/

.section-header h3 {
  font-size: 24px;

  font-weight: 700;
}

.section-header p {
  font-size: 14px;

  margin-top: 4px;

  color: #6c757d;
}

/*==========================
PAYMENT
==========================*/

.payment-summary {
  display: flex;

  justify-content: center;
}

.payment-card {
  width: 260px;

  background: linear-gradient(135deg, #1d428b, #315fc0);

  padding: 35px;

  border-radius: 20px;

  text-align: center;

  color: #fff;

  box-shadow: 0 20px 40px rgba(29, 66, 139, 0.25);
}

.payment-card span {
  font-size: 15px;

  opacity: 0.9;
}

.payment-card h2 {
  font-size: 48px;

  font-weight: 700;

  margin: 12px 0;

  color: #fff;
}

.payment-card small {
  opacity: 0.8;
}

/*==========================*/

.payment-icon {
  background: linear-gradient(135deg, #ff9800, #ffc107);
}

.qr-icon {
  background: linear-gradient(135deg, #1d428b, #3d7bfd);
}

.details-icon {
  background: linear-gradient(135deg, #20c997, #198754);
}

.success-icon {
  background: linear-gradient(135deg, #198754, #20c997);
}

/*==========================*/

.qr-code {
  max-width: 250px;

  padding: 15px;

  background: #fff;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/*==========================*/

.upi-box {
  background: #f8f9fc;

  padding: 25px;

  border-radius: 18px;

  border: 1px solid #e8edf5;
}

.upi-box h5 {
  font-weight: 700;

  margin-bottom: 20px;
}

.upi-icons {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-bottom: 25px;
}

.upi-icons span {
  background: #fff;

  padding: 12px;

  border-radius: 12px;

  text-align: center;

  font-weight: 600;

  border: 1px solid #e8edf5;
}

.upi-id {
  background: #1d428b;

  color: #fff;

  padding: 14px;

  border-radius: 12px;

  font-size: 18px;

  font-weight: 700;

  text-align: center;
}

/*==========================*/

.custom-check {
  background: #f8f9fc;

  padding: 20px;

  border-radius: 15px;

  border: 1px solid #e8edf5;
}

.custom-check label {
  margin-left: 8px;

  line-height: 28px;
}

/*==========================*/

.btn-success {
  background: #198754;

  border: none;

  border-radius: 50px;
}

.btn-success:hover {
  background: #157347;

  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .payment-card {
    width: 100%;
  }

  .upi-icons {
    grid-template-columns: 1fr;
  }

  .qr-code {
    margin-bottom: 25px;
  }
}

/*==================================
PAYMENT CARD
===================================*/

.payment-wrapper {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top: 10px;
}

/* Amount */

.amount-box {
  flex: 1;

  min-height: 260px;

  border-radius: 20px;

  background: linear-gradient(135deg, #1d428b, #3568d4);

  color: #fff;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  padding: 35px;

  box-shadow: 0 15px 35px rgba(29, 66, 139, 0.2);
}

.amount-title {
  font-size: 18px;

  font-weight: 600;

  opacity: 0.9;
}

.amount-box h2 {
  font-size: 70px;

  margin: 15px 0;

  font-weight: 700;

  color: #fff;
}

.amount-box small {
  font-size: 15px;

  opacity: 0.85;
}

/* QR */

.qr-box {
  flex: 1;

  min-height: 260px;

  background: #fff;

  border: 2px dashed #d8e2f0;

  border-radius: 20px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  padding: 25px;

  transition: 0.3s;
}

.qr-box:hover {
  border-color: #1d428b;

  transform: translateY(-3px);
}

.qr-code {
  max-width: 200px;

  background: #fff;

  border-radius: 15px;

  padding: 10px;
}

.qr-box p {
  color: #666;

  font-weight: 600;

  text-align: center;
}

/*==============================
Responsive
==============================*/

@media (max-width: 991px) {
  .payment-wrapper {
    flex-direction: column;
  }

  .amount-box,
  .qr-box {
    width: 100%;

    min-height: auto;
  }

  .amount-box h2 {
    font-size: 55px;
  }
}

@media (max-width: 576px) {
  .amount-box {
    padding: 30px 20px;
  }

  .amount-box h2 {
    font-size: 48px;
  }

  .qr-code {
    max-width: 170px;
  }
}
