/*
 * ===========================================================
 * responsive.css — SINGLE SOURCE OF TRUTH
 * Enterprise Responsive Design System
 *
 * DO NOT add base styles here.
 * DO NOT add non-media-query rules here.
 * ALL responsive overrides belong here, organized by breakpoint.
 * ===========================================================
 */


/* Base Responsive Overrides (Migrated from old responsive.css) */
.mobile-swiper-section {
  display: none;
}

/* ===========================================================
   CATCH-ALL RESPONSIVE PROTECTION (Non-Desktop)
   Applies to all screens 1024px and below
=========================================================== */
@media screen and (max-width: 1199px) {
  .eagle-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stats-bar .stat {
    flex: 0 0 33%;
  }
}

@media screen and (max-width: 1024px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  img,
  video,
  iframe,
  embed,
  object,
  svg {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .container,
  .wrapper,
  .section,
  [class*="container"],
  [class*="wrapper"] {
    width: 100%;
    max-width: 100%;
    margin: auto;
  }

  table {
    border-collapse: collapse;
    max-width: 100%;
  }

  input,
  select,
  textarea,
  button {
    max-width: 100%;
  }

  /* Vault section */
  .jnis-futuristic-vault {
    padding: 44px 0;
  }

  .vault-bg-marquee {
    display: none;
  }

  .vault-heading-wrap {
    padding: 0 16px;
    margin-bottom: 22px;
  }

  .vault-heading-wrap .section-title .title-left,
  .vault-heading-wrap .section-title .title-right {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
    line-height: 1.08;
  }

  .vault-heading-desc {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .vault-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .vault-interactive-menu {
    gap: 8px;
  }

  .vault-fluid-trigger {
    padding: 13px 14px 13px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
  }

  .vault-fluid-trigger:hover,
  .vault-fluid-trigger.is-active {
    transform: none;
  }

  .vault-fluid-trigger h3 {
    font-size: 1.06rem;
  }

  .vault-fluid-trigger .trigger-desc {
    max-height: 88px;
    opacity: 1;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .vault-portal-stage {
    min-height: auto;
  }

  .portal-lens-wrapper {
    width: min(100%, 420px);
    margin: 0 auto;
    animation: none;
  }

  .portal-floating-glass-card {
    display: none;
  }

  .pathway-image-container {
    display: flex !important;
    width: 50% !important;
  }

}


@media (max-width:992px) {
  .educators-content{
    padding: 50px 20px 0px 320px;
    height: 380px;
  }
}

/* ===========================================================
   MOBILE LAYOUT FIXES — max-width: 767px
   Target: Phones and small landscape mobiles
=========================================================== */
@media screen and (max-width: 767px) {
  .essential-slider__navbar .desc {
    display: none;
  }

  .academic-intro {
    display: none;
  }

  /* Pathways section */
  .pathway-section {
    display: block;
    align-items: stretch;
    padding: 32px 0 !important;
  }

  .pathway-section .row {
    margin-left: 0;
    margin-right: 0;
  }

  .pathway-section .col-md-4 {
    display: none;
  }

  .pathway-section .col-md-8 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .custom-tabs {
    width: 100%;
    justify-content: flex-start;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .custom-tabs::-webkit-scrollbar {
    display: none;
  }

  .custom-tabs .nav-item {
    flex: 0 0 auto;
    min-width: max-content;
  }

  .custom-tabs .nav-link {
    min-width: max-content;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .custom-tab-content {
    margin-top: 1.25rem !important;
  }

  .mobile-tab-header {
    display: none;
  }

  .tab-pane-content {
    display: none;
  }

  .tab-pane.active .tab-pane-content,
  .tab-pane.show .tab-pane-content {
    display: block;
  }

  .tab-pane-content .pathway-image-container {
    display: block;
    margin-top: 16px;
  }

  .tab-pane-content .pathway-image-container img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
  }

  .pathway-image-container,
  .pathway-image-container.zoom-animate {
    width: 100%;
    height: auto;
    margin-left: 0;
    filter: none;
    animation: none;
    overflow: hidden;
  }

  .pathway-image-container::after {
    display: none;
  }

  .pathway-image-container img {
    position: relative;
    top: auto;
    left: auto;
    clip-path: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 16px;
  }

  .pathway-image-container:hover,
  .pathway-image-container:hover::after,
  .pathway-image-container:hover img {
    transform: none;
  }

  /* Core ideas */
  .eagle-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .eagle-innerCard {
    padding: 14px 12px;
    border-radius: 16px;
    outline-offset: -8px;
  }

  .eagle-img {
    width: 56px;
    margin-bottom: 14px;
  }

  .eagle-innerCard h3 {
    /* font-size: 1rem; */
    line-height: 1.25;
  }

  .eagle-innerCard p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  /* School in numbers */
  .educators-section {
    overflow: hidden;
  }

  .educators-content {
    flex-direction: column;
    padding: 24px 16px 18px;
    height: auto;
  }

  .educators-left {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 280px);
    margin: 0 auto 18px;
  }

  .educators-left img {
    border-radius: 16px;
  }

  .educators-right {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }

  .educators-right .desc {
    max-width: 640px;
    margin: 0 auto;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .line {
    margin-bottom: 22px;
  }

  .stats-container {
    padding-top: 0;
  }

  /* Stats bar */
  .stats-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 14px;
  }

  .stats-bar .stat {
    flex: initial;
    width: auto;
    margin: 0;
    padding: 12px 8px;
    min-width: 0;
    text-align: center;
    align-items: center;
  }

  .stats-bar .stat::after {
    display: none;
  }

  .stat-info h3 {
    font-size: 1.45rem;
  }

  .stat-info p {
    font-size: 0.82rem;
  }

  .stats-bar .stat-icon {
    width: 34px;
    margin-bottom: 10px;
  }

  .stats-bar .stat-icon img {
    width: 100%;
    height: auto;
  }

  /* Testimonial section */
  .testimonial-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mySwiper-testimonial .swiper-wrapper {
    padding: 18px 0 48px;
  }

  .testimonial-section .swiper-slide {
    width: 82vw;
    max-width: 100%;
    height: 420px;
    opacity: 1;
    filter: none;
  }

  .testimonial-section .swiper-slide-active {
    transform: scale(1);
    margin: 0 !important;
    margin-right: 0 !important;
  }

  .center-content {
    height: auto;
    min-height: 0;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .center-content h2 {
    font-size: 1.35rem;
  }

  .center-content p,
  .profile-btn {
    opacity: 1;
    max-height: none;
    transform: none;
  }

  .profile-btn {
    margin-top: 16px;
    padding-top: 14px;
  }

  /* Success section */
  .success-section {
    display: block;
    min-height: auto;
    padding: 48px 0px 0;
    background-attachment: scroll;
  }

  .testimonial-section .swiper-slide-active {
    transform: scale(1) !important;
  }

  .success-grid {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 0;
    padding: 0 20px;
  }

  .swiper-stats {
    max-width: 100%;
    border-radius: 24px;
  }

  .swiper-stats .swiper-slide {
    padding: 34px 18px 22px;
  }

  .stat-number {
    font-size: 3.4rem;
  }

  .stat-desc {
    font-size: 0.95rem;
  }

  .success-text {
    text-align: center;
  }

  .success-text h2 .title-left,
  .success-text h2 .title-right {
    font-size: 2rem;
  }

  .success-text .desc {
    margin: 0 auto 22px;
    font-size: 0.95rem;
  }

  .logo-slider-container {
    position: relative;
    margin-top: 24px;
    padding: 18px 0;
  }

  .logo-swiper img {
    height: 30px;
  }

  .voc-swiper {
    padding: 0px 0 50px !important;
  }

  .voc-section.py-5 {
    padding-bottom: 2rem !important;
  }

  .voc-card-modern {
    padding: 0 20px;
  }
}

@media (max-width:500px) {
  .pathway-image-container {
    display: flex !important;
    width: 100% !important;
  }
}

/* ===========================================================
   EXTRA SMALL MOBILE — max-width: 375px
   Target: iPhone SE, older/small Android devices
=========================================================== */
@media screen and (max-width: 375px) {

  /* --- Typography --- */

  /* --- Layout & Grid --- */

  /* --- Header --- */
  .hdr-info {
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .hdr-info .logo-placeholder {
    width: 85px !important;
    left: 25px;
  }

  #menuBtn {
    width: 50px;
    height: 50px;
    top: 3%;
    right: 20px;
  }

  /* --- Cards --- */

  /* --- Buttons & Forms --- */

  /* --- Tables --- */

  /* --- Modals & Dialogs --- */

  /* --- Images & Media --- */

  /* --- Footer --- */

  /* --- Utilities --- */

  /* Migrated from styl.css */
  .phil-text-content {
    padding: 2.5rem 1.5rem;
  }

  .phil-text-content p {
    font-size: 1.2rem;
  }

  .jnis-futuristic-vault {
    padding: 36px 0;
  }

  .vault-heading-wrap {
    padding: 0 14px;
    margin-bottom: 18px;
  }

  .vault-heading-wrap .section-title .title-left,
  .vault-heading-wrap .section-title .title-right {
    font-size: 1.7rem;
  }

  .vault-heading-desc {
    font-size: 0.9rem;
  }

  .vault-container {
    padding: 0 14px;
    gap: 18px;
  }

  .vault-fluid-trigger {
    padding: 12px 12px 12px 14px;
  }

  .vault-fluid-trigger h3 {
    font-size: 0.98rem;
  }

  .vault-fluid-trigger .trigger-num {
    font-size: 0.8rem;
  }

  .vault-portal-stage {
    min-height: 220px;
  }
}


/* ===========================================================
   SMALL MOBILE — 376px to 480px
   Target: Standard mobile devices
=========================================================== */
@media screen and (min-width: 376px) and (max-width: 480px) {

  /* --- Typography --- */

  /* --- Layout & Grid --- */

  /* --- Header --- */
  .hdr-info {
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .hdr-info .logo-placeholder {
    width: 70px !important;
    left: 25px;
    top: 3%;
  }

  #menuBtn {
    width: 50px;
    height: 50px;
    top: 3%;
    right: 20px;
  }

  /* --- Cards --- */

  /* --- Buttons & Forms --- */

  /* --- Tables --- */

  /* --- Modals & Dialogs --- */

  /* --- Images & Media --- */

  /* --- Footer --- */

  /* --- Utilities --- */

  /* Migrated from styl.css */
  .stats-bar .stat {
    flex: 0 0 100%;
    padding: 10px;
  }

  .stat-info h3 {
    font-size: 1.8rem;
  }

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

  .jnis-futuristic-vault {
    padding: 38px 0;
  }

  .vault-heading-wrap .section-title .title-left,
  .vault-heading-wrap .section-title .title-right {
    font-size: 1.95rem;
  }

  .vault-heading-desc {
    font-size: 0.92rem;
  }

  .vault-container {
    gap: 20px;
  }

  .vault-fluid-trigger h3 {
    font-size: 1.02rem;
  }

  .vault-portal-stage {
    min-height: 240px;
  }
}


/* ===========================================================
   LARGE MOBILE — 481px to 767px
   Target: Large phones, phablets
=========================================================== */
@media screen and (min-width: 481px) and (max-width: 767px) {

  /* --- Typography --- */

  /* --- Layout & Grid --- */

  /* --- Navigation --- */

  /* --- Header --- */

  /* --- Hero Section --- */

  /* --- Cards --- */

  /* --- Buttons & Forms --- */

  /* --- Tables --- */

  /* --- Modals & Dialogs --- */

  /* --- Images & Media --- */

  /* --- Footer --- */

  /* --- Utilities --- */

  /* Migrated from styl.css */
  .main-link {
    font-size: 1.2rem;
  }

  .sub-group a {
    font-size: 0.9rem;
  }

  .jnis-futuristic-vault {
    padding: 42px 0;
  }

  .vault-heading-wrap .section-title .title-left,
  .vault-heading-wrap .section-title .title-right {
    font-size: 2.2rem;
  }

  .vault-heading-desc {
    font-size: 0.95rem;
  }

  .vault-container {
    gap: 22px;
  }

  .vault-fluid-trigger {
    padding: 13px 15px 13px 16px;
  }

  .vault-fluid-trigger h3 {
    font-size: 1.08rem;
  }

  .vault-portal-stage {
    min-height: 260px;
  }
}


/* ===========================================================
   SMALL TABLET — 768px to 834px
   Target: iPad mini, small Android tablets
=========================================================== */
@media screen and (min-width: 768px) and (max-width: 834px) {

  /* --- Typography --- */

  /* --- Layout & Grid --- */

  /* --- Navigation --- */

  /* --- Sidebar --- */

  /* --- Cards --- */

  /* --- Tables --- */

  /* --- Footer --- */

  /* Migrated from styl.css */
  .stat h3 {
    font-size: 1.5rem;
  }

  .stat p {
    font-size: 0.9rem;
  }

  .phil-notebook-wrapper {
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  .phil-spiral-binding {
    display: none;
  }

  .success-text h2 .title-left,
  .success-text h2 .title-right {
    font-size: 2.5rem;
  }

  .stat-number {
    font-size: 4rem;
  }

  .phil-container {
    flex-direction: column;
  }

  .phil-title {
    font-size: 36px;
  }

  .phil-image-grid {
    min-width: 100%;
  }

  /* Fix for oversized sticky logo on tablet */
  .hdr-info .logo-placeholder {
    width: 60px !important;
  }
}


/* ===========================================================
   MEDIUM TABLET — 835px to 1024px
   Target: iPad, iPad Air, standard Android tablets
=========================================================== */
@media screen and (min-width: 835px) and (max-width: 1024px) {

  /* --- Typography --- */

  /* --- Layout & Grid --- */

  /* --- Navigation --- */

  /* --- Sidebar --- */

  /* --- Cards --- */

  /* --- Tables --- */

  /* --- Footer --- */

  /* Migrated from styl.css & old responsive.css */
  .educators-section {
    overflow: hidden;
    position: relative;
    padding: 60px 0;
  }

  .educators-content {
    flex-direction: column;
    padding: 40px 20px;
    height: auto !important;
    /* Force auto height */
    position: relative;
    z-index: 2;
  }

  .educators-left {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 20px;
    bottom: auto;
    left: auto;
    z-index: 1;
  }

  .educators-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }

  .educators-right {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }

  .educators-bg {
    opacity: 0.15;
    /* Lower opacity for better readability on small screens */
  }

  .hdr-info {
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    /* Ensure readability over content */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .hdr-info .logo-placeholder {
    width: 65px !important;
  }

  #menuBtn {
    width: 40px;
    height: 40px;
  }

  .main-link {
    font-size: 1.4rem;
  }

  .phil-notebook-wrapper {
    width: 95%;
  }

  .jnis-futuristic-vault {
    padding: 50px 0;
  }

  .vault-bg-marquee {
    display: none;
  }

  .vault-heading-wrap {
    padding: 0 15px;
    margin-bottom: 28px;
  }

  .vault-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 15px;
  }

  .vault-fluid-trigger {
    padding: 14px 16px 14px 18px;
  }

  .vault-fluid-trigger h3 {
    font-size: 1.2rem;
  }

  .vault-fluid-trigger .trigger-desc {
    max-height: 90px;
    opacity: 1;
  }

  .vault-portal-stage {
    min-height: 320px;
  }

  .portal-floating-glass-card {
    display: none;
  }

  /* Migrated from styl.css */
  .stats-bar {
    padding: 20px;
  }

  .stats-bar .stat::after {
    display: none;
  }

  .stats-bar .stat {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }

  .success-grid {
    flex-direction: column;
    text-align: center;
    padding-bottom: 150px;
  }

  .success-text .desc {
    margin: 0 auto 30px auto;
  }

  .swiper-stats {
    max-width: 100%;
  }

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


/* ===========================================================
   LARGE TABLET / IPAD PRO — 1025px to 1199px
   Target: iPad Pro 11", iPad Pro 12.9" portrait
=========================================================== */
@media screen and (min-width: 1025px) and (max-width: 1199px) {

  /* --- Layout & Grid --- */

  /* --- Navigation --- */

  /* --- Sidebar --- */

  /* --- Cards --- */

  /* --- Tables --- */

}


/* ===========================================================
   SMALL LAPTOP — 1200px to 1365px
   Target: Small laptops, older displays
=========================================================== */
@media screen and (min-width: 1200px) and (max-width: 1365px) {

  /* --- Layout & Grid --- */

  /* --- Navigation --- */

  /* --- Sidebar --- */

  /* --- Cards --- */

  /* --- Tables --- */

  /* --- Footer --- */

}


/* ===========================================================
   MANAGER CUSTOM SCREEN A — 1366x786
   Target: Specific manager workstation display
=========================================================== */
@media screen and (width: 1366px) and (height: 786px) {

  /* --- Layout overrides for this exact resolution --- */

}


/* ===========================================================
   MANAGER CUSTOM SCREEN B — 1300x649
   Target: Specific manager workstation display
=========================================================== */
@media screen and (width: 1300px) and (height: 649px) {

  /* --- Layout overrides for this exact resolution --- */

}


/* ===========================================================
   MEDIUM DESKTOP — 1366px to 1599px
   Target: Standard office monitors and mid-range laptops
=========================================================== */
@media screen and (min-width: 1366px) and (max-width: 1599px) {

  /* --- Layout & Grid --- */

  /* --- Sidebar --- */

  /* --- Content width --- */

  /* Migrated from old responsive.css */
  .success-section {
    padding: 3% 5%;
    height: 100vh;
  }

  .nav-sidebar .nav-item {
    font-size: 1.5rem;
  }

  .content-area .card-info {
    padding: 0.7rem 1.5rem;
  }

  .hdr-info .logo {
    width: 90px;
  }

  #menuWrapper {
    height: 20vh;
  }

  .nav-sidebar .nav-item {
    padding: 1.5rem 0 1.5rem 2rem;
  }

  .content-area {
    height: 450px;
  }

  .nav-sidebar {
    max-width: 300px;
  }
}


/* ===========================================================
   LARGE DESKTOP — 1600px to 1919px
   Target: Large monitors, high-res displays
=========================================================== */
@media screen and (min-width: 1600px) and (max-width: 1919px) {

  /* --- Layout & Grid --- */

  /* --- Content width --- */

  /* --- Typography scale --- */

  /* Migrated from old responsive.css */
  .main-link {
    font-size: clamp(0.6rem, 2.4vw, 1.3rem);
  }

  .main-hdr .nav-item.active .main-link,
  .main-link:hover {
    color: #fff;
    font-size: clamp(0.8rem, 3.7vw, 2.55rem);
  }

  .overlay-logo {
    width: 80px;
  }

  .card-content {
    padding-right: 30px;
  }
}


/* ===========================================================
   EXTRA LARGE / WIDESCREEN — 1920px and above
   Target: 4K, ultra-wide, TV screens
=========================================================== */
@media screen and (min-width: 1920px) {

  /* --- Layout & Grid --- */

  /* --- Max content width — prevent over-stretching --- */

  /* --- Typography scale --- */

}


/* ===========================================================
   PRINT STYLES
   Target: Printed pages, PDF export
=========================================================== */
@media print {

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  nav,
  .sidebar,
  .no-print,
  [class*="nav"],
  [class*="menu"],
  [class*="sidebar"] {
    display: none !important;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  table {
    page-break-inside: avoid;
  }

  a::after {
    content: " ("attr(href) ")";
    font-size: 10pt;
    color: #555;
  }

}


/* ===========================================================
   DARK MODE COMPATIBILITY
   Ensure responsive rules do not conflict with dark mode
=========================================================== */
@media (prefers-color-scheme: dark) {

  /* Add dark-mode-specific responsive overrides here if needed */
  /* Do NOT duplicate dark mode base styles — only responsive corrections */

}


/* ===========================================================
   REDUCED MOTION SUPPORT
   Accessibility: respect user's motion preferences
=========================================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

}

/* ===========================================================
   PAGE: index.html — TARGETED RESPONSIVE FIX
   Scope: index.html components
   Requested: 2026-05-13
=========================================================== */

/* --- Migrated Styles --- */




/* ============================================================
           nmet RESPONSIVE ADAPTATIONS 
           ============================================================ */
@media (min-width: 992px) {
  .nmet-timeline-item:nth-child(odd) .nmet-tl-card {
    text-align: right;
  }

  .nmet-timeline-item:nth-child(even) .nmet-tl-card {
    text-align: left;
  }
}

@media (max-width: 991px) {
  .nmet-legacy-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nmet-legacy-content,
  .nmet-legacy-visual {
    order: 0;
  }

  .nmet-legacy-section {
    padding: 78px 0 86px;
  }

  .nmet-inst-grid,
  .nmet-founders-grid,
  .nmet-society-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  /* Timeline collapses to left-aligned */
  .nmet-timeline-track {
    padding-left: 30px;
  }

  .nmet-timeline-line {
    left: 14px;
    transform: none;
  }

  .nmet-timeline-line::before,
  .nmet-timeline-line::after {
    left: 14px;
    transform: translateX(-50%);
  }

  .nmet-timeline-item {
    flex-direction: row !important;
    padding: 0 0 0 44px !important;
  }

  .nmet-tl-dot {
    left: 4px !important;
    top: 14px;
    transform: none !important;
    width: 18px;
    height: 18px;
  }

  .nmet-timeline-item:hover .nmet-tl-dot {
    transform: scale(1.3) !important;
  }

  .nmet-tl-card {
    text-align: left !important;
  }

  .nmet-timeline-section {
    padding: 70px 0 80px;
  }

  .nmet-institutions-section {
    padding: 70px 0 80px;
  }

  .nmet-founders-section {
    padding: 70px 0 80px;
  }

  .nmet-society-section {
    padding: 70px 0 80px;
  }

  .nmet-closing-section {
    padding: 80px 0;
  }

  .academic-intro {
    display: none;
  }
}

@media (max-width: 767px) {
  .trustee-container .image-column img {
    object-fit: none;
    object-position: 50% -15%;

  }

  .image-column {
    max-height: 450px;
    min-height: 450px;
  }

  .trustee-quote-mark {
    top: -18px;
    left: 0px;
  }

  .trustee-quote-intro p {
    padding-left: 10px;
  }

  .trustee-container .desc-content {
    padding-right: 0;
  }

  .nmet-legacy-grid {
    gap: 22px;
  }

  .nmet-legacy-section {
    padding: 58px 0 66px;
  }

  .nmet-legacy-shell {
    padding: 0 16px;
  }

  .nmet-inst-grid,
  .nmet-founders-grid,
  .nmet-society-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nmet-legacy-story,
  .nmet-legacy-metrics {
    grid-template-columns: 1fr;
  }

  .nmet-legacy-panel-points {
    grid-template-columns: 1fr;
  }

  .nmet-metric-chip {
    padding: 16px 16px 14px;
    min-width: 0;
  }

  .nmet-legacy-content {
    padding: 30px 22px 26px;
    border-radius: 26px;
  }

  .nmet-visual-frame {
    padding: 30px 22px 26px;
    border-radius: 26px;
  }

  .nmet-legacy-content .section-title,
  .nmet-legacy-panel-top h3 {
    max-width: none;
  }

  .nmet-legacy-story-card,
  .nmet-legacy-point {
    border-radius: 20px;
  }

  .nmet-inst-card {
    padding: 30px 22px 32px;
  }

  .nmet-inst-card h3 {
    font-size: 1.15rem;
  }

  .nmet-founder-card {
    padding: 34px 22px 32px;
  }

  .nmet-society-card {
    padding: 26px 20px;
  }

  .nmet-tl-card {
    padding: 20px 22px;
  }

  .nmet-tl-year {
    font-size: 1rem;
  }

  .nmet-tl-card h3 {
    font-size: 1.1rem;
  }

  .nmet-closing-content h2 {
    font-size: 1.5rem;
  }

  .nmet-closing-content p {
    font-size: 0.95rem;
  }

  .nmet-closing-section {
    padding: 70px 0;
  }

  .members-container .container {
    padding: 0;
  }

  .members-container {
    padding: 40px 20px;
  }

  .members-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 480px) {

  .nmet-legacy-content,
  .nmet-visual-frame {
    padding: 24px 18px 22px;
  }

  .nmet-legacy-section {
    padding: 48px 0 56px;
  }

  .nmet-legacy-content::after,
  .nmet-visual-frame::before {
    inset: 10px;
    border-radius: 18px;
  }

  .nmet-legacy-panel-label {
    padding: 8px 12px;
    gap: 8px;
  }

  .nmet-metric-value {
    font-size: 2rem;
  }

  .nmet-timeline-section {
    padding: 56px 0 64px;
  }

  .nmet-institutions-section {
    padding: 56px 0 64px;
  }

  .nmet-founders-section {
    padding: 56px 0 64px;
  }

  .nmet-society-section {
    padding: 56px 0 64px;
  }

  .nmet-closing-section {
    padding: 60px 0;
  }
}

/* Standardized non-banner section headings */
.section-title .title-left,
.scroll-split-title .title-left {
  font-family: var(--montserrat) !important;
  font-size: 3rem !important;
  font-weight: 500 !important;
  font-style: normal !important;
  line-height: 1.08;
}

.section-title .title-right,
.scroll-split-title .title-right {
  font-family: var(--eb-garamond) !important;
  font-size: 3rem !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: #38a6dd !important;
  line-height: 1.08;
}

@media (max-width: 767px) {

  .section-title .title-left,
  .section-title .title-right,
  .scroll-split-title .title-left,
  .scroll-split-title .title-right {
    font-size: 2.25rem !important;
  }
}

@media (max-width:767px) {
  .pillar-card:nth-child(even) {
    display: unset;
  }

  .pillar-card:nth-child(even) .card-number {
    position: absolute;
    right: 1rem;
  }

  .pillar-card:nth-child(even) .icon-badge {
    align-self: auto;
    margin-bottom: 0.85rem;
  }

  .ob-btn-group {
    gap: 0;
    justify-content: center;
  }
}

@media (max-width: 1199px) {
  #educationTab {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
  }

  #educationTab::-webkit-scrollbar {
    display: none;
  }

  #educationTab .nav-item {
    flex: 0 0 auto;
  }
}





/* @media (max-width:1199px) {
  .sas-footer > .container{
    display: flex;
  }
} */