/* LEGACY AND PROGRAM OFFERED SECTION START */

.combined_background_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.combine_section {
  /* display: grid; */
  position: relative;
  padding: 80px 0 0 0;
}

.combine_section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/home/combine-background.webp");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

/* .combine_section > * {
    grid-area: 1/1;
} */

.program_offered_section {
  padding: 100px 0 80px 0;
  position: relative;
}

.program_offered_section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background-color: var(--red-color);
}

.program_offered_mainbox>* {
  position: relative;
  z-index: 10;
}

.legacy_listing {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.legacy_listing_black {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  background-color: #2E2E2E;
  padding: 20px 30px 20px 30px;
  justify-items: center;
  gap: 20px;
}

.legacy_listing {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}

.legacy_listing_red {
  background: linear-gradient(180deg, rgba(161, 4, 10, 1) 0%, rgba(223, 35, 42, 1) 100%);
  padding: 25px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0px 5px 15px #00000040;
  position: relative;
}

.legacy_listing_red:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 80%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.legacy_listing_red::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 80%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.legacy_listing_number {
  font-size: 30px;
  font-family: var(--font-roboto-800);
  color: var(--white-color);
}

.legacy_listing_text {
  margin: 4px 0 0 0;
  color: var(--white-color);
}

.inner_legacy_listing {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  position: relative;
  width: 100%;
}

.inner_legacy_listing::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(46, 46, 46, 1) 0%, rgba(222, 222, 222, 1) 50%, rgba(46, 46, 46, 1) 100%);
}

.inner_legacy_listing:last-child::after {
  display: none;
}

.program_offered_mainbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.program_offered_listing {
  display: grid;
  box-shadow: 0px 5px 10px #0000001C;
  border-radius: 30px;
  overflow: hidden;
}

.program_offered_listing:hover .program_offered_listing_img img {
  transform: scale(1.02);
}

.program_offered_listing_img img {
  border-radius: 30px;
  transition-duration: 0.4s;
}

.program_offered_listing_img {
  border-radius: 20px;
}



.program_offered_listing>* {
  grid-area: 1/1;
}

.program_offered_listing_heading {
  width: 100%;
  height: 40%;
  align-self: end;
  display: flex;
  align-items: end;
  margin: 0;
  padding: 20px;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(0, 0, 0, 1) 100%);
  color: var(--white-color);
  font-size: 20px;
  font-style: var(--font-roboto-600);
  z-index: 1;
}

.program_offered_nav {
  display: none;
}

/* LEGACY AND PROGRAM OFFERED SECTION ENDS */

/* NEWS AND EVENTS SECTION START */
.home_news_event_section {
  padding: 80px 0 0 0;
  position: relative;
}

.home_news_event_section::after {
  position: absolute;
  content: "";
  background-color: #C4161C0D;
  width: 100%;
  height: 50%;
  bottom: 10%;
  left: 0;
  z-index: -1;
}

.home_n_e_mainbox {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
}

.home_n_e_right {
  display: grid;
}

.home_n_e_right>* {
  grid-area: 1/1;
}

