/* Header css start */


/* html, body {
  overflow-x: hidden;
} */



.apply-now-btn,
.apply-now {
  right: 10px !important;
  z-index: 9999;
}


.feature-box-wrapper,
.footer-social-link {
  max-width: 100%;
}


.modal-open .wrapper,
.modal-open .main,
.modal-open .container-fluid {
  overflow: hidden !important;
}





.top-bar {
  background-color: #B5003F;
  color: #fff;
  height: 44px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact i,
.top-right a {
  color: #fff;
}

.top-contact {
  font-size: 13px;
  font-weight: 500;
}

.top-contact .blinking-text a {
  text-decoration: none;
  color: #B5003F;
}

.top-right ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 12px;
}

.top-right ul li {
  list-style: none;
  margin: auto;
  position: relative;
}


/* .top-right ul li:hover {
  margin-left: 20px;
  border-radius: 5px;
  padding: 1px 10px;
  border: 1px solid #fff;
  background-color: transparent;
  transition: 0.5s;
} */

/* .top-right ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 60%;
  transform: translateY(-50%);
  width: 1px;
  height: 62%;
  background-color: #fff;
} */

@media (max-width: 425px) {
  .top-right ul li a {
    font-size: 10px;
    padding: 4px 8px 5px 8px;
  }

}

.top-right ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background-color: #41246d;
  padding: 5px 16px 6px 16px;
  border-radius: 16px;
}

.one-link {
  padding: 5px 16px 6px 16px !important;
}

/* --------------------------------- */

.Header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.logo img {
  width: 180px;
  max-width: 100%;
}

.navbar {
  background-color: #fff;
  padding: 4px;
}

.navbar-nav .nav-link {
  padding: 10px 15px;
}



.nav-link-hover {
  position: relative;
  text-decoration: none;
  color: #000;
}

.nav-link-hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 0;
  height: 2px;
  background-color: #B5003F;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.nav-link-hover:hover {
  color: #B5003F;
}

.nav-link-hover:hover::after {
  width: 100%;
}




.nav-icons .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #0a1e43 !important;
  transition: 0.3s ease;
}

.nav-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-icons i {
  font-size: 13px;
  transition: 0.3s ease;
  padding-right: 10px;

  color: transparent;
  -webkit-text-stroke: 0.7px #B5003F;
}

