/* ===============================
   GLOBAL
================================ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Slab', serif;

}

a {
  text-decoration: none;
}

sup {
  left: -14px;
}

/* Font-size classes */
.font-86 {
  font-size: 86px;
  line-height: 66px;
}

.font-78 {
  font-size: 78px;
  line-height: 66px;
}

.font-76 {
  font-size: 76px;
  line-height: 71px;
}

.font-60 {
  font-size: 60px;
  line-height: 55px;
}

.font-40 {
  font-size: 40px;
  line-height: 48px;
}

.font-39 {
  font-size: 39px;
  line-height: 48px;
}

.font-36 {
  font-size: 36px;
}

.font-24 {
  font-size: 24px;
  line-height: 36px;
}

.font-21 {
  font-size: 21px;
  line-height: 30px;
}

.font-20 {
  font-size: 20px;
  line-height: 24px;
}

.font-18 {
  font-size: 18px;
  line-height: 24px;
}

.font-16 {
  font-size: 16px;
  line-height: 30px;
}



/* ===============================
   NAVBAR
================================ */
.header .reva-navbar {
  background: transparent;
  padding: 40px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: background-color 0.35s ease, padding 0.35s ease;
}

.header .reva-navbar.scrolled {
  background: #000 !important;
  padding: 10px 0;
}

/* Logo */
.reva-logo {
  height: auto;
  transform: scale(1);
  width: 300px;
  transform-origin: left center;
  transition: transform 0.35s ease-in-out;
  will-change: transform;
  -webkit-transition: transform 0.35s ease-in-out;
  -moz-transition: transform 0.35s ease-in-out;
  -ms-transition: transform 0.35s ease-in-out;
  -o-transition: transform 0.35s ease-in-out;
}

.header .reva-navbar.scrolled .reva-logo {
  transform: scale(0.85);
}

.header .reva-navbar .navbar-nav.align-items-center {
  width: 100%;
  justify-content: space-between;
}

/* NAAC Badge */
.header .naac-badge {
  height: auto;
  transform: scale(1);
  transform-origin: left center;
  transition: transform 0.35s ease-in-out;
  will-change: transform;
  transition: transform 0.35s ease;
  width: 135px;
}


.header .reva-navbar.scrolled .naac-badge {
  transform: scale(0.9);
}


/* Nav Links */
.header .reva-navbar .nav-link {
  color: #fff;
  transition: color 0.3s ease;
}

.header .reva-navbar .nav-link:hover {
  color: #E22A27;
}

/* Custom Navbar */
.custom-navbar {
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 0;
}

.custom-navbar .nav-link {
  color: #fff;
  margin-left: 20px;
  position: relative;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
  color: #E22A27;
}

.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #E22A27;
  transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after {
  width: 100%;
}

/* ===============================
   HERO SECTION
================================ */
.hero-section {

  background: url('../images/reva-banner-Desktop.webp') center/cover no-repeat;
  padding-top: 150px;
  padding-bottom: 150px;
  height: auto;
}

.hero-section h1 {
  font-weight: 700;
}

.hero-section h1 {
  line-height: 78px;
}

.banner_content h6,
.banner_content p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.clr-red {
  color: #E22A27;
}

/* ===============================
   CTA BUTTON
================================ */
.apply-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
  color: #E22A27;
  padding: 12px 35px;
  font-weight: 600;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  transition: color 0.3s ease;
}

.apply-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #d9372f;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.apply-btn:hover::before {
  transform: translateX(0);
}

.apply-btn:hover {
  color: #fff;
  border-color: #fff;
}

