.Page-Layout {
    background-color: rgb(255, 255, 255);
    color: rgb(51, 51, 51);
    line-height: 1.5em;
    font-family: "Arimo", sans-serif;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

#maincontent {
  width: 100%;
  margin-top: 1.5rem;
}

#maincontent > h1,
#maincontent > h2,
#maincontent > h3,
#maincontent > h4,
#maincontent > p,
#maincontent > table,
#maincontent > ul:not(.breadcrumbs):not(.side-nav),
#maincontent > ol {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

#maincontent > ol {
  list-style-position: outside;
  padding-left: 4rem;
  margin-left: auto;
  margin-right: auto;
}

#maincontent > ol > li {
  padding-left: 0.25rem;
  margin-bottom: 0.5rem;
}

#maincontent > ul:not(.breadcrumbs):not(.side-nav) {
  list-style-position: outside;
  padding-left: 4rem;
  margin-left: auto;
  margin-right: auto;
}


h1 {
    color:rgb(0, 76, 147);
    font-weight: bold;
    font-size: 4em;
    letter-spacing: .05em;
  	text-align: center;
  	line-height: 1.4;
  	margin: 2rem .55rem;
  	
}
h2 {
    color:  rgb(0, 76, 147);
    font-size: 2.5em;
    letter-spacing: .05em;
}
p {
  font-size: 1.35em;
}
a{
  color:rgb(0, 76, 147);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}


/*HEADER/NAV STYLE*/
.Header-layout {
  background-color: rgb(0, 76, 147);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;  
  align-items: stretch;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Top row: logo left, search right */
.Header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0;
}

/* Hide mobile elements on desktop */
.MobileMenuButton {
  display: none;
}

.MobileNav {
  display: none;
}

.Nav-Logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin: 0;
  padding: .5em;
  flex: 0 0 auto; /* don’t grow */
}

.Nav-Logo img{
  display: block;
  height: 6em;
  width: auto;
}

.MegaNav {
  width: calc(100% + 2rem);
  margin-left: -1rem;
  margin-right: -1rem;
}

.MegaTrigger {
  background: transparent;
  border: none;
  color: rgb(255, 255, 255);
  cursor: pointer;
  font: inherit;
  padding: 0.5em;
}

.MegaTrigger:hover,
.MegaTrigger:focus-visible {
  background-color: rgba(255, 255, 255, 0.5); 
  color: rgb(0, 0, 0);
}

/* NAV DROPDOWN STYLE */
.MegaMenu {
  width: 100%;
  overflow: hidden;
  max-height: var(--mega-height, 0);
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 1;
   border-top: 2px solid rgb(255, 255, 255);
  /* background-color: rgb(1, 29, 56); */
}
 
.MegaMenu.is-open {
  opacity: 1;
  background-image: linear-gradient(to bottom, rgb(0, 76, 147), rgb(1, 29, 56), rgb(1, 29, 56));
}

.MegaMenu.is-closing {
  background-image: none;
}

.MegaMenu-inner {
  /* max-width: 1400px; */
  width: 100%;
  margin: 0 auto;
  margin-left: 0em;
  padding: 0.3rem 1rem; 
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 355px));
  gap: 1rem;
  justify-content: right;
}

.MegaMenu.is-open .MegaMenu-inner {
  padding-bottom: 1rem; 
}

.MegaColumn {
  list-style: none;
  margin: 0;
  padding: .25rem;
  border-radius: .25rem;
  transition: background-color .4s ease;
}

.MegaColumn.is-hovered,
.MegaColumn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.MegaMenu:not(.is-open) .MegaColumn li:not(:first-child) {
  display: none;
}

.MegaMenu.is-open .MegaColumn li {
  display: block;
}


.MegaColumn li:first-child .MegaTrigger {
  font-size: 1.8rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255);
  cursor: pointer;
  padding: 0.5em 0.5em 0.5em 0.2rem;
  display: inline-block;
  width: 100%;
  text-align: left;
  border-radius: .1em;
}
.MegaColumn li:first-child .MegaTrigger:hover,
.MegaColumn li:first-child .MegaTrigger:focus-visible {
  color: rgb(0, 0, 0);
}