.nav-icons .nav-link:hover i {
  transform: rotate(180deg);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.apply-btn-2 {
  background: #B5003F;
  border: none;
  border-radius: 6px;
  /* insent 20 */
  padding: 2px 20px 4px 20px;
  height: 37px;
  cursor: pointer;
  color:white;
  /* margin-left: 25px; */
  font-weight: 600;
}

.apply-btn-2 a {
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.apply-btn-2:hover {
  background: #B5003F;
}



.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  display: block;
  opacity: 0;

  visibility: hidden;
  position: absolute;
  transition: all 0.3s ease;
  /* background-color: #0a1e43; */
  background-color: #0a1e43;
  border-radius: 4px;
  min-width: auto;
  padding: 10px 5px;
  z-index: 1050;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.dropdown-menu li a {
  padding: 4px 8px;
  font-weight: 500;
  color: #fff;
  white-space: break-spaces;
  font-size: 14px;
  border-radius: 4px;
}

.dropdown-item {
  padding: 5px 8px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #B5003F;
  color: #fff;
  box-shadow: 0 6px 15px rgba(247, 148, 28, 0.25);
}

.dropdown-item i {
  font-size: 18px;
  color: #B5003F;
  transition: color 0.2s ease;
}

.dropdown-item:hover i {
  color: #fff;
}

/*  top bar and fixing the main header */
.top-bar {
  position: relative;
  width: 100%;
  z-index: 1030;
  color: #fff;
  transition: transform 0.85s cubic-bezier(0.4, 0.08, 0.27, 1.01);
}

.top-bar.hide {
  transform: translateY(-100%);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: #fff;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
  transition: background 0.4s, box-shadow 0.18s;
}

.main-header.sticky {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  background: #fdfdfd;
}

@media (max-width: 991px) {
  .main-header {
    position: static;
    box-shadow: none;
  }
}

.scroll-animate {

  opacity: 1;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


/* .program-container{
   width: 1150px;
} */

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Header css end-------------------------------------------------------------------- */

/* banner css :start----------------------------------------------------------------- */

.banner-section {
  width: 100%;
  min-height: 600px;
  background: #41246D;
  margin-top: -20px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .banner-section {
    min-height: 600px;
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  .banner-section {
    min-height: 500px;
    padding-top: 80px;
  }
}

.banner-section .underline {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  color: inherit;
}

.banner-image {
  width: 370px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.left-banner {
  padding-top: 70px;
}

.left-banner .Certificates {
  background-color: #B5003F;
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
}

.left-banner h2 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.left-banner p {
  font-size: 20px;
  font-weight: 400;
  color: #fff !important;
}

.Education {
  position: relative;
  display: inline-block;
}

.Education img {
  position: absolute;
  bottom: 2px;
  left: 190px;
  width: 180px;
  z-index: 0;
}

.search-wrapper {
  max-width: 100%;
}

.search-wrapper .search-box {
  background: #fff;
  padding: 4px;
  border-radius: 50px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.search-wrapper .search-input {
  border: none;
  outline: none;
  border-radius: 50px;
  padding: 14px 18px;
  box-shadow: none;
  font-size: 15px;
}

.search-wrapper .search-input::placeholder {
  color: #6c757d;
}

.search-wrapper .search-btn {
  width: 58px;
  height: 52px;
  background: #B5003F;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
}

.search-wrapper .search-btn:focus,
.search-wrapper .search-input:focus {
  outline: none;
  box-shadow: none;
}

/* banner css :end  */

/*why-section css :start----------------------------------------------------------------- */

.why-section {
  text-align: center;
  width: 100%;
  /* padding: 25px 0px 1px 0px; */
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0;
}

.slider-overleft-wrap {
  position: relative;
  margin-top: -50px;
  z-index: 1;
}

.slider-overleft-wrap .media-item {
  min-height: 125px;
  background-color: #B5003F;
}


.media-items {
  background-color: #fff;
  padding: 7px;
  border-radius: 20px;

}

.media-item {
  background-color: #d5eeff;
  position: relative;
  padding: 12px 10px;
  border-radius: 14px;
  box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 35%);
  transition: 0.5s;

}

.media-item-p {
  margin-top: 35px;
  font-size: 15px;
  font-weight: 500;
  color: #737373;
}

.errow-btn {
  position: absolute;
  right: 100px;
  bottom: -18px;
  background: #41246D;
  color: #fff;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;

}


.media-item .media .media-left {
  padding-right: 0px;
}

.media-item .media .media-body {
  padding-left: 0px;
}
.media-body p span{
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.media-tmb {
  width: 45px;
  height: 45px;
  margin: 8px auto 10px;
}

.media-tmb>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s;

  filter: brightness(0) invert(1);
}


.media-item:hover {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -o-transform: scale(1.02);
}

.media-item h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.media-item p {
  margin-bottom: 0px;
  font-weight: 400;
  line-height: 14px;
  font-size: 11px;
}

.media-item.bg-1 {
  background-color: #ffdd8c;
}

.media-item.bg-2 {
  background-color: #ffc089;
}

.media-item.bg-3 {
  background-color: #eefffb;
}

/* -------- */
.notice-btn {
  background-color: #B5003F;
  color: #fff;
  border: none;
  border-radius: 55px;
  transition: 0.3s;
  height: 50px;
}

.notice-btn:hover {
  background-color: #85002f;
  color: #fff;
}

.notice-box {
  background-color: #f8f9fa;
  box-shadow: inset 0 0 10px 2px #a7a098;
  color: #333;
  overflow: hidden;
  padding: 10px 0px;
  border-radius: 10px;
}

.notice-text {
  font-size: 16px;
  font-weight: 600;
  color: #0a1e43;
}

.notice-text {
  font-size: 1.05rem;
  transition: transform 0.5s ease, opacity 0.5s ease;
  white-space: nowrap;
  user-select: none;
  margin: 0;
}

.notice-arrow {
  cursor: pointer;
  user-select: none;
  color: #B5003F;
}

@media (max-width: 767.98px) {
  .notice-box {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .notice-arrow {
    display: none;
    /* Hide arrows on small screens if needed */
  }
}

/*why-section css :end----------------------------------------------------------------- */

/*about-section css :start----------------------------------------------------------------- */
.about-section {
  margin-bottom: 10px;
}


.about-us-tag {
  background: #41246D;
  color: #fff;
  padding: 12px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 5px;
}

.heading-main {
  font-size: 38px;
  font-weight: 700;
  color: #41246D;
  line-height: 1.1;
  margin-bottom: 8px;
}

.heading-main span {
  color: #B5003F;
}

.nav-tabs-custom .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 700;
  color: #f7941c;
}

.nav-tabs-custom .nav-link.active,
.nav-tabs-custom .nav-link:focus {
  border-bottom: 3px solid #f7941c;
  color: #0e2a46;
  font-weight: 700;
}

.section-desc {
  color: rgb(163, 163, 163);
  text-align: justify;
  font-size: 17px !important;
}

.section-desc-2 {
  font-size: 1rem;
  font-weight: 600;
  color: #333931;
  line-height: 30px;
}

.btn-custom {
  background: #0a1e43;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 25px;
  padding: 10px 32px;
}

.btn-custom-more {
  background: #B5003F;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid #B5003F;
}

.btn-custom-more a {
  text-decoration: none;
  color: white;
}

.about-section img {
  max-width: 100%;
  height: auto;
}

.nav-tabs-custom .nav-link {
  font-weight: 600;
  color: #1f2642;
}

@media (max-width: 768px) {
  .heading-main {
    font-size: 22px;
  }

  .about-us-tag {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .nav-tabs-custom {
    justify-content: center;
  }

  .about-img {
    max-width: 80%;
    margin: auto;
  }

  .section-desc,
  .section-desc-2 {
    text-align: center;
  }

  

  .btn-custom {
    display: block;
    margin: 0 auto;
  }
}

.approval-wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.approval-left {
  position: relative;
  background: #41246D;
  color: #fff;
  padding: 6px 22px 6px 18px;
  border-radius: 8px 6px 6px 8px;
  font-size: 18px;
  font-weight: 700;
}


.approval-left::after {
  content: "";
  position: absolute;
  right: -51px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 68px;
  background: #41246D;
  clip-path: polygon(0% 0%, 85% 50%, 0% 100%, 8% 90%, 8% 10%);
  border-radius: 7px;
}

.approval-left span {
  line-height: 1.3;
}

.approval-right {
  overflow: hidden;
  width: 100%;
}

.approval-slider {
  display: flex;
  gap: 22px;
  transition: transform 0.5s linear;
}

.slide {
  min-width: 90px;
}


.slide img {
  max-width: 100%;
  height: 100px;
  object-fit: contain;
}


/*about-section css :end----------------------------------------------------------------- */

/*programmes section css :start----------------------------------------------------------------- */

.course-carousel {
  background-color: #41246D;
  background-position: bottom left;
}

.course-carousel h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.course-carousel .item-box {
  background-color: #fff;
  padding: 6px 6px;
border-radius: 14px; 
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
    min-height: 120px;             
  transition: transform 0.2s ease-in-out;
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease, color 0.3s ease;
}

.item-box:hover {
  background-color: #b5003f;
  color: #fff !important;
  transform: scale(1.04);
}


.item-box:hover h5,
.item-box:hover p,
.item-box:hover span,
.item-box:hover a {
  color: #fff !important;
}

.course-carousel .item-box-1 {
  background-color: #fff;
  padding: 8px 8px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  min-height: 108px;
  transition: transform 0.2s ease-in-out;
}

@media (max-width: 575px) {
  .course-carousel .item-box {
    height: 100%;
    min-height: 200px;
  }
}

.course-carousel .item-box .tmb {
  /* height: 68px;
  width: 68px; */
   height: 55px;
  width: 55px;
  border-radius: 50%;
  background: #fff;
  /* margin: 10px auto; */
    margin: 8px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.course-carousel .item-box .tmb-1 {
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tmb-1 img {
  width: 46px;
}

.item-dec-2 h5 {
  font-size: 16px;
  font-weight: 600;
  color: #0a1e43;
}

.course-carousel .item-box .tmb>img {
  object-fit: contain;
}

.course-carousel .item-box .item-dec h5 {
  /* font-size: 14px; */
  font-size: 13px;

  line-height: 1.3;
  font-weight: 600;
  color: #1f2642;
  padding: 0 5px;
  /* margin-top: 8px;
  margin-bottom: 12px; */
    margin-top: -2px;
  margin-bottom: 2px;
}

.course-carousel .item-box .item-dec-2 h5 {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: #000;
  padding: 0 5px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.course-carousel .item-box .item-dec .btn-sm {
  border-radius: 0px;
  border-color: #b6b4a3;
  font-weight: 700;
}

.btn-programme {
  background: #b5003f;
  color: #fff;
  padding: 7px 36px;
  font-size: 17px;
  border-radius: 5px;
  font-weight: 500;
  border: none;
}

.program-title {
  position: relative;
  text-align: center;

}

.program-title-2 {
  position: relative;
  text-align: center;

}

.program-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff !important;
  display: inline-block;
  position: relative;
  margin-bottom: 46px;
}

.program-title span {
  position: relative;
  color: #b5003f;
}

.program-title-underline {
  position: absolute;
  left: 61%;
  transform: translateX(-50%);
  bottom: 34px;
  width: 176px;
  pointer-events: none;
}

.voc-title h6 {
  font-size: 34px;
  font-weight: 800;
  color: #fff !important;
  display: inline-block;
  position: relative;
  line-height: 1.2;
}

.voc-title span {
  position: relative;
  color: #b5003f;
}





.title-underline-2 {
  position: absolute;
  left: 60%;
  transform: translateX(-50%);
  bottom: 29px;
  width: 190px;
  pointer-events: none;
}

.programmes-section-title {
  position: relative;
  text-align: center;

}

.programmes-section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a1e43;
  display: inline-block;
  position: relative;
}

.programmes-section-title span {
  position: relative;
}

.Facilities-title-underline {
  position: absolute;
  left: 56%;
  transform: translateX(-50%);
  bottom: 36px;
  width: 176px;
  pointer-events: none;
}

/* ACTIVE STATE */
.course-carousel .item-box.active {
  background-color: #b5003f;
}

/* TEXT COLOR */
.course-carousel .item-box.active h5 {
  color: #fff !important;
}

/* ICON COLOR */
.course-carousel .item-box.active img {
  filter: brightness(0) invert(1);
}




/*programmes section css :end----------------------------------------------------------------- */

/* Ph.D. Admissions - 2026 :start----------------------------------------------------------------- */

.phd-admission-section {
  background: #fff;
}

.phd-title {
  font-size: 35px;
  font-weight: 700;
  color: #2c1a6a;
}

.phd-title span {
  color: #B5003F;
}

.phd-underline {
  position: relative;
  width: 220px;
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}



.phd-underline .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
}

.left-dot {
  left: -250px;
  background: #2c1a6a;
}

.right-dot {
  right: -250px;
  background: #B5003F;
}

.phd-desc {
  max-width: 820px;
  margin: auto;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
}


/* Ph.D. Admissions - 2026 :end----------------------------------------------------------------- */


/* vocational section:start----------------------------------------------------------------- */




.admission-badge {
  display: inline-block;
  background: #B5003F;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.voc-title {
  font-size: 35px;
  font-weight: bold;
  color:#B5003F ;
}

.voc-subtitle {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.4;
}

.voc-desc {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    opacity: 0.9;
    text-align: justify;
}

.voc-btn {
  background: #B5003F;
  color: #fff;
  padding: 7px 10px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.voc-btn:hover {
  background: #B5003F;
  color: #fff;
}


@media (max-width: 768px) {
  .voc-title {
    font-size: 34px;
  }

  .voc-subtitle {
    font-size: 18px;
  }


  .vocational-section {
    text-align: center;
  }
}

/* vocational section:end----------------------------------------------------------------- */



/* vocational section:end----------------------------------------------------------------- */

.fu-facilities {
  background: #fff;
}

.program-title-2 h2 {
  color: #2c1a6a;
  font-size: 32px;
  font-weight: 700;
  color: #41246D;
  display: inline-block;
  position: relative;
}
.program-title-2 h2 span{
  color: #b5003f;
}

.program-title-underline-2 {
  position: absolute;
  left: 57%;
  transform: translateX(-50%);
  bottom: -3px;
  width: 140px;
  pointer-events: none;
}

.fu-title {
  font-size: 38px;
  font-weight: 700;
  color: #2c1a6a;
}

.fu-underline {
  width: 80px;
  height: 4px;
  background: #f39c12;
  margin: 8px auto 0;
  border-radius: 2px;
}

.fu-desc {
  max-width: 1000px;
  margin: auto;
  font-size: 16px;
  color: #000;
  font-weight: 600;
}


.facility-card {
  display: flex;
  gap: 15px;
   padding: 8px;
  border: 1.8px solid #00296D;
  border-radius: 10px;
  background: #fff;
  height: 100%;
}


.facility-card img {
   width: 47px;
  height: auto;
  object-fit: contain;
}

.facility-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.facility-card p {
  font-size: 13px;
  font-weight: 500;
  color: #2e2e2e;
  margin: 0;
}

@media (max-width: 576px) {
  .fu-title {
    font-size: 28px;
  }

  .facility-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* vocational section:end----------------------------------------------------------------- */



/*Admission section css :start------------------------------------------------------------ */

.admission-wrap .container {
  padding: 5px 0px;
}

.admission-wrap-title {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}

.admission-wrap-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a1e43;
  display: inline-block;
  position: relative;
}

.admission-wrap-title span {
  position: relative;
  color: #B5003F;
}

.admission-title-underline {
  position: absolute;
  left: 60%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 170px;
  pointer-events: none;
}

.admission-wrap h2 {
  font-size: 35px;
  font-weight: 700;
  color: #41246d;
}

.admission-wrap p {
  font-size: 14px;

}

.process-line-wt {
  position: relative;
  width: 100%;
  margin: auto;
}

.process-list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-self: center;
  margin: auto;
  text-align: center;
}

.process-header {
  background-color: #B5003F;
  color: white;
  text-align: center;
  border-radius: 20px 0px 0px 0px;
}

.process-list li {
  width: 20%;
  position: relative;
  padding: 10px;
}

.process-card {
  border-radius: 28px 28px 11px 11px;
  padding-bottom: 10px;
  border: 1px solid #B5003F;
  height: 275px;
}

.process-header {
  border-radius: 27px 27px 0px 0px;
  padding: 6px;
  font-size: 16px;
  font-weight: 600;
}

.process-box {
  position: relative;
  padding: 0px 13px;
  min-height: 214px;
}

.process-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 10px auto 10px;
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-icon span {
  position: absolute;
  bottom: 35%;
  right: -5px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  background-color: #d3a023;
  border-radius: 50%;
  border: 1px solid;
}

.process-list li h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0a1e43;
  margin-bottom: 5px;
}

.process-list li p {
  /* color: #575757; */
  line-height: 20px;
  font-size: 14px;
  /* font-weight: 500; */
}

/* ✅ 768px tak: 2 cards per row */
@media (max-width: 768px) {
  .process-list li {
    flex: 1 1 48%;
    max-width: 48%;
  }

  .process-icon img {
    width: 55px;
    height: 55px;
  }

  .process-header {
    border-radius: 27px 27px 0px 0px;
    padding: 6px;
    font-size: 16px;
    font-weight: 600;
  }

  .process-box h4 {
    font-size: 16px;
  }

  .process-box p {
    font-size: 14px;
  }

  .process-box {
    position: relative;
    padding: 0px 7px;
    min-height: 190px;
  }

  .process-list li h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0a1e43;
    margin-bottom: 10px;
  }
}

/* ✅ 576px se neeche: 1 card per row */
@media (max-width: 576px) {
  .process-list li {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-card {
    padding: 18px 10px;
  }

  .process-box h4 {
    font-size: 15px;
  }

  .process-box p {
    font-size: 13px;
  }
}

.admission-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.apply-btn {
  font-size: 15px;
  font-weight: 500;
  color: white;
  background-color: #0a1e43;
  padding: 4px 24px;
  border: 0px;
}

.contact-btn {
  font-size: 15px;
  font-weight: 500;
  color: white;
  background-color: #B5003F;
  padding: 4px 24px;
  border: 0px;
}

.admission-section {
  background: #0a1e43;
  background-image: url("https://www.transparenttextures.com/patterns/topography.png");
  background-repeat: repeat;
  background-size: cover;
  min-height: 177px;
  display: flex;
  align-items: center;
}

.admission-section a {
  color: white;
  background-color: #B5003F;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  padding: 8px 20px;
  text-decoration: none;
}

.admission-section a:hover {
  background-color: #0a1e43;
  color: white;
  border: 1px solid #fff;
  text-decoration: none;
}

.admission-section-btn {
  color: #fff;
  background-color: #B5003F;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  padding: 8px 20px;
  border: 1px solid black;
}

.admission-section-btn-2 {
  color: #fff;
  background-color: #B5003F;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  padding: 6px 20px;
  border: none;
}

.admission-section-btn-2:hover {
  border: 1px solid #0a1e43;
  background-color: #fff;
  color: #0a1e43;
}

.admission-section-btn:hover {
  background-color: #0a1e43;
  border: 1px solid #fff;
}

.admission-section .Contact-btn {
  color: #0a1e43;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  padding: 8px 20px;
  border: 1px solid black;
}

.admission-section .Contact-btn:hover {
  background-color: #0a1e43;
  color: white;
  border: 1px solid #fff;
}

.admission-section span {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: white;
  color: #0a1e43;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .admission-section {
    min-height: auto;
    padding: 30px 0;
  }

  .admission-section .row {
    flex-direction: column;
    text-align: center;
  }

  .admission-section span {
    margin: 10px 0;
  }
}

@media (max-width: 576px) {
  .admission-section {
    padding: 25px 0;
  }

  .admission-section .btn {
    width: 80%;
    margin: 5px auto;
  }
}

.phd-underline-2 {
  position: relative;
  width: 140px;
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}



.phd-heading-wrap {
  display: inline-block;
  text-align: center;
}

.phd-title {
  margin: 0;
}

.phd-dotted-line {
  width: 100%;
  border-top: 2px dotted #2c1a6a;
}

.phd-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: -2px;
}

.phd-left-dot {
  left: -6px;
  background: #2c1a6a;
}

.phd-right-dot {
  right: -6px;
  background: #2c1a6a;
}



/*Admission section css :end----------------------------------------------------------------- */

/* Notice css :start  */

.main-section {
  background: #fff;
}

.notice-content .Journey-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #c4c4c4;
}

.Admission-Enquiry span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;

}

.admission-wrap-title-p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.notice-badge,
.important-badge {
  background: #f7941c;
  color: #fff;
  font-size: 0.79rem;
  border-radius: 2px;
  padding: 2px 10px;
  font-weight: 500;
  letter-spacing: 1px;
}

.Notices-title {
  font-size: 36px;
  font-weight: 700;
}

.notice-link {
  font-size: 0.97rem;
  color: #0a1e43;
  font-weight: 500;
  line-height: 1.35;
}

.icon {
  width: 28px;
  height: 30px;
  margin-top: 2px;
  object-fit: contain;
}

.btn-link-card {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  height: 86px;
  background: #f7941c;
  color: #fff;
  border-radius: 9px;
  font-size: 1.01rem;
  font-weight: 600;
  padding: 1px 14px;
  border: none;
  text-align: left;
  box-shadow: none;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.btn-link-card:hover {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  height: 86px;
  background: #f7941c;
  color: #fff;
  border-radius: 9px;
  font-size: 1.01rem;
  font-weight: 600;
  padding: 1px 14px;
  border: none;
  text-align: left;
  box-shadow: none;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.link-card-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}

@media (max-width: 1199.98px) {
  .main-section {
    border-radius: 12px;
  }
}

@media (max-width: 991.98px) {
  .main-section {
    display: block;
  }

  .important-link {
    padding-left: 20px;
    width: 80%;
  }

  .section-title {
    font-size: 1.22rem;
  }

  .btn-link-card {
    font-size: 0.96rem;
    padding: 10px 12px;
  }
}

@media (max-width: 767.98px) {
  .main-section {
    border-radius: 10px;
    padding: 12px 0;
  }

  .section-title {
    font-size: 1.15rem;
  }

  .btn-link-card {
    font-size: 0.92rem;
    padding: 9px 10px;
  }

  .icon {
    width: 18px;
    height: 18px;
  }

  .notice-link {
    font-size: 0.93rem;
  }
}

.Notice-left h4 {
  font-size: 36px;
  font-weight: 700;
  color: #0a1e43;
  padding-top: 30px;
}

.notice-item {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  width: 222px;
  font-size: 13px;
  font-weight: 500;
  color: #0a1e43;
  padding-bottom: 20px;
  border-bottom: 1px solid #f7941c;
}

.vertical-divider {
  position: absolute;
  top: 53%;
  left: 94%;
  transform: translate(-50%, -50%);
  height: 87%;
  width: 3px;
  background-color: #0d2b5b;
  border-radius: 10px;
}

.vertical-divider::before,
.vertical-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: #0d2b5b;
  border-radius: 50%;
}

.vertical-divider::before {
  top: 0;
}

.vertical-divider::after {
  bottom: 0;
}

@media (max-width: 767px) {
  .vertical-divider {
    display: none;
  }
}

.notice-section-2 {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-top: 20px;
}

/* ---------------------------- */


.Notice-section a {
  color: #0a1e43;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  padding: 8px 20px;
}

.Notice-section button {
  color: #0a1e43;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  padding: 6px 10px;
}

.Notice-section button:hover {
  background-color: #fff;
  color: #0a1e43;
}

.Notice-section h3 {
  text-align: center;
  font-size: 37px;
  font-weight: 700;
  padding-bottom: 5px;
  color: white;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .Notice-section {
    min-height: auto;
    /* let it expand naturally */
    padding: 30px 0;
  }

  .Notice-section .row {
    flex-direction: column;
    text-align: center;
  }

  .Notice-section span {
    margin: 10px 0;
  }
}

@media (max-width: 576px) {
  .Notice-section {
    padding: 25px 0;
  }

  .Notice-section .btn {
    width: 80%;
    margin: 5px auto;
  }
}

/* Notice css :end  */

/* FAQ css start  */

.faq-wrap {
   /* padding: 22px 0px 22px 0px; */
    padding: 22px 130px 22px 130px;
}

.faq-wrap h3 {
  font-size: 40px;
  font-weight: 700;
  color: #0a1e43;
  text-align: center;
  padding-bottom: 20px;
}

.accordion-button:hover::after {
  filter: brightness(1.2);
}

.accordion-button {
  /* height: 45px; */
  height: 42px;
  font-size: 15px;
  color: #000;
  font-weight: 600;
  box-shadow: none;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.06), -3px 3px 5px rgba(0, 0, 0, 0.06),
    0 3px 6px rgba(0, 0, 0, 0.05);
  /* border-radius: 30px !important; */
  /* margin-bottom: 18px; */
margin-bottom: 12px;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  border-top: 2px solid black;
  color: #B5003F;
}

