* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #061b68;
  overflow-x: hidden;
  overflow-y: auto;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.subharti-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100px;
  background: #ffffff;
  border-top: 1px solid #333333;
  z-index: 9999;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
.subharti-container {
  width: 100%;
  height: 100px;
  padding: 0 48px;
  display: flex;
  align-items: center;
}
.subharti-logo {
  width: 310px;
  min-width: 310px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.subharti-logo img {
  width: 305px;
  height: 59px;
  display: block;
  object-fit: contain;
}
.subharti-nav {
  width: 100%;
  height: 100%;
  margin-left: 245px;
  display: flex;
  align-items: center;
  flex: 1;
}
.subharti-menu {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.subharti-item {
  position: relative;
  flex-shrink: 0;
}
.subharti-link {
  height: 100px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #071c68;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.subharti-link:hover {
  color: #006cff;
}
.arrow-down {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-left: 3px;
  margin-top: -4px;
  border-right: 1.5px solid #071c68;
  border-bottom: 1.5px solid #071c68;
  transform: rotate(45deg);
  transition:
    transform 0.2s ease,
    margin-top 0.2s ease;
}
.has-dropdown:hover > .subharti-link .arrow-down {
  transform: rotate(225deg);
  margin-top: 3px;
}
.arrow-right {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-left: auto;
  border-right: 1.5px solid #071c68;
  border-top: 1.5px solid #071c68;
  transform: rotate(45deg);
}
.subharti-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 275px;
  padding: 7px 0;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
  z-index: 10000;
}
@media (min-width: 992px) {
  .has-dropdown:hover > .subharti-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.subharti-dropdown > li {
  position: relative;
}
.subharti-dropdown > li > a,
.subharti-submenu li a {
  width: 100%;
  min-height: 40px;
  padding: 9px 17px;
  display: flex;
  align-items: center;
  color: #071c68;
  background: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}
.subharti-dropdown > li > a:hover,
.subharti-submenu li a:hover {
  color: #006cff;
  background: #f7f9fc;
}
.subharti-submenu {
  position: absolute;
  top: -7px;
  left: 100%;
  width: 295px;
  padding: 7px 0;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
  z-index: 10001;
}
.has-submenu {
  position: relative;
}
.has-submenu:hover > .subharti-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.online-programme {
  margin-left: 3px;
}
.online-programme .subharti-link {
  padding-left: 19px;
  padding-right: 19px;
  color: #006cff;
}
.online-programme .subharti-link:hover {
  color: #0054c9;
}
.online-programme strong {
  font-weight: 600;
}
.scam-alert {
  height: 100px;
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.scam-alert a {
  height: 100%;
  padding-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scam-alert img {
  width: 108px;
  height: auto;
  display: block;
  object-fit: contain;
  transform-origin: center;
  animation: scamAlertPulse 1.4s ease-in-out infinite;
}
@keyframes scamAlertPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.subharti-toggler {
  display: none;
  width: 43px;
  height: 40px;
  padding: 7px 8px;
  margin-left: auto;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  cursor: pointer;
}
.subharti-toggler span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #071c68;
  transition: all 0.3s ease;
}
.subharti-navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  animation: subhartiStickyDown 0.25s ease;
}
@keyframes subhartiStickyDown {
  from {
    transform: translateY(-8px);
    opacity: 0.9;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.subharti-navbar.sticky .subharti-container,
.subharti-navbar.sticky .subharti-link,
.subharti-navbar.sticky .scam-alert {
  height: 100px;
}
@media (min-width: 1600px) {
  .subharti-container {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .subharti-container {
    padding-left: 35px;
    padding-right: 35px;
  }
  .subharti-logo {
    width: 285px;
    min-width: 285px;
  }
  .subharti-logo img {
    width: 285px;
    height: 57px;
  }
  .subharti-nav {
    margin-left: 100px;
  }
  .subharti-link {
    padding-left: 11px;
    padding-right: 11px;
    font-size: 16px;
  }
  .online-programme .subharti-link {
    padding-left: 12px;
    padding-right: 12px;
  }
  .scam-alert img {
    width: 100px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .subharti-container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .subharti-logo {
    width: 250px;
    min-width: 250px;
  }
  .subharti-logo img {
    width: 250px;
    height: 54px;
  }
  .subharti-nav {
    margin-left: 35px;
  }
  .subharti-link {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 14px;
  }
  .online-programme .subharti-link {
    padding-left: 8px;
    padding-right: 8px;
  }
  .scam-alert img {
    width: 90px;
  }
}
@media (max-width: 991px) {
  .subharti-navbar {
    height: 80px;
  }
  .subharti-container {
    height: 80px;
    padding: 0 20px;
  }
  .subharti-logo {
    width: auto;
    min-width: auto;
  }
  .subharti-logo img {
    width: auto;
    height: 52px;
  }
  .subharti-toggler {
    display: block;
  }
  .subharti-nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .subharti-nav.active {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .subharti-menu {
    display: block;
    width: 100%;
    height: auto;
  }
  .subharti-item {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
  }
  .subharti-link {
    width: 100%;
    height: auto;
    min-height: 50px;
    padding: 14px 20px;
    justify-content: flex-start;
    font-size: 16px;
  }
  .arrow-down {
    margin-left: auto;
    margin-right: 4px;
  }
  .has-dropdown.open > .subharti-link .arrow-down {
    transform: rotate(225deg);
    margin-top: 3px;
  }
  .subharti-dropdown,
  .subharti-submenu {
    position: static;
    width: 100%;
    display: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background: #f8f9fb;
  }
  .has-dropdown.open > .subharti-dropdown,
  .has-submenu.open > .subharti-submenu {
    display: block;
  }
  .subharti-dropdown > li > a {
    min-height: 45px;
    padding: 12px 30px;
    font-size: 14px;
  }
  .subharti-submenu li a {
    padding-left: 45px;
    font-size: 14px;
  }
  .online-programme .subharti-link {
    padding: 14px 20px;
  }
  .scam-alert {
    height: auto;
    margin: 0;
  }
  .scam-alert a {
    height: auto;
    padding: 10px 20px;
    justify-content: flex-start;
  }
  .scam-alert img {
    width: 105px;
  }
  .subharti-navbar.sticky {
    height: 80px;
  }
  .subharti-navbar.sticky .subharti-container {
    height: 80px;
  }
  .subharti-navbar.sticky .subharti-link,
  .subharti-navbar.sticky .scam-alert {
    height: auto;
  }
}
@media (max-width: 575px) {
  .subharti-container {
    padding: 0 15px;
  }
  .subharti-logo img {
    height: 47px;
  }
  .subharti-toggler {
    width: 40px;
    height: 38px;
  }
}
.note-section {
  width: 100%;
  min-height: 105px;
  background: #2f1b73;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.note-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.note-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.note-text {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  white-space: nowrap;
}
.note-title {
  color: #ffffff;
  font-size: 25px;
  font-weight: 400;
}
.note-link {
  color: yellow;
  font-size: 19px;
  font-weight: 400;
  text-decoration: none;
  margin-left: 3px;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.note-link:hover {
  color: yellow;
  opacity: 0.75;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .note-section {
    height: 105px;
    min-height: 105px;
  }
  .note-container {
    height: 105px;
  }
  .note-item {
    height: 35px;
  }
  .note-text {
    font-size: 25px;
    line-height: 35px;
  }
  .note-title {
    font-size: 25px;
  }
  .note-link {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .note-section {
    min-height: 110px;
    padding: 6px 15px;
  }
  .note-item {
    min-height: 32px;
  }
  .note-text {
    font-size: 20px;
    line-height: 1.45;
    white-space: normal;
    flex-wrap: wrap;
  }
  .note-title {
    font-size: 20px;
  }
  .note-link {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .note-section {
    min-height: auto;
    padding: 8px 12px;
  }
  .note-container {
    gap: 2px;
  }
  .note-item {
    min-height: 30px;
  }
  .note-text {
    font-size: 17px;
    line-height: 1.35;
    gap: 5px;
  }
  .note-title {
    font-size: 17px;
  }
  .note-link {
    font-size: 14px;
  }
}
.banner-section {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #ffffff;
}
.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease,
    transform 1s ease;
  z-index: 1;
}
.banner-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}
.banner-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
.banner-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #351d91;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 10;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.banner-prev {
  left: 20px;
}
.banner-next {
  right: 20px;
}
.banner-arrow-icon {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 42px;
  margin-top: -4px;
}
.banner-arrow:hover {
  background: #24136f;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%) scale(1.05);
}
.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transform: translateX(-50%);
  z-index: 10;
}
.banner-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.banner-dot.active {
  width: 25px;
  border-radius: 10px;
  background: #ffffff;
}
.banner-apply {
  position: fixed;
  right: 0;
  top: 40%;
  width: 44px;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff0000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.banner-apply span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  transform: rotate(-90deg);
}
.banner-apply:hover {
  width: 50px;
  background: #d90000;
  color: #ffffff;
}
.banner-prospectus {
  position: fixed;
  right: 0;
  top: calc(40% + 140px);
  width: 44px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25166f;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  z-index: 998;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.banner-prospectus span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transform: rotate(-90deg);
}
.banner-prospectus:hover {
  width: 50px;
  background: #1b1054;
  color: #ffffff;
}
@media (min-width: 1600px) {
  .banner-section {
    height: 700px;
  }
  .banner-prev {
    left: 25px;
  }
  .banner-next {
    right: 25px;
  }
  .banner-arrow {
    width: 52px;
    height: 52px;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .banner-section {
    height: 570px;
  }
  .banner-arrow {
    width: 48px;
    height: 48px;
  }
  .banner-prev {
    left: 18px;
  }
  .banner-next {
    right: 18px;
  }
  .banner-arrow-icon {
    font-size: 35px;
  }
  .banner-apply {
    width: 42px;
    height: 130px;
  }
  .banner-prospectus {
    width: 42px;
    height: 180px;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .banner-section {
    height: 500px;
  }
  .banner-arrow {
    width: 46px;
    height: 46px;
  }
  .banner-prev {
    left: 15px;
  }
  .banner-next {
    right: 15px;
  }
  .banner-apply {
    width: 40px;
    height: 125px;
  }
  .banner-prospectus {
    width: 40px;
    height: 170px;
  }
}
@media (max-width: 768px) {
  .banner-section {
    height: 390px;
  }
  .banner-slide img {
    object-position: center center;
  }
  .banner-arrow {
    width: 40px;
    height: 40px;
  }
  .banner-prev {
    left: 10px;
  }
  .banner-next {
    right: 10px;
  }
  .banner-arrow-icon {
    font-size: 30px;
    line-height: 34px;
  }
  .banner-dots {
    bottom: 12px;
  }
  .banner-apply {
    width: 38px;
    height: 110px;
    top: 35%;
  }
  .banner-apply span {
    font-size: 15px;
  }
  .banner-prospectus {
    width: 38px;
    height: 155px;
    top: calc(52% + 115px);
  }
  .banner-prospectus span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .banner-section {
    height: 300px;
  }
  .banner-arrow {
    width: 36px;
    height: 36px;
  }
  .banner-arrow-icon {
    font-size: 27px;
  }
  .banner-prev {
    left: 7px;
  }
  .banner-next {
    right: 7px;
  }
  .banner-dots {
    bottom: 8px;
  }
  .banner-dot {
    width: 7px;
    height: 7px;
  }
  .banner-dot.active {
    width: 20px;
  }
  .banner-apply {
    width: 34px;
    height: 95px;
  }
  .banner-apply span {
    font-size: 13px;
  }
  .banner-prospectus {
    width: 34px;
    height: 135px;
  }
  .banner-prospectus span {
    font-size: 12px;
  }
}
.center-section {
  width: 100%;
  padding: 0 0 60px;
  background: #ffffff;
  font-family: "Outfit", sans-serif;
  overflow: visible;
}
.center-container {
  width: 80%;
  max-width: 1500px;
  margin: 91px auto 0;
}
.center-box {
  width: 100%;
  min-height: 0px;
  padding: 32px 38px 32px;
  display: flex;
  align-items: center;
  gap: 50px;
  background: #29166d;
  border-radius: 25px;
  box-sizing: border-box;
}
.center-image-wrapper {
  width: 39%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-image {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 25px;
}
.center-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.center-image:hover img {
  transform: scale(1.03);
}
.center-content {
  width: 61%;
  padding-right: 10px;
  box-sizing: border-box;
}
.center-heading {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.center-text {
  margin: 0 0 28px;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}
.center-button {
  min-width: 210px;
  height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  background: #21114f;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.center-button-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
}
.center-button-text {
  line-height: 1;
}
.center-button:hover {
  background: #180c3d;
  color: #ffffff;
  transform: translateY(-3px);
}
@media (min-width: 992px) and (max-width: 1399px) {
  .center-container {
    width: 88%;
    margin-top: 60px;
  }
  .center-box {
    min-height: 0;
    padding: 30px 32px;
    gap: 40px;
  }
  .center-image-wrapper {
    width: 40%;
  }
  .center-image {
    height: 330px;
  }
  .center-content {
    width: 60%;
    padding-right: 5px;
  }
  .center-heading {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 15px;
  }
  .center-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .center-button {
    height: 50px;
    min-width: 200px;
    font-size: 15px;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .center-section {
    padding-bottom: 50px;
  }
  .center-container {
    width: 92%;
    margin-top: 45px;
  }
  .center-box {
    min-height: 0;
    padding: 30px 25px;
    gap: 25px;
  }
  .center-image-wrapper {
    width: 42%;
  }
  .center-image {
    height: 300px;
  }
  .center-content {
    width: 58%;
  }
  .center-heading {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .center-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .center-button {
    height: 48px;
    min-width: 180px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .center-section {
    width: 100%;
    padding: 0 0 45px;
    background: #ffffff;
  }
  .center-container {
    width: 92%;
    max-width: none;
    margin: 30px auto 0;
  }
  .center-box {
    width: 100%;
    min-height: 0;
    padding: 25px 22px 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
    background: #29166d;
    border-radius: 20px;
    box-sizing: border-box;
  }
  .center-image-wrapper {
    width: 100% !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .center-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 18px;
  }
  .center-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  .center-content {
    width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box;
  }
  .center-heading {
    width: 100%;
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.2px;
    word-break: normal;
    overflow-wrap: normal;
  }
  .center-text {
    width: 100%;
    margin: 0 0 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    text-align: left;
    word-break: normal;
    overflow-wrap: normal;
  }
  .center-button {
    display: flex;
    width: 220px;
    max-width: 100%;
    margin: 0 auto;
  }
  .center-button-icon {
    width: 22px;
    height: 22px;
    font-size: 22px;
  }
  .center-button-text {
    line-height: 1;
  }
}
@media (max-width: 575px) {
  .center-section {
    padding-bottom: 40px;
  }
  .center-container {
    width: 92%;
    margin-top: 25px;
  }
  .center-box {
    padding: 20px 18px 28px;
    gap: 22px;
    border-radius: 18px;
  }
  .center-image-wrapper {
    width: 100% !important;
  }
  .center-image {
    width: 100%;
    height: 205px;
    border-radius: 16px;
  }
  .center-content {
    width: 100% !important;
    padding: 0 !important;
  }
  .center-heading {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .center-text {
    font-size: 13.5px;
    text-align: justify;
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .center-button {
    width: 100%;
    max-width: 220px;
    height: 48px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .center-container {
    width: 90%;
  }
  .center-box {
    padding: 18px 16px 25px;
    gap: 20px;
  }
  .center-image {
    height: 190px;
  }
  .center-heading {
    font-size: 23px;
  }
  .center-text {
    font-size: 13px;
    line-height: 1.6;
  }
  .center-button {
    max-width: 100%;
    height: 46px;
  }
}
html {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
body {
  width: 100%;
  min-height: 100vh;
  height: auto !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
.subharti-navbar {
  height: 100px;
}
.subharti-container {
  height: 100px;
}
.subharti-link {
  height: 100px;
}
.scam-alert {
  height: 100px;
}
.subharti-navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 90px;
  z-index: 9999;
}
.subharti-navbar.sticky .subharti-container {
  height: 90px;
}
.subharti-navbar.sticky .subharti-link {
  height: 90px;
}
.subharti-navbar.sticky .scam-alert {
  height: 90px;
}
main {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}
.center-section {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}
.center-container {
  height: auto !important;
}


.university-section {
  width: 100%;
  padding: 80px 0 80px;
  background: #f2eeee;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  overflow: hidden;
}
.university-container {
  width: 80%;
  max-width: 1508px;
  margin: 0 auto;
}
.university-heading {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
.university-title {
  margin: 0;
  color: #071c68;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.university-divider {
  display: block;
  width: 250px;
  height: 2px;
  margin: 14px auto 0;
  background: #6b70d7;
}
.university-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 36px 30px;
}
.university-card {
  width: 100%;
  height: 200px;
  padding: 25px 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.university-card:hover {
  background: #c27425;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.university-card-active {
  background: #c27425;
  box-shadow: none;
}
.university-icon {
  width: 100%;
  height: 70px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.university-icon img {
  width: auto;
  height: 60px;
  max-width: 80px;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.university-card:hover .university-icon img {
  transform: scale(1.05);
}
.university-card-title {
  width: 100%;
  margin: 0;
  color: #000;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
.university-card-active .university-card-title {
  color: #ffffff;
}
.university-card-active .university-icon img {
  transform: scale(1.02);
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .university-section {
    padding: 100px 0 100px;
  }
  .university-container {
    width: 80%;
  }
  .university-title {
    font-size: 30px;
  }
  .university-grid {
    gap: 28px 20px;
  }
  .university-card {
    height: 185px;
    padding: 22px 12px 18px;
  }
  .university-card-title {
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .university-section {
    padding: 60px 0 65px;
  }
  .university-container {
    width: 92%;
  }
  .university-title {
    font-size: 28px;
  }
  .university-divider {
    width: 200px;
  }
  .university-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
  .university-card {
    height: 175px;
  }
  .university-card-title {
    font-size: 15px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .university-section {
    padding: 45px 0 50px;
  }
  .university-container {
    width: 92%;
  }
  .university-title {
    font-size: 26px;
  }
  .university-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .university-card {
    height: 170px;
    padding: 20px 10px;
  }
  .university-card-title {
    font-size: 15px;
  }
  .university-icon {
    height: 65px;
  }
}
@media (max-width: 575px) {
  .university-section {
    padding: 40px 0 45px;
  }
  .university-container {
    width: 92%;
  }
  .university-heading {
    margin-bottom: 25px;
  }
  .university-title {
    font-size: 23px;
    line-height: 1.25;
  }
  .university-divider {
    width: 160px;
    margin-top: 11px;
  }
  .university-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  .university-card {
    height: 160px;
    padding: 18px 8px;
  }
  .university-icon {
    height: 60px;
    margin-bottom: 10px;
  }
  .university-icon img {
    height: 55px;
    max-width: 70px;
  }
  .university-card-title {
    font-size: 14px;
    line-height: 1.3;
  }
}
.numbers-section {
  width: 100%;
  padding: 0 120px;
  background: #ffffff;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  overflow: hidden;
  box-sizing: border-box;
}
.numbers-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.numbers-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.numbers-item {
  position: relative;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #eeeeee;
  box-sizing: border-box;
}
.numbers-item:last-child {
  border-right: none;
}
.numbers-content {
  position: relative;
  width: 240px;
  height: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.numbers-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 215px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  opacity: 0.55;
  pointer-events: none;
}
.numbers-text {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.numbers-value {
  margin: 0;
  color: #301779;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.numbers-plus {
  display: inline-block;
  margin-left: 2px;
  color: #301779;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.numbers-label {
  margin: 10px 0 0;
  color: #101010;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .numbers-section {
    padding: 0 120px;
  }
  .numbers-item {
    height: 250px;
  }
  .numbers-content {
    width: 220px;
    height: 195px;
  }
  .numbers-shape {
    width: 220px;
    height: 195px;
  }
  .numbers-value {
    font-size: 44px;
  }
  .numbers-plus {
    font-size: 37px;
  }
  .numbers-label {
    font-size: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .numbers-section {
    padding: 0 30px;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .numbers-item {
    height: 240px;
    border-bottom: 1px solid #eeeeee;
  }
  .numbers-item:nth-child(2n) {
    border-right: none;
  }
  .numbers-item:nth-child(n + 3) {
    border-bottom: none;
  }
  .numbers-content {
    width: 210px;
    height: 185px;
  }
  .numbers-shape {
    width: 210px;
    height: 185px;
  }
  .numbers-value {
    font-size: 42px;
  }
  .numbers-plus {
    font-size: 35px;
  }
  .numbers-label {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .numbers-section {
    padding: 0 18px;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .numbers-item {
    height: 215px;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
  }
  .numbers-item:nth-child(2n) {
    border-right: none;
  }
  .numbers-item:nth-child(n + 3) {
    border-bottom: none;
  }
  .numbers-content {
    width: 185px;
    height: 160px;
  }
  .numbers-shape {
    width: 185px;
    height: 160px;
  }
  .numbers-value {
    font-size: 37px;
  }
  .numbers-plus {
    font-size: 31px;
  }
  .numbers-label {
    margin-top: 8px;
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .numbers-section {
    padding: 0 12px;
  }
  .numbers-item {
    height: 190px;
  }
  .numbers-content {
    width: 155px;
    height: 140px;
  }
  .numbers-shape {
    width: 155px;
    height: 140px;
  }
  .numbers-value {
    font-size: 32px;
  }
  .numbers-plus {
    font-size: 27px;
  }
  .numbers-label {
    font-size: 12px;
  }
}
.blog-section {
  width: 100%;
  padding: 55px 0 70px;
  background: #f3eeee;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  overflow: hidden;
}
.blog-container {
  width: 80%;
  max-width: 1508px;
  margin: 0 auto;
}
.blog-heading {
  width: 100%;
  margin-bottom: 55px;
  text-align: center;
}
.blog-title {
  margin: 0;
  color: #071c68;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.blog-divider {
  display: block;
  width: 100px;
  height: 2px;
  margin: 14px auto 0;
  background: #6870d5;
}
.blog-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}
.blog-card {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 360px;
}
.blog-image {
  width: 100%;
  height: 185px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
.blog-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-image img {
  transform: scale(1.03);
}
.blog-content {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  margin-top: 0;
  padding: 14px 20px 18px;
  background: #ffffff;
  border-radius: 0 0 6px 6px;
  box-sizing: border-box;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
  display: flex;
  flex-direction: column;
}
.blog-card-title {
  margin: 0 0 18px;
  color: #071c68;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
}
.blog-card-title a {
  color: #071c68;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card-title a:hover {
  color: #301779;
}
.blog-card-bottom {
  position: relative;
  flex: 1;
  padding-right: 48px;
  box-sizing: border-box;
}
.blog-description {
  margin: 0;
  color: #071c68;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .blog-section {
    padding: 50px 0 60px;
  }
  .blog-container {
    width: 80%;
  }
  .blog-heading {
    margin-bottom: 45px;
  }
  .blog-title {
    font-size: 30px;
  }
  .blog-grid {
    gap: 25px;
  }
  .blog-image {
    height: 180px;
  }
  .blog-content {
    min-height: 185px;
    padding: 10px 17px 16px;
  }
  .blog-card-title {
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 17px;
  }
  .blog-description {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .blog-section {
    padding: 45px 0 55px;
  }
  .blog-container {
    width: 92%;
  }
  .blog-heading {
    margin-bottom: 40px;
  }
  .blog-title {
    font-size: 28px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 25px;
  }
  .blog-image {
    height: 230px;
  }
  .blog-content {
    min-height: 205px;
    padding: 12px 18px 18px;
  }
  .blog-card-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .blog-description {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .blog-section {
    padding: 40px 0 50px;
  }
  .blog-container {
    width: 92%;
  }
  .blog-heading {
    margin-bottom: 30px;
  }
  .blog-title {
    font-size: 26px;
  }
  .blog-divider {
    width: 85px;
    margin-top: 11px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blog-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .blog-content {
    min-height: 0;
    padding: 14px 18px 20px;
  }
  .blog-card-title {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 18px;
  }
  .blog-description {
    font-size: 16px;
    line-height: 1.55;
  }
  .blog-arrow {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 575px) {
  .blog-section {
    padding: 35px 0 45px;
  }
  .blog-container {
    width: 92%;
  }
  .blog-title {
    font-size: 24px;
  }
  .blog-grid {
    gap: 25px;
  }
  .blog-image {
    aspect-ratio: 16 / 9;
  }
  .blog-content {
    padding: 12px 16px 18px;
  }
  .blog-card-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .blog-description {
    font-size: 15px;
  }
  .blog-arrow {
    width: 40px;
    height: 40px;
  }
  .blog-arrow span {
    font-size: 23px;
  }
}
.footer-section {
  width: 100%;
  background: #0e0d1b;
  color: #fff;
  font-family: "Outfit", sans-serif;
  overflow: hidden;
}
.footer-container {
  width: 80%;
  max-width: 1508px;
  margin: 0 auto;
}
.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 410px;
}
.footer-column {
  min-width: 0;
  padding: 45px 30px 25px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
}
.footer-column:last-child {
  border-right: none;
}
.footer-about {
  padding-left: 0;
  padding-right: 35px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}
.footer-logo img {
  width: auto;
  height: 58px;
  max-width: 100%;
  display: block;
}
.footer-description {
  max-width: 330px;
  margin: 0 auto;
  color: #fff;
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 38px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #19182a;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a i {
  display: block;
  font-size: 19px;
  line-height: 1;
  color: #fff;
  font-family: "boxicons" !important;
  font-style: normal;
}
.footer-social a:hover {
  background: #b76618;
  transform: translateY(-3px);
}
.footer-social a:hover i {
  color: #fff;
}
.footer-heading {
  margin: 10px 0 24px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 15px;
  padding: 0;
}
.footer-links li:last-child {
  margin-bottom: 0;
}
.footer-links a {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-links a:hover {
  color: #b76618;
}
.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom-links a,
.footer-bottom-links span {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: #b76618;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .footer-container {
    width: 88%;
  }
  .footer-grid {
    min-height: 390px;
  }
  .footer-column {
    padding: 40px 22px 22px;
  }
  .footer-heading {
    font-size: 27px;
    margin-bottom: 20px;
  }
  .footer-links li {
    margin-bottom: 13px;
  }
  .footer-links a {
    font-size: 16px;
  }
  .footer-description {
    font-size: 16px;
  }
  .footer-social {
    margin-top: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .footer-container {
    width: 92%;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }
  .footer-column {
    min-height: 330px;
    padding: 40px 20px 30px;
  }
  .footer-column:nth-child(2) {
    border-right: none;
  }
  .footer-column:nth-child(3),
  .footer-column:nth-child(4) {
    border-bottom: none;
  }
  .footer-heading {
    font-size: 25px;
  }
  .footer-links a {
    font-size: 16px;
  }
  .footer-bottom {
    min-height: 65px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    width: 92%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .footer-column,
  .footer-about {
    min-height: auto;
    padding: 35px 15px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .footer-column:last-child {
    border-bottom: none;
  }
  .footer-logo img {
    height: 52px;
  }
  .footer-description {
    font-size: 15px;
    line-height: 1.6;
  }
  .footer-social {
    margin-top: 28px;
  }
  .footer-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .footer-links li {
    margin-bottom: 13px;
  }
  .footer-links a {
    font-size: 15px;
  }
  .footer-bottom {
    min-height: auto;
    padding: 22px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .footer-container {
    width: 90%;
  }
  .footer-column,
  .footer-about {
    padding: 30px 10px;
  }
  .footer-heading {
    font-size: 22px;
  }
  .footer-links a {
    font-size: 14px;
  }
  .footer-social a {
    width: 35px;
    height: 35px;
  }
  .footer-social a i {
    font-size: 17px;
  }
  .footer-copyright p,
  .footer-bottom-links a,
  .footer-bottom-links span {
    font-size: 14px;
  }
}
.admission-form {
  position: fixed;
  top: 2%;
  right: 0;
  width: 390px;
  max-width: calc(100% - 50px);
  max-height: 96vh;
  padding: 10px 12px;
  background: #f7f7f7;
  border-radius: 4px 0 0 4px;
  border-right: 2px solid #29166d;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  overflow-y: auto;
  box-sizing: border-box;
  transform: translateX(105%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.35s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
  font-family: "Roboto", Arial, sans-serif;
}

.admission-form.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* =========================
   HEADER
========================= */

.admission-header {
  text-align: center;
  margin-bottom: 8px;
}

.admission-header h2 {
  margin: 0;
  color: #071c68;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}

.admission-header p {
  display: none;
}

/* =========================
   FORM FIELDS
========================= */

.admission-field {
  margin-bottom: 5px;
}

.admission-field label {
  display: none;
}

.admission-field input,
.admission-field select {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  outline: none;
  background: #f9f9f9;
  color: #222;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  box-sizing: border-box;
}

.admission-field input::placeholder {
  color: #777;
}

.admission-field input:focus,
.admission-field select:focus {
  border-color: #8a8a8a;
  box-shadow: none;
}

/* =========================
   STATE + CITY
========================= */

.admission-state-city {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

/* =========================
   SECURITY
========================= */

.admission-security-row {
  display: grid;
  grid-template-columns: 102px 28px 1fr;
  gap: 6px;
  align-items: center;
  margin-top: 5px;
}

.admission-security-code {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #d5d5d5;
  color: #354a80;
  font-family: "Courier New", monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  user-select: none;
}

.admission-refresh {
  width: 28px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333;
  font-size: 21px;
  cursor: pointer;
}

.admission-refresh:hover {
  background: transparent;
  color: #29166d;
}

.admission-security-input {
  width: 100%;
}

.admission-security-input input {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #d5d5d5;
  background: #f9f9f9;
  font-size: 14px;
  box-sizing: border-box;
}

/* =========================
   CONSENT
========================= */

.admission-consent {
  margin: 9px 0 10px;
  padding: 0 2px;
}

.admission-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #333;
  font-size: 11px;
  line-height: 1.5;
  cursor: pointer;
}

.admission-consent-label input {
  width: 13px;
  height: 13px;
  margin: 2px 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: #0755b5;
  cursor: pointer;
}

/* =========================
   APPLY NOW
========================= */

.admission-submit {
  width: 100%;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #34599a;
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease;
}

.admission-submit:hover {
  background: #294b89;
  transform: none;
}

/* =========================
   CLOSE BUTTON
========================= */

.admission-close {
  position: fixed;
  top: 115px;
  right: 390px;
  width: 44px;
  height: 90px;

  border: 0;
  border-radius: 0 5px 5px 0;
  background: #ff0000;
  color: #ffffff;

  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;

  writing-mode: vertical-rl;
  transform: rotate(180deg);

  cursor: pointer;
  z-index: 100001;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* FORM OPEN */
body:has(.admission-form.show) .admission-close {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.admission-close:hover {
  background: #d90000;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {

  .admission-form {
    top: 2%;
    right: 0;
    width: calc(100% - 48px);
  }

  .admission-close {
    top: 180px;

    /* form ke left edge ke bahar */
    right: calc(100% - 50px);

    width: 40px;
    height: 88px;
    font-size: 14px;
  }

  .admission-prospectus {
    top: 193px;
    right: calc(100% - 8px);

    width: 40px;
    height: 112px;
    font-size: 11px;
  }
}

/* =========================================
   COURSES SECTION
========================================= */

.courses-section {
  width: 100%;
  padding: 10px 0 45px;
  background: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  overflow: hidden;
}

.courses-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================
   HEADING
========================================= */

.courses-heading {
  width: 100%;
  margin-bottom: 20px;
}

.courses-heading h2 {
  margin: 0 0 15px;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}

/* =========================================
   TABS
========================================= */

.courses-tabs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.courses-tab {
  height: 42px;
  padding: 0 18px;
  border: 1px solid #dddddd;
  border-radius: 22px;
  background: #ffffff;
  color: #222222;
  font-family: Arial, sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.courses-tab-active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  font-weight: 600;
}

.courses-tab:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

/* =========================================
   GRID
========================================= */

.courses-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* =========================================
   CARD
========================================= */

.courses-card {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 430px;
  padding: 10px 10px 0;
  background: #f8f8f8;
  border: 1px solid #dddddd;
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
    margin-top: 20px;
}

/* =========================================
   Courses Tabs Content
========================================= */

.courses-tab-content {
  display: none;
}

.courses-tab-content.active {
  display: grid;
}

.courses-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.courses-card-highlight {
  border-color: #c9b7ff;
}

/* =========================================
   IMAGE
========================================= */

.courses-image {
  position: relative;
  width: 100%;
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}

.courses-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* =========================================
   BADGES
========================================= */

.courses-badge {
  position: absolute;
  top: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 23px;
  padding: 2px 8px;
  border-radius: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.courses-badge-popular {
  left: 8px;
  background: #ffe000;
  color: #111111;
  font-weight: 700;
}

.courses-badge-available {
  left: 8px;
  background: #666666;
  color: #ffffff;
}

.courses-badge-specialization {
  right: 8px;
  background: rgba(50, 50, 50, 0.82);
  color: #ffffff;
}

/* =========================================
   UNIVERSITY
========================================= */

.courses-university {
  position: relative;
  z-index: 3;
  width: fit-content;
  max-width: 90%;
  min-height: 27px;
  margin-top: -1px;
  padding: 5px 13px;
  background: #cdbdff;
  color: #30305e;
  border-radius: 0 15px 15px 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  box-sizing: border-box;
}

.courses-university-blue {
  background: #a7eeee;
  color: #24525b;
}

/* =========================================
   CONTENT
========================================= */

.courses-content {
  width: 100%;
  flex: 1;
  padding: 8px 2px 0;
  box-sizing: border-box;
}

.courses-title-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  text-align: center;
}

.courses-title-row h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.courses-rating {
  flex-shrink: 0;
  min-width: 58px;
  height: 30px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 18px;
  color: #333333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  box-sizing: border-box;
}

.courses-rating span {
  color: #111111;
  font-size: 13px;
}

/* =========================================
   DETAILS
========================================= */

.courses-details {
  width: 100%;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8px;
  row-gap: 13px;
}

.courses-detail-item {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #222222;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.3;
}

.courses-icon {
  flex-shrink: 0;
  width: 12px;
  color: #111111;
  font-family: Arial, sans-serif;
  font-size: 10px;
  line-height: 1.4;
}

/* =========================================
   APPLY BUTTON
========================================= */

.courses-apply {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 117px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #29166d;
  color: #ffffff;
  border-radius: 25px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
  z-index: 5;
}

.courses-apply:hover {
  background: #29166d;
  color: #ffffff;
  transform: translateX(-50%) translateY(-2px);
}

/* =========================================
   TABLET
========================================= */

@media (min-width: 769px) and (max-width: 1199px) {

  .courses-container {
    width: 92%;
  }

  .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .courses-card {
    height: 430px;
  }

  .courses-image {
    height: 225px;
  }

  .courses-heading h2 {
    font-size: 28px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .courses-section {
    padding: 25px 0 45px;
  }

  .courses-container {
    width: 92%;
  }

  .courses-heading {
    margin-bottom: 20px;
  }

  .courses-heading h2 {
    font-size: 25px;
    line-height: 1.25;
  }

  .courses-tabs {
    gap: 10px;
  }

  .courses-tab {
    height: 39px;
    padding: 0 14px;
    font-size: 14px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .courses-card {
    height: auto;
    min-height: 425px;
    padding: 10px 10px 0;
  }

  .courses-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .courses-title-row h3 {
    font-size: 18px;
  }

  .courses-details {
    margin-top: 18px;
  }

  .courses-detail-item {
    font-size: 13px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

  .courses-container {
    width: 92%;
  }

  .courses-heading h2 {
    font-size: 23px;
  }

  .courses-tabs {
    gap: 8px;
  }

  .courses-tab {
    height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .courses-card {
    min-height: 415px;
  }

  .courses-image {
    aspect-ratio: 16 / 9;
  }

  .courses-badge {
    font-size: 10px;
    padding: 2px 7px;
  }

  .courses-university {
    font-size: 11px;
  }

  .courses-title-row h3 {
    font-size: 17px;
  }

  .courses-rating {
    min-width: 54px;
    height: 28px;
    font-size: 11px;
  }

  .courses-details {
    row-gap: 12px;
  }

  .courses-detail-item {
    font-size: 12px;
  }

  .courses-apply {
    width: 115px;
    height: 43px;
    font-size: 14px;
  }
}

/* =========================================
   Footer Section
========================================= */

.footer-section {
  position: relative;
  width: 100%;
  background: #0d1638;
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  overflow: hidden;
}

.footer-container {
  width: 86%;
  max-width: 1400px;
  margin: 0 auto;
}


/* =========================================
   Footer Top
========================================= */

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1fr;
  gap: 70px;
  padding: 55px 0 45px;
}


/* =========================================
   Footer Columns
========================================= */

.footer-column {
  min-width: 0;
}

.footer-title {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 2px;
  background: #f4a623;
}


/* =========================================
   Brand
========================================= */

.footer-brand {
  padding-right: 25px;
}

.footer-brand .footer-title {
  font-size: 27px;
  font-weight: 700;
}

.footer-text {
  max-width: 360px;
  margin: 0;
  color: #cbd2e3;
  font-size: 15px;
  line-height: 1.8;
}


/* =========================================
   Footer Information
========================================= */

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 166, 35, 0.12);
  border: 1px solid rgba(244, 166, 35, 0.3);
  border-radius: 50%;
}

.footer-icon i {
  color: #f4a623;
  font-size: 19px;
}

.footer-info-item strong {
  display: block;
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.footer-info-item p {
  margin: 0;
  color: #cbd2e3;
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================
   Contact
========================================= */

.footer-contact .footer-info-item {
  align-items: center;
}

.footer-contact .footer-info-item a {
  color: #dfe4f0;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact .footer-info-item a:hover {
  color: #f4a623;
}


/* =========================================
   Footer Bottom
========================================= */

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #aeb7cc;
  font-size: 13px;
  line-height: 1.5;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a,
.footer-bottom-links span {
  color: #aeb7cc;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #f4a623;
}


/* =========================================
   Back To Top
========================================= */

.footer-top-button {
  position: absolute;
  right: 35px;
  bottom: 25px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #28a957;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.footer-top-button i {
  font-size: 21px;
}

.footer-top-button:hover {
  background: #218c49;
  color: #ffffff;
  transform: translateY(-3px);
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

  .footer-container {
    width: 90%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 45px 35px;
    padding: 45px 0 40px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-contact {
    grid-column: span 2;
  }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 575px) {

  .footer-container {
    width: 90%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 38px 0 30px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-brand .footer-title {
    font-size: 24px;
  }

  .footer-title {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .footer-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-info-item strong {
    font-size: 13px;
  }

  .footer-info-item p {
    font-size: 13px;
  }

  .footer-contact .footer-info-item a {
    font-size: 14px;
  }

  .footer-bottom {
    min-height: auto;
    padding: 20px 0 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
  }

  .footer-bottom-links a,
  .footer-bottom-links span {
    font-size: 12px;
  }

  .footer-top-button {
    right: 15px;
    bottom: 20px;
    width: 36px;
    height: 36px;
  }

}
/* =========================================
   Footer Logo
========================================= */

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 575px) {

  .footer-logo img {
    width: 175px;
  }

}

/* =========================================
   MAIN NAVBAR
========================================= */

.main-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  background: #ffffff;
  z-index: 9999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.main-navbar-container {
  width: 92%;
  max-width: 1450px;
  height: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   LOGO
========================================= */

.main-navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.main-navbar-logo img {
  width: 220px;
  height: auto;
  display: block;
}

/* =========================================
   NAVIGATION
========================================= */

.main-navbar-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.main-navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-navbar-menu li {
  margin: 0;
  padding: 0;
}

.main-navbar-link {
  position: relative;

  display: flex;
  align-items: center;

  height: 82px;

  color: #071c68;
  text-decoration: none;

  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;

  white-space: nowrap;

  transition: color 0.25s ease;
}

.main-navbar-link::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 20px;

  width: 0;
  height: 2px;

  background: #29166d;

  transition: width 0.25s ease;
}

.main-navbar-link:hover {
  color: #29166d;
}

.main-navbar-link:hover::after {
  width: 100%;
}

/* =========================================
   APPLY BUTTON
========================================= */

.main-navbar-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 115px;
  height: 42px;

  padding: 0 20px;

  background: #29166d;
  color: #ffffff;

  border-radius: 4px;

  text-decoration: none;

  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.main-navbar-apply:hover {
  background: #1e1055;
  color: #ffffff;
  transform: translateY(-1px);
}

/* =========================================
   MOBILE TOGGLER
========================================= */

.main-navbar-toggler {
  display: none;

  width: 42px;
  height: 42px;

  padding: 8px;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.main-navbar-toggler span {
  display: block;

  width: 26px;
  height: 2px;

  margin: 5px auto;

  background: #071c68;

  transition: 0.3s ease;
}

/* =========================================
   ACTIVE TOGGLER
========================================= */

.main-navbar-toggler.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.main-navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}

.main-navbar-toggler.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

  .main-navbar-menu {
    gap: 18px;
  }

  .main-navbar-link {
    font-size: 14px;
  }

  .main-navbar-logo img {
    width: 190px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

  .main-navbar {
    height: 72px;
  }

  .main-navbar-container {
    width: 94%;
  }

  .main-navbar-logo img {
    width: 180px;
  }

  .main-navbar-toggler {
    display: block;
  }

  .main-navbar-nav {
    position: absolute;

    top: 72px;
    left: 0;

    width: 100%;

    display: block;

    background: #ffffff;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .main-navbar-nav.active {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .main-navbar-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0;

    padding: 10px 20px 20px;
  }

  .main-navbar-menu li {
    width: 100%;
  }

  .main-navbar-link {
    width: 100%;
    height: 48px;

    justify-content: flex-start;

    border-bottom: 1px solid #eeeeee;
  }

  .main-navbar-link::after {
    display: none;
  }

  .main-navbar-apply {
    width: 100%;
    height: 44px;

    margin-top: 12px;
  }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

  .main-navbar {
    height: 65px;
  }

  .main-navbar-logo img {
    width: 155px;
  }

  .main-navbar-nav {
    top: 65px;
  }

}