.home_n_e_right_video_icon {
  /* width: fit-content;
  height: fit-content; */
  align-self: center;
  justify-self: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  cursor: pointer;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.home_n_e_right_video img {
  border-radius: 30px;
}

.home_n_e_listing {
  position: relative;
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 20px;
  padding: 20px;
  box-shadow: 0px 8px 16px #dedede;
  border-radius: 20px;
  background-color: var(--white-color);
  transition-duration: 0.4s;
}

.home_n_e_listing:hover {
  transform: scale(1.02);
}

.home_n_e_listing_icon {
  position: absolute;
  right: 0;
  bottom: 20px;
}

.home_n_e_listing_date {
  font-size: 14px;
  line-height: normal;
  font-family: var(--font-roboto-600);
  margin: 0 0 10px 0;
}

.home_n_e_listing_heading {
  font-size: 18px;
  font-family: var(--font-roboto-700);
  margin: 0 0 10px 0;
}

.home_n_e_listing_para {
  margin: 0;
}

.home_n_e_leftbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home_n_e_listing_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* NEWS AND EVENTS SECTION ENDS */
/* TESTIMONIAL SECTION START */

.testimonial_section {
  padding: 80px 0 0 0;
}

.marquee-section {
  /* padding: 40px 0; */
  overflow: hidden;
}

.marquee-viewport {
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
}

.marquee-viewport:last-child {
  margin: 0;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollLeft 80s linear infinite;
}

.marquee-track.reverse {
  animation-name: scrollRight;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}

.team-card {
  flex: 0 0 380px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 20px 24px 20px 70px;
  margin-left: 55px;
  position: relative;
  min-height: 110px;
}

.team-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-text h5 {
  font-family: var(--font-roboto-600);
  margin-bottom: 8px;
  font-size: 20px;
}

.team-text p {
  margin: 0;
  color: #1a1a1a;
}

.bg-cream {
  background: #f5f0e6;
}

.bg-pink {
  background: #f8ecf3;
}

.bg-blue {
  background: #eef2f7;
}

.bg-lblue {
  background: #e2edfa;
}

.bg-peach {
  background: #fbeeee;
}

.bg-gray {
  background: #eef1f6;
}

/* TESTIMONIAL SECTION ENDS */
/* SCHOLARSHIP SECTION START */
.scholorship_section {
  display: grid;
  align-items: center;
}

.scholorship_section>* {
  grid-area: 1/1;
}

.scholar_red_firstbox {
  display: grid;
}

.scholar_red_firstbox>* {
  grid-area: 1/1;
}

.scholar_red_firstbox_img {
  width: fit-content;
  height: fit-content;
  align-self: start;
  justify-self: end;
}

.scholar_mainbox {
  background: linear-gradient(90deg, rgba(167, 0, 6, 1) 0%, rgba(196, 22, 28, 1) 100%);
  padding: 65px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: fit-content;
  height: fit-content;
  align-self: end;
  position: relative;
}

.scholar_mainbox::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../images/home/wave-image.webp");
  background-size: cover;
  left: 0;
  top: 0;
}

.scholorship_background_imgbox {
  width: 100%;
  height: 100%;
}

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

.scholorship_section .heading {
  color: var(--white-color);
  text-align: start;
  margin: 0 0 8px 0;
}

.scholorship_section .card_subheading {
  color: var(--white-color);
  margin: 0 0 15px 0;
}

.scholar_main_leftbox p {
  color: var(--white-color);
}

.scholar_mainbox>*,
.scholar_red_firstbox_img {
  position: relative;
  z-index: 10;
}

.scholorship_section .my_btn_box a {
  border: 1px solid var(--white-color);
  background-color: transparent;
  margin: 10px 0 0 0;
}

/* SCHOLARSHIP SECTION ENDS */
/* FOOTER SECTION START */

.footer_topbox {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
}

.footer_topbox_leftbox {
  background-color: var(--red-color);
  border-right: 10px solid #D73036;
  padding: 50px 20px 50px 0;
}

.footer_topbox_rightbox {
  padding: 50px 0 50px 50px;
  background-color: #F0F6FF;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer_background_left {
  background-color: var(--red-color);
}

.footer_background_right {
  background-color: #F0F6FF;
}

.footer_background_box {
  display: grid;
  grid-template-columns: 25vw 1fr;
}

.footer_main {
  display: grid;
}

.footer_main>* {
  grid-area: 1/1;
}

.footer_main a {
  text-decoration: none;
  color: var(--black-color);
  transition-duration: 0.3s;
}

.footer_main a:hover {
  color: var(--link-hover-color);
}

.footer_listing {
  list-style-type: disc;
  list-style-position: inside;
}

.footer_listing li {
  padding: 0 0 10px 0;
  font-size: 14px;
}

.footer_topbox_leftbox_listing {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 20px;
  padding: 15px 0px 15px 30px;
  background: linear-gradient(90deg, rgba(215, 48, 54, 1) 0%, rgba(196, 22, 28, 1) 100%);
  border-radius: 50px 0 0 50px;
  align-items: center;
}