.start-btn {
  background-color:#fff;
  border-radius: 5px;

}
.start-btn:hover{
  background-color: #B5003F;
    border: none !important;
    color: white;
}

.accordion-collapse {
  transition: all 0.4s ease;
}

.faq-title {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}

.faq-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #41246D;
  display: inline-block;
  position: relative;
}

.faq-title span {
  position: relative;
  color:#c10245 ;
}

.title-underline {
  position: absolute;
  left: 60%;
  transform: translateX(-50%);
  bottom: -11px;
  width: 190px;
  pointer-events: none;
}

.faq-btn {
  background-color: #B5003F;
  color: #fff;
  padding: 8px 33px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
}

/* FAQ css end  */

/* FU facalties css  */

.category-box {
  background-color: #043873 !important;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 26px 10px 18px 10px;
  min-height: 123px;
  margin-bottom: 8px;
  transition: box-shadow 0.3s, border-color 0.3s, background-image 0.3s,
    background-color 0.3s;
  box-shadow: 0 2px 8px rgba(176, 183, 191, 0.08);
  position: relative;
  /* background-image: url("data:image/svg+xml;utf8,<svg width='120' height='120' xmlns='http://www.w3.org/2000/svg'><g stroke='%23eae9e2' stroke-width='1' fill='none'><path d='M0 5 Q 30 15 60 5 T 120 5'/><path d='M0 25 Q 30 35 60 25 T 120 25'/><path d='M0 45 Q 30 55 60 45 T 120 45'/><path d='M0 65 Q 30 75 60 65 T 120 65'/><path d='M0 85 Q 30 95 60 85 T 120 85'/><path d='M0 105 Q 30 115 60 105 T 120 105'/></g></svg>"); */
  background-repeat: repeat;
  background-size: 120px 120px;
  transition: all 0.4s ease;
}