/* Dropdown links */
.MegaColumn a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: .25rem .2rem;
  display: inline-block;
  font-size: 1.2em;
  width: 100%;
  border-radius: .15rem; 
  box-sizing: border-box; 
  text-align: left;
  transition: background-color 150ms ease, color 150ms ease;
}
.MegaColumn:hover a {
  color: rgb(0, 0, 0); 
}
.MegaColumn:hover li:first-child .MegaTrigger{
  color: rgb(0, 0, 0);
}

.MegaColumn a:hover,
.MegaColumn a:focus-visible {
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(0, 158, 224);
  outline: none;
}

.MegaColumn li + li { margin-top: .4rem; }

/* Desktop-only mega toggle */
.MegaToggleBtn {
  position: absolute;
  left: 1rem;
  bottom: 0.35rem;
  background: transparent;
  border: none;
  color: rgb(255, 255, 255);
  font-size: 1.45rem;
  cursor: pointer;
  padding: 0.25em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.MegaToggleBtn:hover,
.MegaToggleBtn:focus-visible {
  color: rgb(0, 158, 224);
  outline: none;
}

/* Arrow animation (optional but nice) */
.MegaToggleIcon {
  display: inline-block;
  transition: transform 200ms ease;
}

.MegaToggleBtn[aria-expanded="true"] .MegaToggleIcon {
  transform: rotate(180deg); 
}

/* Hide on mobile */
@media (max-width: 768px) {
  .MegaToggleBtn {
    display: none;
  }
}

.Nav-Search {
  list-style: none;
}

/* SEARCHBAR STYLE*/
.SearchBar {
  display: flex;
  align-items: center;
  gap: 0.65em;

  border: 2px solid rgb(255, 255, 255);
  border-radius: 9999px;          
  background: transparent;

  padding: 0.6em .8em;
  height: 2.6em;
  color: rgb(255, 255, 255);
}

/* Font Awesome icon */
.SearchIcon {
  color: rgb(255, 255, 255);
  font-size: 1.6em;
  pointer-events: none;
}

.SearchButton{
 border: none;
 background: transparent;
  color: rgb(255, 255, 255);
  padding: 0;                 
  margin: 0;
  cursor: pointer;

}

/* Input styling */
.SearchInput {
  border: none;
  outline: none;
  background: transparent;
  color: rgb(255, 255, 255);
  font-size: .95em;
  width: 11.5rem;
  caret-color: rgb(255, 255, 255);
}

.SearchInput::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

/*keyboard accssb*/
.SearchBar:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}


*, *::before, *::after {
  box-sizing: border-box;
}

/* SKIP LINK STYLE */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: rgb(0, 76, 147);
  color: rgb(255, 255, 255);
  padding: 8px 12px;
  text-decoration: none;
  z-index: 9999;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
}

/* FOCUS INDICATORS FOR ACCESSIBILITY */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgb(0, 158, 224);
  outline-offset: 2px;
}

/* CAROUSEL BUTTON FOCUS */
.Lcarousel-btn:focus-visible,
.Rcarousel-btn:focus-visible {
  outline: 3px solid rgb(0, 158, 224);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgb(255, 255, 255);
}


/* KPI Dots Focus */
.KPI-Dots button:focus-visible {
  outline: 3px solid rgb(0, 158, 224);
  outline-offset: 2px;
}

/* News Carousel Dots Focus */
.NewsCarousel-dots button:focus-visible {
  outline: 3px solid rgb(0, 158, 224);
  outline-offset: 2px;
}

