/* 2026 visual refresh - shared across the UOMLEOS website */
:root {
  --leo-navy: #0b0e16;
  --leo-navy-soft: #151a27;
  --leo-blue: #548ca8;
  --leo-blue-bright: #6db4d5;
  --leo-gold: #d9b35f;
  --leo-ink: #f3f6fb;
  --leo-muted: #b1bacb;
  --leo-surface: #171d2b;
  --leo-surface-raised: #1d2535;
  --leo-canvas: #0e121c;
  --leo-line: rgba(109, 180, 213, 0.17);
  --leo-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --site-nav-height: 82px;
  --motion-fast: 180ms;
  --motion-medium: 320ms;
  --motion-slow: 650ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  padding-top: var(--site-nav-height);
  color: var(--leo-muted);
  background-color: var(--leo-canvas);
  background-image:
    radial-gradient(circle at 5% 8%, rgba(84, 140, 168, 0.10), transparent 26%),
    radial-gradient(circle at 94% 40%, rgba(109, 180, 213, 0.06), transparent 22%);
  background-attachment: fixed;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--leo-ink);
  letter-spacing: -0.02em;
}

p,
li {
  color: var(--leo-muted);
}

a:hover,
a:active,
a:focus {
  color: var(--leo-blue-bright);
}

.text-muted {
  color: #909bad !important;
}

.about,
.service,
.causes,
.team,
.testimonial,
.event,
.blog,
.volunteer,
.single,
.contact,
.current-leaders-body,
.awards-2025-26 {
  background: transparent;
}

.about .about-tab {
  padding: 20px;
}

.about .about-tab .nav.nav-pills .nav-link {
  color: var(--leo-muted);
  border-color: rgba(255, 255, 255, 0.10);
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
  color: var(--leo-blue-bright);
  border-color: var(--leo-blue-bright);
}

.about .about-tab .tab-content,
.about .about-tab .tab-content .container {
  color: var(--leo-muted);
}

.service .service-item {
  height: auto;
  min-height: 185px;
  padding: 24px;
}

/* Keep every service card in the full grid the same height. */
.service .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.service .row > [class*="col-"] {
  display: flex;
  width: auto;
  max-width: none;
}

.service .service-item {
  flex: 1 1 auto;
  align-items: flex-start;
}

.service .service-icon {
  flex: 0 0 85px;
}