.category-title {
  color: #fff !important;
}

.category-box:hover {
  border: 1px solid #B5003F;
  background-color: #fff !important;

  box-shadow: 0 8px 24px rgba(247, 148, 28, 0.08);
  transform: scale(1.02);
}

.category-box:hover .category-title,
.category-box:hover {
  color: #0a1e43 !important;
}

.category-title {
  font-size: 1.02rem;
  padding-bottom: 15px;
  color: #444;
}

.category-subtext {
  font-size: 0.88rem;
  color: #797979ff;
  background: #f1f1f1;
  border-radius: 3px;
  padding: 2px 10px;
  display: inline-block;
  margin-top: 2px;
}

.category-icon {
  height: 54px;
  padding-bottom: 8px;
}

.btn-orange {
  background: #B5003F !important;
  border: none;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgb(247 148 28 / 0.15);
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-orange:hover {
  background: #dc860a !important;
  color: #fff !important;
}

@media (max-width: 1400px) {
  .category-box {
    min-height: 115px;
  }
}

@media (max-width: 1200px) {
  .category-box {
    min-height: 108px;
  }
}

@media (max-width: 992px) {
  .category-box {
    min-height: 98px;
  }

  .category-title {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .category-box {
    min-height: 90px;
    padding: 18px 4px 10px 4px;
  }

  .category-title {
    font-size: 0.97rem;
  }

  .category-subtext {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .category-box {
    min-height: 76px;
  }
}

/* custom.css start---------------------------------------------------------------------- */

.inr-wrap {
 /* padding: 40px 0;  */

   padding: 20px 0;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.inr-title h2 {
  font-weight: 600;
  color: #0a1e43;
   /* font-size: 38px;  */
    font-size: 35px;
}

.breadcrumb-heading .breadcrumb-item,
.breadcrumb-heading .breadcrumb-item span {
  font-weight: 500;
  color: #0a1e43;
  font-size: 15px;
}

.breadcrumb-heading .breadcrumb-item span {
  color: #B5003F;
}

  .social-sciene p {
    text-align: justify;
    text-justify: inter-word;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.7;
    margin-bottom: 14px;
  }



/* .social-sciene-img {
  margin-top: -58px !important;
} */
.social-sciene-img {
  margin-top: -360px !important;
}



/* faculty form css -------- */

.contact-form {
  background-color: #41246d;
  padding: 25px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.contact-form h4 {
  color:#fff;
}

.contact-form .btn-lg {
  margin-top: 30px;
  color: #fff;
  background-color: #B5003F;
}

.rightsider-form-1 {
  background-color: #B5003F;
  padding: 5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: auto;
}

/* .tab-content {
  border: 1px solid #0a1e43; 
   margin-top: -1px; 
} */

.custom-input {
  border: none;
  padding: 6px 13px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  transition: all 0.25s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.custom-input:focus {
  border: none;
  outline: none;
  box-shadow: 0 0 0 3px rgba(247, 148, 28, 0.3);
}

.contact-form .form-btn {
  background-color: #B5003F;
  border: none;
  color: #fff;
  padding: 6px 0;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(247, 148, 28, 0.3);
}

.apply-btn:hover {
  background-color: #B5003F;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(247, 148, 28, 0.4);
}

@media (max-width: 576px) {
  .contact-form {
    padding: 25px 20px;
  }

  .title h4 {
    font-size: 1.2rem;
  }
}

/* faculty table css  */

.faculty .tabs-nav .nav-item button {
  flex: 1;

}

.nav-tabs .nav-link.active {
  background: #B5003F;
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 10px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: none;
  /* border-right: 2px solid #444; */
  transition: all 0.3s ease;
  
}

.faculty .tabs-nav .nav-link:last-child {
  /* border-right: none; */
  color: #000;
}

.abt-table .table-primary th {
  background-color: #41246d;
  color: #fff;
  font-size: 15px;
    font-weight: 500;
}

.abt-table tr {
  background-color: #fff;
}

.abt-table tr td strong {
  color: #0a1e43;
}

.abt-table tr td {
  font-weight: 400;
  font-size: 14px;
  color: #626262;
  padding: 15px 15px;
}

.nav-tabs .nav-link {
  border: 2px solid #b4013f ;
 
  background-color: #f8f9fa;
  border-radius: 1px;
 

}


/* .nav-tabs .nav-link.active {
  background-color: #B5003F !important;
  color: #fff !important;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
} */


/* hover */
/* .nav-tabs .nav-link:hover{
  border: 2px solid #b4013f !important ;
} */


@media (max-width: 767.98px) {
  .nav-tabs .nav-link {
    font-size: 13px;
    padding: 8px;
  }

  .contact-form {
    margin-top: 20px;
  }
}

/* about css start  */
.abt-bg {
  position: relative;
  background-color: #f3e1cf54;
  padding: 40px !important;
}

.title-doted {
  margin-bottom: 55px;
}

.title-doted h2 {
  border-bottom: 2px dotted #f27e00;
  padding-bottom: 5px;
  font-weight: 600;
}

.title-doted p {
  font-size: 20px;
  font-weight: 400;
  color: #160d38;
}

/* about css end  */

/* mission vision css start  */

.faculty-menu {
  width: 320px;
}

.vision-mission-core-section {
  width: 100%;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
}

.section-title span {
  color: #B5003F;
}

.vision-mission-card {
  height: 100%;
}

.vision-text,
.mission-text {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.vision-img img {
  border-radius: 8px;
  max-width: 100%;
  margin-top: 20px;
  border-bottom: 10px solid #ff8c00;
  border-bottom-right-radius: 60px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}

.mission-list {
  padding-left: 0;
}

.mission-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 10px;
  font-size: 14px;
}

.mission-list li::before {
  content: "";
  /* background: url(../images/pointer.svg) no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px; */
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 5px;
  color: #ff6600;
  font-weight: bold;
}

.vision-header {
  padding: 6px;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0px #9d9d9deb;
}

.vision-header img {
  height: 60px;
  margin-right: 10px;
}

.core-values-section {
  padding: 60px 30px;
}

.core-box {
  margin: auto;
  background: #0d6f000f;
  border-radius: 10px;
  padding: 40px 20px;
}

.core-values-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.text-orange {
  color: #B5003F;
}

.text-blue {
  color: #2d3574;
}

.diamond-icon img {
  width: 70px;
}

.value-item {
  position: relative;
  padding: 15px 20px 15px 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 12px;
  color: #2d3574;
  font-size: 1.3rem;
  font-weight: bold;
}

.value-title {
  color: #2d3574;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.value-description {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.value-item:hover {
  background-color: rgba(44, 90, 160, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1);
}

.value-item:hover .value-title {
  color: #B5003F;
}

.core-value {
  padding-top: 45px;
}

.core-value img {
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1);
  border-bottom: 10px solid #0a1e43;
  border-bottom-right-radius: 60px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  height: 350px;
  max-width: 100%;
}

.circle-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #B5003F, #B5003F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(247, 148, 28, 0.4);
  animation: floatIcon 3s ease-in-out infinite;
  flex-shrink: 0;
}

.circle-icon img {
  width: 40px;
  height: 40px;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #333;
  margin: 0 0 12px 20px;
  position: relative;
  padding-bottom: 12px;
  user-select: none;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
  border-radius: 6px;
  background: linear-gradient(270deg, #B5003F, #B5003F, #B5003F);
  background-size: 400% 100%;
  animation: underlineMove 4s linear infinite;
}

@keyframes underlineMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 400% 50%;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .core-values-title {
    font-size: 2rem;
  }

  .core-values-section {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }

  .core-values-title {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }

  .vision-header img {
    height: 50px;
  }
}

@media (max-width: 425px) {
  .core-box {
    padding: 25px 15px !important;
  }

  .core-values-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .diamond-icon img {
    width: 45px;
    height: auto;
  }

  .value-item {
    padding: 12px 15px 12px 20px;
  }

  .value-title {
    font-size: 0.95rem;
  }

  .value-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .core-values-section .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* mission vision css end  */

/* admission form start */
.online-admission {
  background-color: white;
  /* padding: 80px 0px 130px 0px; */
  padding: 31px 0px 130px 0px;
}

.online-admission .contact-form-2 {
  background-color: #fff;
  border-radius: 26px;
  padding: 25px;
  border: 2px solid #B5003F !important;
}

.online-admission .form-group {
  padding-bottom: 18px;
}

.online-admission .form-group label {
  font-weight: 500;
  font-size: 14px;
  color: #142849;
  margin-bottom: 0px;
}

.online-admission .form-group span {
  color: #B5003F;
}

.contact-form-2 .form-ctrl {
  height: 44px;
  font-size: 14px;
  background-color: #fff;
  color: #000;
  border-radius: 10px;
}

.online-admission .contact-form .title h4 {
  font-size: 24px;
}

.contact-form-2 h4 {
  font-size: 22px;
  color: #0a1e43;
  padding-bottom: 20px;
}

.online-admission .program-0 {
  border: 1px solid #dadada;
}

.online-admission-btn {
  background-color: #B5003F;
  color: white;
  font-size: 16px;
  padding: 8px 20px;
  font-weight: 500;
}

.online-admission-btn:hover {
  color: black;
  border: 1px solid #B5003F;
}

/* admission form end */

/* research css start  */

.research-main-heading {
  color: #0a1e43;
  font-weight: 700;
}

.research-programme-left {
  background: #f0f8fd;
  border-radius: 15px;
  padding: 25px 30px;
  border-left: 5px solid #134875;
}

.research-programme-left h2,
.research-programme-left h3,
.research-programme-left h4 {
  color: #1a3550;
  font-weight: 700;
  margin-top: 27px;
}

.research-programme-left p,
.research-common-paragraph {
  color: #304760;
  font-size: 1.02rem;
  line-height: 1.7;
}

.research-programme-left ul {
  margin-left: 0;
  padding-left: 18px;
}

.research-programme-left li strong {
  color: #134875;
  font-weight: 600;
}

/* Links */
.research-programme-left a {
  text-decoration: underline;
  color: #2874a6;
  font-weight: 600;
  transition: color 0.2s;
}

.research-programme-left a:hover {
  color: #1472e2;
}

.research-programme-box-1 {
  background: linear-gradient(145deg, #ffffffff, rgb(234, 247, 255));
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: flex;
  align-items: center;
  padding: 22px 16px;
  border-left: 5px solid #154c75;
  gap: 18px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.35),
    -3px -3px 8px rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease-in-out;
}

.research-programme-box-2 {
  background: linear-gradient(145deg, #ffffffff, rgb(234, 247, 255));
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: flex;
  align-items: center;
  padding: 22px 16px;
  border-left: 5px solid #154c75;
  gap: 18px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.35),
    -3px -3px 8px rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease-in-out;
}

.research-programme-box-2:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 30px rgba(0, 0, 0, 0.28),
    -12px -12px 30px rgba(255, 255, 255, 0.65);
}

.research-programme-box-1:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 30px rgba(0, 0, 0, 0.28),
    -12px -12px 30px rgba(255, 255, 255, 0.65);
}

.phd-box-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 20%;
  filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.45));
}

