@import url("./branding.css?v=0.1");

/*================= HEADER =================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 88px;
  margin: 0 auto;
  transition: all 0.35s ease;
  background-color: var(--gray-steel);
}

/* .header.on-scroll {
} */
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.25rem;
  padding: 7px 0px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

.menu-toggle img {
  width: 29px;
  object-fit: contain;
}

.menu-toggle.show .bars {
  display: none;
}

.cross-icon {
  display: none;
}

.menu-toggle.show .cross-icon {
  display: block;
}

.brand {
  width: 176px;
  height: 54px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  transition: all 0.4s ease-in-out;
}

.menu.is-active {
  top: 87px;
  width: 100%;
  height: calc(100% - 87px);
  background-color: #fff;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.menu_item {
  font-family: var(--theme-title-family);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gray-dark-1);
  transition: all 0.3s ease;
  padding: 42px 0;
  position: relative;
}

.menu_item:hover,
.menu_item:focus,
.menu_item:visited {
  color: var(--theme-white) !important;
}

.menu_item.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: var(--green-dark);
  left: 0;
  bottom: 0;
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--gray-dark-1);
  transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.menu-toggle,
.header-left-action {
  cursor: pointer;
}

.overlay-menu {
  background-color: var(--gray-steel);
  padding: 90px 0;
  top: -100%;
  position: fixed;
  width: 100%;
  left: 0;
  transition: all .3s ease;
  z-index: 99;
}

.overlay-menu.show {
  top: 88px;
}

.overlay-menu .container-fluid {
  padding: 0 6%;
}

.overlay-menu ul li a {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
}

.overlay-menu ul li a:hover {
  color: var(--orange);
}

.overlay-menu ul li {
  margin-bottom: 7px;
}

.overlay-menu .container-fluid .row>div {
  padding-left: 20px;
}

/* overlay search */
.overlay-search-2 {
  background-color: var(--gray-steel);
}

