/**
 * Project custom styles
 * Home: section snap scroll, header height, hero slider, counters, course finder, tab blur
 */
:root {
  --section-header-height: 66px;
}

.bg-dark-red {
  background-color: #ae1e16 !important;
}

/* Header: solid (non-transparent) on inner pages */
.header-solid .header-nav-solid {
  background-color: #363636 !important;
}

/* Main header nav: border-bottom on hover */
header .navbar .navbar-nav > .nav-item > .nav-link {
  border-bottom: 5px solid transparent;
  transition: border-color 0.2s ease;
}
header .navbar .navbar-nav > .nav-item > .nav-link:hover,
header .navbar .navbar-nav > .nav-item.dropdown.show > .nav-link {
  border-bottom-color: currentColor;
}

/* Mobile header: solid black background */
header.desktop-hide.header-with-topbar,
header.desktop-hide.header-with-topbar .navbar,
header.desktop-hide.header-with-topbar .navbar-collapse,
header.desktop-hide.header-with-topbar .dropdown-menu {
  background-color: #232323 !important;
}

/* Mobile modern nav: keep dropdown row on one line (fix "Services" / "Servic" + "es" wrap) */
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .nav-item.dropdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .nav-item.dropdown > .nav-link {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  padding-right: 8px;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .nav-item.dropdown > .dropdown-toggle {
  position: static;
  flex-shrink: 0;
  margin-left: auto;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .nav-item.dropdown > .dropdown-menu {
  width: 100%;
  flex-basis: 100%;
  order: 10;
}

/* Mobile modern nav: nested submenu – collapsible (hidden by default), + / − toggle */
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group > .submenu-group-label {
  flex: 1;
  min-width: 0;
  padding: 15px 0;
  display: block;
  color: #fff;
  font-size: 18px;
  opacity: 1;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group > .submenu-group-label i {
  margin-right: 10px;
  opacity: 0.9;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group > .submenu-toggle-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--white);
  opacity: 0.9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group > .submenu-toggle-btn .submenu-icon-plus,
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group > .submenu-toggle-btn .submenu-icon-minus {
  position: absolute;
  font-size: 14px;
  transition: opacity 0.2s ease;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group > .submenu-toggle-btn .submenu-icon-plus {
  opacity: 1;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group > .submenu-toggle-btn .submenu-icon-minus {
  opacity: 0;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group.open > .submenu-toggle-btn .submenu-icon-plus {
  opacity: 0;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group.open > .submenu-toggle-btn .submenu-icon-minus {
  opacity: 1;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group > .submenu-inner {
  flex-basis: 100%;
  width: 100%;
  order: 10;
  padding: 0 0 10px 0;
  margin: 0;
  border-bottom: none;
  display: none;
  overflow: hidden;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-group.open > .submenu-inner {
  display: block;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-inner li {
  border-bottom: none;
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-inner li a {
  display: block;
  padding: 10px 0 10px 35px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
[data-mobile-nav-style="modern"] .navbar-modern-inner .navbar-nav .dropdown-menu .submenu-inner li:last-child a {
  border-bottom: none;
}

/* ========== Parent dropdown – same slow smooth open (COURSES, ABOUT US, etc.) ========== */
@-webkit-keyframes submenu-open-smooth {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes submenu-open-smooth {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar .navbar-nav .dropdown.show .dropdown-menu,
.navbar .navbar-nav .dropdown.open .dropdown-menu {
  -webkit-animation: submenu-open-smooth 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: submenu-open-smooth 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ========== Engineering submenu – simple and unique (same slow smooth) ========== */
/* Smooth open/close on hover – slow transition */
.dropdown-submenu .submenu-inner {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.6s;
}
.dropdown-submenu:hover .submenu-inner {
  max-height: 480px;
  opacity: 1;
  visibility: visible;
  overflow: visible;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}
.dropdown-submenu:hover .dropdown-submenu-trigger {
  background-color: transparent;
}

/* Trigger row – subtle hover */
.dropdown-submenu-trigger {
  padding: 4px 8px;
  margin: -4px -8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

/* Submenu – one clean accent line, no icons */
.submenu-inner {
  padding-bottom: 14px;
}
.submenu-inner li {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Spacing between B.Tech, M.Tech, Diploma – top and bottom */
.submenu-inner > li.dropdown-submenu {
  margin-bottom: 6px;
}
.submenu-inner > li.dropdown-submenu:last-child {
  margin-bottom: 0;
}
.submenu-inner > li.dropdown-submenu:first-child {
  margin-top: 4px;
}
.submenu-inner-link {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.submenu-inner-link:hover {
  color: #fff;
  padding-left: 6px;
}

/* Chevron – only the hovered row rotates (not parent when child is open) */
.dropdown-submenu-chevron {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  margin-left: 6px;
  transition: color 0.2s ease;
}
.dropdown-submenu-chevron i {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Engineering only: rotate only ITS chevron (direct child), not B.Tech/M.Tech/Diploma */
.dropdown-submenu:has(> .submenu-inner):not(:has(.dropdown-submenu:hover)):hover > .dropdown-submenu-trigger .dropdown-submenu-chevron {
  color: #fff;
}
.dropdown-submenu:has(> .submenu-inner):not(:has(.dropdown-submenu:hover)):hover > .dropdown-submenu-trigger .dropdown-submenu-chevron i {
  transform: rotate(180deg);
}
/* B.Tech/M.Tech/Diploma: chevron DOWN by default (opposite to Engineering) */
.submenu-inner .dropdown-submenu > .dropdown-submenu-trigger .dropdown-submenu-chevron i {
  transform: none;
}
/* Nested: chevron up only when that row is hovered */
.submenu-inner .dropdown-submenu:hover > .dropdown-submenu-trigger .dropdown-submenu-chevron {
  color: #fff;
}
.submenu-inner .dropdown-submenu:hover > .dropdown-submenu-trigger .dropdown-submenu-chevron i {
  transform: rotate(180deg);
}
/* Nested open by click */
.dropdown-submenu.submenu-open > .dropdown-submenu-trigger .dropdown-submenu-chevron {
  color: #fff;
}
.dropdown-submenu.submenu-open > .dropdown-submenu-trigger .dropdown-submenu-chevron i {
  transform: rotate(180deg);
}

/* ========== Home section snap scroll ========== */
html.home-snap-scroll {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scroll-padding-top: var(--section-header-height);
}

body.home-snap-scroll {
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--section-header-height);
}

.home-sections {
  padding-top: var(--section-header-height);
}

.home-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: calc(100vh - var(--section-header-height));
  min-height: calc(100dvh - var(--section-header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem !important;
  box-sizing: border-box;
}

.home-section-inner {
  width: 100%;
  max-width: 100%;
}

/* Section 1 only: full viewport under transparent header */
.home-section:first-child {
  margin-top: calc(-1 * var(--section-header-height));
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  padding: 0 !important;
  display: block;
}

/* Footer wrapper (home page) */
.home-snap-footer {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  min-height: auto;
}

/* Footer: social bar is first inside <footer>, force it to stay at top */
footer.footer-social-at-top {
  display: block !important;
}
footer.footer-social-at-top > .container-fluid.desktop-hide,
footer.footer-social-at-top > .container-fluid.mobile-hide {
  order: 0 !important;
  flex: none !important;
}
footer.footer-social-at-top > .container {
  order: 1 !important;
}

/* Section-11 (eminent visitors): content jettli height, pachhi footer show thay */
.home-section.home-section-content-height {
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  align-items: flex-start;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Section-11 compact: extra space remove, content jettli j jagah */
#section-11.home-section-content-height {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
#section-11 .row {
  padding-top: 0 !important;
}
#section-11 .text-base-color.mb-40px {
  margin-bottom: 1rem !important;
}
#section-11 .eminent-swiper {
  min-height: auto;
}

@media (max-width: 991px) {
  :root {
    --section-header-height: 66px;
  }
  .home-section {
    padding: 1.5rem 1rem !important;
  }
}

@media (max-width: 767px) {
  html.home-snap-scroll,
  body.home-snap-scroll {
    scroll-snap-type: none;
    scroll-padding-top: 0;
  }
  :root {
    --section-header-height: 58px;
  }
  .home-section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    min-height: auto;
    padding: 2rem 1rem !important;
  }
  .home-section:first-child {
    margin-top: calc(-1 * var(--section-header-height));
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    padding: 0 !important;
  }
  .home-snap-footer {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    min-height: auto;
  }
}

@media (max-width: 375px) {
  .home-section {
    padding: 1.5rem 0.75rem !important;
  }
}

/* ========== Section 6: background image with cover + black overlay ========== */
#section-6.section-6-bg {
  position: relative;
  background-color: #c0c0c0;
  /* background-image: url('/img/building.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}
/* #section-6.section-6-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
}
#section-6.section-6-bg .home-section-inner {
  position: relative;
  z-index: 1;
} */

/* ========== Hero slider: square pagination ========== */
.hero-square-pagination-dots {
  bottom: 70px !important;
  left: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}

.hero-square-pagination-dots .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 8px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  border: 1px solid #fff !important;
  opacity: 1 !important;
  transition: background 0.3s, border-color 0.3s, transform 0.3s !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}

.hero-square-pagination-dots .swiper-pagination-bullet:hover {
  opacity: 0.9;
}

.hero-square-pagination-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--base-color) !important;
  border-color: var(--base-color) !important;
  transform: scale(1.1);
}

/* ========== Course finder: tabs + Find A Course (section-2) ========== */
.course-finder-box {
  background: rgba(0, 0, 0, 0.4);
}

.course-finder-tabs {
  display: flex;
  width: 100%;
  gap: 0;
  list-style: none;
  padding-left: 0;
}

.course-finder-tabs .nav-item {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.course-finder-tabs .nav-link {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 0;
  border-bottom: 3px solid var(--base-color);
  font-size: 16px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  margin: 0;
}

.course-finder-tabs .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.course-finder-tabs .nav-link.active {
  background: var(--base-color);
  color: #fff !important;
  border-bottom-color: var(--base-color);
}

.course-finder-box .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.course-finder-box .form-control:focus {
  background: transparent;
  color: #fff;
  border-color: var(--base-color);
  box-shadow: 0 0 0 0.2rem rgba(174, 30, 22, 0.35);
}

.course-finder-box .btn-base-color {
  background-color: var(--base-color);
  color: #fff;
  border-color: var(--base-color);
}

.course-finder-box .btn-base-color:hover {
  filter: brightness(1.1);
  color: #fff;
  border-color: var(--base-color);
}

@media (max-width: 575px) {
  .course-finder-tabs .nav-link {
    font-size: 14px;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}

/* From https://css.glass */
.tab-content-base-blur {
  /* background: rgba(218, 37, 28, 0.2); */
  border-radius: 16px;
  /* box-shadow: 0 4px 30px rgba(218, 37, 28, 0.2); */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(218, 37, 28, 0.5);
}

/* Study at Gardi: only active tab has base-color background */
.tab-bar-study-at-gardi .nav-link.active {
  background-color: var(--base-color) !important;
  color: #fff !important;
  border-color: transparent;
}
/* When tab is active, top border (tab-border) is base-color */
.tab-bar-study-at-gardi .nav-link.active .tab-border {
  background: var(--base-color) !important;
}

/* Recognitions & Accreditations: active tab = base color underline + base color arrow below */
.recognition-tabs-wrapper .recognition-tabs .nav-item .nav-link {
  position: relative;
  border-bottom: 2px solid transparent !important;
  padding-bottom: 1rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.recognition-tabs-wrapper .recognition-tabs .nav-item .nav-link:hover {
  border-bottom-color: rgba(174, 30, 22, 0.4) !important;
  color: var(--dark-gray);
}
.recognition-tabs-wrapper .recognition-tabs .nav-item .nav-link.active {
  background-color: transparent !important;
  color: var(--dark-gray) !important;
  border-bottom: 2px solid var(--base-color) !important;
}
/* Simple base-color downward arrow below active tab */
.recognition-tabs-wrapper .recognition-tabs .nav-item .nav-link.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--base-color);
  width: 0;
  height: 0;
  z-index: 1;
}

/* ========== Section 4: background image slider ========== */

.section-4-mobile {
  min-height: unset !important;
}
#section-4 .section-4-bg-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#section-4 .section-4-bg-swiper .swiper-slide {
  height: 100%;
}

#section-4 .section-4-bg-swiper .cover-background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#section-4 .section-4-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

/* Section 5 (mobile Why Gardi) – background image slider */
#section-5 .section-5-bg-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#section-5 .section-5-bg-swiper .swiper-slide {
  height: 100%;
}
#section-5 .section-5-bg-swiper .cover-background,
#section-5 .section-5-bg-swiper .section-5-bg-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-5-bg-slide {
  background-image: var(--section-5-bg-image);
}
#section-5 .section-5-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

/* Section 4: no vertical padding so sidebar can be true full height */
#section-4.home-section {
  align-items: stretch;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
#section-4 .home-section-inner.section-4-inner {
  min-height: 100%;
  align-items: stretch;
}
#section-4 .section-4-main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
/* First row (Why Gardi + stats) grows to fill height; content vertically centered */
#section-4 .section-4-main > .row:first-of-type {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
}
/* Yellow row stays at bottom, does not shrink */
#section-4 .section-4-main > .row.bg-yellow {
  flex-shrink: 0;
}

/* Section 4: yellow strip inside red container – 4 images with dividers */
.section-4-yellow-strip {
  min-height: 72px;
}
.section-4-yellow-strip .section-4-yellow-strip-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
}
.section-4-yellow-strip .section-4-yellow-strip-col-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.section-4-yellow-strip-img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .section-4-yellow-strip {
    min-height: 80px;
  }
  .section-4-yellow-strip .section-4-yellow-strip-col {
    padding: 0.875rem 0.75rem;
  }
  .section-4-yellow-strip-img {
    max-height: 56px;
  }
}
@media (max-width: 767px) {
  .section-4-yellow-strip .section-4-yellow-strip-col:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.22);
  }
  .section-4-yellow-strip .section-4-yellow-strip-col:nth-child(4) {
    border-top: 1px solid rgba(0, 0, 0, 0.22);
  }
}

@media (min-width: 992px) {
  #section-4 .section-4-main {
    margin-right: 33.333333%;
    padding-right: 1.5rem;
  }
}

/* Section 4: right sidebar – absolute, full height from section top to bottom, black 50% opacity */
.section-4-sidebar {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 33.333333%;
  max-width: 420px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.section-4-sidebar-inner {
  padding: 0 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min-content;
}

.section-4-sidebar-item {
  padding-left: 0;
  padding-right: 0;
}

.section-4-sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Laptop / desktop at 125% zoom: sidebar images 25% width only */
@media (max-width: 1536px) {
  .section-4-sidebar-icon img {
    width: 75%;
    max-width: 75%;
  }
}

.section-4-sidebar-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.section-4-sidebar-text {
  font-size: 1rem;
  line-height: 1.35;
}

.section-4-sidebar-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  #section-4 .home-section-inner.section-4-inner {
    flex-direction: column;
  }
  #section-4 .section-4-main {
    margin-right: 0;
    padding-right: 1rem;
  }
  .section-4-sidebar {
    position: static;
    width: 100%;
    max-width: none;
    min-height: auto;
    margin-top: 1rem;
  }
  .section-4-sidebar-inner {
    min-height: auto;
  }
}

/* ========== Mega-menu list (Pages dropdown): 3 columns, separators ========== */
.mega-menu-list-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  padding: 1.25rem 0.5rem;
  min-width: 0;
}