.phd-box-icon-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 20%;
  filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.45));
}

.phd-box-icon img {
  padding: 13px;
}

.phd-box-icon-2 img {
  padding: 5px;
}

.research-phd-box {
  flex: 1;
}

.research-phd-box-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #134875;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 14px 0 #13487528;
}

.research-phd-box-icon img {
  width: 38px;
  filter: brightness(95%) drop-shadow(0 2px 8px #13487530);
}

/* Form Styles */
.research-contact-admission-form {
  background: #134875;
  border-radius: 15px;
  padding: 24px 18px;
  box-shadow: 0 8px 32px 0 #0030610f;
  border: none;
  margin-bottom: 28px;
}

.research-contact-admission-form h2,
.research-contact-admission-form p {
  color: #fff;
}

.research-contact-admission-form input,
.research-contact-admission-form select,
.research-contact-admission-form textarea {
  border-radius: 7px;
  border: 1px solid #b1c5db;
  margin-bottom: 13px;
  font-size: 1.02rem;
  background: #f2f8fc;
}

.research-contact-admission-form label {
  color: #e1ecf4;
  font-weight: 500;
}

.research-contact-btn,
.research-btn-4 {
  background: #2874a6;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.18s;
  box-shadow: 0 2px 9px 0 #2874a630;
  margin-top: 3px;
}

.research-contact-btn:hover,
.research-btn-4:hover {
  background: #134875;
}

.contact-admission-form-0 {
  background-color: #B5003F;
  padding: 5px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  height: 722px;
  overflow: hidden;
}

.contact-admission-form {
  background-color: #0a1e43;
  padding: 33px 10px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

/* Responsive */
@media (max-width: 1200px) {

  .research-programme-left,
  .research-contact-admission-form {
    padding: 15px 8px;
  }
}

@media (max-width: 768px) {

  .research-programme-left,
  .research-contact-admission-form {
    padding: 10px 2px;
  }

  .research-programme-box {
    flex-direction: column;
    gap: 9px;
  }

  .research-phd-box-icon {
    margin-left: 0;
    margin-top: 8px;
  }
}

/* research css end  */

.admission-procedure h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0a1e43;
  padding-bottom: 20px;
}

.Admission-Procedure-0 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #13377a;
  padding-bottom: 20px;
}

.Admission-Procedure-0 {
  padding-bottom: 120px;
}

.main-heading-2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #0a1e43;
}

/*===================================== apaar start ===============================================*/
.abc-id-sec {
  margin-bottom: 0px;
  background-color: #f3e1cf54;
  padding: 40px 50px;
}

.video-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.abc-id-link strong a {
  color: #2d3574;
}

.abc-id-link strong,
p {
  color: rgba(102, 102, 102, 1);
}

/*===================================== apaar end ===============================================*/

/* custom.css end---------------------------------------------------------------------- */

/* Footer css start  */

.footer-logo {
  width: 220px;
  height: 86px;
  border-radius: 6px;
  overflow: hidden;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

footer {
  background-color: #41246D;
  padding-top: 62px;
}

footer .title h2 {
  color: #000;
}

footer .title h2 span {
  -webkit-text-stroke: 1px #000;
  color: #404041;
}

.fotr-logo {
  margin-bottom: 10px;
  width: 190px;
  background-color: #fff;
  padding: 10px;
  border-radius: 2px;
}

footer h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
}

footer h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #B5003F;
}


footer p {
  color: #ffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.fotr-media {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

.fotr-media h6 {
  color: #c51d57;
  font-size: 16px;
}
.pre-footer-text strong{
   color: #c51d57;
  font-size: 16px;
}

.fotr-media {
  position: relative;
  border-bottom: 1px solid #ffffff63;
  width: 80%;
  padding-left: 18px;
}

.fotr-media-1 {
  position: relative;
  border-bottom: 0px solid #ffffff63;
  padding-bottom: 14px;
  width: 85%;
}

.fotr-media-icon {
  width: 40px;
  height: 40px;
  background-color: #d5efff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #B5003F;
  border-radius: 50%;
  font-size: 20px;
}

.fotr-media-icon>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fotr-media h6 {
  margin-top: 0px;
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 600;
}

.fotr-media p {
  margin-bottom: 3px;
}

.fotr-media p a {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 3px;
}

.fotr-media p a:hover {
  color: #fff;
}

.fotr-media p i {
  font-size: 14px;
  text-align: center;
}

.fotr-media h4 {
  margin-top: 0px;
  position: relative;
  margin-bottom: 20px;
}

.fotr-media h4:before {
  position: absolute;
  bottom: -8px;
  height: 2px;
  width: 50px;
  background-color: #B5003F;
  left: 0px;
  content: "";
}

.adress {
  padding-right: 80px;
}

.fotr-media-item {
  margin-bottom: 25px;
}

.fotr-menu li:last-child {
  margin-right: 0px;
}

.fotr-menu li img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  object-fit: contain;
}

.fotr-menu li a {
  color: #fff;
  display: block;
  /* padding: 5px 0px 5px 20px; */
   padding: 1px 0px 5px 20px;
  transition: 0.5s;
  font-weight: 400;
  font-size: 14px;
  position: relative;
}

.fotr-menu li a:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 13px;
  background-color: #fff;
  height: 5px;
  width: 5px;
  border-radius: 50%;
}

.fotr-menu li a:hover {
  transform: translate(10px, 0px);
  -o-transform: translate(10px, 0px);
  -webkit-transform: translate(10px, 0px);
  text-decoration: none;
  color: #B5003F;
}

.cpyrgt-wrap {
  position: relative;
  padding-top: 10px;
  padding-bottom: 5px;
  border-top: 1px solid #fff;
}

.social-icons {
  gap: 12px;
}

.social-icons .social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  background-color: #fff;
  color: #000;
  border: 2px solid #B5003F;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

.footer-overlay .fotr-media p.font-large,
.footer-overlay .fotr-media p.font-large a {
  white-space: nowrap;
}

footer .hdr-social-link li a:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.footer-form {
  position: relative;
  border: 1px solid #fff;
}

.footer-form .form-group {
  margin-bottom: 0px;
  position: relative;
}

.footer-form .form-group .form-ctrl {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #1c0b42;
  border-radius: 0px;
  text-transform: uppercase;
  padding-left: 8px;
}

.footer-form .form-group .form-ctrl::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #fff;
}

.footer-form .form-group .form-ctrl::placeholder {
  color: #fff;
}

.footer-form .form-group textarea.form-ctrl {
  padding-left: 8px;
  height: auto;
}

.footer-form .btn {
  border-radius: 0px;
  font-size: 13px;
  font-weight: 500;
}

.cpyrgt-wrap p {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  line-height: 16px;
}

.cpyrgt-wrap p a {
  color: #fff;
  font-weight: 500;
}

.cpyrgt-wrap p a:hover {
  color: #fff;
}

.cpyrgt-link li a {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  display: block;
  border-right: 1px solid #fff;
  padding: 0px 10px;
}