/* BANNER STYLE */
.Top-Banner {
  width: 100%;
  height: 30em;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.Top-Banner img {
   position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.Banner-Image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Breadcrumbs  */
.breadcrumbs {
  list-style: none;
  margin: 2rem 0em;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.25rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  color: rgb(0, 158, 224);
}
.breadcrumbs a {
  color: rgb(0, 158, 224);          
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs li:last-child {
  color: rgb(0, 76, 147);
  font-weight: 300;
}

/*==== ALERT BOXES ====*/
.AlertBoxes > .row > .columns > .row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 5em;
}

/* Disable legacy grid behavior + define column width */
.AlertBoxes .columns {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  flex: 0 0 400px;
}

/* Card */
.AlertBoxes .sidebar-card {
  max-width: 450px;
  background: linear-gradient(to bottom, rgb(75,135,185) 0%, rgb(0, 76, 147) 100%);
  border-radius: 6px;
  padding: 1.25rem;
  padding-top: 0;
  color: rgb(255,255,255);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

  display: flex;
  flex-direction: column;
  height: auto;
}

/* Card title */
.AlertBoxes .card-title { 
  background: rgb(255,255,255);
  color: rgb(0, 76, 147);
  font-weight: 600;
  font-size: 1.25rem;
  border-style: solid;
  border-color: rgb(0, 76, 147);
  text-align: center;
  margin-bottom: 1rem;
  border-radius: 6px 6px 0 0;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  min-height: 3rem;      
  display: flex; 
  align-items: center;
  justify-content: center;
}

/* Card content */
.AlertBoxes .card-content {
  flex-grow: 1;
}

.AlertBoxes .card-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.AlertBoxes .card-content li {
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}

.AlertBoxes .card-content li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  color: rgb(255,255,255);
  font-size: 0.75rem;
}

.AlertBoxes .card-content a {
  color: rgb(255,255,255);
  text-decoration: none;
  font-weight: 500;
}

.AlertBoxes .card-content a:hover {
  text-decoration: underline;
}

/*BANNER INFO BOX STYLE */
.Banner-Info {
  background-color: rgba(114, 195, 244, 0.7);
  width: 40%;
  height: 17em;          
  margin-top: 5em;
  padding: 1.25em 1.5em;
  position: relative;     
  z-index: 2;          
  display: flex;
  align-items: center;
  justify-content: center;   
}

.Banner-Info h1 {
  margin: 0;
  line-height: 1.2;
  color: rgb(255, 255, 255);
  text-align: left;
  font-size: 2.5em;
}




/*QUICKLINKS BOX STYLE*/
.Quick-Links {
  background-color: rgba(1, 29, 56, 0.5);
  width: 40%;
  height: 5em;
  font-size: 1em;
  margin-top: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  position: relative;
  z-index: 2;
}

.link {
  color: rgb(255, 255, 255);
  font-size: 1.35em;
  padding: 0 0.5em;
  text-decoration: underline;
  transition: background-color 150ms ease, color 150ms ease;
}

.link:hover,
.link:focus-visible {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  outline: none;
}



/*BEGGINING TEXT STYLE */
.Overview{
    text-align: center;
    padding: 1em;
    margin: 5em;
}
.Overview-Title {
    margin-bottom: 1em;
    line-height:1.5;
}
.Overview-Text{
  margin: 0 auto;
  width: 70%;
  line-height: 1.5;
  text-align: left;
}

.Overview-List {
  margin: 1.5em auto;
  width: 100%;
  text-align: left;
  padding-left: 2em;
}

.Overview-List li {
  margin-bottom: 0.75em;
  font-size: 1.5em;
}

/* KPI CAROUSEL STYLE*/
.KPI-Carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgb(156,156,156);
  margin-top: 2.5rem;
}

.KPI-Viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 15em;
  background: rgb(156,156,156)
}

.KPI-Track {
  position: relative;
  width: 100%;
  height: 100%;
  padding-right: 0.2em; 
}

.KPI-Page {
  position: absolute;
  inset: 0;              
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: 0;
}

.KPI-Page.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.KPI-item {
  background: rgb(1, 29, 56);
  text-align: center;
  padding-block: 1em;
  box-sizing: border-box;
  min-height: 15em; /* this is the size of the KPI boxes */      
  display: flex;
  align-items: center;
  justify-content: center;
  gap:.03em;
}

.KPI-item p{
  color: rgb(255, 255, 255);
  font-size: 2.5em;
  line-height: 1.5;
  
}

.kpi-number {
  color: rgb(114, 195, 244);   /* KPI value color*/
  font-weight:bold;
}