.mega-menu-list-col {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 140px;
}

.mega-menu-list-col li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.mega-menu-list-col li:last-child {
  border-bottom: none;
}

.mega-menu-list-col a {
  display: block;
  padding: 0.5rem 0;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.mega-menu-list-col a:hover {
  color: var(--base-color, #ae1e16);
}

/* Header dark/hover: ensure links readable in dropdown */
/* [data-header-hover=dark] .mega-menu-list-col a,
.header-dark .mega-menu-list-col a {
  color: rgba(255, 255, 255, 0.9);
}

[data-header-hover=dark] .mega-menu-list-col a:hover,
.header-dark .mega-menu-list-col a:hover {
  color: #fff;
}

[data-header-hover=dark] .mega-menu-list-col li,
.header-dark .mega-menu-list-col li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
} */

/* ========== Pages dropdown: full-width bottom borders (like reference image) ========== */
.navbar .navbar-nav .submenu-content .mega-menu {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1190px;
}

.navbar .navbar-nav .submenu-content .mega-menu ul {
  flex: 1;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

.navbar .navbar-nav .submenu-content .mega-menu ul li {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.dark-section{
  padding-right: 0px !important;
}

.gallery-section{
  padding-top: 0 !important;
}

/* Section 5: two-row gallery – both rows full height in container */
#section-5 .container-fluid.two-row-gallery {
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  flex-direction: column;
  padding: 0;
}
#section-5 .container-fluid.two-row-gallery .row {
  flex: 1 1 50%;
  min-height: 0;
  display: flex;
  margin: 0;
  overflow: visible;
}
#section-5 .container-fluid.two-row-gallery .row .gallery-col {
  min-height: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  transform-origin: center center;
  z-index: 1;
}
#section-5 .container-fluid.two-row-gallery .row .gallery-col:hover {
  transform: scale(1.08);
  z-index: 10;
}
#section-5 .container-fluid.two-row-gallery .gallery-col-bg {
  position: absolute;
  inset: 0;
}
#section-5 .container-fluid.two-row-gallery .gallery-col-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(218, 39, 28, 0.7);
  opacity: 0;
  transition: opacity 0.35s ease;
}
#section-5 .container-fluid.two-row-gallery .gallery-col:hover .gallery-col-overlay {
  opacity: 1;
}
#section-5 .container-fluid.two-row-gallery .gallery-col-title {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* Section 5 mobile gallery swiper: same height, cover + center */
.gallery-mobile-swiper--fixed-height .swiper-slide {
  height: 520px;
  overflow: hidden;
}
.gallery-mobile-swiper__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 480px) {
  .gallery-mobile-swiper--fixed-height .swiper-slide {
    height: 220px;
  }
}
@media (min-width: 768px) {
  .gallery-mobile-swiper--fixed-height .swiper-slide {
    height: 200px;
  }
}
@media (min-width: 992px) {
  .gallery-mobile-swiper--fixed-height .swiper-slide {
    height: 220px;
  }
}

/* Laptop / desktop 125% zoom: no top padding on gallery section */
@media (max-width: 1400px) {
  #section-5 {
    padding-top: 0 !important;
  }
}

/* Section 7: slider nav at bottom of section */
#section-7 {
  position: relative;
}
#section-7 .section-7-swiper-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 3rem;
  justify-content: center;
}

/* Section 7 desktop only: nav buttons horizontally centered (mobile unchanged) */
@media (min-width: 769px) {
  #section-7 .section-7-swiper-nav {
    position: absolute !important;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding-bottom: 3rem;
  }
}

/* Section 7 mobile: SVG and slider content top-aligned, not vertically centered */
@media (max-width: 768px) {
  #section-7 .container-fluid {
    align-items: flex-start !important;
  }
  #section-7 .swiper-wrapper {
    align-items: flex-start;
  }
  #section-7 .swiper-slide {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  #section-7 .svg-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 250%;
  }
  #section-7 .svg-wrapper svg {
    max-width: 250%;
    height: auto;
  }
}

/* Right-side vertical title: mirror of left (rotate and writing-mode flipped) */
.vertical-title-center.vertical-title-mirror .title {
  -webkit-transform: rotate(-180deg);
  transform: rotate(0deg);
  writing-mode: vertical-rl;
}

/* Testimonials: vertical divider between two columns */
.testimonials-col-divider {
  flex-shrink: 0;
}
.testimonials-divider-line {
  width: 1px;
  min-height: 200px;
  height: 80%;
  background-color: var(--base-color);
}

.news-home{
  padding: 0rem 1.5rem !important;
}



/* news section */

 /* All styles target .extra-newsroom-root (div only), no section – avoids conflict on other pages */
 .extra-newsroom-root {
  --white: #afafaf;
  --red: #e31b23;
  --bodyColor: #292a2b;
  --borderFormEls: hsl(0, 0%, 10%);
  --bgFormEls: hsl(0, 0%, 14%);
  --bgFormElsFocus: hsl(0, 7%, 20%);
  /* background: #28282b; */
  overflow: hidden;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.extra-newsroom-root .container-fluid {
  width: 100%;
}

.extra-newsroom-root .row {
  align-items: center;
  min-height: 80vh;
  width: 100%;
}

/* Vertically center content in each column */
.extra-newsroom-root .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .extra-newsroom-root .row {
      min-height: auto;
  }
}

.extra-newsroom-root .year-wrapper {
  width: 100%;
  min-height: 50vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.extra-newsroom-root .year-wrapper span,
.extra-newsroom-root .year-wrapper .item-year {
  font-weight: 600;
  font-size: clamp(13rem, 15.626vw, 30rem);
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  width: max-content !important;
}

.extra-newsroom-root .year-wrapper .item-year.active {
  color: #fff;
  transition: .5s all;
}

.extra-newsroom-root .year-slider {
  width: min-content;
}

.extra-newsroom-root .item-year.slick-current {
  font-weight: 700;
  color: #fff;
  transition: 0.3s all;
  width: auto;
}

.extra-newsroom-root .news-slider {
  width: 100%;
  /* max-width: 540px; */
  margin: 0 auto;
}

@media (min-width: 1023px) {
  .extra-newsroom-root .news-slider.slick-vertical .slick-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      /* width: max-content !important; */
  }
}

.extra-newsroom-root .news-slider.slick-vertical .slick-slide {
  /* height: 38.281vw; */
}

@media (max-width: 1440px) {
  .extra-newsroom-root .view-all-news {
      right: 32vw !important;
  }
}