.cpyrgt-link li:last-child>a {
  border-right: none;
}

.footer-overlay {
  background: #fff;
  padding: 10px 10px 5px 0px;
  border-radius: 17px;
  border: 1px solid #B5003F;
  margin: -85px auto 50px;
  width: 68%;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 32%);
}

.footer-overlay .fotr-media .media-body,
.footer-overlay .fotr-media .media-left {
  vertical-align: middle;
}

.footer-overlay .fotr-media p.font-large,
.footer-overlay .fotr-media p.font-large a {
  text-decoration: none;
  font-size: 30px;
  font-weight: 600;
  color: #00296d;
}

/* .footer-overlay .fotr-media p.font-large,
.footer-overlay .fotr-media p.font-large a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
} */

/* ---------- */
.main-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-bottom {
  background: #b5003f;
  /* padding: 18px 0; */
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-content p {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  transition: 0.3s ease;
  padding-top: 20px;
}

.footer-bottom-content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom-content ul li a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  transition: 0.3s ease;
}

.footer-bottom-content ul li a:hover {
  color: #B5003F;
}

.main-footer {
  position: relative;
}

.footer-social-2 {
  position: relative;
  display: flex;
  justify-content: center;
  bottom: 35px;
}

.footer-social {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
}

.footer-social-link {
  display: flex;
  justify-content: center;
  text-align: center;
  background: #fff;
  color: #0a1e43;
  border-left: 1px solid #B5003F;
  border-right: 1px solid #B5003F;
  border-top: 1px solid #B5003F;
  border-radius: 10px;
  padding: 6px 0;
  width: 799px;
}

.footer-social-link .left,
.right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social-link .span-1::after {
  position: absolute;
  top: 10px;
  bottom: 0px;
  content: "";
  width: 2px;
  height: 38px;
  background-color: #41246D;
  margin-left: 11px;
}

.footer-social-link a {
  color: #41246D;
  font-size: 28px;
  font-weight: 700;
  margin-right: 20px;
  padding-left: 10px;
}

.footer-social-link .footer-i {
  width: 40px;
  height: 40px;
  background-color: #d5efff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #B5003F;
  border-radius: 50%;
  font-size: 20px;
  margin-left: 20px;
}

.footer-social-link .right {
  margin-left: 20px;
}

@keyframes blinker {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.blinking-text {
  animation: blinker 1s linear infinite;
  font-weight: bold;
}





/* Total cycle = 2 seconds */
.blinking-text1,
.blinking-text2 {
  font-weight: bold;
}

/* First text */
.blinking-text1 {
  animation: blink1 2s ease-in-out infinite;
}

/* Second text */
.blinking-text2 {
  animation: blink2 2s ease-in-out infinite;
}

/* SAME simple blink pattern */
@keyframes blink1 {
  0%   { opacity: 1; }
  25%  { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes blink2 {
  0%   { opacity: 1; }
  50%  { opacity: 1; }
  75%  { opacity: 0; }
  100% { opacity: 1; }
}



.enroll-form-modal {
  border: 3px solid #0a1e43;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  border: 3px solid #B5003F;
  padding:20px 10px;
}

.modal-body-2 {
  padding: 8px 30px;
  /* width: 452px; */
  background-color: #ffffff;
}

.enroll-form-close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #0a1e43;
  font-size: 1.2rem;
  opacity: 1;
}

.enroll-form-close-btn:hover {
  color: #B5003F;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.enroll-form-logo {
  width: 160px;
}

.enroll-form-input {
  border: 2px solid #41246d;
  padding: 2px 12px;
  font-size: 15px;
  border-radius: 6px;
  background-color: #fefefe;
  color: #0a1e43;
  transition: all 0.3s ease;
}

.enroll-form-input:focus {
  border-color: #B5003F;
  box-shadow: 0 0 0 4px rgba(181, 0, 63, 0.2);
  outline: none;
}

.enroll-form-small-text {
  font-size: 13px;
  color: #0a1e43;
}

.enroll-form-submit-btn {
  background-color: #B5003F;
  color: #fff;
  width: 100%;
  padding: 10px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.enroll-form-submit-btn:hover {
  background-color:#b5003f;
  color: #fff;
  transform: translateY(-2px);
}

.form-check-input:checked {
    background-color:#b5003f ;
    border-color: #b5003f;
}


@media (max-width: 576px) {
  .modal-body-2 {
    padding: 25px 20px;
  }

  .enroll-form-logo {
    width: 90px;
  }

  .enroll-form-submit-btn {
    width: 100%;
    padding: 12px;
  }
}

/* Footer css end  */

/* .accordion-icon {
  font-weight: bold;
  font-size: 1.5rem;
  user-select: none;
  margin-left: 10px;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0;
} */

/* skillplus-wip css start  */

.skill-program-section {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  padding-bottom: 40px;
}

.skill-program-section h2 span {
  color: #B5003F;
}

.skill-program-section p {
  color: white;
}

.skill-durationn {
  color: #B5003F;
  font-size: 16px;
  font-weight: 600;
}

.skill-sidebar {
  display: flex;
  flex-direction: column;
}

.skill-btn {
  background: #ebebebff;
  border: none;
  padding: 12px 18px;
  text-align: left;
  margin-bottom: 10px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.25);
}

.skill-btn:hover,
.skill-btn.active {
  background-color: #0b2c6a;
  color: #fff;
}

.skill-content-box {
  background-color: #0b2c6a;
  color: #fff;
  min-height: 512px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.25);
}

.skill-content-box h5 {
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 500;
}

.skill-partner-btn {
  background-color: #B5003F;
  border: none;
  padding: 8px 40px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.skill-partner-btn a {
  color: #fff;
  text-decoration: none;
}

.industry-collaboration-1 {
  background-color: #eeeeeeff;
  padding: 10px 15px;
}

.industry-title {
  font-weight: 800;
  color: #41246d;
  letter-spacing: 1px;
}

.industry-title span {
  color: #B5003F;
}

.brand-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.brand-box img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: 0.3s ease;
}

.brand-box:hover {
  border-color: #B5003F;
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brand-box:hover img {
  filter: none;
}

.partner-btn {
  background-color: #B5003F;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.partner-btn i {
  margin-left: 6px;
}

.partner-btn:hover {
  background-color: #0b2d67;
  color: #fff;
}

@media (max-width: 575px) {
  .brand-box {
    height: 80px;
  }

  .brand-box img {
    max-height: 50px;
  }
}

.wiep-banner {
  position: relative;
  background-color: #41246d;
  color: #fff;
  background-attachment: fixed;
  padding: 80px 0px 60px 0px;
}

.banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  background-color: #b5003f;
  display: inline-block;
  padding: 5px 26px;
  border-radius: 4px;
}

.banner-title span {
  color: #B5003F;
}

.sub-title {
  color: #B5003F;
  font-weight: 900;
  font-size: 54px;
}

.banner-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.banner-points .fa-circle-check {
  color: #B5003F;
}

.banner-points li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}


.form-card-outer {
  background: #B5003F;
  padding: 6px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  max-width: 400px;
  margin: auto;
}

.form-card-modern {
  background: #ffffff;
  padding: 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 2px solid #002a68;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.form-header-highlight {
  height: 4px;
  width: 60%;
  background: #002a68;
  margin: 0 auto 6px;
  border-radius: 10px;
}

.skill-form-subtitle {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  color: #0a1e43;
  opacity: 0.8;
}

.form-title-modern {
  font-size: 20px;
  font-weight: 800;
  color: #002a68;
  margin-bottom: 4px;
  text-align: center;
}


.floating-group {
  position: relative;
  margin-bottom: 18px;
}

.floating-group input {
  width: 100%;
  border: 2px solid #ccd5e0;
  padding: 8px 10px 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: .3s ease;
}

.floating-group input:focus {
  border-color: #B5003F;
  box-shadow: 0 0 0 3px rgba(255, 125, 0, 0.2);
}

.floating-group label {
  position: absolute;
  left: 12px;
  top: 13px;
  color: #888;
  font-size: 13px;
  background: #fff;
  padding: 0 5px;
  transition: .25s ease;
  pointer-events: none;
}

.floating-group span {
  color: #B5003F;
  font-size: 13px;
}

.floating-group input:focus+label,
.floating-group input:not(:placeholder-shown)+label {
  top: -8px;
  font-size: 11px;
  font-weight: 600;
  color: #003a88;
}


.btn-modern {
  background: #41246d;
  color: #fff;
  font-weight: bold;
  padding: 8px 8px;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  transition: .25s ease;
}

.custom-dropdown {
  position: relative;
}

.custom-dropdown input {
  width: 100%;
  padding: 5px 40px 5px 12px;
  cursor: pointer;
}

.custom-dropdown .input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
  font-size: 14px;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  position: absolute;
  width: 100%;
  background: #fff;
  color: #00296d;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-height: 280px;
  overflow-y: auto;
  display: none;
  z-index: 99;
}

.dropdown-list li {
  padding: 5px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.dropdown-list li:hover {
  background: #f2f2f2;
}

.custom-dropdown.active .dropdown-list {
  display: block;
}


.btn-modern:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 42, 104, 0.4);
  border: 1px solid #41246d;
  color: #41246d;
}


.disclaimer-modern {
  font-size: 10px;
  color: #4a4a4a;
  opacity: .7;
  text-align: center;
  line-height: 16px;
}


@media(max-width:576px) {
  .form-card-outer {
    max-width: 100%;
  }

  .form-title-modern {
    font-size: 20px;
  }
}