.footer_topbox_leftbox_listing_mainbox {
  margin: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_content,
.footer_content a {
  color: var(--white-color);
}

.footer_content a:hover {
  color: var(--yellow-color);
}

.footer_heading {
  font-size: 20px;
  font-family: var(--font-roboto-700);
  padding: 0 0 14px 0;
  margin: 0 0 40px 0;
  border-bottom: 1px dashed var(--black-color);
}

.footer_btn_box .my_btn_box a {
  color: var(--white-color);
  width: 100%;
  font-size: 14px;
  padding: 12px 15px;
  text-align: center;
}

.footer_btn_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social_media_box {
  margin: 50px 0 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.social_media_box a {
  display: block;
}

.social_media_box a svg circle,
.social_media_box a svg .social_red_icon,
.social_media_box a svg.social_red_icon {
  transition-duration: 0.4s;
}

.social_media_box a:hover svg circle,
.social_media_box a:hover svg .social_red_icon,
.social_media_box a:hover svg.social_red_icon {
  fill: var(--red-color);
}

.footer_bottom_mainbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer_bottombox_right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* FOOTER SECTION ENDS */

/* INNER PAGE UTILITY CLASSES START */
.inner_heading {
  font-size: 32px;
  font-family: var(--font-roboto-600);
  color: var(--red-color);
}

.inner_banner_heading {
  font-family: var(--font-roboto-700);
  font-size: 35px;
  margin: 0;
  width: fit-content;

  &>span {
    color: var(--red-color);
    display: block;

  }
}

.breadcrumb {
  margin: 10px 0 10px 0;
}

.breadcrumb-item.active {
    color: var(--red-color);
    font-family: var(--font-roboto-600);
}

/* .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
} */

.breadcrumb-item,
.breadcrumb-item a {
    /* color: var(--white-color); */
    font-size: 14px;
}

.breadcrumb-item a:hover {
    color: var(--yellow-color);
}

.inner_banner_section {
  display: grid;
  box-shadow: 0px 0px 0px #dedede;
}

.inner_banner_section>* {
  grid-area: 1/1;
}

.inner_banner_section .container {
  align-self: center;
}

.inner_banner_overlay_box {
    width: 100%;
    height: 100%;
    background-color: #00000063;
    display: none;
}

.inner_page_section {
  display: grid;
}

.inner_page_section>* {
  grid-area: 1/1;
}

.inner_page_backgrond_box {
  display: grid;
  grid-template-columns: 25vw 1fr;
}

.inner_page_backgrond_leftbox {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(235, 235, 235, 1) 100%);
}

.inner_page_menu_mainbox {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 80px 0;
}

.inner_page_menu_box {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  align-self: start;
  padding: 20px;
  background-color: var(--red-color);
  border-radius: 30px;
}

.inner_page_menu_heading {
  font-size: 20px;
  margin: 0;
  font-family: var(--font-roboto-700);
  color: var(--white-color);
  background: linear-gradient(90deg, rgba(233, 34, 41, 1) 0%, rgba(196, 22, 28, 1) 100%);
  padding: 15px 10px 15px 30px;
  border-radius: 40px 0 0 40px;
  position: absolute;
  top: 20px;
  left: -30px;
}

.inner_page_menu_listing_box {
  margin-top: calc(var(--inner-menu-heading-height) + 20px);
}

.inner_page_menu_listing {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px dashed #FFFFFF66;
  font-family: var(--font-roboto-600);
  color: var(--white-color);
  transition: all 0.3s;
}

.inner_page_menu_listing:hover .inner_page_menu_icon svg path {
  transition: all 0.3s;
}

.inner_page_menu_listing:hover {
  color: var(--yellow-color);
}

.inner_page_menu_listing:hover .inner_page_menu_icon svg path {
  fill: var(--yellow-color);
}

.inner_page_menu_listing:first-child {
  padding: 0 0 15px 0;
}

.inner_page_menu_listing:last-child {
  padding: 15px 0 0 0;
  border: 0;
}

/* INNER PAGE UTILITY CLASSES ENDS */

/* PROGRAMMES PAGES START */

.programmes_page_first_mainbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}

.programmes_page_first_mainbox::after {
    content: url('../images/programmes/radar-antenna.webp');
    position: absolute;
    right: -80px;
    top: -80px;
    z-index: -1;
}

.programmes_first_right {
  overflow: hidden;
  border-radius: 30px;
}

.programmes_first_right img {
  border-radius: 30px;
  transition: all 0.4s;
}

.programmes_first_right:hover img {
  transform: scale(1.05);
}