@media (max-width: 1600px) {
  .extra-newsroom-root .view-all-news {
      right: 33vw !important;
  }
}

@media (max-width: 1680px) {
  .extra-newsroom-root .view-all-news {
      right: 32.5vw !important;
  }
}

.extra-newsroom-root .news-list {
  list-style: none;
}

/* .extra-newsroom-root .news-wrapper .news-list a {
  font-size: clamp(1.4rem, 1.25vw, 2.4rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1;
} */

.extra-newsroom-root .news-wrapper .news-list li {
  padding-top: 4.2vh;
  padding-bottom: 4.2vh;
}

.extra-newsroom-root .news-wrapper .news-list li:not(:first-child) {
  border-top: 1px gray solid;
}

.extra-newsroom-root .news-wrapper .news-list li .publish-date-city {
  margin-top: 4.1vh;
  color: rgba(255, 255, 255, 0.1);
  font-size: clamp(1.2rem, 0.833vw, 1.6rem);
}

.extra-newsroom-root .news-wrapper .news-list li .publish-date-city span {
  display: inline-block;
  margin-right: 4.1vh;
  color: rgb(229, 39, 38);
}

.extra-newsroom-root .view-all-news {
  position: absolute;
  bottom: 5.2vh;
  right: 31.5vw !important;
}

.extra-newsroom-root .know-more {
  color: #fff;
  letter-spacing: 4px;
  font-size: clamp(1.2rem, 0.833vw, 1.6rem);
  font-weight: 400;
}

.extra-newsroom-root a {
  color: inherit;
  text-decoration: none;
}

.extra-newsroom-root .year-prefix {
  margin-right: 1%;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

.extra-newsroom-root .year-slider-wrap {
  position: relative;
  width: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.extra-newsroom-root .year-slider-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: stretch !important;
  background: var(--base-color);
  z-index: 0;
  pointer-events: none;
}

.extra-newsroom-root .year-slider-wrap .year-slider {
  position: relative;
  z-index: 1;
}

.extra-newsroom-root .year-slider .slick-list {
  width: 100% !important;
  margin: 0 auto;
  height: calc(3 * var(--year-box-h, 1em)) !important;
}

.extra-newsroom-root .year-slider .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: var(--year-box-h, 1em) !important;
  box-sizing: border-box;
}

.extra-newsroom-root .year-slider .slick-slide>div {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.extra-newsroom-root .year-slider .slick-slide .item-year {
  width: 100%;
  max-width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
  box-sizing: border-box;
}

/* About page: back = image slider, front = section background (shape) + content */
.about-hero-bg {
  height: 650px;
  min-height: 320px;
}
.about-hero-bg .about-hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.about-hero-bg .about-hero-swiper .swiper-slide {
  height: 100%;
}
.about-hero-slide-bg {
  background-size: cover !important;
  /* top aligned, shifted 20px upward */
  background-position: center -80px !important;
  background-repeat: no-repeat !important;
}
.about-hero-dark-overlay {
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}
.about-hero-overlay {
  z-index: 2;
}
/* .about-hero-content {
  max-width: 640px;
} */
/* .about-hero-line {
  width: 4px;
  height: 60px;
  border-radius: 2px;
} */
/* .about-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
} */
/* .about-hero-subtitle {
  opacity: 0.95;
  line-height: 1.35;
} */
.about-hero-pause:hover {
  opacity: 1 !important;
}
@media (max-width: 991px) {
  .about-hero-bg {
    height: 500px;
    min-height: 280px;
  }
  /* .about-hero-line {
    height: 40px;
  } */
}
@media (max-width: 575px) {
  .about-hero-bg {
    height: 200px;
    min-height: 200px;
  }
  .hero-title{
      border-left: 5px solid var(--base-color) !important;
      margin-left: 10px;
    }
}


.hero-title{
  border-left: 10px solid var(--base-color);
}

.title-line-left{
  border-left: 10px solid #f2f2f2;
  /* background-color: #2323234b; */
}

.shadow-text{
  text-shadow: 0 0 10px rgba(35, 35, 35, 0.5);
}

/* ========== Extra-1: Locations / Campus (minimal text layout) ========== */
.locations-campus-section {
  font-family: "Times New Roman", Times, serif;
}

.locations-campus-inner {
  max-width: 720px;
}

/* Header: two lines of GARDIGARD, black, serif */
.locations-campus-header {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.locations-campus-header-line {
  white-space: nowrap;
  overflow: hidden;
}

/* Section headings */
.locations-campus-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.locations-campus-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 0.5rem;
}

.locations-campus-cta {
  color: #0d6efd;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.2s;
}

.locations-campus-cta:hover {
  color: #0a58ca;
}


.mt-15{
  margin-top: 15%;
}
.mt-16{
  margin-top: 16%;
}
.mt-17{
  margin-top: 17%;
}
.mt-18{
  margin-top: 18%;
}
.mt-19{
  margin-top: 19%;
}
.mt-20{
  margin-top: 20%;
}




/* about-section */

/* About page: header not sticky (scrolls away), tab bar sticks to top */
body.page-about header .navbar {
  position: relative !important;
}
/* When tab becomes unsticky (reverse scroll), only header sticky – tab not sticky */
body.page-about.about-header-sticky header .navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
body.page-about.about-header-sticky .about-tab-nav-sticky {
  position: relative !important;
}
.about-tab-nav-sticky {
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Engineering / Admission: freeze left tab nav when tab content is long */
.admission-tab-nav-sticky {
  align-self: flex-start;
  position: sticky;
  top: 100px;
  z-index: 10;
}
@media (min-width: 992px) {
  .admission-tab-nav-sticky {
    top: 90px;
  }
}
@media (max-width: 991px) {
  .admission-tab-nav-sticky {
    position: relative;
    top: auto;
  }
}

/* Laptop view: reduce vertical padding (left nav + fee table) so content doesn’t look too tall */
@media (min-width: 992px) and (max-width: 1600px) {
  .admission-tab-nav-sticky.tab-style-05 .nav-tabs .nav-item .nav-link {
    padding: 10px 16px;
    margin-bottom: 6px;
  }
  .fee-structure-wrapper .table-fee-structure thead th {
    padding: 10px 14px;
  }
  .fee-structure-wrapper .table-fee-structure tbody td {
    padding: 10px 14px;
  }
  .fee-structure-wrapper .table-fee-structure tbody td p,
  .fee-structure-wrapper .table-fee-structure thead th span {
    line-height: 1.4;
  }
}

.left-section {
  width: auto;
}

.campus-section.reverse {
  flex-direction: row-reverse;
}

.right-section {
  /* width: max-content;
  max-width: 40%; */
  position: relative;
  transform: translateX(-60px);
  /* margin-left: -5%; */
  z-index: 6;
  margin-top: 15%;
}

.right-section-right {
  /* width: max-content;
  max-width: 40%; */
  position: relative;
  transform: translateX(50px);
  margin-left: -5%;
  z-index: 6;
  /* margin-top: 15%; */
}


.image-wrapper {
  position: relative;
  /* width: 100%; */

}

.image-wrapper img {
  /* width: 100%; */
  /* height: 500px; */
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  outline-style: solid;
  outline-width: 1px;
  outline-offset: -1.75rem;
  outline-color: #fff;
}

.red-box {
  position: absolute;
  width: 60%;
  height: 100%;
  background: #da251c;
  bottom: -40px;
  left: -40px;
  z-index: 1;
}

.red-box-right {
  position: absolute;
  width: 60%;
  height: 120%;
  background: #da251c;
  bottom: -40px;
  left: -30px;
  z-index: 1;
}

.gray-box-right {
  position: absolute;
  width: 80%;
  height: 100%;
  background: #e5e5e5;
  right: -50px;
  top: -80px;
  z-index: 1;
}

.right-section {
  flex: 1;
}

.right-section-right {
  flex: 1;
}

.content-card {
  /* width: 45%; */
  background: #fff;
  padding: 35px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
  position: relative;
  top: 40px;
  z-index: 2;
}

/* */

.content-card::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 50%;
  height: 30px;
  background: #e6e6e6;
  z-index: 1;
}

.content-card-right {
  /* width: 45%; */
  background: #fff;
  padding: 35px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
  position: relative;
  top: -60px;
  z-index: 2;
}

/* */

.content-card-right::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 50%;
  height: 30px;
  background: #e5e5e5;
}

.content-card-right::after {

  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 30px;
  height: 60%;
  background: #e5e5e5;
}

.campus-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.right-section h3 {
  font-size: 32px;
  margin: 0;
}

/* .right-section p {
  font-size: clamp(1rem, 0.9135rem + 0.3846vw, 1.1875rem);
  line-height: 1.6;
  
} */

.explore-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #981e32;
  color: #981e32;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.explore-btn:hover {
  background: #981e32;
  color: #fff;
}

.campus-wrapper {
  display: flex;
  /* gap: 80px; */
}
.pattern-box {
position: absolute;
/* top: 0; */
left: 0;
width: 450px;   /* adjust size */
height: 200px;  /* adjust height */
background-image: repeating-linear-gradient(135deg, #da251c, #da251c 2px, transparent 2px, transparent 10px);
z-index: 0;
}


.right-section-source{
  flex: unset !important;
}


  .text-outline {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--base-color);
    -webkit-text-stroke-width: 2px;
}

/* ========== Students Speak – spotlight testimonial slider ========== */
.testimonials-spotlight .testimonials-spotlight-card {
  border-radius: 8px;
  border-width: 4px !important;
  border-color: var(--base-color) !important;
}
.testimonials-spotlight-quote {
  display: block;
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 700;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}
.testimonials-spotlight-headline {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
}
.testimonials-spotlight-headline .text-base-color {
  font-size: 1.75rem;
}
.testimonials-spotlight-body {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a;
}
.testimonials-spotlight-photo .cover-background {
  background-size: cover;
  background-position: center;
}
.testimonials-spotlight-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}
.testimonials-spotlight-name {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.testimonials-spotlight-name .border-bottom {
  padding-bottom: 2px;
}
@media (max-width: 767.98px) {
  .testimonials-spotlight-quote { font-size: 3rem; }
  .testimonials-spotlight-headline { font-size: 1.25rem; }
  .testimonials-spotlight-headline .text-base-color { font-size: 1.4rem; }
  .testimonials-spotlight-name { font-size: 1.25rem; }
}

/* Student Speak section: active tab link text color */
#student-speak-tabs a.active {
  color: var(--dark-black) !important;
}

.box{
  position: relative;
  /* padding: 60px 0; */
  text-align: center;
  /* background: #e7a61f; */
}

/* Bottom line */
.bottom-line{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--base-color);
}

/* 45° diagonal */
.diagonal-line{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 150%;
  background: var(--base-color);
  transform: rotate(45deg);
  transform-origin: bottom right;
}


.outline-img{
  outline-style: solid;
  outline-width: 1px;
  outline-offset: -1.75rem;
  outline-color: #fff;
}



.gv-column {
  position: relative;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  box-sizing: border-box;
}

.gv-decorator--style-block-gray-darker {
  position: absolute;
  background-color: #c0c0c0;
}