.KPI-Dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;            
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3; 

}

.KPI-Dots button {
  width: 1rem; 
  height: 1rem;
  border-radius: 50%;
  border: none;
  background: rgba(114, 195, 244, 0.5); /*color of the other dots*/
  cursor: pointer;
}

.KPI-Dots button.active {
  background: rgb(114, 195, 244) ; /*color of the active dot*/
}


.roadmap {
  width: 100%;
  background:rgb(1, 29, 56);
  color: rgb(255, 255, 255);
  margin-top: 2em;
}

.roadmap-header {
  padding: 2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.roadmap-header h1{
  color: rgb(255, 255, 255);
  padding: 1rem;
  cursor: pointer;
  list-style: none;
  text-align: center;
  font-weight: normal;
  line-height: 1.2;
}

.roadmap-step h2 {
  color:rgb(255, 255, 255);
  margin: 0 0 0.75rem;
  font-size: 2rem;
  line-height: 1.2;
}

.roadmap-header p {
  max-width: 1200px;
  margin: 0 auto 1rem;
  font-weight: normal;
  font-size: 1.5em;
}

.roadmap-header::-webkit-details-marker {
  display: none;
}
.roadmap-header::marker {
  display: none;
}

.toggle-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgb(0, 158, 224);
  font-weight: 700;
  text-decoration: underline;
}

.toggle-text::after {
  content: "▾";
  font-size: 1.2em;
  text-decoration: none;
  transition: transform 0.2s ease;
}

details[open] .toggle-text::after {
  transform: rotate(180deg);
}

.roadmap-step {
  padding: 1.45rem 9.5rem;
  background: rgb(0, 158, 224);
}

.roadmap-step.light {
  background: rgb(114, 195, 244);
  /* color: #003c71; */
}

.roadmap-step.dark {
  background: rgb(0, 76, 147);
}




*,
*::before,
*::after {
  box-sizing: border-box;
}

/* NEWS ARTICLES/ NEWS CAROUSEL STYLE */
.News-Carousel {
  margin-top: 0em;;
  position: relative;
  width: 100%;
  overflow: hidden;            
  height: 30em;
  padding: 1em;
  padding-bottom: 3rem;
}

.carousel-track {
  display: flex;   
  transition: transform 0.5s ease;
}

.slide {
  display: flex;               
  gap: 0;                  
  flex: 0 0 100%;       
  min-width: 100%;      
  flex-shrink: 0;
  justify-content: space-evenly;
}

.carousel-item {
  border: 3px solid rgb(118, 195, 244);
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  flex-direction: column;
  align-items: stretch;   
  padding: 1em;        
  justify-content: flex-start;
}

.carousel-item:hover {
  transform: translateY(-6px) scale(1.02);
}

.carousel-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 1em;
}

.carousel-item h3 {
  display:none;
}

.carousel-item p {
  width: 100%;
  font-size: 1.2em;
  font-weight: 300;
  color: rgb(51, 51, 51);
  padding: 0.5em 0;     
  margin-top: .25em;

}


/* Dots */
.NewsCarousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.NewsCarousel-dots button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: none;
  background: rgba(114, 195, 244, 0.5);
  cursor: pointer;
}

.NewsCarousel-dots button.active {
  background: rgb(114, 195, 244);
}