.footer-logo {
  width: 220px;
  height: 86px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.fotr-media {
  position: relative;
  border-bottom: 1px solid #ffffff63;
  width: 100%;
}

/* ------------------- */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-group label {
  color: #002a70;
  font-weight: 500;
  font-size: 12px;
}

.what-is-wiep {
  background-color: #f3f3f3;
  padding: 40px 0px;
}

.wiep-section-title {
  font-weight: 800;
  color: #41246d;
  letter-spacing: 1px;
}

.wiep-section-title span {
  color: #B5003F;
}

.section-desc {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  /* line-height: 1.6; */
  /* text-align: justify; */
}

.wiep-stats {
  background-color: #B5003F;
  color: #fff;
}

.stat-box img {
  height: 80px;
}

.stat-box i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.stat-box h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 10px;
}

.stat-box p {
  font-size: 12px;
  margin: 0;
  line-height: 1.1;
  color: #fff;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .stat-box i {
    font-size: 2rem;
  }

  .stat-box h4 {
    font-size: 1.2rem;
  }
}

/* ----------------------------- */

.mantage-vantage {
  background-color: #fff;
}

.mantage-title {
  font-weight: 800;
  color: #41246d;
  letter-spacing: 1px;
}

.mantage-title span {
  color: #B5003F;
}

.table-responsive {
  border: 4px solid #B5003F;
}

.mantage-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #e5edfa;
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.mantage-table thead {
  background-color: #B5003F;
}

.mantage-table th {
  background-color: #B5003F;
  font-size: 20px;
  color: #fff;
  text-align: left;
  font-weight: 700;
  padding: 16px;
  border-bottom: 2px solid #fff;
  border: 2px solid #fff;
}

.mantage-table td {
  background-color: #41246d;
  color: #fff;
  border-left: 2px solid #973a3aff;
  border: 2px solid #fff;
  padding: 14px 18px;
  text-align: left;
  vertical-align: middle;
  font-size: 0.9rem;
  font-weight: 500;
}

.mantage-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .mantage-title {
    font-size: 1.6rem;
  }

  .mantage-table th,
  .mantage-table td {
    font-size: 0.9rem;
    padding: 12px;
  }
}

/* skill-plus-wip end  */

/* vocational dropdown css start */

.faculty-main-section {
  padding: 0px 0px 40px 0px;
}

.programme-overview-section {
  background: #ffffff;
}

.programme-title {
  font-size: 26px;
  font-weight: 700;
  color: #003366;
}

.programme-text {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 18px;
  text-align: justify;
}

/* why css  */
.why-program .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 44, 116, 0.65);
  z-index: 1;
}

.why-program .container {
  position: relative;
  z-index: 2;
}

.title-line {
  width: 188px;
  height: 4px;
  background: #B5003F;
  border: none;
  margin-bottom: 20px;
}

.points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 17px;
  line-height: 1.6;
}

.points li:last-child {
  border-bottom: none;
}

.icon {
  font-size: 22px;
  color: #f3cc21;
  margin-top: 3px;
}

.girl-img {
  max-height: 518px;
  object-fit: contain;
}

/* vocational dropdown css end */

.hero-form {
  background-color: #d2d3d5;
  padding: 20px 20px;
  border: 6px solid #B5003F;
  margin-top: -10px;
}

.hero-form h3 {
  font-size: 22px;
  padding-bottom: 10px;
  color: #41246d;
}

.faculty-hero-form {
  height: 35px;
  border-radius: 4px;
  border: 1px solid #d2d3d5;
  padding: 0px 15px;
  font-size: 14px;
  margin-bottom: 8px;
  background-color: #f5f5f5ff;
}

.faculty-hero-form-1 {
  background-image: url("./images/user-icon.png"),
    url('data:image/svg+xml;utf8,<svg fill="black" height="18" width="18" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 18,0 9,10"/></svg>');

  background-repeat: no-repeat;
  background-position: 12px center, calc(100% - 12px) center;
  background-size: 18px, 12px;
  height: 35px;
  border-radius: 4px;
  border: 1px solid #d2d3d5;
  padding: 0px 15px;
  font-size: 14px;
  margin-bottom: 8px;
  background-color: #f5f5f5ff;
}

.faculty-hero-form select {
  height: 35px;
  border-radius: 8px;
  border: 1px solid #f3f3f3ff;
  padding: 10px 15px;
  font-size: 14px;
}

.faculty-hero-form input:focus,
.faculty-hero-form select:focus {
  border-color: #0b2d67;
  box-shadow: 0 0 5px rgba(0, 86, 214, 0.3);
}

.faculty-hero-form-btn {
  background: #0b2d67;
  color: #fff;
  height: 34px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  border-radius: 4px;
  transition: 0.3s;
}

.faculty-hero-form-btn:hover {
  background: transparent;
  color: #053280ff;
  border: 1px solid #053280ff;
}

.program-section .underline {
  width: 120px;
  height: 4px;
  background: #c6a95f;
}

.program-section h2 span {
  color: #B5003F;
}

.program-section .text-center {
  color: #0b2d67;
}

.why-choose-table {
  border: 1px solid #bebebeff;
}

.program-table thead tr th {
  background-color: #0b2d67;
  color: #fff;
}

.program-table th,
.program-table td {
  vertical-align: middle;
  padding: 8px 18px;
  font-size: 16px;
  border: 1px solid #bebebeff;
}

.program-table tbody tr td a {
  color: #0b2d67;
  font-weight: 600;
  text-decoration: none;
}

.program-table tbody tr td a:hover {
  text-decoration: underline;
  color: #0b2d67;
}

.admission-process {
  background: #071b53;
  margin-bottom: 50px;
}

.admission-process h2 span {
  color: #f7941c;
}

.text-gold {
  color: #f7941c;
}

.underline-gold {
  width: 120px;
  height: 4px;
  background: #f7941c;
}

.process-box {
  text-align: center;
}

.process-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

}

.process-icon-i {
  font-size: 32px;
  color: #f7941c;
}

.step-number {
  position: absolute;
  bottom: -1px !important;
  left: 17%;
  transform: translateX(-50%);
  background: #fff !important;
  color: #f7941c !important;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold !important;
  font-size: 20px !important;
}

.faculty-apply-btn {
  background: #f7941c;
  border: none;
  padding: 6px 30px;
  font-size: 18px;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.faculty-apply-btn:hover {
  background: #f7941c;
}

.admission-process-card {
  border: 2px solid #c0003a;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  min-height: 260px;
  width: 235px;
  transition: all 0.3s ease;
}

.admission-process-row {
  justify-content: center;
  gap: 30px;
}

.admission-process-alt {
  background: #fff7ef;
}

.admission-process-step {
  background: #c0003a;
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 12px 10px;
  font-size: 15px;
}

.admission-process-body {
  padding: 10px 18px 0px 18px;
}

.admission-process-body img {
  width: 65px;
  margin-bottom: 18px;
}

.admission-process-body h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0b1c3f;
  margin-bottom: 5px;
}

.admission-process-body p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.5;
}

/* dotted divider */
.admission-process-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* dots */
.admission-process-divider span:nth-child(1),
.admission-process-divider span:nth-child(3) {
  width: 7px;
  height: 7px;
  background: #3b2a8f;
  border-radius: 50%;
}

/* dotted line */
.admission-process-divider span:nth-child(2) {
  width: 120px;
  height: 2px;
  background: repeating-linear-gradient(to right,
      #3b2a8f,
      #3b2a8f 4px,
      transparent 4px,
      transparent 8px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .admission-process-row {
    gap: 20px !important;
  }

  .admission-process-row .col-sm-6 {
    flex: 0 0 100% !important;
    max-width: 280px !important;
    display: flex !important;
    justify-content: center !important;
  }

  .admission-process-card {
    min-height: auto;
    width: 235px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 768px) {
  .admission-process-row {
    flex-direction: none !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .admission-process-row>div {
    width: 100% !important;
    max-width: 350px !important;
    display: flex !important;
    justify-content: center !important;
  }
}

@media (max-width: 576px) {
  .admission-process-row {
    justify-content: center !important;
    align-items: center !important;
  }

  .admission-process-row>[class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    display: flex !important;
    justify-content: center !important;
  }

  .admission-process-card {
    width: 100% !important;
    max-width: 320px !important;
    min-height: auto;
    border-radius: 16px;
    margin: 0 auto 20px auto !important;
  }

  .top-right ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1px !important;
  }
}

@media (max-width: 425px) {
  .admission-process-card {
    max-width: 340px !important;
    width: 100% !important;
    margin: 0 auto 15px auto !important;
  }


  .top-right ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1px !important;
  }

}

@media (max-width: 375px) {
  .admission-process-card {
    max-width: 300px !important;
    margin: 0 auto 15px auto !important;
  }

     .top-bar {
        display: block !important;
        padding: 4px 0;
        height: 109px !important;
    }
    .two-link{
     margin-bottom: 20px;
    }
}


.approval-card {
  display: block !important;
  background: #ffffff;
  border-bottom: 8px solid #f7941c;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;

  box-shadow:
    0 0 6px rgba(0, 0, 0, 0.10),
    0 4px 12px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.10);

  transition: all 0.35s ease;
}



.approval-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1), 0 14px 26px rgba(0, 0, 0, 0.1),
    0 22px 42px rgba(0, 0, 0, 0.08);
  border-color: #003380;
}

.left-line {
  display: none;
}

.approval-logo {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: #f7f9fc;
  padding: 18px;
  border-bottom: 1px solid #e9eef5;
}

