    :root {
      --navy: #09213d;
      --navy-soft: #123254;
      --gold: #f4c433;
      --gold-soft: #fff6d8;
      --text: #050505;
      --muted: #26313f;
      --line: #e3e8ef;
      --surface: #f7f9fc;
      --white: #ffffff;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: "Poppins", Arial, Helvetica, sans-serif;
      font-size: 17px;
      line-height: 1.68;
      background: #ffffff;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      color: var(--white);
      background: linear-gradient(180deg, #081f3a 0%, var(--navy) 100%);
    }

    .identity {
      display: grid;
      grid-template-columns: 180px minmax(0, 1fr) 180px;
      gap: 22px;
      align-items: center;
      width: 100%;
      min-height: 150px;
      padding: 16px 32px 14px;
      margin: 0;
      text-align: center;
    }

    .identity::after {
      content: "";
    }

    .identity-logo {
      width: 142px;
      max-width: 100%;
      margin-inline: auto;
    }

    .identity-content {
      min-width: 0;
    }

    .identity-title {
      margin: 0;
      color: #f6c64a;
      font-family: "Poppins", Arial, Helvetica, sans-serif;
      font-size: 2.45rem;
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: 0.015em;
      text-wrap: balance;
      text-transform: uppercase;
      text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
    }

    .identity-subtitle {
      margin: 7px 0 0;
      color: #e8edf7;
      font-family: "Poppins", Arial, sans-serif;
      font-size: 1.08rem;
      font-weight: 500;
      line-height: 1.3;
      text-wrap: balance;
    }

    .identity-address {
      margin: 4px 0 0;
      color: #e8edf7;
      font-family: "Poppins", Arial, sans-serif;
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.3;
      text-wrap: balance;
    }

    .identity-contact {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      margin-top: 7px;
      color: #ffffff;
      font-family: "Poppins", Arial, sans-serif;
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.22;
    }

    .identity-contact i {
      color: #f370a8;
      margin-right: 8px;
    }

    .main-nav {
      background: var(--navy);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

    .navbar {
      width: 100%;
      max-width: none;
      min-height: 74px;
      padding: 0 24px;
      margin: 0 auto;
    }

    .navbar-toggler {
      border-color: rgba(255, 255, 255, 0.45);
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }

    .navbar-nav {
      gap: 12px;
      justify-content: center;
      width: 100%;
      margin-inline: auto;
    }

    .nav-link {
      color: #ffffff;
      font-family: "Poppins", Arial, Helvetica, sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link:focus {
      color: var(--gold);
    }

    /* Keep Program Offered aligned with the other top-level navbar links. */
    .navbar-nav>.nav-dropdown>.nav-link[href$="#programs"] {
      font-size: 0.88rem;
      font-weight: 500;
    }

    .nav-dropdown {
      position: relative;
    }

    /* Keep Student Corner immediately after the third navbar item (Program Offered). */
    .navbar-nav>li:nth-child(-n+3) {
      order: 0;
    }

    .navbar-nav>#student-corner {
      order: 1;
    }

    .navbar-nav>li:nth-child(n+4):not(#student-corner) {
      order: 2;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 100;
      display: grid;
      min-width: 250px;
      padding: 0;
      margin: 0;
      list-style: none;
      visibility: hidden;
      background: var(--navy);
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
    }

    .nav-dropdown-menu a {
      display: block;
      padding: 16px 14px;
      color: #ffffff;
      font-size: 0.88rem;
      font-weight: 500;
      white-space: nowrap;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:focus {
      color: var(--gold);
      background: rgba(255, 255, 255, 0.06);
    }

    .student-corner-menu {
      min-width: 270px;
    }

    #student-corner>.nav-dropdown-menu,
    #alummi>.nav-dropdown-menu {
      right: 0;
      left: auto;
    }

    .student-corner-menu .nav-submenu-menu {
      right: auto;
      left: 100%;
      transform: translateX(8px);
    }

    /* Open Student Corner flyouts to the right, where the navbar has more space. */
    .student-corner-menu .nav-submenu>.nav-submenu-menu {
      right: auto;
      left: 100%;
      transform: translateX(8px);
    }

    .student-corner-menu .nav-submenu:hover>.nav-submenu-menu,
    .student-corner-menu .nav-submenu:focus-within>.nav-submenu-menu {
      transform: translateX(0);
    }

    .nav-submenu {
      position: relative;
    }

    .nav-submenu>a {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
    }

    .nav-submenu-menu {
      position: absolute;
      top: 0;
      left: 100%;
      z-index: 101;
      display: grid;
      min-width: 250px;
      padding: 0;
      margin: 0;
      list-style: none;
      visibility: hidden;
      background: var(--navy);
      opacity: 0;
      transform: translateX(8px);
      transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    }

    .nav-submenu:hover>.nav-submenu-menu,
    .nav-submenu:focus-within>.nav-submenu-menu {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }

    .hero-carousel {
      background: var(--navy);
    }

    .hero-strip {
      display: block;
      width: 100%;
      height: clamp(320px, 43vw, 620px);
      object-fit: cover;
      object-position: center top;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
      width: 7%;
    }

    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: rgba(9, 33, 61, 0.72);
      background-size: 52%;
    }

    .hero-carousel .carousel-indicators {
      margin-bottom: 18px;
    }

    .hero-carousel .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border: 0;
      border-radius: 50%;
      background-color: #ffffff;
      opacity: 0.72;
    }

    .hero-carousel .carousel-indicators .active {
      background-color: var(--gold);
      opacity: 1;
    }

    .announcement-strip {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      overflow: hidden;
      color: #ffffff;
      background: var(--gold);
    }

    .announcement-label {
      position: relative;
      display: inline-flex;
      gap: 10px;
      align-items: center;
      padding: 16px 28px;
      color: #ffffff;
      font-weight: 700;
      background: var(--navy);
    }

    .announcement-label::after {
      position: absolute;
      top: 0;
      right: -22px;
      width: 44px;
      height: 100%;
      content: "";
      background: var(--navy);
      clip-path: polygon(0 0, 100% 50%, 0 100%);
    }

    .announcement-marquee {
      min-width: 0;
      overflow: hidden;
    }

    .announcement-track {
      display: flex;
      width: max-content;
      color: #101827;
      font-size: 0.95rem;
      font-weight: 500;
      white-space: nowrap;
      animation: noticeBoardMarquee 30s linear infinite;
    }

    .announcement-marquee:hover .announcement-track,
    .announcement-marquee:focus-within .announcement-track {
      animation-play-state: paused;
    }

    .announcement-group {
      display: flex;
      gap: 28px;
      align-items: center;
      padding: 14px 0 14px 48px;
    }

    .announcement-group::after {
      padding-left: 28px;
      color: rgba(16, 24, 39, 0.45);
      content: "||";
    }

    .announcement-group span:not(:last-child)::after {
      padding-left: 28px;
      color: rgba(16, 24, 39, 0.45);
      content: "||";
    }

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

    @media (prefers-reduced-motion: reduce) {
      .announcement-track {
        animation: none;
      }

      .announcement-marquee {
        overflow-x: auto;
      }

      .announcement-group[aria-hidden="true"] {
        display: none;
      }
    }

    .quick-info-section {
      padding: 44px 0 18px;
      background: #f3f6f9;
    }

    .quick-info-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }

    .quick-info-card {
      display: grid;
      grid-template-columns: 78px minmax(0, 1fr);
      gap: 16px;
      align-items: center;
      min-height: 118px;
      padding: 20px 22px;
      border: 1px solid rgba(9, 33, 61, 0.18);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 12px 26px rgba(9, 33, 61, 0.07);
    }

    .quick-info-card i {
      display: inline-grid;
      width: 58px;
      height: 58px;
      place-items: center;
      color: var(--navy);
      font-size: 1.45rem;
      border-radius: 8px;
      background: var(--gold-soft);
    }

    .quick-info-logo {
      display: block;
      width: 78px;
      height: 78px;
      padding: 8px;
      object-fit: contain;
      border-radius: 8px;
      background: var(--gold-soft);
    }

    .quick-info-card h2 {
      margin: 0 0 5px;
      color: #111827;
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.25;
    }

    .quick-info-card p {
      margin: 0;
      color: #4b5563;
      font-size: 0.9rem;
      line-height: 1.55;
    }

    .content-wrap {
      max-width: 1320px;
      padding: 0 28px;
      margin: 0 auto;
    }

    .about-section {
      padding: 72px 0 78px;
      background: linear-gradient(180deg, #ffffff 0%, #ffffff 58%, var(--surface) 100%);
    }

    .section-title-block {
      max-width: 860px;
      margin: 0 0 36px;
    }

    .section-title-block.center {
      margin-inline: auto;
      text-align: center;
    }

    .section-kicker {
      display: inline-block;
      margin-bottom: 10px;
      color: #9d7417;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .section-heading {
      display: flex;
      gap: 12px;
      align-items: center;
      margin: 0;
      color: #101827;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 2.35rem;
      font-weight: 700;
      line-height: 1.15;
    }

    .section-heading.center {
      justify-content: center;
      text-align: center;
    }

    .heading-icon {
      display: inline-grid;
      width: 46px;
      height: 46px;
      flex: 0 0 auto;
      place-items: center;
      color: var(--navy);
      font-size: 1.35rem;
      border: 1px solid rgba(244, 196, 51, 0.48);
      border-radius: 50%;
      background: var(--gold-soft);
    }

    .section-lead {
      margin: 14px 0 0;
      color: #4a5565;
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .about-layout {
      display: grid;
      grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
      gap: 48px;
      align-items: start;
    }

    .about-photo {
      position: sticky;
      top: 24px;
      overflow: hidden;
      min-height: 520px;
      margin: 0;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 18px 42px rgba(9, 33, 61, 0.12);
    }

    .about-photo img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      object-position: center top;
    }

    .about-copy {
      color: #1f2937;
      font-size: 1rem;
      line-height: 1.85;
    }

    .about-copy p {
      margin: 0 0 18px;
    }

    .about-copy strong {
      font-weight: 800;
    }

    .read-more-btn {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
      margin: 4px 0 24px;
      padding: 12px 22px;
      color: var(--navy);
      font-size: 0.95rem;
      font-weight: 800;
      border-radius: 6px;
      background: var(--gold);
      box-shadow: 0 12px 24px rgba(9, 33, 61, 0.12);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .read-more-btn:hover,
    .read-more-btn:focus {
      color: var(--navy);
      transform: translateY(-2px);
      box-shadow: 0 16px 28px rgba(9, 33, 61, 0.18);
    }

    .programs-section {
      padding: 76px 0 118px;
      background: #ffffff;
    }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      align-items: start;
      margin: 42px auto 0;
    }

    .program-card {
      display: grid;
      grid-template-rows: auto 1fr;
      overflow: hidden;
      min-height: 100%;
      color: inherit;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 18px 42px rgba(9, 33, 61, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .program-card:hover {
      transform: translateY(-4px);
      border-color: rgba(244, 196, 51, 0.8);
      box-shadow: 0 22px 48px rgba(9, 33, 61, 0.16);
    }

    .program-media {
      display: block;
      height: 191px;
      overflow: hidden;
      background: #f8fafc;
    }

    .program-media img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center bottom;
      transition: transform 0.24s ease;
    }

    .program-card:hover .program-media img {
      transform: scale(1.035);
    }

    .program-body {
      display: grid;
      gap: 10px;
      padding: 22px 24px 24px;
    }

    .program-label {
      color: #9d7417;
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .program-name {
      color: #0b213d;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.72rem;
      font-weight: 700;
      line-height: 1.1;
    }

    .program-copy {
      color: #4b5563;
      font-size: 0.94rem;
      line-height: 1.65;
    }

    .program-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 4px;
    }

    .program-meta span {
      display: inline-flex;
      padding: 7px 10px;
      color: #1f2937;
      font-size: 0.78rem;
      font-weight: 700;
      border-radius: 999px;
      background: #f3f6f9;
    }

    .testimonials-section {
      color: #ffffff;
      padding: 82px 0 104px;
      background: var(--navy);
    }

    .testimonials-section .section-heading,
    .testimonials-section .section-lead {
      color: #ffffff;
    }

    .testimonials-section .section-kicker {
      color: var(--gold);
    }

    .testimonials-carousel {
      max-width: 980px;
      margin: 42px auto 0;
      padding: 0 76px 54px;
    }

    .testimonial-card {
      display: grid;
      grid-template-columns: 270px minmax(0, 1fr);
      gap: 34px;
      align-items: center;
      min-height: 352px;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 22px 52px rgba(9, 33, 61, 0.12);
    }

    .testimonial-photo {
      overflow: hidden;
      aspect-ratio: 1;
      border: 8px solid var(--gold-soft);
      border-radius: 8px;
      background: #eef2f7;
    }

    .testimonial-photo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .testimonial-photo-left img {
      object-position: 22% center;
    }

    .testimonial-photo-center img {
      object-position: 34% center;
    }

    .testimonial-photo-right img {
      object-position: 78% center;
    }

    .testimonial-content {
      display: grid;
      gap: 18px;
    }

    .testimonial-stars {
      display: flex;
      gap: 6px;
      color: var(--gold);
      font-size: 1.2rem;
    }

    .testimonial-content p {
      margin: 0;
      color: #1f2937;
      font-size: 1.05rem;
      line-height: 1.82;
    }

    .testimonial-author h3 {
      margin: 0 0 5px;
      color: var(--navy);
      font-size: 1.24rem;
      font-weight: 800;
    }

    .testimonial-author span {
      color: var(--maroon);
      font-size: 0.94rem;
      font-weight: 800;
    }

    .testimonials-carousel .carousel-control-prev,
    .testimonials-carousel .carousel-control-next {
      width: 52px;
      opacity: 1;
    }

    .testimonials-carousel .carousel-control-prev-icon,
    .testimonials-carousel .carousel-control-next-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.18);
      background-size: 48%;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    }

    .testimonials-carousel .carousel-indicators {
      margin-bottom: 0;
    }

    .testimonials-carousel .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border: 0;
      border-radius: 50%;
      background-color: #ffffff;
      opacity: 0.35;
    }

    .testimonials-carousel .carousel-indicators .active {
      background-color: var(--gold);
      opacity: 1;
    }

    .home-map-section {
      width: 100%;
      height: 430px;
      overflow: hidden;
      background: #eef2f7;
    }

    .home-map-section iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .glance-section {
      padding: 86px 0 96px;
      color: #ffffff;
      background: var(--navy);
    }

    .glance-section .section-heading,
    .glance-section .section-lead {
      color: #ffffff;
    }

    .glance-section .section-kicker {
      color: var(--gold);
    }

    .glance-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 34px;
      margin-top: 46px;
    }

    .glance-item {
      display: grid;
      gap: 12px;
      justify-items: center;
      text-align: center;
    }

    .glance-item i {
      display: inline-grid;
      width: 78px;
      height: 78px;
      place-items: center;
      color: var(--navy);
      font-size: 2rem;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.18);
    }

    .glance-item strong {
      color: #ffffff;
      font-size: 2.05rem;
      font-weight: 800;
      line-height: 1;
    }

    .glance-item span {
      color: #e8edf7;
      font-size: 0.98rem;
      font-weight: 500;
    }

    .page-banner {
      color: #ffffff;
      background:
        linear-gradient(90deg, rgba(9, 33, 61, 0.94), rgba(9, 33, 61, 0.74)),
        url("images/hero-2.png") center 46%/cover;
    }

    .page-banner-inner {
      max-width: 1320px;
      padding: 86px 28px;
      margin: 0 auto;
    }

    .page-banner h2 {
      margin: 0;
      color: var(--gold);
      font-family: "Poppins", Arial, Helvetica, sans-serif;
      font-size: clamp(2.3rem, 4vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      text-transform: uppercase;
      text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
    }

    .page-banner p {
      max-width: 820px;
      margin: 18px 0 0;
      color: #edf3ff;
      font-size: 1.05rem;
      line-height: 1.72;
    }

    .page-content {
      max-width: 1320px;
      padding: 76px 28px 98px;
      margin: 0 auto;
      background: #ffffff;
    }

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

    .mv-card {
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 18px 42px rgba(9, 33, 61, 0.1);
    }

    .mv-card h3 {
      display: flex;
      gap: 14px;
      align-items: center;
      margin: 0 0 22px;
      color: var(--navy);
      font-family: "Poppins", Arial, Helvetica, sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1.2;
    }

    .mv-icon {
      display: inline-grid;
      width: 58px;
      height: 58px;
      flex: 0 0 auto;
      place-items: center;
      color: var(--navy);
      font-size: 1.55rem;
      border-radius: 50%;
      background: var(--gold);
    }

    .mv-card p {
      margin: 0 0 18px;
      color: #1f2937;
      line-height: 1.82;
    }

    .mv-card p:last-child {
      margin-bottom: 0;
    }

    .vision-list {
      display: grid;
      gap: 15px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .vision-list li {
      display: grid;
      grid-template-columns: 30px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      color: #1f2937;
      line-height: 1.72;
    }

    .vision-list i {
      color: var(--gold);
      font-size: 1.18rem;
      line-height: 1.65;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
      margin-top: 10px;
    }

    .value-card {
      min-height: 128px;
      padding: 24px 16px;
      color: #ffffff;
      font-weight: 800;
      text-align: center;
      border-radius: 8px;
      background: var(--navy);
      box-shadow: 0 14px 30px rgba(9, 33, 61, 0.16);
    }

    .value-card i {
      display: block;
      margin-bottom: 12px;
      color: var(--gold);
      font-size: 1.72rem;
    }

    .message-card {
      display: grid;
      grid-template-columns: 260px minmax(0, 1fr);
      gap: 34px;
      align-items: start;
    }

    .message-profile {
      display: grid;
      gap: 16px;
    }

    .message-portrait {
      display: grid;
      min-height: 260px;
      place-items: center;
      margin: 0;
      color: var(--navy);
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--gold-soft);
    }

    .message-portrait img {
      width: 100%;
      height: 260px;
      display: block;
      object-fit: cover;
      object-position: center 24%;
      border-radius: 8px;
    }

    .message-portrait i {
      font-size: 5rem;
    }

    .message-profile-text {
      padding: 18px 16px;
      text-align: center;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
    }

    .message-profile-text h3 {
      display: block;
      margin: 0 0 6px;
      color: var(--navy);
      font-size: 1.25rem;
      font-weight: 800;
      line-height: 1.25;
    }

    .message-profile-text p {
      margin: 0;
      color: var(--maroon);
      font-weight: 700;
      line-height: 1.35;
    }

    .message-body p {
      margin: 0 0 18px;
      color: #1f2937;
      line-height: 1.82;
    }

    .document-card {
      display: grid;
      grid-template-columns: 86px minmax(0, 1fr) auto;
      gap: 22px;
      align-items: center;
    }

    .document-icon {
      display: inline-grid;
      width: 86px;
      height: 86px;
      place-items: center;
      color: var(--navy);
      font-size: 2.2rem;
      border-radius: 8px;
      background: var(--gold-soft);
    }

    .document-card p {
      margin: 0;
      color: #4b5563;
      line-height: 1.72;
    }

    .document-action {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      color: var(--navy);
      font-weight: 800;
      white-space: nowrap;
      border-radius: 6px;
      background: var(--gold);
    }

    .document-action:hover,
    .document-action:focus {
      color: var(--navy);
    }

    .ncte-content .mv-grid {
      gap: 24px;
    }

    .ncte-intro {
      background: linear-gradient(180deg, #ffffff, #f8fbff);
    }

    .ncte-intro-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
    }

    .ncte-intro-brand img {
      width: min(150px, 100%);
      height: auto;
      object-fit: contain;
    }

    .ncte-intro-brand h3,
    .ncte-intro-brand p {
      margin-right: auto;
      margin-left: auto;
    }

    .ncte-intro-brand h3 {
      width: 100%;
      justify-content: center;
      text-align: center;
    }

    .ncte-section>p {
      margin-bottom: 24px;
    }

    .ncte-link-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .ncte-link-grid.three-column {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ncte-link-grid a,
    .ncte-link-grid span {
      display: flex;
      min-height: 82px;
      gap: 8px;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
      color: var(--navy);
      font-weight: 700;
      line-height: 1.45;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--gold-soft);
    }

    .ncte-link-grid span {
      color: #4b5563;
      background: #ffffff;
    }

    .ncte-link-grid a:hover,
    .ncte-link-grid a:focus {
      color: var(--navy);
      background: #ffe7a6;
    }

    .gallery-content {
      background: #ffffff;
    }

    .gallery-grid {
      display: grid;
      grid-auto-flow: dense;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .gallery-item {
      position: relative;
      display: block;
      overflow: hidden;
      min-height: 260px;
      color: #ffffff;
      border-radius: 8px;
      background: #0b213d;
      box-shadow: 0 16px 36px rgba(9, 33, 61, 0.14);
    }

    .gallery-item.wide {
      grid-column: span 2;
    }

    .gallery-item.tall {
      grid-row: span 2;
      min-height: 538px;
    }

    .gallery-item img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: inherit;
      object-fit: cover;
      transition: transform 0.28s ease, opacity 0.28s ease;
    }

    .gallery-item::after {
      position: absolute;
      inset: 0;
      content: "";
      background: linear-gradient(180deg, transparent 42%, rgba(9, 33, 61, 0.84));
      opacity: 0.92;
    }

    .gallery-item span {
      position: absolute;
      right: 18px;
      bottom: 16px;
      left: 18px;
      z-index: 1;
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: space-between;
      color: #ffffff;
      font-weight: 800;
      line-height: 1.35;
    }

    .gallery-item:hover img,
    .gallery-item:focus img {
      opacity: 0.9;
      transform: scale(1.045);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.25fr;
      gap: 34px;
      align-items: start;
    }

    .contact-info-panel {
      display: grid;
      gap: 18px;
    }

    .contact-info-card,
    .contact-form-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 18px 42px rgba(9, 33, 61, 0.1);
    }

    .contact-info-card {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 16px;
      padding: 22px;
    }

    .contact-info-card>i {
      display: inline-grid;
      width: 58px;
      height: 58px;
      place-items: center;
      color: var(--navy);
      font-size: 1.45rem;
      border-radius: 8px;
      background: var(--gold-soft);
    }

    .contact-info-card h3 {
      margin: 0 0 6px;
      color: var(--navy);
      font-size: 1.08rem;
      font-weight: 800;
    }

    .contact-info-card p {
      margin: 0;
      color: #4b5563;
      line-height: 1.65;
    }

    .contact-map {
      overflow: hidden;
      min-height: 280px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #eef2f7;
      box-shadow: 0 18px 42px rgba(9, 33, 61, 0.1);
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
      min-height: 280px;
      display: block;
      border: 0;
    }

    .contact-form-card {
      padding: 34px;
    }

    .contact-form-card h3 {
      display: flex;
      gap: 14px;
      align-items: center;
      margin: 0 0 24px;
      color: var(--navy);
      font-size: 1.8rem;
      font-weight: 800;
    }

    .contact-form {
      display: grid;
      gap: 18px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .contact-form label {
      display: grid;
      gap: 8px;
      margin: 0;
      color: var(--navy);
      font-weight: 800;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      padding: 13px 14px;
      color: #1f2937;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #ffffff;
      outline: 0;
    }

    .contact-form textarea {
      resize: vertical;
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(244, 196, 51, 0.22);
    }

    .contact-form button {
      display: inline-flex;
      width: fit-content;
      gap: 10px;
      align-items: center;
      justify-content: center;
      padding: 13px 22px;
      color: var(--navy);
      font-weight: 800;
      border: 0;
      border-radius: 6px;
      background: var(--gold);
    }

    .important-links-section {
      overflow: hidden;
      padding: 68px 0 76px;
      background:
        radial-gradient(circle at 8% 18%, rgba(244, 196, 51, 0.18), transparent 26%),
        linear-gradient(135deg, #f8fafc 0%, #eef3f8 100%);
      border-top: 1px solid rgba(9, 33, 61, 0.08);
    }

    .important-links-section .section-title-block {
      margin-bottom: 32px;
    }

    .important-links-slider {
      position: relative;
      overflow: hidden;
      padding: 10px 0 18px;
      -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
      mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    }

    .important-links-track {
      display: flex;
      width: max-content;
      animation: importantLinksScroll 30s linear infinite;
    }

    .important-links-slider:hover .important-links-track,
    .important-links-slider:focus-within .important-links-track {
      animation-play-state: paused;
    }

    .important-links-group {
      display: flex;
      gap: 22px;
      padding-right: 22px;
    }

    .important-link-card {
      display: grid;
      width: 210px;
      min-height: 230px;
      padding: 24px 18px 20px;
      place-items: center;
      align-content: center;
      text-align: center;
      border: 1px solid rgba(9, 33, 61, 0.13);
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 14px 32px rgba(9, 33, 61, 0.09);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .important-link-card:hover,
    .important-link-card:focus-visible {
      color: inherit;
      border-color: rgba(244, 196, 51, 0.9);
      outline: none;
      transform: translateY(-7px);
      box-shadow: 0 20px 38px rgba(9, 33, 61, 0.16);
    }

    .important-link-visual {
      display: grid;
      width: 92px;
      height: 92px;
      margin-bottom: 16px;
      place-items: center;
      overflow: hidden;
      color: var(--navy);
      font-size: 2.35rem;
      border: 1px solid rgba(9, 33, 61, 0.1);
      border-radius: 50%;
      background: var(--gold-soft);
    }

    .important-link-visual img {
      width: 100%;
      height: 100%;
      padding: 12px;
      object-fit: contain;
    }

    .important-link-visual.icon-samaj {
      color: #9b2c2c;
      background: #fff0f0;
    }

    .important-link-visual.icon-internship {
      color: #126246;
      background: #ecfbf5;
    }

    .important-link-visual.icon-ptet {
      color: #4c3a91;
      background: #f2efff;
    }

    .important-link-name {
      min-height: 48px;
      color: var(--navy);
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .important-link-action {
      margin-top: 9px;
      color: #9d7417;
      font-size: 0.78rem;
      font-weight: 700;
    }

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

    @media (prefers-reduced-motion: reduce) {
      .important-links-track {
        animation: none;
      }

      .important-links-slider {
        overflow-x: auto;
      }

      .important-links-group[aria-hidden="true"] {
        display: none;
      }
    }

    .site-footer {
      color: #ffffff;
      background: var(--navy);
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.35fr 0.8fr 0.9fr 1.35fr;
      gap: 58px;
      max-width: 1320px;
      padding: 72px 28px 58px;
      margin: 0 auto;
    }

    .footer-logo {
      width: 190px;
      max-width: 100%;
      margin-bottom: 20px;
    }

    .footer-tagline {
      margin: 0 0 14px;
      color: #f8fafc;
      font-size: 1.12rem;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .footer-about {
      max-width: 390px;
      margin: 0 0 24px;
      color: #dce6f3;
      font-size: 0.96rem;
      line-height: 1.72;
    }

    .footer-title {
      position: relative;
      margin: 0 0 30px;
      font-family: "Poppins", Arial, Helvetica, sans-serif;
      font-size: 1.28rem;
      font-weight: 700;
    }

    .footer-title::after {
      position: absolute;
      left: 0;
      bottom: -12px;
      width: 62px;
      height: 3px;
      content: "";
      background: linear-gradient(90deg, var(--gold) 0 48%, #ffffff 48% 100%);
    }

    .footer-list {
      display: grid;
      gap: 13px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .footer-list a {
      display: inline-flex;
      gap: 11px;
      align-items: center;
      color: #e8edf7;
      font-size: 0.96rem;
      line-height: 1.5;
    }

    .footer-list i {
      color: var(--gold);
      font-size: 0.9rem;
    }

    .nav-dropdown-menu .bi-box-arrow-up-right,
    .footer-list .bi-box-arrow-up-right {
      margin-left: 6px;
      color: var(--gold);
      font-size: 0.82rem;
    }

    .footer-list a:hover {
      color: var(--gold);
    }

    .footer-contact-list {
      display: grid;
      gap: 15px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .footer-contact-list li {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      color: #e8edf7;
      font-size: 0.96rem;
      line-height: 1.55;
    }

    .footer-contact-list i {
      display: inline-grid;
      width: 44px;
      height: 44px;
      place-items: center;
      color: var(--navy);
      border-radius: 8px;
      background: var(--gold);
    }

    .footer-gallery {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 34px;
    }

    .footer-gallery a {
      display: block;
      overflow: hidden;
      aspect-ratio: 1;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.08);
    }

    .footer-gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.22s ease;
    }

    .footer-gallery a:hover img {
      transform: scale(1.07);
    }

    .newsletter-title {
      margin-top: 4px;
    }

    .newsletter-text {
      margin: 0 0 14px;
      color: #dce6f3;
      font-size: 0.96rem;
    }

    .newsletter-form {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
    }

    .newsletter-form input {
      min-width: 0;
      height: 46px;
      padding: 0 14px;
      color: #101827;
      border: 0;
      border-radius: 5px 0 0 5px;
      outline: 0;
      background: #ffffff;
    }

    .newsletter-form button {
      height: 46px;
      padding: 0 18px;
      color: var(--navy);
      font-weight: 700;
      white-space: nowrap;
      border: 0;
      border-radius: 0 5px 5px 0;
      background: var(--gold);
    }

    .socials {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .socials a {
      display: inline-grid;
      width: 42px;
      height: 42px;
      place-items: center;
      color: var(--navy);
      font-size: 1rem;
      border-radius: 8px;
      background: #ffffff;
    }

    .footer-bottom {
      display: flex;
      gap: 24px;
      align-items: center;
      justify-content: space-between;
      max-width: 1320px;
      padding: 26px 28px;
      margin: 0 auto;
      color: #e8edf7;
      border-top: 1px solid rgba(255, 255, 255, 0.28);
    }

    .footer-bottom p {
      margin: 0;
      font-size: 0.94rem;
    }

    .floating-actions {
      position: fixed;
      right: 26px;
      bottom: 20px;
      z-index: 50;
      display: grid;
      gap: 18px;
    }

    .float-btn {
      display: inline-grid;
      width: 76px;
      height: 76px;
      place-items: center;
      color: #ffffff;
      font-size: 2rem;
      border-radius: 50%;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    }

    .float-btn.whatsapp {
      background: #22b918;
    }

    .float-btn.phone {
      background: #08008c;
    }

    @media (max-width: 1199.98px) {
      body {
        font-size: 16px;
      }

      .identity {
        grid-template-columns: 145px minmax(0, 1fr);
      }

      .identity::after {
        display: none;
      }

      .identity-logo {
        width: 128px;
      }

      .identity-title {
        font-size: 2.18rem;
      }

      .identity-subtitle {
        font-size: 1.04rem;
      }

      .identity-address {
        font-size: 1rem;
      }

      .identity-contact {
        font-size: 1.08rem;
      }

      .navbar-nav {
        gap: 8px;
      }

      .nav-link {
        font-size: 0.82rem;
      }

      .navbar-nav>.nav-dropdown>.nav-link[href$="#programs"] {
        font-size: 0.82rem;
      }

      .nav-dropdown-menu a {
        font-size: 0.82rem;
      }

      .program-grid {
        gap: 28px;
      }

      .testimonials-carousel {
        padding-right: 58px;
        padding-left: 58px;
      }

      .testimonial-card {
        grid-template-columns: 220px minmax(0, 1fr);
      }

      .quick-info-grid,
      .glance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .ncte-link-grid,
      .ncte-link-grid.three-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .contact-layout {
        grid-template-columns: 1fr;
      }

      .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 991.98px) {
      .identity {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 20px 22px 18px;
      }

      .identity-title {
        max-width: 820px;
        margin-inline: auto;
        font-size: 1.88rem;
      }

      .identity-subtitle,
      .identity-address {
        max-width: 760px;
        margin-inline: auto;
      }

      .navbar {
        min-height: auto;
        padding: 12px 20px;
      }

      .navbar-nav {
        padding: 18px 0;
      }

      .nav-link {
        font-size: 0.98rem;
      }

      .navbar-nav>.nav-dropdown>.nav-link[href$="#programs"] {
        font-size: 0.98rem;
      }

      .nav-dropdown-menu a {
        font-size: 0.98rem;
      }

      .nav-dropdown-menu {
        position: static;
        display: none;
        min-width: 100%;
        visibility: visible;
        opacity: 1;
        transform: none;
      }

      .nav-dropdown:hover .nav-dropdown-menu,
      .nav-dropdown:focus-within .nav-dropdown-menu {
        display: grid;
      }

      .nav-submenu-menu {
        position: static;
        display: none;
        min-width: 100%;
        padding-left: 16px;
        visibility: visible;
        opacity: 1;
        transform: none;
      }

      .nav-submenu:hover>.nav-submenu-menu,
      .nav-submenu:focus-within>.nav-submenu-menu {
        display: grid;
      }

      .content-wrap {
        padding: 0 22px;
      }

      .announcement-strip {
        grid-template-columns: 1fr;
      }

      .announcement-label {
        justify-content: center;
      }

      .announcement-label::after {
        display: none;
      }

      .announcement-group {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 18px;
      }

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

      .about-photo {
        position: static;
        min-height: 340px;
      }

      .about-photo img {
        min-height: 340px;
      }

      .program-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
      }

      .program-media {
        height: 240px;
      }

      .page-banner-inner,
      .page-content {
        padding-right: 22px;
        padding-left: 22px;
      }
    }

    @media (max-width: 767.98px) {
      body {
        font-size: 16px;
      }

      .important-links-section {
        padding: 52px 0 58px;
      }

      .important-link-card {
        width: 180px;
        min-height: 210px;
        padding: 20px 14px 18px;
      }

      .important-link-visual {
        width: 78px;
        height: 78px;
      }

      .identity-title {
        font-size: 1.55rem;
        line-height: 1.08;
      }

      .identity-subtitle {
        font-size: 0.98rem;
        line-height: 1.35;
      }

      .identity-address {
        font-size: 0.96rem;
        line-height: 1.35;
      }

      .identity-contact {
        gap: 8px;
        font-size: 1.02rem;
      }

      .identity-contact a {
        flex-basis: 100%;
      }

      .section-heading {
        font-size: 1.7rem;
      }

      .heading-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
      }

      .about-section {
        padding: 52px 0 56px;
      }

      .about-photo,
      .about-photo img {
        min-height: 260px;
      }

      .programs-section {
        padding: 54px 0 78px;
      }

      .testimonials-section {
        padding: 54px 0 76px;
      }

      .testimonials-carousel {
        padding: 0 0 48px;
      }

      .testimonial-card {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 24px 18px;
      }

      .testimonial-photo {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
      }

      .testimonials-carousel .carousel-control-prev,
      .testimonials-carousel .carousel-control-next {
        display: none;
      }

      .home-map-section {
        height: 330px;
      }

      .program-media {
        height: 190px;
      }

      .quick-info-section {
        padding-top: 32px;
      }

      .quick-info-grid,
      .glance-grid {
        grid-template-columns: 1fr;
      }

      .quick-info-card {
        min-height: auto;
      }

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

      .page-banner-inner {
        padding-top: 58px;
        padding-bottom: 58px;
      }

      .page-banner h2 {
        font-size: 2rem;
      }

      .page-content {
        padding-top: 52px;
        padding-bottom: 68px;
      }

      .mv-card {
        padding: 24px 18px;
      }

      .mv-card h3 {
        font-size: 1.42rem;
      }

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

      .ncte-link-grid,
      .ncte-link-grid.three-column {
        grid-template-columns: 1fr;
      }

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

      .gallery-item,
      .gallery-item.tall {
        min-height: 240px;
      }

      .gallery-item.wide,
      .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;
      }

      .contact-form-card {
        padding: 24px 18px;
      }

      .contact-form-card h3 {
        font-size: 1.42rem;
      }

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

      .message-card,
      .document-card {
        grid-template-columns: 1fr;
      }

      .document-action {
        justify-self: start;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 48px;
      }

      .footer-gallery {
        grid-template-columns: repeat(4, minmax(54px, 1fr));
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .floating-actions {
        right: 14px;
      }

      .float-btn {
        width: 58px;
        height: 58px;
        font-size: 1.55rem;
      }
    }

    @media (max-width: 420px) {
      .identity {
        padding-inline: 14px;
      }

      .identity-logo {
        width: 136px;
      }

      .identity-title {
        font-size: 1.28rem;
      }

      .identity-subtitle,
      .identity-address {
        font-size: 0.9rem;
      }

      .identity-contact {
        font-size: 0.94rem;
      }

      .newsletter-form {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .newsletter-form input,
      .newsletter-form button {
        width: 100%;
        border-radius: 5px;
      }
    }

.text-justify {  text-align: justify !important; } .text-center { text-align: center !important; } .text-right { text-align: right !important; } .text-left { text-align: left !important; }