.programmes_page_second_mainbox {
  padding: 60px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.programmes_page_third_mainbox {
  margin: 60px 0 0 0;
  padding: 40px;
  border-radius: 30px;
  background-color: var(--red-background-color);
}

/* PROGRAMMES PAGES ENDS */
/* CONTACT US PAGE START */

body:has(.contact_main) .inner_banner_heading span {
  display: inline-block;
}

.contact_first_section {
  padding: 80px 0 0 0;
}

.contact_first_mainbox {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 0;
  border-radius: 30px;
  border: 1px solid #f4f4f4;
  box-shadow: 0px 0px 15px #dedede;
  position: relative;
  overflow: hidden;
}

.contact_first_mainbox::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: var(--red-color);
  z-index: -1;
  border-radius: 0 30px 30px 0;
}

.contact_first_mainbox::before {
  position: absolute;
  content: "";
  bottom: -60px;
  left: -70px;
  width: 150px;
  height: 150px;
  background-color: var(--red-background-color);
  border-radius: 50%;
  z-index: -1;
}

.contact_first_left {
  padding: 100px 100px 100px 60px;
}

.contact_first_right {
  background-color: #2E2E2E;
  padding: 50px 40px;
  border-radius: 30px 0 0 30px;
  position: relative;
}

.contact_first_right::before {
  position: absolute;
  content: "";
  bottom: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background-color: #2E2E2E;
  border-radius: 50%;
  border: 5px solid var(--white-color);
}

.contact_first_left form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact_first_left form .form-control {
  padding: 8px 14px;
  border: 0;
  border-bottom: 1px solid #dedede;
  border-radius: 0;
}

.contact_first_left form .form-control:focus {
  border-color: var(--red-color);
  box-shadow: unset;
}

.send_button {
  background: linear-gradient(90deg, rgba(167, 0, 6, 1) 0%, rgba(196, 22, 28, 1) 100%);
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
  line-height: normal;
  font-family: var(--font-roboto-600);
  padding: 14px 24px;
  border-radius: 40px;
  color: var(--white-color);
  border: 1px solid var(--red-color);
  background-color: var(--red-color);
  text-decoration: none;
  width: 100%;
  transition: color 0.4s ease, border-color 0.4s ease;
  margin: 20px 0 0 0;
}

.contact_first_right .inner_heading {
  color: var(--white-color);
}

.contact_adderess_listing_mainbox {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact_adderess_listing {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: center;
}

.contact_adderess_icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff63;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_adderess_text,
.contact_adderess_text a {
  color: var(--white-color);
  transition: all 0.3s;
}

.contact_adderess_text a:hover {
  color: var(--yellow-color);
}

.contact_second_section {
  padding: 80px 0;
  position: relative;
}

.contact_second_section::after {
  position: absolute;
  content: "";
  background-color: #dedede;
  height: 50%;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.follow_us_mainbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #dedede;
  background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgb(243, 243, 243) 100%);
}

.follow_us_listing_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0px;
}

.follow_us_listing {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.follow_us_listing:hover .follow_us_icon {
  animation: bounce-in-top 1s both;
}

@keyframes bounce-in-top {
  0% {
    transform: translateY(-30px);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }

  55% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }

  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  81% {
    transform: translateY(-6px);
    animation-timing-function: ease-in;
  }

  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  95% {
    transform: translateY(-2px);
    animation-timing-function: ease-in;
  }

  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}

.follow_us_listing:not(:last-child) {
  border-right: 1px solid #dedede;
}

.follow_us_icon {
  width: 30px;
  height: 30px;
}

.follow_us_mainbox .inner_heading {
  margin: 0;
}

/* CONTACT US PAGE ENDS */

/* BLOG PAGE START */

.blog_card_section {
  padding: 80px 0;
  display: grid;
}

.blog_list_mainbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 40px;
}

.blog_card {
    display: grid;
    grid-template-rows: 1fr 0.66fr;
}

.blog_card_top_right_list_icon {
  width: 6px;
  height: 6px;
  background-color: #707070;
  border-radius: 50%;
}

.blog_card_top_right_list {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 10px;
  align-items: center;
}