.custom-image {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  max-width: 100%;
}

/* Full Vertical Line */
.design-line{
  position: absolute;
  right: 0px;  
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--base-color);
}

/* Small Horizontal Line (thodu upar) */
.design-line::after{
  content: "";
  position: absolute;
  top: 50%;      /* screenshot ma jevu */
  left: -60px;   /* horizontal length */
  width: 60px;
  height: 1px;
  background: var(--base-color);
}


.principal-box{
  position: relative;
  display: inline-block;
}

.principal-box img{
  display: block;
  width: 100%;
}

/* Text Overlay */
.principal-text{
  position: absolute;
  bottom: 10%;      /* niche position */
  left: 10%;   
  z-index: 2;
  border-left: 5px solid var(--base-color);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  /* glass-effect added */
  backdrop-filter: blur(1px);
  width: stretch;
  max-width: 80%;
}

.principal-text span{
  display: block;
}

/* Nested submenu (B.Tech / M.Tech / Diploma) – full smooth open on hover */
.submenu-inner-sub {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  list-style: none;
  visibility: hidden;
  transform-origin: top;
  transition: max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              margin 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.55s;
}
.submenu-inner-sub li {
  margin: 0;
  padding: 0;
}
.submenu-inner-sub .submenu-inner-link {
  padding: 6px 0 6px 12px;
  font-size: 14px;
}
/* Open: equal top and bottom spacing (match top, add bottom) */
.dropdown-submenu:hover > .submenu-inner-sub {
  max-height: 180px;
  opacity: 1;
  margin-top: 6px;
  margin-bottom: 10px;
  padding-top: 2px;
  padding-bottom: 12px;
  visibility: visible;
  overflow: visible;
  transition: max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              margin 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}


.principal-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  /* padding: 80px 20px; */
}
.triangle-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 30% 100%);
  z-index: 0;
}
.triangle-crimson-top-left {
  position: absolute;
  top: 0;
  left: -20%;
  width: 40%;
  height: 50%;
  background: var(--base-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
  z-index: 0;
}
.line-section {
  padding: 80px 20px;
  background-color: #ffffff;

  background-image: repeating-linear-gradient(
      135deg,
      #f2f2f2,
      #f2f2f2 2px,
      transparent 2px,
      transparent 10px
  );

  background-position: 0 -4px;
}

.about-card {
  background: #f2f2f2;
  padding: 2.25rem 1.75rem 1.125rem;
  margin-bottom: 2.25rem;
}

.about-dark-card {
  background: var(--dark-black);
  padding: 1.125rem 1.125rem;
}

/* Top Border */
.card--border-top {
  border-top: 2px solid var(--base-color);
}
/* Top Border */
.card-border-top-bold {
  border-top: 5px solid var(--base-color);
  /* border-left: 1px solid var(--dark-black); */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/* Notch */
.card--notch {
  --notch: 40px;

  clip-path: polygon(
      var(--notch) 0,
      100% 0,
      100% 100%,
      0 100%,
      0 var(--notch)
  );
}
/* Notch */
.card--notch--bottom {
  --notch: 40px;

  clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - var(--notch)),
      calc(100% - var(--notch)) 100%,
      0 100%
  );
}

/* ========== Engineering – Fee Structure table (schedule-style: light grey header, white body, grid borders) ========== */
.fee-structure-wrapper {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.fee-structure-wrapper .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.fee-structure-wrapper .table-fee-structure,
.fee-structure-wrapper .table.table-fee-structure {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
  table-layout: fixed;
}
.fee-structure-wrapper .table-fee-structure thead {
  display: table-header-group !important;
  visibility: visible !important;
}
.fee-structure-wrapper .table-fee-structure thead tr {
  display: table-row !important;
}
.fee-structure-wrapper .table-fee-structure thead th {
  display: table-cell !important;
  background-color: #f5f5f5 !important;
  color: #232323 !important;
  padding: 18px 20px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #e0e0e0 !important;
}
.fee-structure-wrapper .table-fee-structure tbody td {
  background-color: #fff !important;
  color: #232323;
  padding: 18px 20px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #e0e0e0 !important;
}
.fee-structure-wrapper .table-fee-structure tbody tr:hover td {
  background-color: #fafafa !important;
}
@media (max-width: 767px) {
  .fee-structure-wrapper .table-responsive {
    overflow-x: visible;
    -webkit-overflow-scrolling: auto;
  }
  .fee-structure-wrapper .table-fee-structure {
    table-layout: auto;
    display: block;
  }
  .fee-structure-wrapper .table-fee-structure thead {
    display: none !important;
  }
  .fee-structure-wrapper .table-fee-structure tbody {
    display: block;
  }
  .fee-structure-wrapper .table-fee-structure tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }
  .fee-structure-wrapper .table-fee-structure tbody tr:hover td {
    background-color: #fff !important;
  }
  .fee-structure-wrapper .table-fee-structure tbody td {
    display: block;
    padding: 10px 16px 10px 16px !important;
    text-align: left !important;
    border: none !important;
    border-bottom: 1px solid #eee !important;
  }
  .fee-structure-wrapper .table-fee-structure tbody td:last-child {
    border-bottom: none !important;
  }
  .fee-structure-wrapper .table-fee-structure tbody td::before {
    font-weight: 600;
    color: #232323;
    display: inline-block;
    min-width: 120px;
    margin-right: 8px;
  }
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(1)::before { content: "Subject Code"; }
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(2)::before { content: "Subject Name"; }
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(3)::before { content: "Theory"; }
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(4)::before { content: "Tutorial"; }
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(5)::before { content: "Practical"; }
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(6)::before { content: "Credits"; }
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(7)::before { content: "Syllabus"; }
  /* Syllabus column: full width for button */
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(7) .btn {
    display: inline-block;
    margin-top: 4px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .fee-structure-wrapper .table-fee-structure thead th,
  .fee-structure-wrapper .table-fee-structure tbody td {
    padding: 12px 14px;
  }
  .fee-structure-wrapper .table-fee-structure th.subject-name-col,
  .fee-structure-wrapper .table-fee-structure td:nth-child(2) {
    min-width: 140px;
  }
}

/* 125% viewport / desktop: prevent mid-word wrap, smaller font so headers and Download fit */
@media (min-width: 992px) and (max-width: 1600px) {
  .fee-structure-wrapper .table-fee-structure thead th {
    font-size: 0.8125rem;
    white-space: nowrap;
    word-break: keep-all;
    padding: 10px;
  }
  .fee-structure-wrapper .table-fee-structure tbody td {
    font-size: 16px;
    word-break: keep-all;
    padding: 10px;
  }
  
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(3),
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(4),
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(5),
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(6) {
    white-space: nowrap;
  }
  .fee-structure-wrapper .table-fee-structure tbody td:nth-child(7) .btn {
    font-size: 0.8125rem;
    white-space: nowrap;
    padding-left: 12px;
    padding-right: 12px;
  }
  .fee-structure-wrapper .table-fee-structure tbody td p {
    font-size: inherit;
  }
}

.media-block {
  position: relative;
  padding: 1.5rem;
  margin-bottom: 2.25rem;
}

/* Background blocks */
.media-block__bg {
  position: absolute;
  z-index: 0;
}

.media-block__bg--gray {
  background: #e5e5e5;
  top: 50px;
  left: 0;
  bottom: 0;
  width: 300px;
}

.media-block__bg--crimson {
  background: var(--base-color);
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
}

/* Image */
.media-block__image {
  position: relative;
  z-index: 2;
  margin: 0;
}

.media-block__image img {
  width: 100%;
  display: block;
}

/* Notch */
.notch-medium {
  clip-path: polygon(
      100% 0,
      100% calc(100% - 70px),
      calc(100% - 70px) 100%,
      0 100%,
      0 0
  );
}
.custom-wrap {
  max-width: 1100px;
  margin: auto;
  line-height: 1.7;
}

/* 👇 Float entire media block */
.media-block {
  float: left;
  /* width: 380px;  */
  max-width: 100%;
  margin-right: 40px;
  margin-bottom: 20px;
  position: relative;
}

/* Image responsive */
.media-block img {
  width: 100%;
  display: block;
}

/* Clear Fix */
.custom-wrap::after {
  content: "";
  display: block;
  clear: both;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .media-block {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}


.depart-tabs{
  /* padding:40px 20px; */
  border-radius: 8px;
}

.table-wrapper{
  width:100%;
  overflow-x:auto;
  background:#fff;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.pickup-table{
  width:100%;
  border-collapse:collapse;
}

.pickup-table th,
.pickup-table td{
  border: 1px solid #e0e0e0 !important;
  padding:8px 10px;
  text-align:center;
  color: var(--dark-black);
}

.pickup-table th{
  background:#eaeaea;
  font-weight:600;
}

.table-title{
  background:#dcdcdc;
  padding:12px 0;
}

/* Zebra */
.pickup-table tbody tr:nth-child(even){
  background:#fafafa;
}

/* Responsive */
@media(max-width:768px){
  .pickup-table th,
  .pickup-table td{
      font-size:12px;
      padding:6px;
  }
  .table-title{
      font-size:15px;
  }
}


/* city-center */
.city-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
/* Outer Red Box */
.diagonal3 {
  background: var(--base-color);
  /* width: 432px;
  height: 432px; */
  padding: 2px;
  position: relative;
}

/* White Inner Box */
.inside {
  background: #fff;
  color: var(--base-color);
  width: 100%;
  height: 100%;
  padding: 20px;
  padding-bottom: 30px;
  position: relative;
  box-sizing: border-box;
}

/* 🔴 Red Diagonal (Bottom Right) */
.diagonal3::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 62px solid var(--base-color);
  border-left: 62px solid transparent;
  width: 0;
  z-index: 1;
}

/* ⚪ White Cut Diagonal */
.inside::before {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  border-bottom: 60px solid #fff;
  border-left: 60px solid transparent;
  width: 0;
  z-index: 2;
}

/* Outer Box */
.diagonal12 {
  background: var(--base-color);
  /* width: 420px;
  height: 420px; */
  padding: 2px;
  position: relative;
}

/* Inner White Box */
.inside12 {
  background: #ffffff;
  color: var(--base-color);
  width: 100%;
  height: 100%;
  padding: 20px;
  padding-bottom: 30px;
  box-sizing: border-box;
  position: relative;
}

/* 🔴 Red Diagonal (Top Left) */
.diagonal12::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 62px solid var(--base-color);
  border-right: 62px solid transparent;
  width: 0;
  height: 0;
  z-index: 1;
}

/* ⚪ White Cut */
.inside12::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  border-top: 60px solid #fff;
  border-right: 60px solid transparent;
  width: 0;
  height: 0;
  z-index: 2;
}

.left-border-box {
  border-left: 6px solid var(--base-color); /* red color */
  padding-left: 20px;
  background: #f5f5f5;
  max-width: 600px;
  font-size: 20px;
  line-height: 1.6;
}
.left-border-box-contact {
  border-left: 6px solid var(--base-color); /* red color */
  padding-left: 20px;
  background: #f5f5f5;
  max-width: 600px;
  font-size: 16px;
  line-height: 1.6;
}