.news-title-link {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.news-title-link:focus-visible,
.news-carousel-btn:focus-visible,
.NewsCarousel-dots button:focus-visible {
  outline: 3px solid #005a9c;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Visually hidden utility for live region text */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



/* ================================
   IP & LICENSING TEAM SECTION
   ================================ */

.IP-Team-Section {
  background-color: rgb(118, 195, 244);
  width: 100%;
  margin-top: 3em;
  box-sizing: border-box;
}

.IP-Team-Content {
  display: flex;
  align-items: stretch;
  gap: 3em;
  margin: 0 auto;
}

.IP-Team-Text {
  flex: 0 0 40%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 2.5em 3em;
}

.IP-Team-Text h2 {
  margin: 0 0 0.75em 0;
  font-size: 3em;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: underline;
}

.IP-Team-Text h2 a {
  color: inherit;           
  text-decoration: none;    
}

.IP-Team-Text h2 a:hover {
  text-decoration: underline;
}


.IP-Team-Text p {
  margin: 0;
  font-size: 1.45em;
  line-height: 1.6;
  color: #ffffff;
  max-width: 42em;
}

.IP-Team-Image {
  flex: 0 0 60%;
  border-radius: 0.5em;
  overflow: hidden;
  display: flex;
  background-color: rgba(0, 0, 0, 0.15);
}

.IP-Team-Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;     
  display: block;
}

/* ================================
   Responsive (Tablet & Below)
   ================================ */

@media (max-width: 1024px) {
  .IP-Team-Section {
    padding: 2.5em 2.5em;
  }

  .IP-Team-Text h2 {
    font-size: 2.2em;
  }

  .IP-Team-Text p {
    font-size: 1.15em;
  }
}

/* ================================
   Responsive (Mobile)
   ================================ */

@media (max-width: 768px) {
  .IP-Team-Content {
    flex-direction: column;
    gap: 2em;
  }

  .IP-Team-Image {
    aspect-ratio: 4 / 3;
  }

  .IP-Team-Text h2 {
    font-size: 2em;
  }

  .IP-Team-Text p {
    font-size: 1.1em;
  }
}

/*FOOTER STYLE */
.site-footer {
  background: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
  width: 100%;
  margin-top: 2em;
}

/* TOP SECTION */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  padding: 2rem 4rem 2rem;
}

.footer-left {
  flex: 1; 
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ICON ROW */
.footer-icons {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid rgb(114, 195, 244); 
  width: 95%;
}

.footer-icons a {
  color: rgb(255, 255, 255);
  font-size: 2rem;
  transition: transform 150ms ease, color 150ms ease;
}

.footer-icons a:hover {
  color: rgb(0, 158, 224);
  transform: translateY(-2px);
}

/* LINKS: 3 columns */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 1rem 1rem; 
  margin-top: .8em;
}

.footer-links a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 1.2rem;
  opacity: 0.92;
  transition: opacity 150ms ease, text-decoration 150ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  opacity: 1;
  outline: none;
}

/* LOGO RIGHT */
.footer-logo {
  width: min(260px, 30%);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-logo img {
  width: 100%;
  height: auto;
  max-height: 12rem;
  object-fit: contain;
}

/* BOTTOM BAR */
.footer-bottom {
  background: rgb(0, 76, 147);
  color: rgb(255, 255, 255);             
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  flex-wrap: wrap;          
}

.footer-bottom p {
  font-size: 1em;
  margin: 0;
}

/* Hide mobile dropdown by default */
.footer-more {
  display: none;
}

/* Dropdown button styling */
.footer-more summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: rgb(255, 255, 255);
  font-size: 1rem;
}

.footer-more summary::-webkit-details-marker {
  display: none;
}

.footer-more[open] summary i {
  transform: rotate(180deg);
}

.footer-more summary i {
  transition: transform 150ms ease;
}

/* Dropdown panel */
.footer-more-links {
  margin-top: .75rem;
  display: grid;
  grid-template-columns: 1fr; 
  gap: .75rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.15);
}

.footer-more-links a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 1.05rem;
  transition: text-decoration 150ms ease;
}

.footer-more-links a:hover,
.footer-more-links a:focus-visible {
  text-decoration: underline;
  outline: none;
}



/* Very Large (big desktops, 2K monitors) */
@media (max-width: 1800px) { 
   /* Below XL */ 
 .MegaMenu-inner {
    grid-template-columns: repeat(4, minmax(0, 335px));
  } 
  .Banner-Info h1 {
  font-size: 2.4em;
}
.Banner-Info p {
  font-size: 1.3em;
}
.MegaColumn li:first-child .MegaTrigger {
  font-size: 1.5rem;
}
.MegaColumn a {
  font-size: 1em;
}
  
  .Top-Banner {
    height: 36rem;
  }

  .AlertBoxes .columns {
    flex: 0 0 440px;
  }


}