.blog_card_img {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.blog_card_img img {
  border-radius: 20px;
  transition: transform 0.7s ease-in-out;
}

.blog_card_img::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.blog_card:hover .blog_card_img::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.blog_card:hover .blog_card_img img {
  transform: scale(1.1);
}

.blog_card_desc,
.blog_card_title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog_card_top_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog_card_top_right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog_card_top_right_list_name {
  font-size: 14px;
}

.blog_card_top_right_list:last-child .blog_card_top_right_list_name {
  color: #707070;
}

.blog_card_title {
  font-size: 20px;
  font-style: var(--font-roboto-600);
}

.blog_card_desc {
  color: #1a1a1a;
}

.blog_card_overlay {
    max-width: 95%;
    margin: -40px auto 0 auto;
    padding: 30px 20px;
    position: relative;
    z-index: 10;
    display: grid;
    --r: 15px;
    --s: 20px;
    --x: 16px;
    --y: 16px;
    border-radius: var(--r);
    filter: drop-shadow(0px 2px 10px #0000001f);
}

.blog_card_overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--white-color);
    border-radius: var(--r);
    z-index: -1;

    --_m: /calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_g: conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)), #0000 25%, #000 0);
    --_d: (var(--s) + var(--r));
    mask:
        calc(100% - var(--_d) - var(--x)) 100% var(--_m),
        100% calc(100% - var(--_d) - var(--y)) var(--_m),
        radial-gradient(var(--s) at 100% 100%, #0000 99%, #000 calc(100% + 1px)) calc(-1*var(--r) - var(--x)) calc(-1*var(--r) - var(--y)),
        var(--_g) calc(-1*var(--_d) - var(--x)) 0,
        var(--_g) 0 calc(-1*var(--_d) - var(--y));
    mask-repeat: no-repeat;
    transition: background-color 0.4s ease;
}

.blog_card:hover .blog_card_overlay::before {
    background-color: #ffeaeb;
}

.blog_card_overlay > * {
  grid-area: 1/1;
}

.blog_card_top_button {
    width: fit-content;
    height: fit-content;
    justify-self: end;
    align-self: end;
    margin: 0 -20px -30px 0;
    border-radius: 50%;
}

.blog_card_top_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--red-color);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.blog_card_top_button:hover a {
  background-color: var(--yellow-color);
}

.blog_card_category {
    padding: 5px 16px;
    background-color: var(--white-color);
    border-radius: 40px;
    font-size: 14px;
    border: 1px solid #dedede;
}

.blog_student_badge {
  background-color: #EAF2FF;
  border: 1px solid #C7DBFF;
  color: #2563EB;
}

.blog_faculty_badge {
  background-color: #F3EEFF;
  border: 1px solid #DDD0FF;
  color: #7C3AED;
}

.blog_card_top_row {
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #ffc6c8;
    gap: 15px;
}

.blog_card_bottom_row {
    padding: 0 60px 0 0;
}

.blog_filter_bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.blog_search_btns {
    display: flex;
    gap: 8px;
}

.blog_filter_search {
  display: grid;
}

.blog_filter_search > * {
  grid-area: 1/1;
}

.blog_filter_search svg {
  position:relative;
  z-index: 10;
  align-self: center;
  margin: 0 0 0 20px;
}

.blog_filter_search input {
  line-height: normal;
}

.blog_filter_search .form-control {
  padding: 12px 15px 12px 50px;
  border-radius: 40px;
}

.blog_filter_bar .my_btn_box a {
    padding: 10px 24px;
}

.blog_filter_bar .my_btn_box:first-child a {
    background-color: var(--white-color);
    color: var(--yellow-color);
    border: 1px solid var(--yellow-color);
}

.blog_filter_bar .my_btn_box:first-child a:hover {
    color: var(--white-color);
    border-color: var(--yellow-color);
}

.blog_card_first_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px 0;
}

.blog_card_first_row > * {
    flex: 1;
}

.blog_card_headingbox .inner_heading {
    margin: 0;
}

/* BLOG PAGE ENDS */

/* BLOG DETAIL START */

body:has(.blog_detail_mainbox) .inner_banner_heading span {
  display: inline-block;
}

.blog_detail_section {
  padding: 80px 0;
}

.custom_listing li {
    position: relative;
    padding: 0 0 10px 25px;
}

.custom_listing li::after {
    content: "";
    position: absolute;
    background-image: url("../images/check-mark.svg");
    background-size: contain;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    left: 0;
    top: 5px;
}