.left-border {
  border-left: 4px solid var(--base-color); /* color tame change kari shako */
  padding-left: 15px; /* text ane border vachche space */
}

.recognition-statutory-col {
  display: flex;
}

.recognition-statutory-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recognition-statutory-card .recognition-readmore {
  transition: max-height 0.3s ease;
}

.recognition-statutory-card .recognition-readmore.expanded {
  overflow: visible;
}

.read-more-toggle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--base-color);
  cursor: pointer;
}

.recognition-statutory-card .fs-22.fw-600.text-capitalize.mt-20px.tex-center.text-dark-black {
  display: block;
  min-height: 60px;
}

.mfp-bg{
  background: rgba(35, 35, 35, 0.9);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(18.2px);
-webkit-backdrop-filter: blur(18.2px);
}

.text-outline-event {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--base-color);
  -webkit-text-stroke-width: 1px;
}



/* placement card */

.placement-card {
  position: relative;
  width: 400px;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  background: url('/img/placement-card-bg.webp') center/cover no-repeat;
  color: #fff;
}

/* Dark overlay */
.placement-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.placement-card__content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  height: 100%;
}

/* Top Amazon logo */
.placement-card__top {
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 20px;
}

.company-logo {
  width: 120px;
}

/* Info Section */
.placement-card__info {
  margin-top: 60px;
}
.placement-swiper{
  height: 70vh;
}
/* 
.student-name {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
} */

.student-name span {
  display: block;
  font-weight: 400;
  /* font-size: 36px; */
}

.placed-text {
  margin-top: 10px;
  opacity: 0.9;
}

.salary-box {
  margin-top: 40px;
}


.salary-box h2 {
  margin: 5px 0 0;
}

sup {
  top: -1em;
}
.salary-box h2 span {
  font-size: 16px;
  font-weight: 600;
}

/* Student Photo */
.placement-card__photo {
  position: absolute;
  bottom: -10%;
  right: -15%;
  width: 320px;
  z-index: 1;
}

.placement-card__photo img {
  width: 100%;
}

/* Placement cards slider */
.placement-slider-wrap {
  padding: 20px 0;
}
.placement-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.placement-swiper .placement-card {
  width: 100%;
  max-width: 400px;
  margin: 0 aut0o;
}
.placement-slider-nav {
  position: relative;
  z-index: 5;
}

.stats-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
  font-family: Arial, sans-serif;
}

.stat-box {
  flex: 1;
  min-width: 260px;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
}

/* Color Variations */
.light {
  background: transparent;
  border: 2px solid #e5e5e5;
}

.gray {
  background: #f1f1f1;
}

.dark {
  background: #232323;
  color: #fff;
}

.red {
  color: #ff0000;
}

.lpa {
  font-size: 18px;
  font-weight: 600;
  margin-left: 5px;
}

.package-section {
  display: flex;
  align-items: start;
  justify-content: start;
  /* padding: 40px 20px; */
}

.package-box {
  text-align: center;
  padding: 0 40px;
}

.divider {
  width: 1px;
  height: 150px;
  background: #e5e5e5;
}




/* achivement section css */
:root {
  --card-ease: cubic-bezier(0.77, 0, 0.175, 1);
  --card-duration: 0.4s;
  --card-delay-mid: 0.35s;
  --card-delay-right: 0.7s;
  --card-strip: 20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}

.news-card {
  position: relative;
  height: 60vh;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  background: #000;
  border-radius: 0;
  contain: layout style;
}

.news-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.news-card:hover img { transform: scale(1.05); }

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}

.card-inner-border {
  position: absolute;
  inset: 8px;
  border: 1.5px solid #fff;
  z-index: 10;
  pointer-events: none;
}

/* Border strips — shared */
.card-line {
  position: absolute;
  background: var(--base-color);
  z-index: 4;
}

.line-left {
  left: 0;
  top: 70%;
  transform: translateY(-50%);
  width: var(--card-strip);
  height: 18%;
  transition: height var(--card-duration) var(--card-ease) var(--card-delay-right),
              top var(--card-duration) var(--card-ease) var(--card-delay-right),
              transform var(--card-duration) var(--card-ease) var(--card-delay-right);
}

.line-top, .line-bottom {
  left: 0;
  height: var(--card-strip);
  width: 0;
  transition: width var(--card-duration) var(--card-ease) var(--card-delay-mid);
}
.line-top { top: 0; }
.line-bottom { bottom: 0; }

.line-right-top, .line-right-bottom {
  right: 0;
  width: var(--card-strip);
  height: 0;
  transition: height var(--card-duration) var(--card-ease) 0s;
}
.line-right-top { top: 0; }
.line-right-bottom { bottom: 0; }

.news-card:hover .line-left {
  height: 100%;
  top: 0;
  transform: translateY(0);
  transition: height var(--card-duration) var(--card-ease) 0s,
              top var(--card-duration) var(--card-ease) 0s,
              transform var(--card-duration) var(--card-ease) 0s;
}
.news-card:hover .line-top,
.news-card:hover .line-bottom {
  width: 100%;
  transition: width var(--card-duration) var(--card-ease) var(--card-delay-mid);
}
.news-card:hover .line-right-top,
.news-card:hover .line-right-bottom {
  height: 50%;
  transition: height var(--card-duration) var(--card-ease) var(--card-delay-right);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 38px;
  z-index: 5;
}

.card-arrow {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  z-index: 6;
  transition: background 0.3s ease, transform 0.3s ease;
}
.news-card:hover .card-arrow {
  background: var(--base-color);
  transform: translate(2px, -2px);
}

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .news-card { height: 320px; }
}




.gardi-gallery-section.gallery-section {
  overflow: visible !important;
}

.gardi-gallery-section .justified-gallery {
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.gardi-gallery-section .container-fluid,
.gardi-gallery-section .row,
.gardi-gallery-section .col {
  overflow: visible !important;
}

.gardi-gallery-section .justified-gallery .gallery-box {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.gardi-gallery-section .justified-gallery .gallery-box a {
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

.gardi-gallery-section .justified-gallery .gallery-box img {
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  width: 100%;
  height: 100%;
}

/* Override justified gallery library default spacing */
.gardi-gallery-section .justified-gallery>* {
  margin: 0 !important;
  padding: 0 !important;
}

.gardi-gallery-section .justified-gallery .jg-entry {
  margin: 0 !important;
  padding: 0 !important;
}

/* Hover: aakho img no div zoom thay, bija cards upar overlap (reference image jem) */
.gardi-gallery-section .image-gallery-style-06 .gallery-box {
  transition: transform 0.4s ease !important;
  transform-origin: center center;
  z-index: 1;
}

.gardi-gallery-section .image-gallery-style-06 .gallery-box:hover {
  transform: scale(1.08) !important;
  -webkit-transform: scale(1.08) !important;
  z-index: 10 !important;
}

.gardi-gallery-section .image-gallery-style-06 .gallery-box img {
  transition: opacity 0.4s ease !important;
}

.gardi-gallery-section .image-gallery-style-06 .gallery-box:hover img {
  opacity: 1 !important;
}

/* Hover par base-color overlay 50% – pseudo-element thi (reliable) */
.gardi-gallery-section .image-gallery-style-06 .gallery-box a {
  position: relative;
  display: block;
}

.gardi-gallery-section .image-gallery-style-06 .gallery-box a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  transition: background 0.4s ease;
  pointer-events: none;
}

.gardi-gallery-section .image-gallery-style-06 .gallery-box:hover a::before {
  background: rgba(218, 39, 28, 0.7) !important;
  /* base-color #da251c, opacity 50% */
}

.gardi-gallery-section .image-gallery-style-06 .gallery-box .gallery-hover {
  z-index: 2;
}

 /* Gallery: reduce layout overflow on laptops / zoom */
 @media (max-height: 820px) {
  .gardi-gallery-section {
      align-items: flex-start !important;
  }

  .gardi-gallery-section .container-fluid {
      padding-top: 10px;
      padding-bottom: 10px;
  }

  /* Gallery hover text sizing for laptop/zoom */
  .gardi-gallery-section .image-gallery-style-06 .gallery-box .gallery-hover {
      padding: 22px !important;
      /* override p-45px / p-35px */
  }

  .gardi-gallery-section .image-gallery-style-06 .gallery-box .gallery-hover .gallery-title {
      font-size: 0.95rem !important;
      /* smaller than fs-20 */
      line-height: 1.35 !important;
  }
}

@media (max-height: 700px) {
  .gardi-gallery-section .image-gallery-style-06 .gallery-box .gallery-hover {
      padding: 18px !important;
  }

  .gardi-gallery-section .image-gallery-style-06 .gallery-box .gallery-hover .gallery-title {
      font-size: 0.85rem !important;
  }
}


.course-accordian,.active-accordion{
  border-radius: 16px 16px 0 0 !important;
}
.courder-bottom-accordian{
  border-radius: 0 0 16px 16px !important;
}


@media (max-width: 768px) {
  .center-text {
    text-align: center !important;
  }
}



.card{
  width:300px;
  height:420px;
  /* background:linear-gradient(180deg,#2b2b2b,#1a1a1a); */
  /* background-color: #4b4b4b; */
  background-color: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  border-radius:12px;
  padding:30px 20px 0px 20px;
  text-align:center;
  position:relative;
  overflow:hidden;
  transition:0.4s ease;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.card h2{
  color:#fff;
  font-size:28px;
  font-weight:600;
  margin-bottom:40px;
}

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

.icon-wrapper svg{
  width:200px;
  height:auto;
  fill:#fff;
  opacity:0.9;
}

/* Optional subtle glow */
.card::before{
  content:"";
  position:absolute;
  bottom:-50px;
  left:-50px;
  width:200px;
  height:200px;
  /* background:radial-gradient(circle,rgba(255,255,255,0.05),transparent); */
  border-radius:50%;
}

.section-7-swiper-nav{
  position: relative !important;
}

@media (max-width: 768px) {
  .slider-navigation-style-04 {
    width: 40px !important;
    height: 40px !important;
  }
  .package-box{
    padding: 0 0px !important;
  }
  .divider {
    width: 1px;
    height: 75px;
    background: #e5e5e5;
  }
  .extra-newsroom-root .year-slider .slick-list{
    overflow: hidden;
  }
  .extra-newsroom-root .row > [class*="col-"]{
    overflow: hidden;
  }
  .min-h-550px{
    min-height: 350px !important;
  }
  .navbar .navbar-nav .nav-item .dropdown-toggle{
    position: relative !important;
  }
  .navbar .navbar-nav .dropdown.submenu{
    display: flex !important;
    justify-content: space-between !important;
    
  }
  path{
    stroke-width: 1 !important;
  } 
}

@media (max-width: 768px) {
  
  .scroll-wrapper {
    width: 200%;
    overflow: hidden;
}

.scroll-content {
  width: 150%;              /* IMPORTANT */
  animation: moveLR 6s ease-in-out infinite alternate;
}

.scroll-content img {
    width: 1500px; /* large width */
}

@keyframes moveLR {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-150%);
  }
}
}
.swiper-wrapper.line-art{
  align-items: center !important;
}


.leadership.home-section:first-child {
  margin-top: calc(-1 * var(--section-header-height));
  min-height: 105vh;
  min-height: 100dvh;
  height: 100vh;
  height: 107vh;
  padding: 0 !important;
  display: block;
}


.links-card a img {
  margin-bottom: -10% !important;
}


.red-line-section
 {
    padding: 80px 20px;
    background-color: #ffffff;
    background-image: repeating-linear-gradient(135deg, #ff000091, #f2f2f2 2px, transparent 2px, transparent 10px);
    background-position: 0 -4px;
}


.red-line-haff-section {
  position: relative;
  padding: 80px 20px;
  background-color: #ffffff;
  overflow: hidden;
}
.red-line-full-section {
  position: relative;
  padding: 80px 20px;
  background-color: #ffffff;
  overflow: hidden;
}

.seperator-line{
  opacity: 1 !important;
  border: 1px solid var(--base-color) !important;
  width: 50%;
}

.red-line-haff-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%; /* only 50% height */
  background-image: repeating-linear-gradient(
      135deg,
      #ff000091,
      #f2f2f2 2px,
      transparent 2px,
      transparent 10px
  );
  background-position: 0 -4px;
}

.red-line-full-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* only 50% height */
  background-image: repeating-linear-gradient(
      135deg,
      #ff000091,
      #f2f2f2 2px,
      transparent 2px,
      transparent 10px
  );
  background-position: 0 -4px;
}
.study-wrapper{
  position: relative;
}
.reverse-layout{
  position: relative;
}