/* Large screens (typical desktops, big laptops) */
@media (max-width: 1536px) {
 .MegaMenu-inner {
    grid-template-columns: repeat(4, minmax(0, 290px));
  } 
  .Banner-Info h1 {
  font-size: 2.2em;
}
.Banner-Info p {
  font-size: 1.35em;
}
.MegaColumn li:first-child .MegaTrigger {
  font-size: 1.5rem;
}
.MegaColumn a {
  font-size: 1em;
}
.KPI-Dots button {
  width: .75rem; 
  height: .75rem;
}
   .AlertBoxes > .row > .columns > .row {
  gap: 5rem;
}

/* Disable legacy grid behavior + define column width */
.AlertBoxes .columns {
  flex: 0 0 365px;
}
   .News-Carousel {
    height: auto;
    padding-bottom: 4rem;
  }
  
 }

  
/* Medium screens (normal laptops) */
@media (min-width: 1281px) and (max-width: 1476px) {
   .MegaMenu-inner {
    grid-template-columns: repeat(4, minmax(0, 280px));
  } 
  .Banner-Info h1 {
  font-size: 1.9em;
}
.Banner-Info p {
  font-size: 1.15em;
}
.MegaColumn li:first-child .MegaTrigger {
  font-size: 1.5rem;
}
.MegaColumn a {
  font-size: 1em;
}

.KPI-item p{
  font-size: 2.2em;
}
  .Top-Banner {
    height: 36rem;
  }
   .AlertBoxes > .row > .columns > .row {
  gap: 4rem;
}
  .AlertBoxes .columns {
  flex: 0 0 350px;
}

 .carousel-item img{
  height: 130px;
 }
}

 @media (max-width: 1280px) { 
  .Nav-Logo img{
    height: 4.5em;
  }
  .MegaMenu-inner {
    grid-template-columns: repeat(4, minmax(0, 225px));
  } 
  .Banner-Info h1 {
  font-size: 1.65em;
}
.Banner-Info p {
  font-size: 1.15em;
}
.MegaColumn li:first-child .MegaTrigger {
  font-size: 1.25rem;
}
.MegaColumn a {
  font-size: .8em;
}

.Overview-Title{
  font-size: 2.4em;
}
.Overview-Text{
  font-size: 1.35em;
}

.KPI-item p{
  font-size: 2.0em;
}
   
 .News-Carousel {
    height: auto;
    padding-bottom: 4rem;
  }
   
.carousel-item {
  border-radius: 12px;
  flex: 0 0 29%;   
  max-width: 29%;  
}

 .carousel-item img{
  height: 120px;
 }
 .carousel-item h3{
  font-size: 1.1em;
 }
    .AlertBoxes > .row > .columns > .row {
  gap: 3rem;
}
  .AlertBoxes .columns {
  flex: 0 0 350px;
}
 }


/* Tablets */
@media (max-width: 1024px) { 
    .Nav-Logo img{
    height: 4.5em;
  }
  .MegaMenu-inner {
    grid-template-columns: repeat(4, minmax(0, 185px));
  } 
  .Banner-Info h1 {
  font-size: 1.45em;
  /* color: black; */
}
.Banner-Info p {
  font-size: 1em;
}
.MegaColumn li:first-child .MegaTrigger {
  font-size: 1.15rem;
}
.MegaColumn a {
  font-size: .75em;
}
.link{
  font-size: 1em;
}
  .Top-Banner {
    height: 30rem;
  }

.Overview-Title{
  font-size: 2.25em;
  line-height: 1.5;
}
.Overview-Text{
  font-size: 1.25em;
}

.KPI-item p{
  font-size: 1.9em;
}


.News-Carousel {
    height: auto;
    padding-bottom: 5rem;
  }

.carousel-item {
  border-radius: 12px;
  flex: 0 0 31%;   
  max-width: 31%;  
}

 .carousel-item img{
  height: 100px;
 }
 .carousel-item h3{
  font-size: .85em;
 }

 .carousel-item p{
  font-size: .7em;
 }

 
.footer-top {
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    align-items: center; 
  }

  .footer-logo {
    width: 220px;        
    flex: 0 0 220px;     
    align-items: center; 
  }

  .footer-logo img {
    max-height: 10rem;
  }

  .footer-icons {
    width: 100%;         
    gap: 1rem;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(120px, 1fr)); 
    gap: .75rem 1rem;
  }

  .footer-bottom {
    padding: 1rem 1.5rem;
  }

}


