/* GLOBAL */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  padding: 12px 0;
  background: #fff;
  z-index: 999;
}

.navbar-brand img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: 0.3s;
}



/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

  .navbar {
    padding: 8px 0;
  }

  .navbar .container {
    justify-content: center;
  }

  .navbar-brand {
    margin: 0;
  }

  .navbar-brand img {
    height: 42px;
    max-width: 100%;
  }
}

/* HERO SECTION (UNCHANGED) */


/* =========================
   APPLY NOW BUTTON
========================= */

.apply-btn {
  position: absolute;
  left: 320px;
  bottom: 200px;

  background: linear-gradient(to right, #46143C, #F3C656);
  color: #fff;

  padding: 12px 25px;
  border-radius: 30px;

  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;

  z-index: 20;
}

.apply-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}



/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;

  background: url('images/hero.jpg') no-repeat left center;

  /* FULL IMAGE SHOW */
  background-size: 100% auto;

  height: 650px;

  background-color: #46143C;

  display: flex;
  align-items: flex-start;

  overflow: visible;

  
}

/* ROW */
.hero-section .row {
  align-items: flex-start;
}

/* =========================
   FLOATING FORM
========================= */

/* =========================
   FLOATING FORM
========================= */

.form-box {
  background: #ffffff;

  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);

  max-width: 400px;
  width: 100%;

  position: relative;

  /* REDUCED TOP GAP */
  top: 0px;

  margin-top: 0;

  z-index: 20;
}

/* LOGIN ACTIVE */
.hero-section.login-active .form-box {
  top: 20px;
}

/* ROW */
.hero-section .row {
  height: 100%;
  align-items: center;
}

/* LOGIN ACTIVE */
.hero-section.login-active {
  align-items: flex-start;
}

.hero-section.login-active .form-box {
  margin-top: 40px;
}



/* =========================
   FORM BOX
========================= */

.form-box {
  background: #ffffff;

  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

  max-width: 400px;
  width: 100%;

  margin-top: 40px;
}