.search-form {
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.search-form input.form-control {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.form-control,
.form-select {
  background-color: var(--off-white);
  height: 60px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid transparent;
}

.search-form input:focus {
  border: 2px solid var(--orange);
  outline: none;
}

.search-btn {
  align-items: center;
  background-clip: padding-box;
  background-color: var(--orange);
  border: 1px solid transparent;
  border-radius: 10px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  margin: 0;
  padding: 12px 20px;
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  width: auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.search-btn:hover,
.search-btn:focus {
  background-color: var(--theme-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: var(--orange);
}

.search-btn:hover {
  transform: translateY(-1px);
}

.search-btn:active {
  background-color: var(--orange);
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}

/* Banner */
.left-image {
  height: 653px;
}

.text-section {
  position: relative;
}

.text-section::after {
  content: "";
  background-image: url('../img/banner-lines.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 217px;
  height: 486px;
}

/* NEWS EVENTS */
.theme_card_img {
  height: 290px;
  position: relative;
}

.theme_card_content {
  background-color: var(--theme-white);
  padding: 34px 17px;
}

.theme_card_content.bg-off-white {
  background-color: var(--off-white) !important;
}

.theme_card_content h4 {
  line-height: 1.5;
  min-height: 26px;
}

.date-wrap {
  background-color: var(--light-blush);
  padding-left: 17px;
  padding: 5px 0 5px 17px;
}

.link-btn {
  font-size: 15px;
  color: var(--orange);
  display: flex;
  gap: 13px;
  font-weight: 600;
  align-items: center;
}

.theme_card_cat {
  width: 79px;
  height: 79px;
  position: absolute;
  left: 30px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
}

.theme_card_cat.news {
  background-color: var(--orange);
  color: var(--theme-white);
}

.theme_card_cat.events {
  background-color: var(--gray-dark);
  color: var(--orange);
}
.theme_card_content p{
  min-height: 100px;
}

/* Testimonails */
.section-testimonails {
  position: relative;
}

.section-testimonails::after {
  content: "";
  position: absolute;
  background-image: url('../img/icons/blocks.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 174px;
  height: 174px;
  left: 0;
  bottom: 0;
}

.section-testimonails .container-fluid {
  max-width: 100%;
}

.testimonail-inner h2 {
  max-width: 350px;
}

.testimonail-inner {
  max-width: 634px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 60px;
}

.testimonails-img-wrap {
  height: 818px;
}

.testimonail-inner .item {
  padding-top: 120px;
}

.testimonail-inner .item .message {
  position: relative;
}

.testimonail-inner .item .message::after {
  content: "";
  background-image: url('../img/icons/quot.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 31px;
  height: 50px;
  position: absolute;
  top: -68px;
  left: 0;
}

.testimonail-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonail-info .testimonail-info-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 30px;
}

.testimonail-info .testimonail-info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Employbility */
.employability-img-wrap {
  position: relative;
}

.border-left-vertical {
  border-left: 5px solid var(--orange);
}

.employability-overlay {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 88%;
  transform: translateX(-50%);
}

/* course-card */
.course-card {
  position: relative;
}

.course-card-img {
  height: 441px;
  overflow: hidden;
}

.course-card-img img {
  transition: all .3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.course-card:hover .course-card-img img {
  transform: scale(1.2);
}

.course-content {
  background-color: var(--off-white);
  padding: 30px;
}

.course-content h2 {
  min-height: 56px;
}

.course-content p {
  min-height: 118px;
}

.section-courses .nav-pills .nav-link {
  font-size: 20px;
  color: var(--gray-muted);
  font-weight: 700;
  padding: 0;
  padding: 20px 15px;
  border-bottom: 2px solid var(--gray-muted);
  border-radius: 0;
  background-color: transparent;
  width: 100%;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}

/* highlighted */
.highlighted {
  background-color: var(--orange);
  border-radius: 10px;
}

.highlighted-grey {
  background-color: var(--off-white);
  border-radius: 10px;
}

/* Course Detail */
.course-detail-banner {
  background-color: #000;
}

.course-detail-banner .course-type {
  position: relative;
  text-align: left;
  font-size: 16px;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
}

.course-detail-banner .course_title {
  text-align: left;
  opacity: 1;
}

.course-detail-banner .course-type:after {
  content: '';
  width: 30%;
  height: 2px;
  position: absolute;
  bottom: -6px;
  background-color: #fff;
  left: 0;
}

/*  */
.ins-card {
  position: relative;
  display: block;
}

.ins-card .thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ins-overlay {
  position: absolute;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}

.ins-overlay h5 {
  font-size: 22px;
  font-weight: 600;
}

.ins-overlay p {
  color: #fff;
}

.arrow-circle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
}

.tag {
  position: absolute;
  left: 20px;
  top: 30px;
  width: 110px;
  text-align: left;
  border-width: 2px;
  background-color: var(--orange);
  width: max-content;
  padding: 10px 12px;
  border-radius: 30px;
  font-weight: 700;
}

.tag.tag-dark {
  background-color: var(--navy-dark);
  color: var(--orange);
  position: unset;
}

.motto {
  height: 250px;
}

.vision-card {
  background-color: #fff;
  padding: 20px;
  position: relative;
  background-image: url('../img/growth/certification.webp');
  background-repeat: no-repeat;
  background-size: cover;
}

.about .vision-card {
  padding: 35px 30px 30px 37px;
}

/* Section About */
.section-about {
  position: relative;
}

.section-about::after {
  content: "";
  background-image: url(../img/lines.png);
  background-position: right;
  background-size: contain;
  width: 180px;
  height: 292px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
}

.inner-item {
  background-color: var(--off-white);
  padding: 20px;
  border-radius: 12px;
}

/* policies */
.box-orange a {
  background: var(--orange);
  display: block;
  padding: 12px 10px 10px 12px;
  text-align: center;
  border-radius: 10px;
  color: #fff;
  position: relative;
  border: 1px solid transparent;
  transition: all .3s ease;
}

.box-orange .ext_icon {
  position: absolute;
  right: 10px;
  top: 10px;
}
.box-orange a:hover {
  background: var(--theme-white);
  color: var(--orange);
  border: 1px solid var(--orange);
}

.box-orange p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  min-height: 60px;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

.box-orange a:hover p {
  color: var(--orange);
}

.logo-img {
  padding: 0 20px;
  height: 200px;
  object-fit: contain;
}

/* admission */
.btn-orange {
  color: #fe8a41 !important;
  border-width: 1px !important;
  border-radius: 0 !important;
  font-size: 16px;
  text-transform: uppercase !important;
  border: 1px solid var(--orange);
  width: auto;
  padding: 12px 60px;
  transition:
    background-position 0.3s ease-in-out,
    background-color 0.3s ease-in-out,
    color 0.1s ease-in-out;

}

.btn-orange:hover {
  color: white !important;
  background-color: var(--orange);
}

.p-spacing {
  letter-spacing: inherit;
  line-height: 30px;
}

/* Footer */
.footer {
  position: relative;
  padding: 70px 0 0 0;
}

.footer::after {
  content: "";
  background-image: url('../img/icons/blocks.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 151px;
  height: 151px;
  position: absolute;
  left: 0;
  top: 0;
}

.footer::before {
  content: "";
  background-image: url('../img/ft-lines.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 217px;
  height: 486px;
}

.ft-logo {
  width: 220px;
  height: 68px;
}

.border-top-ft {
  border-top: 1px solid #a65b23;
}

.footer h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--theme-theme-family);
  text-transform: capitalize;
  margin-bottom: 20px;
}

.ft-link {
  padding-left: 0;
  list-style: none;
}

.ft-link li {
  margin-bottom: 12px;
}

.ft-link a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.ft-link a:hover{
  color: #f4f4f4;
}

.icon-link li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-ft {
  display: flex;
  justify-content: space-between;
}

/* corporate */
.section-bg-img-1 {
  background-image: url('../img/corporate.webp');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
}

.section-bg-img-1::after {
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background: #000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 20%, rgba(0, 0, 0, 0.7) 46%, rgba(0, 0, 0, 0.53) 74%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  z-index: 0;
}

.padding-y-xl {
  padding: 150px 0;
}

.z-1 {
  z-index: 1 !important;
}

.bx-box {
  padding: 30px;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 15px;
}

.form-wrap input[type="checkbox"],
.form-wrap input[type="radio"] {
  padding: 0;
}

.contact-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: Arial, sans-serif;
}

.contact-block h5 {
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
  font-size: 18px;
  font-weight: 400;
}

.contact-list li i {
  color: var(--orange);
  margin-right: 8px;
  font-size: 20px;
}

/*  */
.custom-accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.custom-accordion .accordion-button {
  background-color: var(--orange);
  background-color: var(--off-white);
  color: var(--orange);
  font-weight: 600;
  font-size: 20px;
  border: none;
  border-bottom: 0;
  padding: 20px 1.25rem;
  transition: background-color 0.3s ease;
  border-radius: 10px;
}

.custom-accordion .accordion-button:hover {
  background-color: var(--orange);
  color: var(--theme-white);
}

.custom-accordion .accordion-button:hover::after {
  filter: brightness(30.5);
}
.custom-accordion .accordion-button:not(.collapsed)::after{
  filter: invert(1);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: var(--orange);
  color: var(--theme-white);
  box-shadow: none;
}

.custom-accordion .accordion-body {
  background-color: var(--off-white);
  margin-top: 10px;
  padding: 1.25rem;
  border: 0;
  color: var(--black-90);
  font-size: 18px;
  line-height: 1.6;
  border-radius: 10px;
}

.custom-accordion .accordion-item {
  border: 1px solid transparent !important;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.custom-accordion .accordion-collapse {
  transition: all 0.3s ease-in-out;
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--orange);
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(245, 134, 52, .25);
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--orange);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid rgba(0, 0, 0, .125);
}

.team_custom {
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: #fff;
}

.team-img {
  object-fit: cover;
  height: 100%;
  background-color: var(--orange);
}

/*  */
.img,
.img img {
  height: 100%;
}
.img img {
  object-fit: cover;
  display: block;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  transition: .3s;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  cursor: pointer
}
.tilt {
  overflow: hidden
}

.img {
  overflow: hidden
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.card:hover .img img {
  transform: scale(1.05)
}

.info {
  padding: 20px
}

/*  */
.event-image-wrapper {
  position: relative;
}
.event-image-wrapper img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #e5e7eb;
  object-fit: cover;
}
.event-type {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #183382;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}
.event-content {
  padding: 2rem 0;
}
.event-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--orange);
}
.event-meta i {
  margin-right: 6px;
}
.event-content .lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.article-body {
  line-height: 1.7;
}
.back-btn {
  margin-top: 2rem;
}
.back-btn a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid #183382;
  color: #183382;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.back-btn a:hover {
  background: #183382;
  color: #fff;
}
.search-wrap .course-card-img {
  height: 280px;
}
.search-wrap .course-content h2 {
  font-size: 25px;
}
.search-wrap .course-content {
  padding: 20px;
}
.vacancy-card {
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vacancy-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}
.vacancy-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.vacancy-details li {
  margin-bottom: 0.6rem;
}

.vacancy-details span {
  font-weight: 600;
  color: var(--black-90);
  display: inline-block;
  min-width: 130px;
  /* label alignment */
}
.vacancy-actions {
  margin-top: auto;
  display: flex;
  gap: 0.8rem;
}
.filter-group {
  display: flex;
  flex-direction: column;
}
.filter-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.filter-select {
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
  background-color: #fff;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.default-banner {
  background: var(--black-soft);
  padding: 5rem 0;
  color: var(--off-white);
  position: relative;
}
.banner-content {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-button:focus{
  box-shadow: none;
}
.accordion-button{
  font-size: 20px;
  font-weight: 700;
  padding: 20px 1.5rem;
}
.accordion-body{
  padding: 30px 25px;
}
/*  */
.team_card-wrap {
  background: var(--off-white);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}
.team_card-img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
}
.team_card-img img.obj_fit {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.team_card_member {
  background: white;
  padding: 20px;
  border-radius: 20px;
}
.team_card_member p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  min-height: 216px;
}
.application-card {
  border: none;
  box-shadow: 0 4px 6px rgba(97, 95, 95, 0.1);
  transition: transform 0.3s ease;
}
.step-number {
  background:var(--orange);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  margin-right: 1rem;
  flex-shrink: 0;
}
.after-left::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  top: 50%;
  height: 100%;
  background-color: #E0E0E0;
  transform: translateY(-50%);
  width: 1px;
}
.method-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.064);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.method-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(179, 181, 188, 0.3);
}
.method-icon i {
  font-size: 1.8rem;
  color: white;
}
.method-description {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.7;
}
.requirements-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2d3748;
}
.steps-list {
  list-style: none;
  margin-bottom: 25px;
}
.steps-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
}
.steps-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 400;
}
.documents-list {
  list-style: none;
  margin: 15px 0 25px 20px;
}
.documents-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  color: var(--gray-steel);
  font-size: 0.9rem;
}
.documents-list li::before {
  content: '📄';
  position: absolute;
  left: 0;
  top: 0;
}
.min-height{
  min-height: 196px;
}
.location-info {
  background: #f7fafc;
  border-radius: 12px;
  padding: 25px;
  margin-top: 25px;
  border-left: 4px solid var(--orange);
}
.location-info .location-icon {
  color: var(--orange);
  font-size: 1.2rem;
  margin-top: 5px;
}
.location-text {
  color: #2d3748;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #5d636a 0%, #5d636a 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
  background-size: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.course-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--orange);
}
.hero-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.course_box_sec .bx-box{
  position: sticky;
  top: 99px;
}
.job_box{
  padding: 30px;
  border-radius: 15px;
}
/* Vacancy Card Enhancements */
.vacancy-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
}
.vacancy-card img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    max-height: 180px;
    object-fit: cover;
}
.filter-select {
    height: 45px;
    border-radius: 8px;
}
.vacancy-item {
    transition: all 0.3s;
}
.no-vacancy {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-top: 40px;
}
.btn-close {
    width: 17px;
    height: 17px;
    position: absolute;
    right: 13px;
    top: 13px;
    z-index: 1;
    opacity: 1;
}
.btn-close:focus{
  box-shadow: none;
  outline: 0;
}
.modal-body{
  padding: 50px 30px 40px 30px;
}
.modal-body p{
  margin-bottom: 0;
}