.service .service-text {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 991.98px) {
  .service .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .service .row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.service .service-text::before {
  background: rgba(255, 255, 255, 0.10);
}

.section-header p,
.service .service-icon i {
  color: var(--leo-blue-bright);
}

.causes .causes-item,
.team .team-text,
.event .event-item,
.blog .blog-item,
.testimonial .testimonial-item {
  border: 1px solid var(--leo-line);
  border-radius: 18px;
  background: var(--leo-surface);
  box-shadow: var(--leo-shadow);
}

/* Keep project/event cards aligned when their descriptions have different
   lengths. Images, headings and buttons now share consistent row guides. */
.event .row > [class*="col-"] {
  display: flex;
}

.event .event-item {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.event .event-item > img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.event .event-content,
.event .event-text {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.event .event-text h3 {
  min-height: 2.4em;
}

.event .event-text .btn {
  align-self: flex-start;
  margin-top: auto;
}

.testimonial .testimonial-profile {
  border-color: rgba(255, 255, 255, 0.10);
}

.dis-desc,
.mul-dis-desc,
.president_desc,
.newsletter-text {
  color: var(--leo-muted);
}

.bg {
  opacity: 0.18;
}

/* Navigation */
.navbar {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(23, 25, 35, 0.96) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  z-index: 9999;
  transition: background-color var(--motion-medium) ease, box-shadow var(--motion-medium) ease, border-color var(--motion-medium) ease;
}

.navbar.nav-sticky {
  position: fixed !important;
  top: 0 !important;
  background: rgba(23, 25, 35, 0.96) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

@media (min-width: 992px) {
  .navbar,
  .navbar.nav-sticky {
    padding: 14px 60px;
  }
}

.navbar .navbar-brand {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  margin: 0 2px;
  border-radius: 999px;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
  background: rgba(109, 180, 213, 0.18);
  transform: translateY(-1px);
}

.navbar .dropdown-menu {
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(109, 180, 213, 0.16);
  border-radius: 14px;
  background: rgba(23, 29, 43, 0.98);
  box-shadow: 0 18px 45px rgba(23, 25, 35, 0.16);
  transform-origin: top center;
}

.navbar .dropdown.show > .dropdown-menu {
  animation: dropdownEnter 220ms var(--motion-ease) both;
}

.navbar .dropdown-item {
  padding: 10px 14px;
  border-radius: 9px;
  color: var(--leo-ink);
  font-weight: 600;
  transition: 0.25s ease;
}

.navbar .dropdown-item:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--leo-blue), var(--leo-blue-bright));
  transform: translateX(3px);
}

/* Shared hero carousel */
.carousel {
  margin-bottom: 28px;
  background: var(--leo-navy);
  box-shadow: 0 18px 45px rgba(23, 25, 35, 0.14);
}

.carousel .carousel-img::after {
  background: linear-gradient(105deg, rgba(15, 18, 28, 0.76), rgba(15, 18, 28, 0.38) 55%, rgba(84, 140, 168, 0.24));
}

.carousel .carousel-text {
  max-width: 780px;
  padding: 34px 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(18, 21, 31, 0.24);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.carousel .carousel-text h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.carousel .carousel-text p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.6;
}

/* The active hero receives one composed entrance; dimensions never change. */
.motion-enabled .carousel .owl-item .carousel-img img {
  transform: scale(1.025);
  transition: transform 1.2s var(--motion-ease), filter 0.7s ease;
}

.motion-enabled.motion-ready .carousel .owl-item.active .carousel-img img {
  transform: scale(1);
}

.motion-enabled .carousel .owl-item .carousel-text {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.65s var(--motion-ease) 120ms, transform 0.65s var(--motion-ease) 120ms;
}

.motion-enabled.motion-ready .carousel .owl-item.active .carousel-text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-enabled .carousel .owl-item .carousel-text h1,
.motion-enabled .carousel .owl-item .carousel-text p {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 0.5s var(--motion-ease), transform 0.5s var(--motion-ease);
}

.motion-enabled.motion-ready .carousel .owl-item.active .carousel-text h1,
.motion-enabled.motion-ready .carousel .owl-item.active .carousel-text p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-enabled.motion-ready .carousel .owl-item.active .carousel-text h1 {
  transition-delay: 220ms;
}

.motion-enabled.motion-ready .carousel .owl-item.active .carousel-text p {
  transition-delay: 300ms;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
  width: 52px;
  height: 52px;
  border-radius: 0 14px 14px 0;
  color: #ffffff;
  background: rgba(23, 25, 35, 0.48);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.carousel .owl-nav .owl-next {
  border-radius: 14px 0 0 14px;
}

.page-internal .carousel .carousel-img img {
  height: 400px !important;
}

.page-internal .carousel .carousel-text {
  padding: 24px 34px;
}

.page-internal .carousel .carousel-text h1 {
  font-size: clamp(34px, 4vw, 48px);
}

.page-internal .carousel .carousel-text p {
  font-size: 17px;
}

/* Internal page hero */
.page-header {
  overflow: hidden;
  margin-bottom: 38px;
  border-top: 1px solid rgba(109, 180, 213, 0.10);
  border-bottom: 1px solid rgba(109, 180, 213, 0.16);
  box-shadow: inset 0 -40px 80px rgba(5, 8, 14, 0.18);
}

.page-header::before {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(115deg, rgba(109, 180, 213, 0.08), transparent 42%),
    repeating-linear-gradient(135deg, transparent 0 46px, rgba(255, 255, 255, 0.018) 46px 47px);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h2 {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 56px);
  letter-spacing: -0.04em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.page-header h2::after {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--leo-blue-bright), #ffffff);
}

.page-header a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

/* Section ribbons */
.topic_div {
  height: 82px;
  margin-top: 30px;
  border-radius: 0 82px 82px 0;
  background: linear-gradient(110deg, #3f718c, var(--leo-blue-bright));
  box-shadow: 0 14px 35px rgba(84, 140, 168, 0.24);
}

.topic {
  padding-right: 56px;
  font-family: "Quicksand", sans-serif;
  font-size: 32px;
  letter-spacing: -0.02em;
}

/* Reusable cards */
.officer_card,
.president_card,
.award-card-2025-26,
.newsletter,
.service-item,
.about-tab {
  overflow: hidden;
  border: 1px solid var(--leo-line);
  border-radius: 20px;
  background: var(--leo-surface);
  box-shadow: var(--leo-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.page-internal .officer_card {
  border-color: rgba(109, 180, 213, 0.22);
  background: linear-gradient(145deg, var(--leo-surface-raised), var(--leo-surface)) !important;
  box-shadow: var(--leo-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.officer_card:hover,
.president_card:hover,
.award-card-2025-26:hover,
.newsletter:hover,
.service-item:hover {
  border-color: rgba(84, 140, 168, 0.38);
  box-shadow: 0 24px 55px rgba(31, 41, 55, 0.16);
  transform: translateY(-7px);
}

.ring {
  background: linear-gradient(145deg, var(--leo-blue-bright), rgba(109, 180, 213, 0.10));
  box-shadow: 0 10px 28px rgba(84, 140, 168, 0.20);
}

.officer_pos,
.officer_name,
.officer_year,
.only-name,
.dir_pos {
  color: var(--leo-ink) !important;
}

body.page-internal .officer_card .officer_pos {
  color: #f3f6fb !important;
}

body.page-internal .officer_card .officer_name {
  color: #b9c7d8 !important;
}

.officer_photo {
  object-fit: cover;
  object-position: center top;
}

.officer_pos,
.officer_name {
  font-family: "Quicksand", sans-serif;
}

.award-card-2025-26 {
  border-color: rgba(217, 179, 95, 0.18);
  background: var(--leo-surface);
}

.award-card-2025-26 h4 {
  color: #f3dfad;
  background: linear-gradient(180deg, #202839, #171d2b);
}

.awards-2025-26 .award_ceremony,
.awards-2025-26 .award-section-title,
.award_ceremony {
  color: #f1d899;
}

.award_org {
  color: var(--leo-muted);
}

.award,
.pro-award,
.app-award {
  border: 1px solid rgba(217, 179, 95, 0.18);
  border-radius: 18px;
  background: linear-gradient(145deg, #20283a, #171d2b);
  box-shadow: var(--leo-shadow);
}

.award .award-text,
.pro-award .award-text,
.pro-award .pro-award-text,
.app-award .award-text {
  color: #e8edf5;
}

.newsletter-container .newsletter {
  padding: 18px;
  background: var(--leo-surface);
}

.newsletter-img {
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
}

/* Buttons */
.btn,
.btn.btn-custom,
.download-btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color var(--motion-fast) ease, background var(--motion-medium) ease, border-color var(--motion-fast) ease, box-shadow var(--motion-medium) ease, transform var(--motion-fast) var(--motion-ease);
}

.btn:active,
.btn.btn-custom:active,
.download-btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary,
.download-btn {
  border-color: var(--leo-blue);
  background: linear-gradient(135deg, #467d99, var(--leo-blue-bright));
  box-shadow: 0 10px 24px rgba(84, 140, 168, 0.25);
}

.btn-primary:hover,
.download-btn:hover {
  border-color: var(--leo-blue-bright);
  background: linear-gradient(135deg, var(--leo-blue-bright), #467d99);
  transform: translateY(-2px);
}

/* Footer and utility */
.footer {
  background:
    radial-gradient(circle at 15% 10%, rgba(84, 140, 168, 0.20), transparent 28%),
    linear-gradient(145deg, #171923, #202331);
}

.footer {
  border-top: 1px solid rgba(109, 180, 213, 0.15);
}

.footer h2,
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.back-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leo-blue), var(--leo-blue-bright));
  box-shadow: 0 10px 25px rgba(23, 25, 35, 0.22);
}

.back-to-top i,
.back-to-top:hover i {
  color: #ffffff;
}

/* Site-wide consistency and readability pass */
body.page-internal {
  font-size: 16px;
}

body.page-internal .container,
body.page-internal .container-fluid {
  max-width: 1180px;
}

body.page-internal .container {
  padding-left: 24px;
  padding-right: 24px;
}

body.page-internal p,
body.page-internal li {
  line-height: 1.75;
}

body.page-internal .desc,
body.page-internal .logo-desc,
body.page-internal .dis-desc,
body.page-internal .mul-dis-desc,
body.page-internal .president_desc {
  color: #d8deea !important;
}

body.page-internal .desc,
body.page-internal .logo-desc,
body.page-internal .dis-desc,
body.page-internal .mul-dis-desc {
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

body.page-internal img {
  max-width: 100%;
}

body.page-internal .img-div img,
body.page-internal .main-img,
body.page-internal .dist-map,
body.page-internal .dp-img {
  border-radius: 18px;
}

body.page-internal .topic_div {
  width: min(538px, calc(100vw - 24px));
  max-width: 100%;
}

body.page-internal .award-container > .row {
  justify-content: center;
  gap: 28px;
}

body.page-internal .award,
body.page-internal .pro-award,
body.page-internal .app-award {
  flex: 0 1 590px;
  width: min(100%, 590px);
  max-width: 100%;
  margin: 18px auto;
  padding: 14px;
}

body.page-internal .award {
  flex-basis: 350px;
}

body.page-internal .award-img,
body.page-internal .pro-award-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
}

body.page-internal .officer_card,
body.page-internal .president_card {
  max-width: 100%;
}

/* Leader cards must grow with names and biographies. Legacy page styles and
   a few inline declarations used fixed heights, which allowed text to escape. */
body.page-internal .officer_card,
body.page-internal .president_card,
body.page-internal .dir_card {
  height: auto !important;
  min-height: 0;
  overflow: visible;
}

/* Keep every set of leader cards aligned to the tallest card in its row. */
body.page-internal .leaders-section .container > .row,
body.page-internal .current_leaders_body .container > .row,
body.page-internal .key-officers-section .container > .row {
  align-items: stretch;
}

body.page-internal .leaders-section .officer,
body.page-internal .current_leaders_body .officer,
body.page-internal .key-officers-section .officer {
  align-items: stretch;
}

body.page-internal .leaders-section .officer_card,
body.page-internal .current_leaders_body .officer_card,
body.page-internal .current_leaders_body .president_card,
body.page-internal .key-officers-section .officer_card {
  width: 100%;
  height: 100% !important;
  margin-right: auto;
  margin-bottom: 15px;
  margin-left: auto;
}

body.page-internal .president_card {
  display: flex;
  flex-direction: column;
}

body.page-internal .president_card .officer_det,
body.page-internal .officer_card .officer_det {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

/* Keep portraits and labels on common horizontal guides.  The legacy
   `margin: auto` on the portrait ring became vertical auto-margin inside
   flex cards, so cards with different biography lengths shifted upward or
   downward. */
body.page-internal .officer_card .ring,
body.page-internal .president_card .ring {
  flex: 0 0 auto;
  margin: 0 auto !important;
}

body.page-internal .officer_card .officer_name,
body.page-internal .president_card .officer_name {
  display: flex;
  min-height: 3.5em;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

body.page-internal .officer_card .officer_pos,
body.page-internal .officer_card .dir_pos {
  display: flex;
  min-height: 3.5em;
  align-items: center;
  justify-content: center;
}

body.page-internal .key-officers-section .officer_pos {
  height: 5.25em !important;
  min-height: 5.25em;
}

body.page-internal .president_desc,
body.page-internal .officer_name,
body.page-internal .officer_pos,
body.page-internal .officer_year,
body.page-internal .dir_pos {
  height: auto !important;
  overflow-wrap: anywhere;
}

body.page-internal .officer_photo {
  object-fit: cover;
  object-position: center top;
}

.site-image-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(5, 8, 14, 0.92);
  cursor: zoom-out;
  z-index: 100000;
}

.site-image-lightbox.show {
  display: flex;
}

.site-image-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 90vh;
  border-radius: 14px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
}

.awards-2025-26 img,
.award-container img {
  cursor: zoom-in;
}

/* Scroll reveals and ambient interaction motion. Classes are added by JS, so
   all content remains visible when JavaScript is unavailable. */
.motion-enabled .wow.animated {
  animation-name: none !important;
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity var(--motion-slow) var(--motion-ease),
    transform var(--motion-slow) var(--motion-ease);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-reveal.motion-from-left {
  transform: translate3d(-42px, 0, 0);
}

.motion-reveal.motion-scale {
  transform: scale(0.94);
}

.motion-reveal.motion-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.page-header .container.motion-reveal {
  transition-duration: 0.75s;
}

.navbar-brand {
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.navbar-brand:hover {
  color: #ffffff !important;
  text-shadow: 0 0 24px rgba(109, 180, 213, 0.5);
  transform: translateY(-1px);
}

.officer_photo,
.president_card img,
.newsletter-img,
.award-card-2025-26 img,
.award-container img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}

.officer_card:hover .officer_photo,
.president_card:hover img,
.newsletter:hover .newsletter-img,
.award-card-2025-26:hover img,
.award-container .award:hover img,
.award-container .pro-award:hover img,
.award-container .app-award:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.topic_div.motion-visible {
  animation: ribbonGlow 0.9s ease-out both;
}

.back-to-top {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.back-to-top:hover {
  box-shadow: 0 15px 34px rgba(84, 140, 168, 0.42);
  transform: translateY(-4px);
}

.service-icon i,
.facts-item i,
.footer-social i,
.owl-nav i,
.navbar-toggler-icon {
  transition: transform var(--motion-medium) var(--motion-ease), color var(--motion-fast) ease;
}

.service-item:hover .service-icon i,
.facts-item:hover i {
  transform: translateY(-3px) scale(1.06);
}

.footer-social a:hover i {
  transform: translateY(-2px) rotate(-4deg);
}

.owl-nav button:hover i,
.back-to-top:hover i {
  transform: translateY(-2px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  transform: rotate(90deg);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(109, 180, 213, 0.58);
  outline-offset: 3px;
}

@keyframes dropdownEnter {
  from { opacity: 0; transform: translate3d(0, -8px, 0) scale(0.98); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes ribbonGlow {
  0% { box-shadow: 0 0 0 rgba(84, 140, 168, 0); }
  55% { box-shadow: 0 16px 46px rgba(109, 180, 213, 0.38); }
  100% { box-shadow: 0 14px 35px rgba(84, 140, 168, 0.24); }
}

@media (max-width: 991.98px) {
  .navbar {
    background: rgba(23, 25, 35, 0.98) !important;
  }

  .navbar-collapse {
    position: fixed;
    top: var(--site-nav-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--site-nav-height));
    max-height: calc(100dvh - var(--site-nav-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 15px 14px;
    border-top: 1px solid rgba(109, 180, 213, 0.12);
    border-bottom: 1px solid rgba(109, 180, 213, 0.16);
    background: rgba(23, 25, 35, 0.99);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
  }

  .navbar-collapse.collapsing {
    overflow: hidden;
    transition: height 200ms ease-out;
  }

  .navbar-collapse.show {
    animation: none;
  }

  .navbar .dropdown-menu,
  .navbar .dropdown.show > .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin: 2px 0 6px;
    animation: none;
    transform: none;
  }

  .navbar-dark .navbar-nav .nav-link {
    margin: 3px 0;
    padding: 9px 12px;
  }

  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link.active,
  .navbar .dropdown-item:hover {
    transform: none;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: none;
  }

  .carousel .carousel-text {
    width: calc(100% - 90px);
    padding: 25px 24px;
  }

  body.page-internal .page-header h2 {
    font-size: clamp(36px, 8vw, 52px);
  }

  body.page-internal .officer_card,
  body.page-internal .president_card {
    width: min(100%, 390px);
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .navbar .navbar-brand {
    font-size: 30px;
    letter-spacing: 0.12em;
  }

  .carousel .carousel-text {
    width: calc(100% - 40px);
    padding: 22px 18px;
    border-radius: 18px;
  }

  .carousel .carousel-text h1 {
    margin-bottom: 12px;
    font-size: 34px;
  }

  .carousel .carousel-text p {
    font-size: 16px;
  }

  .page-internal .carousel .carousel-img img {
    height: 320px !important;
  }

  .page-header {
    margin-bottom: 28px;
  }

  .topic_div {
    width: min(88vw, 360px);
    height: 68px;
  }

  .topic {
    padding: 0 28px 0 20px;
    font-size: 25px;
    line-height: 1.2;
  }

  body.page-internal .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  body.page-internal .row {
    margin-left: -9px;
    margin-right: -9px;
  }

  body.page-internal .row > [class*="col-"] {
    padding-left: 9px;
    padding-right: 9px;
  }

  body.page-internal .topic_div {
    width: calc(100vw - 18px);
    max-width: calc(100vw - 18px);
    margin-left: 0;
  }

  body.page-internal .desc,
  body.page-internal .logo-desc,
  body.page-internal .dis-desc,
  body.page-internal .mul-dis-desc {
    font-size: 16px;
    line-height: 1.7;
  }

  body.page-internal .award-container,
  body.page-internal .award,
  body.page-internal .pro-award,
  body.page-internal .app-award {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  body.page-internal .ring {
    max-width: 70vw;
    max-height: 70vw;
  }

  body.page-internal .officer_photo {
    max-width: calc(70vw - 12px);
    max-height: calc(70vw - 12px);
  }

  body.page-internal .leaders-section .officer_card,
  body.page-internal .current_leaders_body .officer_card,
  body.page-internal .current_leaders_body .president_card {
    height: auto !important;
  }

  .officer_card:hover,
  .president_card:hover,
  .award-card-2025-26:hover,
  .newsletter:hover,
  .service-item:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .motion-reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .motion-enabled .carousel .owl-item .carousel-img img,
  .motion-enabled .carousel .owl-item .carousel-text,
  .motion-enabled .carousel .owl-item .carousel-text h1,
  .motion-enabled .carousel .owl-item .carousel-text p {
    opacity: 1 !important;
    transform: none !important;
  }

}

/* Homepage launch intro */
#loader.launch-intro {
  isolation: isolate;
  background: #0d1420;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0.8s;
}

#loader.launch-intro.show {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

#loader.launch-intro::before,
#loader.launch-intro::after {
  width: min(52vw, 720px);
  height: min(52vw, 720px);
  border-color: rgba(109, 180, 213, 0.12);
  box-shadow: inset 0 0 80px rgba(84, 140, 168, 0.03);
  transition: border-color 0.8s ease, box-shadow 0.8s ease;
}

#loader.launch-intro::before {
  top: -30vw;
  right: -12vw;
}

#loader.launch-intro::after {
  bottom: -34vw;
  left: -13vw;
}

.launch-intro__backdrop {
  position: absolute;
  inset: -12%;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(13, 20, 32, 0.98), rgba(24, 36, 54, 0.94) 48%, rgba(10, 18, 29, 0.98)),
    #0d1420;
  z-index: -1;
}

.launch-intro__backdrop::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(109, 180, 213, 0.13), transparent 27%),
    linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.035) 49%, transparent 63%);
  background-size: 100% 100%, 220% 100%;
  animation: launchGradientDrift 8s ease-in-out infinite alternate;
  transition: filter 0.8s ease, opacity 0.8s ease;
}

.launch-intro__orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.38;
  animation: launchOrbFloat 9s ease-in-out infinite alternate;
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

.launch-intro__orb--one {
  top: 8%;
  left: 12%;
  width: min(36vw, 540px);
  height: min(36vw, 540px);
  background: radial-gradient(circle, rgba(84, 140, 168, 0.34), transparent 68%);
}

.launch-intro__orb--two {
  right: 7%;
  bottom: 4%;
  width: min(42vw, 630px);
  height: min(42vw, 630px);
  background: radial-gradient(circle, rgba(74, 76, 112, 0.32), transparent 68%);
  animation-delay: -4s;
  animation-direction: alternate-reverse;
}

.launch-intro__streak {
  position: absolute;
  top: 50%;
  left: -30%;
  width: 160%;
  height: 1px;
  background: linear-gradient(90deg, transparent 12%, rgba(109, 180, 213, 0.1), rgba(255, 255, 255, 0.28), rgba(109, 180, 213, 0.1), transparent 88%);
  box-shadow: 0 0 30px rgba(109, 180, 213, 0.22);
  transform: rotate(-12deg) translateX(-12%);
  animation: launchStreak 7s ease-in-out infinite;
}

.launch-intro__particle {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(190, 225, 240, 0.7);
  box-shadow: 0 0 16px rgba(109, 180, 213, 0.8);
  opacity: 0.3;
  animation: launchParticle 6s ease-in-out infinite alternate;
}

.launch-intro__particle--1 { top: 22%; left: 24%; animation-delay: -1s; }
.launch-intro__particle--2 { top: 67%; left: 17%; animation-delay: -4s; }
.launch-intro__particle--3 { top: 31%; right: 18%; animation-delay: -2s; }
.launch-intro__particle--4 { right: 27%; bottom: 18%; animation-delay: -5s; }
.launch-intro__particle--5 { top: 14%; left: 63%; animation-delay: -3s; }

.launch-intro__countdown,
.launch-intro__refresh,
.launch-intro__final {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: min(92vw, 760px);
  text-align: center;
  z-index: 2;
}

.launch-intro__refresh {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.55s;
}

.launch-intro__refresh--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.launch-intro__refresh-logo {
  width: clamp(76px, 9vw, 108px);
  height: auto;
  margin-bottom: clamp(22px, 3vh, 34px);
  opacity: 0.76;
  filter: grayscale(1) drop-shadow(0 10px 28px rgba(0, 0, 0, 0.3));
}

.launch-intro__refresh-wordmark {
  color: rgba(239, 242, 247, 0.86);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(42px, 7vw, 74px);
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1;
  text-indent: 0.22em;
}

.launch-intro__refresh-spinner {
  width: 52px;
  height: 52px;
  margin: clamp(30px, 5vh, 48px) 0 24px;
  border: 4px solid rgba(220, 229, 240, 0.16);
  border-right-color: #5f9fbe;
  border-radius: 50%;
  animation: launchRefreshSpin 0.8s linear infinite;
}

.launch-intro__refresh p {
  margin: 0;
  color: rgba(211, 219, 231, 0.68);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(10px, 1.4vw, 14px);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-intro__refresh p span {
  color: #67a8c6;
}

.launch-intro__eyebrow {
  margin-bottom: clamp(20px, 4vh, 42px);
  color: rgba(216, 225, 238, 0.75);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(11px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
}

.launch-intro__number {
  display: block;
  min-width: 2ch;
  color: #f7fbff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(112px, 25vw, 290px);
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.75;
  text-align: center;
  text-shadow: 0 0 32px rgba(109, 180, 213, 0.22);
  transform-origin: center;
}

.launch-intro__number--animate {
  animation: launchNumberIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.launch-intro__number--out {
  opacity: 0 !important;
  filter: blur(10px) !important;
  transform: scale(1.14) !important;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.launch-intro__progress {
  position: relative;
  display: block;
  width: min(66vw, 390px);
  height: 1px;
  margin-top: clamp(34px, 7vh, 68px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.launch-intro__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #548ca8, #b8dceb);
  box-shadow: 0 0 14px rgba(109, 180, 213, 0.55);
  transform: scaleX(0);
  transform-origin: left;
  animation: launchProgress 10s linear forwards;
}

.launch-intro__sound {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
  padding: 10px 17px;
  color: rgba(232, 240, 248, 0.88);
  font: 600 13px/1 "Quicksand", sans-serif;
  letter-spacing: 0.04em;
  border: 1px solid rgba(109, 180, 213, 0.34);
  border-radius: 999px;
  background: rgba(15, 22, 35, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.launch-intro__sound:hover,
.launch-intro__sound:focus-visible {
  color: #ffffff;
  border-color: rgba(109, 180, 213, 0.72);
  background: rgba(84, 140, 168, 0.24);
  outline: none;
  transform: translateY(-2px);
}

.launch-intro__sound--enabled {
  color: #ffffff;
  border-color: rgba(109, 180, 213, 0.75);
  background: rgba(84, 140, 168, 0.32);
}

.launch-intro__sound--enabled i {
  color: var(--leo-blue-bright);
}

.launch-intro__countdown {
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.launch-intro__countdown--hidden {
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
  transform: scale(1.06);
}

.launch-intro__final {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.96);
}

.launch-intro__final--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.75s ease 0.1s, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.launch-intro__logo {
  width: clamp(88px, 12vw, 138px);
  height: clamp(88px, 12vw, 138px);
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.35));
}

.launch-intro__wordmark {
  margin-top: 18px;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-indent: 0.2em;
}

.launch-intro__live {
  margin-top: 24px;
  color: #8fc9e4;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  text-transform: uppercase;
}

.launch-intro__final p {
  margin: 13px 0 0;
  color: rgba(216, 225, 238, 0.68);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(10px, 1.5vw, 14px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  text-transform: uppercase;
}

.launch-intro--three .launch-intro__backdrop::before { filter: brightness(1.15); }
.launch-intro--two .launch-intro__backdrop::before { filter: brightness(1.3); }
.launch-intro--one .launch-intro__backdrop::before,
.launch-intro--lion .launch-intro__backdrop::before,
.launch-intro--final .launch-intro__backdrop::before { filter: brightness(1.55); }
.launch-intro--three .launch-intro__orb { opacity: 0.48; }
.launch-intro--two .launch-intro__orb { opacity: 0.58; }
.launch-intro--one .launch-intro__orb,
.launch-intro--lion .launch-intro__orb,
.launch-intro--final .launch-intro__orb { opacity: 0.72; filter: blur(0); }
.launch-intro--one::before,
.launch-intro--one::after,
.launch-intro--lion::before,
.launch-intro--lion::after,
.launch-intro--final::before,
.launch-intro--final::after {
  border-color: rgba(143, 201, 228, 0.28);
  box-shadow: inset 0 0 120px rgba(84, 140, 168, 0.09), 0 0 80px rgba(84, 140, 168, 0.08);
}

#loader.launch-intro--leaving {
  opacity: 0;
  transform: translateY(-3%);
  pointer-events: none;
}

@keyframes launchNumberIn {
  0% { opacity: 0; filter: blur(20px); transform: scale(0.86); }
  24% { opacity: 1; filter: blur(0); }
  72% { opacity: 1; filter: blur(0); transform: scale(1); }
  100% { opacity: 0; filter: blur(8px); transform: scale(1.07); }
}

@keyframes launchProgress {
  to { transform: scaleX(1); }
}

@keyframes launchGradientDrift {
  from { background-position: center, 0% center; transform: scale(1); }
  to { background-position: center, 100% center; transform: scale(1.04); }
}

@keyframes launchOrbFloat {
  from { transform: translate3d(-2%, -3%, 0) scale(0.95); }
  to { transform: translate3d(4%, 5%, 0) scale(1.07); }
}

@keyframes launchStreak {
  0%, 100% { opacity: 0.15; transform: rotate(-12deg) translateX(-14%); }
  50% { opacity: 0.58; transform: rotate(-12deg) translateX(12%); }
}

@keyframes launchParticle {
  from { opacity: 0.18; transform: translate3d(0, 10px, 0) scale(0.75); }
  to { opacity: 0.62; transform: translate3d(10px, -14px, 0) scale(1.15); }
}

@keyframes launchRefreshSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 575.98px) {
  .launch-intro__number {
    font-size: clamp(105px, 44vw, 175px);
  }

  .launch-intro__eyebrow {
    letter-spacing: 0.22em;
    text-indent: 0.22em;
  }

  .launch-intro__final p {
    max-width: 88vw;
    line-height: 1.7;
  }

}

@media (prefers-reduced-motion: reduce) {
  #loader.launch-intro,
  #loader.launch-intro * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .launch-intro__countdown {
    display: none;
  }

  .launch-intro__final--visible {
    opacity: 1;
    transform: none;
  }
}