/* HEADER */
.form-box::before {
  content: "Admission Open";

  display: block;

  text-align: center;

  padding: 12px;

  font-size: 20px;
  font-weight: 700;

  color: #fff;

  background: linear-gradient(to right, #46143C, #F3C656);
}

/* INNER FORM */
.form-box form {
  padding: 15px;
}

/* =========================
   FORM TABS
========================= */

.form-tabs {
  display: flex;
  gap: 8px;

  padding: 10px 15px 0;
}

.tab {
  border: 1px solid #46143C;

  padding: 5px 14px;

  border-radius: 20px;

  background: transparent;
  color: #46143C;

  font-weight: 600;
  font-size: 13px;

  cursor: pointer;

  transition: 0.3s;
}

.tab.active,
.tab:hover {
  background: #46143C;
  color: #fff;
}

/* =========================
   INPUTS
========================= */

.form-control,
.form-select {
  border-radius: 25px;

  padding: 8px 14px;

  border: 1px solid #eee;

  font-size: 13px;

  background-color: #f7f7f7;

  height: auto;
}

.form-control:focus,
.form-select:focus {
  background-color: #ffffff;

  border-color: #d4a5c7;

  box-shadow: none;
}

/* SPACING */
.mb-3 {
  margin-bottom: 10px !important;
}

/* =========================
   CAPTCHA
========================= */

.captcha-box {
  background: #f1f1f1;

  padding: 8px 12px;

  border-radius: 8px;

  font-weight: bold;
  font-size: 13px;
}

/* =========================
   CHECKBOX
========================= */

.form-check {
  margin-bottom: 10px;
}

.form-check-label {
  font-size: 12px;
}

.form-check-input:checked {
  background-color: #46143C;
  border-color: #46143C;
}

/* =========================
   BUTTON
========================= */

.register-btn {
  background: linear-gradient(to right, #3a2d1c, #6a1b4d);

  border: none;

  padding: 10px;

  border-radius: 25px;

  color: #fff;

  font-weight: 600;
  font-size: 14px;

  transition: 0.3s;
}

.register-btn:hover {
  opacity: 0.9;
}

/* =========================
   RESEND
========================= */

.resend {
  color: #46143C;

  cursor: pointer;

  font-size: 12px;
  font-weight: 600;

  margin-top: 5px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

  .hero-section {

    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;

    padding-top: 58vw;

    padding-bottom: 40px;

    min-height: auto;

    display: block;
  }

  /* FORM BELOW IMAGE */
  .hero-section .container {
    margin-top: 20px;
  }

  .hero-section .row {
    justify-content: center !important;
  }

  .form-box {
    margin: 0 auto;
    max-width: 100%;
  }

  /* APPLY BUTTON */
  .apply-btn {
    left: 20px;

    bottom: auto;
    top: 42vw;

    padding: 10px 20px;

    font-size: 14px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

  .hero-section {

    /* MOBILE IMAGE */
    background: url('images/hero-mobile.jpg') no-repeat top center;

    background-size: 100% auto;

    display: block;

    padding-top: 65vw;

    height: auto;
    min-height: auto;

    padding-bottom: 30px;
  }

  /* FORM BELOW IMAGE */
  .hero-section .container {
    margin-top: 15px;
  }

  .hero-section .row {
    justify-content: center !important;
  }

  .col-sm-10 {
    width: 100%;
    padding: 0 15px;
  }

  .form-box {
    margin: 0 auto;

    border-radius: 15px;

    max-width: 100%;
  }

  /* APPLY BUTTON */
  .apply-btn {
    visibility: hidden;

    top: 72vw;
    left: 15px;

    font-size: 13px;

    padding: 6px 16px;
  }

  /* FORM ELEMENTS */
  .form-control,
  .form-select {
    font-size: 12px;

    padding: 8px 12px;
  }

  .register-btn {
    font-size: 13px;
  }

  .resend {
    font-size: 11px;
  }
}




/* =========================
   STEPS BANNER SECTION
========================= */

.steps-banner-section {
  padding: 100px 0;
  background: #f5f5f5;
}

/* HEADING */
.steps-banner-title {
  font-size: 36px;
  font-weight: 700;
  color: #46143C;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* DIVIDER */
.steps-divider {
  width: 100px;
  height: 3px;
  background: #F3C656;
  margin: 0 auto 40px;
  position: relative;
}

.steps-divider::before,
.steps-divider::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #F3C656;
  border-radius: 50%;
  position: absolute;
  top: -3px;
}

.steps-divider::before {
  left: 25px;
}

.steps-divider::after {
  right: 25px;
}

/* IMAGE WRAPPER */
.steps-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* LANDSCAPE IMAGE */
.steps-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .steps-banner-section {
    padding: 60px 0;
  }

  .steps-banner-title {
    font-size: 28px;
  }

  .steps-image-wrapper {
    border-radius: 15px;
  }
}






/* =========================
   INSTRUCTIONS SECTION
========================= */

.instructions-section {
  padding: 80px 0;
  background: #EBC87C;
}

/* HEADING */
.instructions-title {
  font-size: 36px;
  font-weight: 700;
  color: #46143C;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* DIVIDER */
.instructions-divider {
  width: 90px;
  height: 3px;
  background: #F3C656;
  margin: auto;
  position: relative;
}

.instructions-divider::before,
.instructions-divider::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #F3C656;
  border-radius: 50%;
  position: absolute;
  top: -3px;
}

.instructions-divider::before {
  left: 20px;
}

.instructions-divider::after {
  right: 20px;
}

/* IMAGE */
.instructions-image img {
  border-radius: 20px;
  /* box-shadow: 0 15px 35px rgba(0,0,0,0.12); */
  width: 100%;
}

/* CONTENT BOX */
.instructions-content {
  /* background: #fff; */
  background: #46143C;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* LIST */
.instructions-list {
  padding-left: 20px;
  margin-bottom: 30px;
}

.instructions-list li {
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.7;
  font-size: 15px;
}

/* QUERY BOX */
.query-box {
  background: #f9f5ef;
  border-left: 5px solid #F3C656;
  padding: 25px;
  border-radius: 15px;
}

.query-box h5 {
  color: #46143C;
  font-weight: 700;
  margin-bottom: 20px;
}

/* QUERY STEPS */
.query-step {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
}

.query-step span {
  width: 30px;
  height: 30px;
  background: linear-gradient(to right, #46143C, #F3C656);
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 700;

  margin-right: 12px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .instructions-section {
    padding: 60px 0;
  }

  .instructions-title {
    font-size: 28px;
  }

  .instructions-content {
    padding: 25px;
  }

  .instructions-list li,
  .query-step {
    font-size: 14px;
  }
}



/* =========================
   MINIMAL FOOTER
========================= */

.simple-footer {

  background: #46143C;

  padding: 28px 0 18px;

  border-top: 4px solid #F3C656;
}

/* LOGO */
.simple-footer .footer-logo {

  width: 100px;

  margin-bottom: 15px;
}

/* COPYRIGHT */
.footer-copy {

  color: rgba(255,255,255,0.75);

  font-size: 14px;

  margin: 0;
}

/* MOBILE */
@media (max-width: 576px) {

  .simple-footer {

    padding: 24px 0 15px;
  }

  .simple-footer .footer-logo {

    width: 115px;
  }

  .footer-copy {

    font-size: 12px;
  }
}