.admission-card-form {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.form-title {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.admission-card-form .form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 5px;
}

.admission-card-form .form-control,
.admission-card-form .form-select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.admission-card-form .form-control:focus,
.admission-card-form .form-select:focus {
  border-color: #0096a1;
  box-shadow: 0 0 0 3px rgba(0, 150, 161, 0.1);
  outline: none;
}

.verify-btn {
  background-color: #0096a1;
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.verify-btn:hover {
  background-color: #007c85;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-rounded {
  border-radius: 50px !important;
}

.hero-section h1 {
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.banner_content h1 label {
  color: #eee;
}

/* ===============================
   SECOND SECTION
================================ */
.study_at_reva_main_section {
  background-color: #000;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 140px;
}

/* ===============================
   INTERNATIONAL SLIDER
================================ */
.international_study img {
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---------------------------------------------------------------------------------------------------------------------------- */
.study_reva_sub_one {
  background-color: #E13D3C;
  padding: 35px 55px;
}


.study_reva_sub_two {
  background-color: #fff;
  padding: 30px;
}

.study_reva_sub_one h2 {
  margin-top: -106px;
  font: normal normal bold 66px Roboto Slab;
  letter-spacing: -4.56px;

}

.study_reva_sub_one h3 {
  margin-top: -47px;
  font: normal normal bold 66px Roboto Slab;
  letter-spacing: -4.56px;
}

.study_reva_one {
  margin-right: 4rem;
}

.ranked_one h3 {
  color: #383B43;
  font-weight: 600;
  margin-bottom: 2rem;
}

.ranked_one h4 {
  color: #E22A27;

  letter-spacing: 0px;

}

.ranked_one p {
  line-height: 24px;
}

/* .ranked_main {
  display: flex;
  gap: 5rem;
  justify-content: center;

} */

.ranked_one p {
  color: #000;
}

.right_study_content {
  margin-right: 7rem;
}

.right_study_content h4 {
  line-height: 36px;
}

.study_reva_sub_one h5 {
  font-weight: 300;
  margin-top: 44px;
  margin-bottom: 20px;

}

.study_reva_sub_one p {
  padding-right: 4rem;
  line-height: 30px;
}

.study_right_content {
  margin-top: 70px;
}

.study_right_content h3 {
  color: #E22A27;
  font-size: 60px;
  line-height: 60px;
}

.line {
  border: 1px solid #ebebeb45;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.accredited_main_slider {
  margin-top: 48px;
}

.accredited_main_slider .item {
  margin: 0px 10px;
}

.accredited_main_slider .item img {
  /* max-width: 90px; */
  /* max-width: 150px; */
  width: 100%;
  /* height: auto;
  object-fit: cover; */
}

.accredited_main_slider .item h6 {
  margin-top: 25px;
}




/* programme at the reva */
.programme_at_reva_section {
  background-color: #f6f6f6;
  padding-top: 122px;
  padding-bottom: 122px;
}

.programe_ate_one h3 {
  padding-top: 40px;
  padding-bottom: 90px;
}

/* placement_reva_section */


.placement_reva_section {
  /* background-image: url(../images/placement-reva-bg.webp); */
  background-image: url(../images/placement-reva-bg-2026.webp);
  background-color: #4d4747bd;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: 170px 0;
  position: relative;
  height: auto;
  /* aspect-ratio: 18 / 9; */
}

.placemnt_reva_sub {
  /* background-color: #E22A27; */
  color: #ffff;
  /* padding: 57px; */
}

.placment_counter {
  background-color: #fff;
  color: #E22A27;
}

/* .placemnt_reva_sub h2 {
  margin-top: -110px;
}

.placemnt_reva_sub h3 {
  margin-top: -15px;
} */

.study_right_content_one {
  padding: 15px;
}

.study_right_content_one p {
  color: #000;
}

.placemnt_reva_sub h5 {
  padding-top: 51px;
  padding-bottom: 25px;
}


.placment_counter {
  position: relative;
}

.placment_counter .owl-nav {
  position: absolute;
  right: 0;
  top: 30%;
  right: 7%;
}

.placment_counter .owl-nav button.owl-prev {
  width: 40px;
  height: 60px;
  background: url(../images/slider-arrow-left.svg) no-repeat center center !important;
  border-radius: 100%;
  margin-left: -20px;
  transition: 0.5s;
}

.placment_counter .owl-nav button.owl-next {
  width: 40px;
  height: 60px;
  background: url(../images/slider-arrow-right.svg) no-repeat center center !important;
  border-radius: 100%;
  transition: 0.5s;
}

.placment_counter .owl-nav button span {
  visibility: hidden;
}

.placment_counter .owl-nav button:focus {
  outline: 0;
}

.recruter_main_section {
  background-color: #000;
  padding-top: 107px;

  padding-bottom: 107px;
}

.recruiter-partners_slider .item ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-left: 0;
  list-style: none;
}

.recruiter-partners_slider .item ul li {
  list-style: none;
  margin: 1rem;
}

.recruiter-partners_slider .item img {

  height: 100%;
}

.recruter_one h4 {
  margin-bottom: 2rem;
}




.recruiter-partners_slider {
  position: relative;
}

.recruiter-partners_slider .owl-nav {
  /* position: absolute;
  left: 0; */
  margin-top: 1rem;

}

.recruiter-partners_slider .owl-nav button.owl-prev {
  width: 40px;
  height: 60px;
  background: url(../images/left-arrow.svg) no-repeat center center !important;
  margin: 10px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.recruiter-partners_slider .owl-nav button.owl-next {
  width: 40px;
  height: 60px;
  background: url(../images/right-arrow.svg) no-repeat center center !important;
  margin: 10px;
  transition: 0.5s;
}

.recruiter-partners_slider .owl-nav button span {
  visibility: hidden;
}

.recruiter-partners_slider .owl-nav button:focus {
  outline: 0;
}

.video-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.video-iframe {
  display: none;
  width: 100%;
  height: auto;
}

.play-button {
  filter: brightness(0) invert(1);
}

/* Optional blink animation */
.fancy-blink {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}



.how_to_apply_main {
  background-color: #f6f6f6;
  padding-top: 80px;
  padding-bottom: 40px;

}

.how_to_apply_content ul {
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 70px;
}

.reva_edge {
  background-color: #E13D3C;
  text-align: center;
  /* padding-top: 120px;
  padding-bottom: 40px; */
  padding-top: 70px;
  padding-bottom: 0;
}

.how_to_apply_content ul li img {
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: invert(1);
  -webkit-filter: invert(1);
}

/* Hover only on image */
.how_to_apply_content ul li:hover img {
  transform: scale(1.18) rotate(3deg);
  filter: invert(1.15);
  -webkit-filter: invert(1.15);
}


.reva_edge_content figure img {
  transition: transform 0.35s ease,
    filter 0.35s ease;
}

/* Hover effect */
.reva_edge_content:hover figure img {
  transform: scale(1.15) rotate(-3deg);
  filter: brightness(1.2);
}


.reva_edge_content {
  display: inline-block;
  width: 220px;
  margin: auto;
  padding-bottom: 74px;
}

.reva-edge_title h5 {
  margin-bottom: 74px;
  text-align: left;
}

/* .row.study_reva_one_main {
  margin-right: 7rem;
} */



.reva-footer {
  background: #222222;
  color: #bdbdbd;
  padding: 30px 0px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.reva-footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 40%;
  height: 100%;

  background-image: url("../images/path2.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  z-index: -9;

  pointer-events: none;
}

.reva-footer h5,
.reva-footer h6 {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;

  margin-bottom: 30px;
  position: relative;
}

p.address {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.reva-footer h5::after {
  content: "";
  width: 34px;
  height: 1px;
  background: #f5a623;
  display: block;
  margin-top: 20px;
}

.reva-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reva-footer ul li {
  font-size: 13px;
  margin-bottom: 8px;
  cursor: pointer;
}

.reva-footer ul li:hover {
  color: #ffffff;
}



.newsletter-box {
  display: flex;
  border: 1px solid #555;
}

.newsletter-box input {
  background: transparent;
  border: none;
  padding: 10px;
  color: #fff;
  width: 100%;
  outline: none;
}

.newsletter-box button {
  background: #3e4095;
  border: none;
  color: #fff;
  margin: 10px;
  border-radius: 50%;
  padding: 3px 10px;
}

.social-icons i {
  margin-right: 12px;

  cursor: pointer;
}

.social-icons i:hover {
  color: #f5a623;
}

.footer-bottom {
  border-top: 1px solid #dddddd40;
  margin-top: 15px;
  padding-top: 15px;
  font-family: 'Roboto', sans-serif;
  text-align: left;
}

.reva-footer ul li a {
  color: #bdbdbd;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  word-break: break-all;
}

.reva-footer ul li a:hover {
  color: #ffffff;
}



.reva_footer_content h5,
.reva_footer_content h6 {
  margin-bottom: 25px;
}

.reva_footer_content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.reva_footer_content {
  margin-bottom: 75px;
}

footer .font-16 {
  line-height: 24px;
}

.reva_footer_content.logo h5 {
  font-family: 'Roboto Slab', serif;
}

ul.footer-icon_main {
  position: relative;
}

.footer-icon_main li i {
  position: absolute;
}

.footer-icon_main li a {
  padding-left: 30px;
}

ul.footer-icon_main li {
  border-bottom: 1px solid #dddddd40;
  padding-bottom: 15px;
  padding-top: 15px;
}

.reva-footer .col-md-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.reva_footer_content.logo h5 {
  margin-bottom: 15px;

}

.reva_footer_content.logo h5:after {
  display: none;
}

.reva_footer_content.logo {
  margin-bottom: 35px;
}

.follow-us ul {
  display: flex;
  align-items: center;
}

.reva_footer_content.newsletter {
  margin-bottom: 30px;
}

.reva_footer_content .follow-us h6 {
  margin-bottom: 10px;
}







/* tabbing system */








/* Mobile: Tabs look like accordion headers */
@media (max-width: 767px) {
  .admission-card-form .btn-rounded {
    margin-top: 10px;
  }

  /* .nav-tabs {
    border-bottom: 0;
  }

  .nav-tabs .nav-link {
    border: 1px solid #ddd;
    border-radius: 0;
    margin-bottom: 6px;
    text-align: left;
    font-weight: 600;
  } */

  .nav-tabs .nav-link.active {
    background: #dc3545;
    color: #fff;
  }

  .tab-content {
    border: 0;
    padding: 0;
  }
}




ul.section_course_one li button {
  font-family: Montserrat, sans-serif;
  border: 0;
}

.programe_section_course .section_course_one {
  margin-bottom: 50px;
  border-bottom: 0;
}

ul.section_course_one li .nav-link {
  background-color: #fff;
  color: #000;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: 0;
}

ul.section_course_one li .nav-link.active {
  background-color: #d9372f;
  color: #fff;
}

ul.section_course_one li {
  margin-right: 10px;
}

.section_course_two .accordion-button {
  box-shadow: none;
}

.section_course_two .accordion-button:not(.collapsed) {
  background-color: #f6ebeb;
  color: #000;
  box-shadow: none;
}

.section_course_two .accordion-item {
  border: 0;
  margin-bottom: 25px;
}

.section_course_two .accordion-item .accordion-header button {
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

.section_course_two .accordion-item .accordion-collapse .accordion-body.course_section_main_div ul {
  border: 0;
  padding-left: 0;
}

.section_course_two .accordion-item .accordion-collapse .accordion-body.course_section_main_div ul li {

  list-style: none;
  padding: 10px 0px;
  border-bottom: 1px solid #00000014;

}

.section_course_two .accordion-item .accordion-collapse .accordion-body.course_section_main_div ul li:last-child {
  border-bottom: 0;
}


.reva-footer .col-lg-3 {
  flex: 0 0 20%;
  max-width: 50%;
  margin-bottom: 30px;
}


.form_section_main {
  display: none;
}






/* Reva Shaping Professionals */

.study_right_contentt .bullet-point li {
  position: relative;
  color: #000;
}

/* .bullet-point li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: .7rem;
    height: 2px;
    background-color: #E13D3C;
} */

.life_at_reva_main h5 {
  margin-top: 90px;
}

.study_right_contentt ::marker {
  color: #f9a455;
  font-size: 20px;
}

.how_to_apply_content ::marker {
  color: transparent;

}

.banner_content {
  padding-left: 5rem;
}






.floating-apply-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: #fff;
  color: #000;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border: 2px solid #d9372f;
}

.floating-apply-btn:hover {
  background: #fff;
  color: #000;
}

.floating-apply-btn-mobile {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: #ffff;
  color: #000;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border: 2px solid #d9372f;
}

.floating-apply-btn-mobile:hover {
  background: #fff;
  color: #000;
}

#apply-form-top {
  scroll-margin: 150px;
}


/* form */
.form-wrapper {
  max-width: 100%;
  /* background: #fff; */
  border-radius: 12px;
  /* padding: 25px 30px 30px; */
  padding: 0;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
}

.form-wrapper h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.form-label {
  font-size: 14px;
}

.form-label span {
  color: red;
}

/* Custom buttons */
.btn-verify,
.btn-submit {
  background: #d32f2f;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
}

.btn-verify:hover,
.btn-submit:hover {
  background: #b71c1c;
  color: #fff;
}

/* Responsive behavior */
/* @media (max-width: 991px) {
  .form-wrapper {
    display: none;
  }

  .form_section_main .form-wrapper {
    display: block;
  }
} */

/* @media (max-width: 768px) {
  .form-wrapper {
    padding: 20px;
  }
} */

.programe_section_course .row iframe {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0;
}

.floating-apply-btn {
  display: inline-flex;
}

.floating-apply-btn-mobile {
  display: none;
}

.study_reva_one_main {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.study_reva_one_main li {
  list-style: none;
}

.recruiter-partners_slider-logo {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding-left: 0;
}

.recruiter-partners_slider-logo li {
  list-style: none;
}

.placment_counter_main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-left: 0;
  gap: 15px;
}

.placment_counter_main li {
  list-style: none;
}

/* Default: Desktop */
.floating-apply-btn {
  display: block;
}

.floating-apply-btn-mobile {
  display: none;
}

/* Mobile view */
@media (max-width: 767px) {
  .floating-apply-btn {
    display: none;
  }

  .floating-apply-btn-mobile {
    display: block;
  }
}

.footer-box {
  align-items: center;
  display: flex;
  gap: 15px;
}

.footer-box .lpu-seal {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 15px;
}

.floating-apply-btn-mobile {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-apply-btn-mobile.hide {
  opacity: 0;
  visibility: hidden;
}

.programe_section_course iframe {
  width: 100%;
  height: 1000px;
  position: relative;
  z-index: 9;
}

.programe_section_course {
  position: relative;
}

.path-1 {
  position: absolute;
  border: 0;
  left: 0;
  top: 10%;

}









.admission-card-form {
  /* max-width:900px; */
  margin: 40px auto;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.admission-card-form .form-control,
.form-select {
  border-radius: 10px;
}

.admission-card-form .btn-rounded {
  border-radius: 10px;
}

.admission-card-form .form-title {
  font-weight: 600;
}

.admission-card-form .verify-btn {
  background: #b11217;
  font-size: 12px;
  color: #fff;
  outline: 0;
  border: 0;
}

.admission-card-form .verify-btn:hover {
  background: #8e0f13;
  outline: 0;
  border: 0;
}

.admission-card-form .form-label {
  padding-top: 15px;
}

.admission-card-form .form-control,
.form-select:focus {
  box-shadow: none;
}

.admission-card-form .form-select,
.form-control,
.form-label {
  font-size: 12px;

}

.admission-card-form .btn-rounded {
  font-size: 12px;
}

.admission-card-form label {
  font-size: 13px;
}

p.para_click {
  font-size: 12px;
}


.select2-container--open .select2-dropdown--below {
  top: auto !important;
  /* bottom: 100% !important; */
  bottom: 0;
  z-index: auto;
  margin-bottom: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 12px;
}

.select2-container--default .select2-selection--single {
  border-radius: 10px !important;
  border: 1px solid #ced4da;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
}

.select2-dropdown {
  font-size: 12px;
}

/* error code  */
.otp-verify {
  padding-top: 8px;
  color: green;
  font-weight: 600;
}

.msg-error {
  color: red;
  padding-top: 8px;
  font-weight: 600;
}

.msg-success {
  padding-top: 8px;
  color: green;
  font-weight: 600;
}











/* Wrapper */

/* Card Styling */
.form-wrapper.mid-main .admission-card-form {
  width: 100%;
  border-radius: 18px;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  transition: 0.3s ease-in-out;
}

.form-wrapper.mid-main .modal-box h2 {
  font-size: 22px;
  text-align: left;
}

/* Card Body */
.form-wrapper.mid-main .admission-card-form .card-body {
  padding: 1rem;
}

/* Title */
.form-wrapper.mid-main .form-title {
  font-weight: 600;
  font-size: 24px;
  color: #000;
  letter-spacing: 0.5px;
}

/* Modal Box Content */
.form-wrapper.mid-main .modal-box p {
  font-size: 16px;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Highlight Label */
.form-wrapper.mid-main .highlight {
  font-weight: 600;
  color: #0d47a1;
}

/* Portal Link */
.form-wrapper.mid-main .portal-link {
  color: #1565c0;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}



/* Apply Button */
.apply-btn-mid {
  margin-top: 25px;
  text-align: center;
}

.form-wrapper.mid-main .apply-btn-mid button {
  background: linear-gradient(90deg, #d9372f, #d9372f);
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s ease-in-out;
  box-shadow: 0 6px 15px rgba(26, 35, 126, 0.3);
}

.form-wrapper.mid-main .modal-box .highlight {
  padding: 10px 0px;
}

.form-wrapper.mid-main .modal-box {
  border: 2px solid #3bc0ddfa;
  padding: 10px;
  border-radius: 10px;
}