.reverse-layout .content-box{
  position:absolute;
  left:-120px;     /* image ni bahar lai jay */
  bottom:-80px;
  margin:0;
  margin-top: -10px;
}

.reverse-layout .decorator{
  right:auto;
  left:-30px;
}
/* IMAGE */

.image-container{
  position: relative;
  max-width:520px;   /* image size control */
}

.decorator{
  position:absolute;
  top:-30px;
  right:-30px;
  width:300px;
  height:175px;
  background:var(--base-color);
  z-index:-1;
}

.image-frame{
  margin:0;
}

.image-frame img{
  width:100%;
  height:auto;
  display:block;

  outline:1px solid #fff;
  outline-offset:-1.75rem;
}

/* CONTENT */

.content-box{
  background:#fff;
  padding:2rem;
  position:relative;
  max-width:70%;
  height: max-content;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.content-box h3{
  font-size:24px;
  font-weight:600;
  margin-bottom:10px;
}

.content-box p{
  margin-bottom:10px;
  line-height:1.6;
}

/* OVERLAP EFFECT */

@media(min-width:768px){

.content-box{
  margin-top:-110px;
  margin-left:60px;
}

}

.services-box-style-06 .image {
  height: 260px;     
  overflow: hidden;
}

.services-box-style-06 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.min-h-130px{
  min-height: 130px !important;
}

.subcourse-image-section{
    position: relative;
}

.subcourse-decorator-lines{
    position:absolute;
    top:-40px;
    right:-40px;
    height:calc(30% + 50px);
    width:50%;
    background-image: repeating-linear-gradient(
        135deg,
        var(--base-color),
        var(--base-color) 2px,
        transparent 2px,
        transparent 10px
    );
}

.subcourse-decorator-block{
    position:absolute;
    bottom:-40px;
    right:-40px;
    height:calc(70% + 40px);
    width:50%;
    background-color:var(--base-color);
}

.subcourse-image-frame img{
    width:100%;
    display:block;
    outline:1px solid #fff;
    outline-offset:-1.75rem;
    clip-path: polygon(
        100% 0,
        100% calc(100% - 100px),
        calc(100% - 100px) 100%,
        0 100%,
        0 0
    );
}

.subcourse-image-frame img{
    max-width:100%;
    height:auto;
}



  /* Faculty Layput ROW & COLUMN */
  .faculty-row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    box-sizing: border-box;
}

.faculty-column {
    width: 100%;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    box-sizing: border-box;
}

/* Mobile: 1 column (default) */
.faculty-row--thirds .faculty-column {
    width: 100%;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
    .faculty-row--thirds .faculty-column {
        width: 50%;
    }
}

/* Laptop & Desktop: 3 columns */
@media (min-width: 992px) {
    .faculty-row--thirds .faculty-column {
        width: 33.333%;
    }
}

/* CONTAINERS */
.faculty-container {
    box-sizing: border-box;
}

.faculty-max-width--medium {
    max-width: 506px !important;
}

.faculty-max-width--small {
    max-width: 400px !important;
}

.faculty-position--relative {
    position: relative;
}

/* SPACING */
.faculty-spacing-after--large {
    margin-bottom: 4.125rem !important;
}

.faculty-spacing-after--none {
    margin-bottom: 0 !important;
}

.faculty-spacing-margin-right--none {
    margin-right: 0 !important;
}

.faculty-spacing-margin-left--sxxsmall {
    margin-left: .5rem !important;
}

@media (min-width:576px) {
    .faculty-pull-up--phone-large {
        margin-top: -0.125rem !important;
    }
}

/* ALIGN */
.faculty-align-item--left {
    margin-right: auto !important;
}

/* DECORATORS */
.faculty-decorator {
    position: absolute;
    display: block;
}

.faculty-decorator--style-block-crimson {
    background: var(--base-color);
}

.faculty-decorator--style-block-gray {
    background: #e5e5e5;
}

.faculty-decorator--style-shadow-left {
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .03) 100%);
}

.faculty-decorator--style-lines-gray {
    background-image: repeating-linear-gradient(135deg,
            #f2f2f2,
            #f2f2f2 2px,
            transparent 2px,
            transparent 10px);
    background-position: 0 -4px;
    background-repeat: no-repeat;
}

/* Decorator positions (no inline styles) */
.faculty-decorator--pos-crimson-left-sm {
    top: 40px;
    left: -30px;
    height: 300px;
    width: 30px;
}
.faculty-decorator--pos-crimson-left-lg {
    top: 40px;
    left: -30px;
    height: 300px;
    width: 150px;
}
.faculty-decorator--pos-gray-block {
    top: 200px;
    right: -80px;
    height: 150px;
    width: 80px;
}
.faculty-decorator--pos-callout-bar {
    top: -16px;
    left: 0;
    height: 16px;
    width: 180px;
}
.faculty-decorator--pos-callout-bar-bottom {
    bottom: -16px;
    right: 0;
    height: 16px;
    width: 180px;
}
.faculty-decorator--pos-shadow {
    top: 0;
    bottom: 0;
    left: -30px;
    height: auto;
    width: 30px;
}
.faculty-decorator--pos-crimson-right {
    bottom: 0px;
    right: -12px;
    height: 200px;
    width: 12px;
}
.faculty-decorator--pos-lines {
    bottom: 250px;
    right: -12px;
    height: 150px;
    width: 30px;
}

/* IMAGE */
.faculty-block-image {
    margin: 0 0 2.25rem 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    max-width: 100%;
    display: block;
    height: auto;
}

.faculty-image--style-framed {
    outline: 1px solid #fff;
    outline-offset: -1.75rem;
}

.faculty-img {
    height: auto;
}

/* CALLOUT */
.faculty-callout--style-basic {
    background: #fff;
    padding: 1.5rem 1.75rem 1px;
    margin-bottom: 2.25rem;
    box-sizing: border-box;
}

.faculty-text {
    margin-top: 0;
    margin-bottom: 2.25rem;
    max-width: 900px;
    position: relative;
}

.faculty-text + .faculty-text {
    margin-top: -.5rem;
}

/* Faculty educator slider (diploma-computer etc.) */
.faculty-edu-swiper .swiper-slide {
    height: auto;
}
.faculty-edu-swiper .faculty-column {
    padding-left: 1rem;
    padding-right: 1rem;
}
.faculty-edu-swiper .swiper-button-prev,
.faculty-edu-swiper .swiper-button-next {
    color: var(--base-color, #a60f2d);
}
.faculty-edu-swiper .swiper-pagination-bullet-active {
    background: var(--base-color, #a60f2d);
}

/* Infrastructure section: image 50% height with base color, rest white */
.infra-bg-half-section .infra-bg-half {
    position: relative;
    background-color: #fff;
}
/* Top 50%: base color */
.infra-bg-half-section .infra-bg-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25%;
    background-color: var(--base-color);
    z-index: 0;
}
/* Top 50%: image with opacity */
.infra-bg-half-section .infra-bg-half::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 25%;
    background-image: url("../img/gardi-shape.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}
.infra-bg-half-section .infra-bg-half > * {
    position: relative;
    z-index: 2;
}
/* Infrastructure section: image 50% height with base color, rest white */
.infra-bg-full-section .infra-bg-full {
    position: relative;
    background-color: #fff;
}
/* Top 50%: base color */
.infra-bg-full-section .infra-bg-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--base-color);
    z-index: 0;
}
/* Top 50%: image with opacity */
.infra-bg-full-section .infra-bg-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("../img/gardi-shape.webp");
    background-size: contain;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}
.infra-bg-full-section .infra-bg-full > * {
    position: relative;
    z-index: 2;
}
/* Infrastructure section: image 50% height with base color, rest white */
.infra-bg-full-section-light .infra-bg-full {
    position: relative;
    background-color: #fff;
}
/* Top 50%: base color */
.infra-bg-full-section-light .infra-bg-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--base-color);
    z-index: 0;
}
/* Top 50%: image with opacity */
.infra-bg-full-section-light .infra-bg-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("../img/gardi-shape.webp");
    background-size: contain;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}
.infra-bg-full-section-light .infra-bg-full > * {
    position: relative;
    z-index: 2;
}