.blog_detail_image_box {
    display: grid;
}

.blog_detail_image_box > * {
    grid-area: 1/1;
}

.blog_detail_image_content {
    width: 65%;
    height: fit-content;
    padding: 15px 20px;
    background-color: #fff;
    align-self: end;
    border-radius: 0 20px 0 0;
    display: flex;
    gap: 40px;
    align-items: center;
}

.blog_detail_list_icon img {
  width: 20px;
  height: 20px;
}

.blog_detail_image_content_listing {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: center;
}

.blog_detail_image_content .blog_card_category {
    padding: 6px 20px;
    background-color: var(--yellow-color);
    color: var(--white-color);
    font-family: var(--font-roboto-600);
}

.blog_detail_list_name {
    font-size: 18px;
    font-family: var(--font-roboto-600);
}

.blog_detail_image img {
  border-radius: 30px;
}

.blog_detail_leftbox {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog_sub_heading {
    font-size: 25px;
    font-family: var(--font-roboto-600);
}

.blog_detail_mainbox {
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    gap: 40px;
    align-items: start;
}

.blog_detail_rightbox {
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #dedede;
    background: linear-gradient(180deg,rgba(255, 237, 237, 0.37) 0%, rgba(255, 255, 255, 1) 100%);
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.blog_detail_rightbox::after {
    content: "";
    background-image: url("../images/blog/line-background-image.webp");
    position: absolute;
    left: 0;
    top: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.25;
}

.blog_program_imgbox {
    width: 150px;
    height: 150px;
    margin: 0 auto 8px auto;
    background-color: #ffffff;
    border-radius: 50%;
}

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

.blog_program_heading {
    font-size: 18px;
    font-family: var(--font-roboto-600);
    position: relative;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
}

.blog_program_heading::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: var(--red-color);
    border-radius: 20px;
}

.blog_program_list_heading {
    font-size: 14px;
    font-family: var(--font-roboto-600);
    margin: 0;
}

.blog_program_list_icon img {
    width: 18px;
    height: 18px;
}

.blog_program_listing_mainbox {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog_program_list {
    display: grid;
    grid-template-columns: 35px 1fr auto;
    gap: 10px;
    padding: 10px;
    border: 1px solid #dedede;
    border-radius: 12px;
    align-items: center;
}

.blog_program_list_icon {
    background-color: #ffe5e6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.blog_program_sub_heading {
    font-size: 14px;
}

.blog_detail_content_listing:not(:last-child) {
    margin: 0 0 60px 0;
}

/* BLOG DETAIL ENDS */

/* FACULTY PAGE START */

body:has(.faculty_profile_mainbox) .inner_banner_heading span {
  display: inline-block;
}

.faculty_profile_mainbox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 150px;
    column-gap: 30px;
}

.faculty_card > * {
  position: relative;
  z-index: 10;
}

.faculty_card {
    padding: 0 20px 20px 20px;
    border-radius: 30px;
    background-color: #ffffff;
    box-shadow: 0px 2px 10px #0000001f;
    border-bottom: 4px solid var(--red-color);
    position: relative;
}

.faculty_card::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    background-color: #ffeaeb;
    transition: all 0.5s linear;
    opacity: 0;
    
    /* z-index: -1; */
}

.faculty_card:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    opacity: 1;
}

.faculty_profile_section {
    padding: 180px 0 80px 0;
}

.faculty_image {
    width: fit-content;
    margin: -100px auto 0 auto;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border: 2px solid #f5a30230;
    position: relative;
}

.faculty_image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.faculty_card:hover .faculty_image::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.faculty_image img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.7s ease-in-out;
}

.faculty_card:hover .faculty_image img {
    transform: scale(1.1);
}

.faculty_headingbox {
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    text-align: center;
    position: relative;
}

.faculty_headingbox::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(222, 222, 222, 1) 50%, rgba(255, 255, 255, 1) 100%);
    left: 0;
    bottom: 0;
}

.faculty_card:hover .faculty_headingbox::after {
    transition: all 600ms linear;
    background: linear-gradient(90deg,rgba(255, 255, 255, 0.41) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.4) 100%);
}