.approval-card>div:last-child {
  padding: 18px 22px;
}

.approval-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0a2a4a;
  line-height: 1.3;
}

.approval-subtext {
  font-size: 14px;
  margin: 0;
  color: #5e6b7c;
}

.approval-card:hover .approval-title {
  color: #003194;
}

@media (max-width: 768px) {
  .approval-logo {
    height: 150px;
  }
}

/* approval css end  */


/* new section start  */

.info-section {
  padding: 60px 0;
  background: #fff;
}

.text-muted-custom {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.message-box {
  padding: 0px 30px;
  position: relative;
}

.message-divider {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #f36f21;
}

.profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
}

.profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #f36f21;
}

.profile h6 {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: #f36f21;
}

.profile span {
  font-size: 16px;
  color: #333;
}

.notice-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding-top: 50px;
}

.notice-title {
  padding: 12px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

.notice-body {
  padding: 15px;
}

.notice-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 0px;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.notice-text {
  font-size: 15px;
  color: #5e5e5eff;
  line-height: 1.5;
  flex: 1;
  min-width: 0;
  padding-right: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.notice-date {
  font-size: 13px;
  color: #666;
  text-align: right;
  min-width: 90px;
  flex-shrink: 0;
  padding-left: 20px;
}


.notice-year {
  font-size: 12px;
  color: #999;

}

.bg-notice {
  background: linear-gradient(90deg, #f7941c, #8f4e01);
}

.bg-notification {
  background: linear-gradient(90deg, #0575e6, #021b79);
}

.bg-announcement {
  background: linear-gradient(90deg, #9d50bb, #6e48aa);
}

.notice-item:last-child {
  border-bottom: none;
}

.badge-new {
  background: red;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

@media(max-width:1024px) {
  .notice-text {
    font-size: 12px;
    color: #5e5e5eff;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
    padding-right: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

}

@media(max-width:768px) {
  .message-divider {
    display: none;
  }

  .message-box {
    padding: 0px 20px;
    margin-bottom: 30px;
  }
}

.table-responsive {
  border: 4px solid #fff;
}



/* ugc css  start ----------------------------------- */

.ugc-section {
  padding: 20px 0px 50px 0px;
}

.ugc-title {
  font-weight: 800;
  margin-bottom: 30px;
}

.ugc-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ddd;
}

.ugc-menu li {
  padding: 12px 15px;
  border-bottom: 1px solid #b5003f;
  cursor: pointer;
  color: #41246d;
  font-size: 17px;
  font-weight: 700;
  transition: 0.3s;
}

.ugc-menu li:hover {
  background: #f8f8f8;
}

.ugc-menu li.active {
  background: #b5003f;
  color: #fff;
}

.ugc-content {
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}

.ugc-content h5 {
  color: #b5003f;
  font-weight: 700;
}

.ugc-content p {
  font-size: 15px;
  line-height: 1.8;
}

.check-text {
  color: #b5003f;
  font-weight: 600;
}

/* ugc css  end ----------------------------------- */


/* rti-section----------------------------------- */


.rti-section {
  padding: 40px 0;
}

.rti-title {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 20px;
}

.rti-table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
}

.rti-table thead th {
  background: #a00000;
  color: #fff;
  font-weight: 700;
  padding: 15px;
  border: 1px solid #fff;
  white-space: nowrap;
}

.rti-table tbody td {
  padding: 14px;
  border: 1px solid #ccc;
  vertical-align: middle;
}

.rti-table tbody tr:hover {
  background: #f9f9f9;
}



/* new section end  */


/*   some new css for adgestment */


  .warp-padding{
    margin-top: -59px;
  }


  /*  faclities of engineering and technology  */

 
  .tab-pane {
    display: none;
}
.tab-pane.active.show {
    display: block;
}


/* program tab */
.programmes-tab-buttons{
margin-bottom: 11px;
    /* border: 2px solid black; */
    gap:10px;
}


/*   nav items for buttons  */
 .nav-item {
    /* flex-basis: 0;
    flex-grow: 1;
    text-align: center; */
    padding: 3px 0px;
}





.nav-tabs {
  --bs-nav-tabs-border-width: 0;
}



/* prefooter info */

.pre-footer-info {
    padding: 30px 0;
    background-color:#41246d;
}

.pre-footer-text {
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
    color: white;
    margin: 20px 0;
}

.pre-footer-info hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 0;
}

.pre-footer-text a {
    color: #fffbff;
    /* text-decoration: none; */
    font-weight: 500;
}

.pre-footer-text a:hover {
    text-decoration: underline;
}



/* -----------------------    approval csss    ------------------------ */


        .approvals-section {
            /* padding: 48px 0; */
            /* background: linear-gradient(135deg, #f5f7fa, #eef1f7); */
            padding-top: 2px;
            padding-bottom: 48px;
        }

        .approvals-section h2 {
            font-weight: 700;
            font-size: 32px;
            color: #41246d;
        }

        .approvals-section h2 span {
            color: #b5003f;
        }

        .slider-wrapper {
            overflow: hidden;
            width: 100%;
        }

        .slider-row {
            display: flex;
            transition: transform 0.6s ease-in-out;
        }

        .slide-item {
            flex: 0 0 20%;
            padding: 15px;
        }

        .university-item {
            background: #41246d;
            border-radius: 4px;
            text-align: center;
            min-height: 225px;
            width: 100%;
            max-width: 216px;
            overflow: hidden;
            position: relative;
            transition: 0.3s ease;
        }

        .university-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 45%;
            background: #b5003f;
            z-index: 0;
        }

        .university-tmb {
            width: 71px;
            height: 90px;
            background: #fff;
            border-radius: 10px;
            margin: 50px auto 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            position: relative;
        }


        .university-tmb img {
            max-width: 84%;
            max-height: 90%;
            object-fit: contain;
        }

        .university-item h6 {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: 0 15px 25px;
            position: relative;
            z-index: 1;
        }



        .slider-wrapper {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

      
      

        @media (max-width: 768px) {
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .prev-btn {
                left: 5px;
            }

            .next-btn {
                right: 5px;
            }
        }



        @media (max-width: 992px) {
            .slide-item {
                flex: 0 0 33.33%;
            }
        }

        @media (max-width: 768px) {
            .slide-item {
                /* flex: 0 0 47%; */
            }
        }

        @media (max-width: 576px) {
            .slide-item {
                flex: 0 0 78%;
            }
        }
   
      

       .slider-main {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}



.slider-btn {
    background: #ccccd3;
    color: 000;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
}




.slider-wrapper {
    overflow: hidden;
}


.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ccccd3;
    color: #fff;
    border: none;
    /* padding: 2px 12px; */
    cursor: pointer;
    font-size: 22px;
    border-radius: 50%;
    z-index: 10;
      width: 34px;
            height: 34px;
            
}






.approvals-section {
    position: relative;
    z-index: 5;
}



/*----------------------------- newww slider cssss ---------------------------*/

.ssu-university-sec{
  margin-bottom: 60px;
}

.recognition-list .university-item {
  margin-bottom: 25px;
  background-color: #fff;
  min-height: 440px;
  box-shadow: 0px 0px 24px 0px hsl(0deg 0% 0% / 31%);
  padding: 10px;
}
.recognition-list .university-item h4 {
  font-size: 20px;
  font-weight: 600;
  max-width: 235px;
  margin: 15px auto 0px;
}
.recognition-list .university-tmb {
  width: 150px;
  height: 150px;
}
.recognition-list .university-item h6 {
  min-height: auto;
  color: #343434;
}
.recognition-list .university-item h6 .fa-circle {
  font-size: 6px;
  position: relative;
  top: -2px;
}

/* approvel slider */


/* Keep Bootstrap container width */
.university-carousel {
  position: relative;
}

/* Allow arrows only (NOT full stretch) */
.university-carousel .owl-stage-outer {
  overflow: hidden;   /* keep carousel width correct */
}

/* Owl nav must escape container */
.university-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Buttons clickable */
.university-carousel .owl-nav button {
  pointer-events: all;
  background: none !important;
  border: none;
}

/* Arrow style */
.owl-btn {
  /* width: 42px;
  height: 42px; */
  background: #d9d9d9;
  color: #555;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Position arrows INSIDE container edge */
.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -32px;
}

.owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: -32px;
}

/* Hover */
.owl-btn:hover {
  background: #bfbfbf;
}
/* Force nav to show */
.owl-carousel .owl-nav {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Keep carousel inside container */
.university-carousel {
  position: relative;
}

/* DO NOT break width */
.university-carousel .owl-stage-outer {
  overflow: hidden;
}

/* Nav wrapper */
.university-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 9999;
  pointer-events: none;
}

/* Buttons clickable */
.university-carousel .owl-nav button {
  pointer-events: all;
  background: none !important;
  border: none !important;
}

/* Button design */
.owl-btn {
  width: 30px;
  height: 30px;
  background: #d9d9d9;
  color: #555;
  font-size: 21px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Position */
/* .university-carousel .owl-prev {
  position: absolute;
  left: -20px;
}

.university-carousel .owl-next {
  position: absolute;
  right: -20px;
} */

/* Hover */
.owl-btn:hover {
  background: #bfbfbf;
  color: #000;
}


.accordion{
     --bs-accordion-btn-focus-border-color:none !important; 
     --bs-accordion-btn-focus-box-shadow: none !important;
}


   

   .training-icon{
 margin-top: -19px;
   }


/*---------------------vice chancellores ------------------*/