/* Large Phones */
@media (max-width: 768px) {

.MegaNav { display: none; }

  /* Show mobile elements on mobile */
  .MobileMenuButton {
    display: block;
  }

  .MobileNav {
    display: block;
  }

  /* Mobile menu layout */
  .Header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
  }

  .MobileMenuButton {
    grid-column: 1;
    justify-self: start;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem;
  }

  /* Center logo in mobile */
  .Nav-Logo {
    grid-column: 2;
    justify-self: center;
  }
  
 .Nav-Logo img {
    height: 4.5em; /* reduce on mobile so it fits properly */
  }

  /* Search icon moves right */
  .Nav-Search {
    grid-column: 3;
    justify-self: end;
  }
  .SearchIcon{
    font-size: 2.5em;
  }
  
  .SearchBar {
    position: relative;
    border: none;
    background: none;
    padding: 0;
  }

  .SearchInput {
    position: fixed;
    top: 5.0em;
    right: 0;
    width: 40%;
    margin-right: .5em;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: solid rgb(0, 0, 0);
    border-radius: .25em;
    padding: 1em;
    font-size: 1.2em;
    z-index: 1000;
    display: none;
  }

  .SearchBar.is-open .SearchInput {
    display: block;
  }

  .SearchInput::placeholder {
  color: rgba(0,0,0, 0.85);
}


  /* MOBILE NAV DRAWER */
  .MobileNav {
    max-height: 0;
    overflow: hidden;
    background: rgb(1, 29, 56);
    transition: max-height .35s ease;
  }

  .MobileNav.is-open {
    /* Allow the mobile nav to expand to the viewport height and scroll if needed */
    max-height: calc(100vh - 4.5rem);
    overflow-y: auto;
    padding-bottom: 1.5rem;
  }

  .MobileNav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .MobileNav-item {
    border-bottom: 1px solid rgba(255,255,255,0.3);
  }

  .MobileNav-trigger {
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1.2rem;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
  }

  .MobileNav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    list-style: none;
  }

  .MobileNav-submenu a {
    display: block;
    padding: .8rem 1.5rem;
    color: white;
    font-size: 1rem;
  }

  .MobileNav-submenu.is-open {
    max-height: 500px;
  }


.Top-Banner {
  height: 25em;
  align-items: center;
}
.Banner-Info {
  width: 80%;
  height: 12em;          
  margin-top: 6.5em; 
  padding: .2em;         
}
/* #BannerTitle{
  margin-bottom: 1.5em;
} */
.Quick-Links{
  width: 100%;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  margin-top: 0;
}
.Banner-Info h1 {
  font-size: 1.55em;
  /* color: palevioletred; */
}
.Banner-Info p {
  font-size: 1.1em;
}
.link{
  font-size: 1.2em;
}


.KPI-Viewport {
  min-height: 0em;
}
.KPI-item{
  min-height: 6.5em;
}
.KPI-Page {            
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0em;
}
.KPI-item p{
  font-size: 1.9em;
}
  
  h1{
  font-size: 3em;
}

.roadmap-step {
  padding: 1.15rem 2rem;
}
  
  /* Breadcrumbs  */
.breadcrumbs {
  font-size: 1.25rem;
}

  .AlertBoxes > .row > .columns > .row {
  flex: 0 0 325px;
}
  
  .AlertBoxes .columns {
  flex: 0 0 320px;
}


/* Navigation buttons for single item view */
.news-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(114, 195, 244, 0.8);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(1, 29, 56);
  font-size: 1.0rem;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.news-carousel-btn:hover {
  background: rgb(114, 195, 244);
}

.news-prev-btn {
  left: 1rem;
}

.news-next-btn {
  right: 1rem;
}

.arrow-left::before,
.arrow-right::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
}