.faculty_name {
    font-size: 20px;
    margin: 20px 0px 8px 0px;
    font-family: var(--font-roboto-600);
}

.faculty_designation {
    font-size: 14px;
    color: #707070;
}

.faculty_qualification {
    font-size: 14px;
    text-align: center;
    margin: 0 0 8px 0;
}

.faculty_email_icon {
  width: 20px;
  height: 20px;
}

.faculty_email {
    display: flex;
    gap: 10px;
    justify-content: center;
    color:var(--red-color)
}
/* FACULTY PAGE ENDS */

/* ================ MEDIA QUIRIES START ===================== */

@media (max-width: 1400px) {
  .legacy_listing_icon img {
    max-width: 85%;
  }

  .legacy_listing_number {
    font-size: 25px;
  }

  .legacy_listing_red {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .legacy_listing_red img {
    max-width: 90%;
  }

  .program_offered_listing_heading {
    font-size: 18px;
  }

  .home_n_e_listing_heading {
    font-size: 16px;
    margin: 0 0 6px 0;
  }

  .team-text h5 {
    font-size: 18px;
  }

  .scholorship_section {
    padding: 80px 0 60px 0;
    position: relative;
  }

  .scholorship_background_imgbox {
    position: absolute;
    top: 0;
  }

  .card_subheading {
    font-size: 20px;
    font-family: var(--font-roboto-700);
  }

  .footer_heading {
    font-size: 18px;
    margin: 0 0 30px 0;
  }

  .footer_topbox_rightbox {
    padding: 40px 0 40px 30px;
    gap: 20px;
  }

  .footer_topbox_leftbox {
    padding: 40px 20px 40px 0;
  }

  .footer_btn_box .my_btn_box a {
    font-size: 12px;
  }

  .social_media_listing svg {
    width: 30px;
    height: 30px;
  }

  .program_offered_section {
    padding: 90px 0px 80px;
    position: relative;
  }

  .home_n_e_listing:not(:last-child) {
    margin: 0 0 10px 0;
  }

  .inner_heading {
    font-size: 30px;
  }

  .inner_page_menu_heading {
    font-size: 18px;
  }

}

@media (max-width: 1199.98px) {
  .legacy_listing_icon img {
    max-width: 70%;
  }

  .inner_legacy_listing {
    gap: 0px;
  }

  .legacy_listing_black {
    padding: 15px 15px 15px 15px;
    gap: 18px;
  }

  .legacy_listing_text {
    font-size: 12px;
  }

  .legacy_listing_number {
    font-size: 20px;
  }

  .legacy_listing_red {
    padding: 15px 15px 22px 15px;
  }

  .legacy_listing_red img {
    max-width: 80%;
  }

  .legacy_listing_icon {
    width: 60px;
  }

  .program_offered_mainbox {
    gap: 15px;
  }

  .program_offered_listing_heading {
    font-size: 16px;
  }

  .team-text h5 {
    font-size: 16px;
  }

  .team-text p {
    font-size: 12px;
  }

  .scholar_mainbox {
    padding: 25px;
  }

  .footer_topbox_rightbox {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer_topbox_right_listing:last-child {
    grid-column: 1/-1;
  }

  .footer_topbox_right_listing_last_mainbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer_btn_box {
    flex-direction: row;
  }

  .social_media_box {
    margin: 0;
    gap: 10px;
  }

  .scholorship_section {
    padding: 60px 0 60px 0;
  }

  .home_n_e_mainbox {
    gap: 30px;
    align-items: center;
  }

  .home_n_e_leftbox {
    gap: 15px;
  }
}

@media (max-width: 991.98px) {
  .legacy_listing_icon {
    width: 35px;
  }

  .inner_legacy_listing {
    grid-template-columns: 35px 1fr;
  }

  .legacy_listing_number {
    font-size: 16px;
  }

  .legacy_listing_text {
    font-size: 10px;
  }

  .legacy_listing_red img {
    max-width: 80%;
  }

  .legacy_listing_red {
    padding: 15px 0px 22px 0px;
  }

  .legacy_listing {
    grid-template-columns: 1fr 200px 1fr;
  }

  .home_n_e_mainbox {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home_n_e_right {
    grid-row: 1/2;
    justify-self: center;
  }

  .scholar_red_firstbox_img {
    width: 300px;
    height: 100%;
  }

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

  .scholar_mainbox {
    padding: 20px;
    grid-template-columns: 1fr 0.6fr;
  }

  .scholorship_section .card_subheading {
    margin: 0 0 8px 0;
    font-size: 16px;
  }

  .scholar_main_leftbox p {
    font-size: 12px;
  }

  .footer_topbox_leftbox {
    padding: 30px 15px 30px 0;
  }

  .footer_icon svg {
    width: 20px;
    height: 20px;
  }

  .footer_topbox_leftbox_listing {
    grid-template-columns: 20px 1fr;
    gap: 15px;
    padding: 15px 0px 15px 20px;
  }

  .footer_topbox_rightbox {
    padding: 30px 0 30px 20px;
    gap: 15px;
  }

  .footer_heading {
    font-size: 16px;
    margin: 0 0 20px 0;
  }

  .footer_btn_box {
    gap: 10px;
  }

  .footer_listing {
    list-style-type: none;
  }

  .footer_listing li {
    position: relative;
    padding-left: 16px;
  }

  .footer_listing li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--black-color);
    font-size: 16px;
  }

  .social_media_box {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 767.98px) {
  .combine_section {
    padding: 60px 0 0 0;
  }

  .program_offered_section {
    padding: 60px 0px 60px;
  }

  .legacy_listing {
    grid-template-columns: 1fr;
  }

  .legacy_listing_red {
    padding: 15px 0px 15px 0px;
    border-radius: 0;
  }

  .legacy_listing_red::before,
  .legacy_listing_red:after {
    display: none;
  }

  .legacy_listing_black {
    grid-template-columns: 1fr 1fr;
  }

  .inner_legacy_listing {
    display: flex;
    justify-content: center;
  }

  .program_offered_mainbox {
    grid-template-columns: repeat(2, 1fr);
  }

  .program_offered_section::after {
    height: 20%;
  }

  .home_news_event_section,
  .testimonial_section {
    padding: 60px 0 0 0;
  }

  .scholar_red_firstbox_img {
    display: none;
  }

  .scholar_mainbox {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .footer_topbox {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer_topbox_leftbox {
    padding: 30px 0 30px 0;
    border: 0;
  }

  .footer_background_box {
    grid-template-columns: 1fr;
    grid-template-rows: 0.8fr 1fr;
  }

  .footer_topbox_rightbox {
    padding: 0 0 30px 0;
  }

  .footer_topbox_right_listing_last_mainbox {
    flex-direction: column;
    gap: 10px;
  }

  .social_media_box {
    grid-template-columns: repeat(5, 1fr);
  }

}

@media (max-width: 575.98px) {
  .legacy_listing_red img {
    max-width: 40%;
  }

  .inner_legacy_listing::after {
    width: 1px;
  }

  .legacy_listing_red {
    padding: 10px 0px 10px 0px;
    border-radius: 0;
  }

  .legacy_listing_icon {
    width: 40px;
  }

  .program_offered_mainbox {
    grid-template-columns: 1fr;
  }

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

  .program_offered_section::after {
    height: 40%;
    z-index: -1;
  }

  .home_n_e_listing {
    grid-template-columns: 1fr;
  }

  .footer_topbox_rightbox {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer_background_box {
    grid-template-rows: 0.4fr 1fr;
  }

  .footer_bottom_mainbox {
    padding: 15px 0;
    flex-direction: column;
    gap: 15px;
  }

  .sticky .header {
    box-shadow: unset;
    padding: 8px 0px;
  }

  /* program offered slider start */
  .program_offered_wrap {
    position: relative;
  }

  .program_offered_mainbox {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;

    /* hide native scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .program_offered_mainbox::-webkit-scrollbar {
    display: none;
  }

  .program_offered_listing {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .program_offered_nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }

  .program_nav_btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--red-color);
    background: var(--white-color);
    color: var(--red-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
  }

  /* .program_nav_btn:hover,
    .program_nav_btn:active {
        background: var(--red-color, #e62128);
        color: #fff;
    } */

  .program_nav_btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  /* program offered slider ends */

  .footer_listing {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
  }

  .footer_background_box {
    grid-template-rows: 0.62fr 1fr;
  }
}

/* ================ MEDIA QUIRIES ENDS ======================== */