/* Desktop dropdown panel */
.header-mega-menu {
  min-width: 260px;
  border-radius: 12px;
}

/* Nice spacing for top links */
.header-nav-links .nav-link {
  font-weight: 500;
}

.header .header-nav-links .nav-link,
.header .header-nav-links .nav-link:visited {
  color: #fff !important;
}

.header .header-nav-links .nav-link:hover,
.header .header-nav-links .nav-link:focus {
  color: var(--orange) !important;
}

/* =========================================================
   HEADER DROPDOWNS (Professional look + overflow fixes)
========================================================= */

/* Dropdown panel */
.header .header-mega-menu.dropdown-menu {
  min-width: 280px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* Optional: section title inside menu */
.header .header-mega-menu h6 {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  color: #6b7280; /* professional muted */
}

/* Dropdown items */
.header .header-mega-menu .dropdown-item {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 500;
  color: #111827; /* dark slate */
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
}

/* Hover/focus */
.header .header-mega-menu .dropdown-item:hover,
.header .header-mega-menu .dropdown-item:focus {
  background: rgba(245, 134, 52, 0.12);  /* orange tint */
  color: var(--orange);
  transform: translateX(2px);
}

/* Remove default blue visited/active states (dropdown + header links) */
.header a,
.header a:visited,
.header a:active,
.header .dropdown-item:visited,
.header .dropdown-item:active {
  color: inherit;
}

/* If you want visited links to look muted instead of orange */
.header .header-mega-menu .dropdown-item:visited {
  color: #374151;
}

/* Keep header top links consistent */
.header .header-nav-links .nav-link,
.header .header-nav-links .nav-link:visited {
  color: #fff !important;
}
.header .header-nav-links .nav-link:hover,
.header .header-nav-links .nav-link:focus {
  color: var(--orange) !important;
}

/* ---- Prevent dropdown going off-screen (Visit / last item) ---- */
/* Make dropdown positioning relative to li */
.header .header-dropdown {
  position: relative;
  margin-top: 0px;

}

/* Smooth dropdown animation */
.header .dropdown-menu {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  display: block;           /* IMPORTANT for animation */
  pointer-events: none;
  margin-top: 0px;

}

.header .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