/* Infrastructure slider: side space so 4 columns' shadows are not cut */
.mec-infra-swiper-row {
    overflow: visible;
}
.mec-infra-swiper-col {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 768px) {
    .mec-infra-swiper-col {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
@media (min-width: 992px) {
    .mec-infra-swiper-col {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}
@media (min-width: 1200px) {
    .mec-infra-swiper-col {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
/* Inset swiper so card shadows are not clipped */
.mec-infra-swiper {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
@media (min-width: 768px) {
    .mec-infra-swiper {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media (min-width: 1200px) {
    .mec-infra-swiper {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.infra-card {
  /* width: 300px; */
  /* height: 420px; */
  /* background: linear-gradient(180deg, #2b2b2b, #1a1a1a); */
  /* background-color: #4b4b4b; */
  background-color: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  border-radius: 12px;
  /* padding: 30px 20px 0px 20px; */
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

 /* Syllabus table: allow column to grow, Subject Name – no wrap */
 .fee-structure-wrapper .table-fee-structure {
  table-layout: auto !important;
}
.fee-structure-wrapper .table-fee-structure th.subject-name-col,
.fee-structure-wrapper .table-fee-structure td:nth-child(2),
.fee-structure-wrapper .table-fee-structure td:nth-child(2) p {
  white-space: nowrap !important;
}
.fee-structure-wrapper .table-fee-structure th.subject-name-col,
.fee-structure-wrapper .table-fee-structure td:nth-child(2) {
  min-width: 200px;
}

.subcourse-card{
  position:relative;
}

.subcourse-pattern{
  position:absolute;
  top:-20px;
  right:-40px;
  width:400px;
  height:150px;
  background:repeating-linear-gradient(135deg,#da251c,#da251c 2px,transparent 2px,transparent 10px);
}

.subcourse-content{
  background: var(--base-color);
  padding:2.25rem;
  clip-path:polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
}

.subcourse-btn-wrap{
  padding:0 2.25rem;
}

.subcourse-btn{
  display:inline-block;
}


    /* MBA educators slider (services-box-style-01): same-size image area */
    .mba-educators-slider-01 .services-box-style-01 .box-image {
      height: 280px;
      overflow: hidden;
  }
  .mba-educators-slider-01 .services-box-style-01 .box-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
  }



  /* =====================================================
     ROOT VARIABLES (Easy future editing)
  ===================================================== */

  :root {
    --gardi-gutter: 1.75rem;
    --gardi-large-space: 4.125rem;
    --gardi-medium-space: 2.25rem;
    --gardi-gray-border: #d8d8d8;
    --gardi-text-dark: #262626;
  }


  /* =====================================================
   LAYOUT STRUCTURE
===================================================== */

/* .gardi-wrapper-content .gardi-section:not(.gardi-width--full){
margin-left: calc(var(--gardi-gutter) * -1);
margin-right: calc(var(--gardi-gutter) * -1);
} */

  .gardi-wrapper-content .gardi-section:not(.gardi-width--full) {
    padding-left: var(--gardi-gutter);
    padding-right: var(--gardi-gutter);
  }

  .gardi-row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    box-sizing: border-box;
  }

  .gardi-column {
    padding-left: var(--gardi-gutter);
    padding-right: var(--gardi-gutter);
    box-sizing: border-box;
  }

  .gardi-container {
    box-sizing: border-box;
  }

  .gardi-position--relative {
    position: relative;
  }


  /* =====================================================
   SPACING UTILITIES
===================================================== */

  .gardi-spacing-top--none {
    padding-top: 0;
  }

  .gardi-spacing-bottom--none {
    padding-bottom: 0;
  }

  .gardi-spacing-top--large {
    padding-top: var(--gardi-large-space);
  }

  .gardi-spacing-padding-top--large {
    padding-top: var(--gardi-large-space);
  }

  .gardi-spacing-top--xxmedium {
    padding-top: var(--gardi-medium-space);
  }

  .gardi-spacing-bottom--xxmedium {
    padding-bottom: var(--gardi-medium-space);
  }

  .gardi-spacing-padding-left--xmedium {
    padding-left: var(--gardi-gutter);
  }

  .gardi-spacing-padding-right--none {
    padding-right: 0;
  }

  .gardi-spacing-padding-left--large {
    padding-left: var(--gardi-large-space);
  }

  .gardi-spacing-padding-right--large {
    padding-right: var(--gardi-large-space);
  }


  /* =====================================================
   BACKGROUNDS & COLORS
===================================================== */

  .gardi-color-background--crimson {
    background-color: var(--base-color);
    color: #fff;
  }

  .gardi-color-background--white {
    background-color: #fff;
    color: var(--gardi-text-dark);
  }

  .gardi-font-color--white {
    color: #fff;
  }

  .gardi-border--gray-left-thick {
    border-left: 8px solid var(--gardi-gray-border);
  }

  .gardi-border--gray-right-thick {
    border-right: 8px solid var(--gardi-gray-border);
  }

  .gardi-border--add-bottom {
    border-bottom: 4px solid var(--base-color);
  }


  /* =====================================================
   DECORATORS
===================================================== */

  .gardi-decorator--style-block-crimson,
  .gardi-decorator--style-block-crimson-gardi {
    position: absolute;
    display: block;
    background-color: var(--base-color);
  }

  .gardi-decorator--style-lines-crimson {
    position: absolute;
    display: block;
    background-image: repeating-linear-gradient(135deg,
        var(--base-color),
        var(--base-color) 2px,
        transparent 2px,
        transparent 10px);
  }


  /* =====================================================
   IMAGES
===================================================== */

  figure {
    margin: 0 0 var(--gardi-medium-space) 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
  }

  .wp-block-image {
    margin-bottom: 1em;
  }

  .wp-block-image img,
  img.wp-block-image {
    display: block;
    width: 100%;
    height: auto;
    border: none;
  }

  .gardi-image--style-framed img,
  img.gardi-image--style-framed {
    outline: 1px solid #fff;
    outline-offset: calc(var(--gardi-gutter) * -1);
  }

  /* Standalone img (no figure): match original figure spacing so design unchanged */
  .gardi-main-wrapper img.wp-block-image.gardi-image--style-framed {
    margin: 0 0 var(--gardi-medium-space) 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
  }


  /* =====================================================
   STATS COMPONENT
===================================================== */

  .gardi-stat {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: var(--gardi-medium-space);
  }

  .gardi-stat--size-small {
    font-size: 2rem;
  }

  .gardi-stat__value-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .gardi-stat__value {
    line-height: 1;
    margin-right: .25em;
    margin-bottom: .25rem;
  }

  .gardi-stat__caption {
    flex-basis: 100%;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
  }


  /* =====================================================
   NOTCH EFFECT
===================================================== */

  .gardi-notch-top--small {
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
  }

  .gardi-notch-top--right {
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%, 0 0);
  }


  /* =====================================================
   RESPONSIVE
===================================================== */

  /* Mobile: stack layout, image first then content */
  @media (max-width: 767px) {
    .gardi-main-wrapper .gardi-row.gardi-row--halves,
    .gardi-row.gardi-row--halves {
      flex-direction: column !important;
      display: flex !important;
    }

    .gardi-main-wrapper .gardi-row--halves .gardi-column,
    .gardi-row--halves .gardi-column {
      flex: 0 0 100% !important;
      max-width: 100% !important;
      width: 100% !important;
    }

    .gardi-main-wrapper .gardi-row--halves .gardi-column:first-child,
    .gardi-row--halves .gardi-column:first-child {
      order: 1;
    }

    .gardi-main-wrapper .gardi-row--halves .gardi-column:last-child,
    .gardi-row--halves .gardi-column:last-child {
      order: 2;
    }

    .gardi-pull-left--tablet-xhero,
    .gardi-pull-right--tablet-xlarge,
    .gardi-pull-left--tablet-xlarge,
    .gardi-push-right--tablet-xlarge,
    .gardi-pull-right--tablet-xhero,
    .gardi-push-left--tablet-xlarge {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .gardi-main-wrapper .gardi-decorator--style-block-crimson,
    .gardi-decorator--style-block-crimson {
      left: 0 !important;
      width: 60px !important;
    }

    .gardi-main-wrapper .gardi-decorator--style-lines-crimson,
    .gardi-decorator--style-lines-crimson {
      display: none !important;
    }

    .gardi-column.gardi-spacing-padding-right--none {
      padding-right: var(--gardi-gutter);
    }

    .gardi-column.gardi-spacing-top--large {
      padding-top: var(--gardi-medium-space);
    }

    .gardi-notch-top--small {
      clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
    }

    .gardi-notch-top--right {
      clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%, 0 0);
    }

    .gardi-main-wrapper p {
      max-width: none;
    }

    .gardi-stat--size-small {
      font-size: 1.5rem;
    }

    /* Prevent content cut-off: allow white block and section to grow */
    .gardi-main-wrapper .gardi-section,
    .gardi-main-wrapper .gardi-container {
      overflow: visible;
    }

    .gardi-main-wrapper .gardi-color-background--white.gardi-notch-top--small {
      overflow: visible;
      min-height: 0;
    }
  }

  /* Tablet and desktop: two columns */
  @media (min-width: 768px) {
    .gardi-row.gardi-row--halves {
      flex-direction: row;
    }

    .gardi-row--halves .gardi-column {
      flex: 0 0 50%;
    }

    .gardi-pull-left--tablet-xhero {
      margin-left: 8.5rem;
    }

    .gardi-pull-right--tablet-xlarge {
      margin-right: -4.125rem;
    }

    .gardi-pull-left--tablet-xlarge {
      margin-left: -4.125rem;
    }

    .gardi-push-right--tablet-xlarge {
      margin-left: 4.125rem;
    }

    .gardi-pull-right--tablet-xhero {
      margin-right: 8.5rem;
    }

    .gardi-push-left--tablet-xlarge {
      margin-right: 4.125rem;
    }
  }

  /* =====================================================
   Campus Life Design css
===================================================== */


.ic-wrapper{
  position:relative;
}



/* RED DIAGONAL LINES */
.ic-wrapper::after{
  content:"";
  position:absolute;
  right:0;
  top:0px;
  width:100%;
  height:180px;
  background-image: repeating-linear-gradient(
      135deg,
      var(--base-color),
      var(--base-color) 2px,
      transparent 2px,
      transparent 10px
  );
  z-index: -1;
  right: -60%;
}



/* keep card above lines */
.ic-card{
  position:absolute;
  right:0;
  bottom:0%;
  width:40%;
  background: var(--base-color);
  color:#fff;
  padding:60px 45px;
  z-index:2;
}

.ic-wrapper{
  position:relative;
  }
  
  .ic-left{
  width:75%;
  }
  
  .ic-img{
  width:100%;
  display:block;
  }
  
  .ic-text{
  text-align:justify;
  }
  


  .card-section{
    margin-right: 25%;
  }
  
  .card-section-reverse{
    margin-left: 25%;
  }
  
  .ic-card h4{
  font-size:16px;
  letter-spacing:1px;
  margin-bottom:15px;
  }
  
  .ic-card h2{
  font-size:42px;
  line-height:50px;
  margin-bottom:25px;
  }
  


  .facility-wrapper{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    align-items:stretch;
}


.facility-card{
    padding:20px 20px;
    background:#faf8f8;
    border: 1px solid var(--base-color);
    text-align:center;
    /* red shadow */
    box-shadow:0 10px 25px rgba(227,30,36,0.15);
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    flex:1 1 180px;
    /* min-width:180px;
    min-height:200px; */
}

.facility-card .icon{
    margin-bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.facility-card .icon img{
    width:30%;
    height:auto;
    object-fit:contain;
}

.facility-card__title{
    display:block;
    min-height:2.8em;
    line-height:1.4;
    text-align:center;
}

.facility-card h3{
    font-weight:600;
    color:#333;
    line-height:28px;
}

/* original design */
.ic-card{
  position:absolute;
  right:0;
  top:35%;
  width:40%;
  background:var(--base-color);
  color:#fff;
  }
  
  /* reverse design */
  .ic-wrapper.reverse .ic-left{
  margin-left:auto;
  }

  .ic-wrapper.reverse::after{
  left:-60%;
  right:auto;
  }

  .ic-wrapper.reverse .ic-card{
  left:0;
  right:auto;
  }


  .img-marquee{
    width: 25%;
  }


  /* circel design */

   /* Demo-only: scoped to this page section */
   .rounded-stats-demo {
    --rounded-stat-width: 240px;
    --rounded-stat-min-height: 180px;
    --rounded-circle-size: 180px;
    --rounded-accent-size: 100px;
    --rounded-accent: #da251c;
    --rounded-accent-dark: #da251c;
    --rounded-muted: #b2b2b2;
    --rounded-circle-bg: #e5e5e5;
}

.rounded-stats-demo .rounded-stat {
    margin-bottom: 2.25rem;
}

/* Layout */
.rounded-stats-demo .rounded-stat--style-circle {
    display: flex;
    width: var(--rounded-stat-width);
    min-height: var(--rounded-stat-min-height);
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.rounded-stats-demo .rounded-stat--layout-inline {
    display: inline-flex;
    vertical-align: top;
    margin-right: 2.5em;
}

/* Circle layers */
.rounded-stats-demo .rounded-stat--style-circle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--rounded-circle-size);
    height: var(--rounded-circle-size);
    background-color: var(--rounded-circle-bg);
    border-radius: 50%;
    transform: translate(calc(-1 * var(--rounded-circle-size) / 2), calc(-1 * var(--rounded-circle-size) / 2));
    z-index: 1;
}

.rounded-stats-demo .rounded-stat--style-circle::after {
    content: "";
    position: absolute;
    width: var(--rounded-accent-size);
    height: var(--rounded-accent-size);
    border-radius: 50%;
    z-index: 2;
    background-image: repeating-linear-gradient(
        135deg,
        var(--rounded-accent),
        var(--rounded-accent) 2px,
        transparent 2px,
        transparent 10px
    );
}

/* Only when needed: put red accent behind grey circle */
.rounded-stats-demo .rounded-stat--accent-behind::after {
    z-index: 0;
}

.rounded-stats-demo .rounded-stat--style-circle-left::after {
    right: 0;
    top: 0;
}

/* Reverse variant (like screenshot) */
.rounded-stats-demo .rounded-stat--reverse {
    text-align: center;
    align-items: center;
}

/* Shift big grey circle for screenshot composition */
.rounded-stats-demo .rounded-stat--reverse::before {
    left: 44%;
    top: 52%;
}

.rounded-stats-demo .rounded-stat--reverse::after {
    right: auto;
    top: auto;
    left: 0;
    bottom: 0;
}

.rounded-stats-demo .rounded-stat__title {
    position: relative;
    z-index: 4;
    text-align: center;
    margin: 0;
    padding: 26px 20px 0 20px;
    max-width: 240px;
    color: #3b3b3b;
    line-height: 1.25;
    word-break: normal;
}

.rounded-stats-demo .rounded-stat__bar {
    position: relative;
    z-index: 4;
    display: block;
    width: 110px;
    height: 6px;
    background: #b2b2b2;
    border-radius: 6px;
    margin: 10px auto 0;
}

.rounded-stats-demo .rounded-stat__number {
    position: absolute;
    right: -6px;
    bottom: 10px;
    z-index: 4;
    margin: 0;
    color: var(--rounded-accent);
    line-height: 1;
}

/* In reverse layout: keep order (p -> bar -> number) */
.rounded-stats-demo .rounded-stat--reverse .rounded-stat__number {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    align-self: flex-end;
    text-align: right;
}

/* Don't apply gradient text to the screenshot variant number */
.rounded-stats-demo .rounded-stat__number {
    -webkit-text-fill-color: initial;
    background: none;
}

/* Value + Unit */
.rounded-stats-demo .rounded-stat__value,
.rounded-stats-demo .rounded-stat__unit {
    position: relative;
    display: block;
    z-index: 3;
    background: linear-gradient(0deg, var(--rounded-accent-dark) 0, var(--rounded-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rounded-stats-demo .rounded-stat__value {
    margin-bottom: 0.25rem;
}

.rounded-stats-demo .rounded-stat__unit {
}

/* Left style tweaks */
.rounded-stats-demo .rounded-stat--style-circle-left .rounded-stat__unit {
    max-width: 100px;
    margin-bottom: -1.125rem;
    padding: 0.1rem 0 0.6875rem 0.6875rem;
}

.rounded-stats-demo .rounded-stat--style-circle-left .rounded-stat__unit::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -10px;
    width: 95px;
    height: 6px;
    background-color: var(--rounded-muted);
}

/* Caption */
.rounded-stats-demo .rounded-stat__caption {
    display: block;
    color: #4c4c4c;
    position: relative;
    z-index: 3;
}

.rounded-stats-demo .rounded-stat--style-circle-left .rounded-stat__caption {
    max-width: 150px;
    margin-left: auto;
    line-height: 1.25;
}

/* Animation */
.rounded-stats-demo .rounded-animate-fade-left {
    transform: translateX(-300px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0, 0, 0.03, 1), opacity 1s ease-in;
}

.rounded-stats-demo .rounded-animate-fade-left.rounded-animate-in {
    transform: translateX(0);
    opacity: 1;
}

.rounded-stats-demo .rounded-animate-delay-2 {
    transition-delay: 0.3s;
}

.ld-font{
  font-weight: 200 !important;
}


/* placement-head phot frame */


/* Wrapper (important) */
.director-message .photo-section {
  position: relative;
  width: 100%;
  max-width: 530px;
  aspect-ratio: 4 / 5; /* maintain proportion */
  margin: auto;
}

/* Frame */
.director-message .photo-frame {
  position: absolute;
  left: 0;
  top: 18%;
  width: 100%;
  height: 82%;
  background: linear-gradient(to top, #fff0, rgb(255 255 255 / 45%));
  border: 2px solid #fff;
  border-radius: 30px;
  z-index: 1;
}

.director-message .photo-frame-red {
  position: absolute;
  left: 0;
  top: 10%;
  width: 100%;
  height: 90%;
  background: linear-gradient(to top, #ff505000, rgb(255 14 14 / 45%));
  border: 2px solid #ff0000;
  border-radius: 30px;
  z-index: 1;
}
/* Image container */
.director-message .photo-container {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  overflow: hidden;
  z-index: 2;
}

/* Image */
.director-message .photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Career support page */
.career-support-hero {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.career-support-hero-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  min-height: 12rem;
  background-color: #e5e5e5;
  pointer-events: none;
}

.career-support-figure img {
  display: block;
  width: 100%;
  height: auto;
  outline: 1px solid #fff;
  outline-offset: -0.75rem;
}

@media (min-width: 768px) {
  .career-support-figure img {
    outline-offset: -1.25rem;
  }
}

.career-support-pullup {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .career-support-pullup {
    margin-top: -5rem;
  }
}

@media (min-width: 992px) {
  .career-support-pullup {
    margin-top: -6.5rem;
  }
}

.career-support-quote {
  border-left: 4px solid var(--base-color, #ae1e16);
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.career-support-hero-content {
  z-index: 1;
}


/* Career Support Banner */

.banner * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BANNER */
.banner {
  width: 100%;
  aspect-ratio: 1600 / 500;

  background: url('../img/back-final.jpg')right center / contain no-repeat;

  background-color: #f2f2f2;
  position: relative;
}

/* EVENT BOX */
.event-box {
  position: absolute;
  top: 0;
  right: 5%;
  width: 32%;
  height: 95%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  
}

.banner .event-box-title {
  display: block;
  border-left: 4px solid var(--base-color);
  padding-left: 15px;
}

/* SCROLL AREA */
.event-list {
  flex: 1;
  overflow: hidden;
}

/* EVENT */
.event {
  display: flex;
  margin-bottom: 15px;
}

/* DATE */
.date {
  background: var(--base-color);
  padding: 8px;
  text-align: center;
  margin-right: 10px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.125rem;
  align-self: stretch;
}




/* MOBILE */
@media (max-width: 768px) {

  .banner {
    aspect-ratio: auto;
    background-position: top center;
    background-size: contain;
    padding-top: 31.25%;
  }

  .event-box {
    position: static;
    width: 100%;
    height: auto;
    right: 10%;
  }

  .event-list {
    overflow: visible;
  }
}


.fdp-details{
  font-size: 16px;
  line-height: 1.3rem !important;
}

.fdp-program .position-relative {
  position: relative !important;
}

.fdp-program .p-60 {
  padding: 60px 0;
}

.fdp-program.whom-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 500px;
  background: var(--base-color);
  top: 0;
}

@media (min-width: 1200px) {

  .fdp-program .container,
  .fdp-program .container-lg,
  .fdp-program .container-md,
  .fdp-program .container-sm,
  .fdp-program .container-xl {
    max-width: 1140px;
  }
}

.fdp-program .text-center {
  text-align: center !important;
}

@media (min-width: 992px) {
  .fdp-program .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.fdp-program .whom-section_desc {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 30px;
}


.fdp-program .text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.fdp-program .slick-slider {
  /*     position: relative; */
  display: block;
  box-sizing: border-box;
  /*     -webkit-user-select: none; */
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.fdp-program .slick-slider .slick-track,
.fdp-program .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fdp-program .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.fdp-program .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.fdp-program .slick-track:before,
.fdp-program .slick-track:after {
  display: table;
  content: '';
}

.fdp-program .slick-initialized .slick-slide {
  display: block;
}

.fdp-program .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image:not(:last-child) {
  margin-bottom: 30px;
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image:before {
  content: '';
  position: absolute;
  display: block;
  top: 58px;
  bottom: -14px;
  left: 13px;
  right: -13px;
  border-width: 1px;
  border-style: solid;
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image:before {
  border-color: rgba(224, 224, 224, 0.3);
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image .step-image-box {
  position: relative;
  overflow: hidden;
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image .step-image-box.orange:after {
  background-image: linear-gradient(0deg, #F2C038 0%, #F2C038 10%, transparent 68%);
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image .step-image-box.green:after {
  background-image: linear-gradient(0deg, #00DAAF 0%, #00DAAF 10%, transparent 68%);
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image .step-image-box.red:after {
  background-image: linear-gradient(0deg, #FC7561 0%, #FC7561 10%, transparent 68%);
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image .step-image-box.blue:after {
  background-image: linear-gradient(0deg, #00bbee 0%, #00bbee 10%, transparent 68%);

}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image .step-image-box:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image img,
.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image:before,
.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image .step-image-box,
.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image .step-image-box:after {
  -webkit-border-radius: 25px 25px 25px 0;
  border-radius: 25px 25px 25px 0;
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image .step-number {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.fdp-program .technum-step-widget .step-item.step-item-type-extended .step-image .step-number-inner {
  position: absolute;
  display: inline-block;
  vertical-align: top;
  font-size: 120px;
  line-height: 1;
  font-weight: 700;
  bottom: -0.3em;
  left: -0.2667em;
  right: initial;
  z-index: 3;
  color: white;
}

.text-italic{
  font-style: italic;
}



@media (max-width: 768px) {
  .sm-d-none {
    display: none !important;
  }
}