.arrow-left::before {
  border-width: 0.8rem 1rem 0.8rem 0;
  border-color: transparent rgb(255, 255, 255) transparent transparent;
  margin-left: 0.2rem;
}

.arrow-right::before {
  border-width: 0.8rem 0 0.8rem 1rem;
  border-color: transparent transparent transparent rgb(255, 255, 255);
  margin-right: 0.2rem;
}
.News-Carousel {
  padding-bottom: 6rem;;
}
.carousel-item {
  border-radius: 12px;
  flex: 0 0 75%;   
  max-width: 75%;  
}

 .carousel-item img{
  height: 175px;
 }
 .carousel-item h3{
  font-size: 2.2em;
  line-height: 1.0;
 }
  .carousel-item p{
  font-size: 1.7em;
 }


 .footer-top {
    flex-direction: column;
    padding: 1.25rem 1rem;
    gap: 1rem;
}

.footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-icons {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    gap: 1rem;
}

.footer-icons a {
    font-size: 1.8rem;
}

/* Hide desktop grid links */
  .footer-links {
    display: none;
}


.footer-more {
    display: block;
    width: 100%;
}


.footer-more summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;  
    gap: .5rem;
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    color: rgb(255, 255, 255);
    font-size: 1rem;
}

.footer-more summary::-webkit-details-marker {
    display: none;
}

.footer-more summary i {
    transition: transform 150ms ease;
}

.footer-more[open] summary i {
    transform: rotate(180deg);
}

.footer-more-links {
    margin-top: .75rem;
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.15);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns */
    gap: .75rem 1rem;
    text-align: center;
    justify-items: center;
}

.footer-more-links a {
    width: 100%;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.05rem;
    opacity: .95;
}

.footer-more-links a:hover {
    text-decoration: underline;
    opacity: 1;
}

.footer-logo {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.footer-logo img {
    max-height: 12rem;
    width: 100%;
}

.footer-bottom {
    padding: 1rem 1rem;
}

}


/* Small Phones */
@media (max-width: 480px) { 
  .Top-Banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 25rem; /* mobile default */
}
.Top-Banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}


  
   /* Breadcrumbs  */
.breadcrumbs {
  font-size: 1rem;
}
  
  .AlertBoxes .sidebar-card {
  flex: 0 1 315px;   /* controls card width */
  }


.Banner-Info {
  width: 85%;
  height: 12em;          
  margin-top: 6.5em; 
  padding: .2em;          
}

.Quick-Links{
  width: 100%;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  margin-top: 0;
}
.Banner-Info h1 {
  font-size: 1.18em;
  /* color: white; */
}
.Banner-Info p {
  font-size: .9em;
}
.link{
  font-size: 1.0em;
}

.Overview{
  margin: .75em;
}
.Overview-Title{
  font-size: 1.8em;
  line-height: 1.5;
}
.Overview-Text{
  font-size: .9em;
}


.KPI-Viewport {
  min-height: 0em;
}
.KPI-Page{
  gap: .4em;
}
.KPI-item{
  min-height: 5.5em;
}
.KPI-item p{
  font-size: 1.5em;
}
  
 .roadmap-step {
  padding: 1.15rem 2rem;
}

.carousel-item {
  flex: 0 0 85%;   
  max-width: 85%;  
  padding-top: 1.5em;
}
/* Navigation buttons for single item view */
.news-carousel-btn {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.0rem
}


.arrow-left::before {
  border-width: 0.5rem .75rem 0.5rem 0;
}

.arrow-right::before {
  border-width: 0.5rem 0 0.5rem .75rem;
}


 .carousel-item img{
  height: 135px;
 }
 .carousel-item h3{
  font-size: 1.45em;
  line-height: 1.0;
 }
  .carousel-item p{
  font-size: 1.0em;
 }

 .Research-Locations{
    line-height: 1.1;
}


.footer-icons a {
    font-size: 1.6rem;
  }

.footer-more summary {
    padding: .7rem .9rem;
    font-size: .95rem;
}

.footer-more-links {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.footer-logo img {
    max-height: 8rem;
}

.footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
}

}




