.Page-Layout {
    background-color: rgb(240, 240, 240);
    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;
}
h1 {
    color:rgb(255, 255, 255);
    font-weight: bold;
    font-size: 2.5em;
    letter-spacing: .05em;
}
h2 {
    color: rgb(0, 76, 147);
    font-weight: bold;
    font-size: 2.5em;
    letter-spacing: .05em;
}
p {
  font-size: 1.5em;
}

/*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);
}

/* Banner Dots Focus */
.Banner-Dots button:focus-visible {
  outline: 3px solid rgb(0, 158, 224);
  outline-offset: 2px;
}

/* 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, BANNER CAROUSEL STYLE */
.Top-Banner {
  background-color: rgb(96, 119, 144);
  width: 100%;
  height: 30em;
  margin: 0;
  overflow: hidden;
  position: relative;   
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}


.Banner-Track {
  position: absolute;    
  inset: 0;             
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
  z-index: 1;            
}

.Slide {
  flex: 0 0 100%;        
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.Slide > img {
  display: block;
  width: 100%;
  height: 100%;       /* Fill the 30em height */
  object-fit: cover;  /* Crop proportionally to fill the area */
}

/*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;             
}

.Banner-Info h1 {
  margin: 0 0.5em 1.7em;
  line-height: 1.2;
  color: rgb(255, 255, 255);
  text-align: left;
  font-size: 2.5em;
}

.Banner-Info p {
  margin: 0 .2em .8em;
  font-size: 1.5em;
  color: rgb(1, 29, 56);
}

#BannerText {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

#BannerText.fade-out {
  opacity: 0;
}

#BannerText a, #BannerText a:visited {
  color: #000;
  text-decoration: none;
}

#BannerText a:hover,
#BannerText a:focus {
  color: #000;
  text-decoration: underline;
}



/* Prevent fade on first load */
.no-animate {
  transition: none !important;
}



/*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.45em;
  text-align: center;
 line-height: 1.2;
  padding: 0 0.5em;
  text-decoration: underline;
  transition: background-color 150ms ease, color 150ms ease;
}

.Quick-Links .link:first-child {
  white-space: nowrap;     /* keep it on one line */
}

.link:hover,
.link:focus-visible {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  outline: none;
}

/* Carousel controls */
.BannerCarousel-Controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  text-align: center;
  width: 100%;
}


.Lcarousel-btn {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 16px solid rgb(255, 255, 255);
  border-bottom: 8px solid transparent;
  border-left: 0;
  appearance: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 150ms ease;
}

.Lcarousel-btn:hover,
.Lcarousel-btn:focus-visible {
  transform: scale(1.2);
}

.Rcarousel-btn {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-left: 16px solid rgb(255, 255, 255);
  border-bottom: 8px solid transparent;
  border-right: 0;
  appearance: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 150ms ease;
}

.Rcarousel-btn:hover,
.Rcarousel-btn:focus-visible {
  transform: scale(1.2);
}

/* Dots indicator */
.Banner-Dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  margin-bottom: .2em;
}
.Banner-Dots button {
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background-color 150ms ease;
}

.Banner-Dots button:hover {
  background: rgba(255, 255, 255, 0.65);
}
.Banner-Dots button.active {
  background: rgb(255, 255, 255);
}

/*BEGGINING TEXT STYLE */
.Overview{
    text-align: center;
    padding: 1em;
    margin: 5em;
}
.Overview-Title {
    margin-bottom: 1em;
}
.Overview-Text{
  margin: 0 auto;
  width: 100%;
  line-height: 1.5;
  text-align: left;
}

/* 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*/
}


/*VIDEO BOX STYLE */
.Video-Welcome-RF {
    width: 100%;
    min-height: 45em;
    background-color: rgb(1, 29, 56); 
    /* background-image: linear-gradient(to bottom, #011d38, white); */
    display: flex;
    justify-content: center;   
    align-items: flex-start;     
    margin-top: 1em;
    padding: 1em;               
}

.Video-Container {
    width: 100%;
    max-width: 50em;      
    display: block;  
    margin-top: 8em;             
}

.Video-Embed {
    display: block;
    width: 100%;
    height: auto;                 
    aspect-ratio: 16 / 9;         
    border: 0;
    margin: 0 auto;  
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

/* NEWS ARTICLES/ NEWS CAROUSEL STYLE */
.News-Carousel {
  position: relative;
  width: 100%;
  overflow: hidden;            
  height: 28.5em;
  background-color: rgb(1, 29, 56);
  background-image: linear-gradient(to bottom, rgb(1, 29, 56),  rgb(0, 76, 147), rgb(240, 240, 240), rgb(240, 240, 240), rgb(240, 240, 240));
  padding: 1em;
}

.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 {
  /* background: rgba(255,255,255,.09); */
  border-radius: 12px;
  flex: 0 0 25%;   
  max-width: 25%;  
  text-align: left;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5em;       /* SAFE with box-sizing: border-box */

}

.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 {
  width: 100%;
  color: rgb(51, 51, 51);
  font-weight: normal;
  margin-bottom: 0.2em;

}

.carousel-item p {
  width: 100%;
  font-size: 0.9em;
  color: rgb(0, 76, 147);
  padding: 0.5em;
  border-radius: 6px;
  margin-top: .2em;
}

.news-image-link {
  display: block;
  width: 100%;
}

.news-image-link img {
  display: block;
  width: 100%;
  height: auto;
}



/* Dots */
.NewsCarousel-dots {
  position: absolute;
  bottom: 10px;
  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;
}




/*LOCATIONS STYLE */
.Research-Locations{
    height: 22em;
    width:100%;
    text-align: center;
    margin-top: 4.5em;
}
.Blue-Bold-Text{
  color: rgb(0, 76, 147);
  font-weight: bold;
  
}

/*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;
  /* color: rebeccapurple; */
}
.Banner-Info p {
  font-size: 1.3em;
}
.MegaColumn li:first-child .MegaTrigger {
  font-size: 1.5rem;
}
.MegaColumn a {
  font-size: 1em;
}
}

/* 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;
  /* color: red; */
}
.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;
}
 }

  
/* 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;
  /* color: orange; */
}
.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;
}
 }

 .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;
  /* color: green; */
}
.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;
}
 
.carousel-item {
  border-radius: 12px;
  flex: 0 0 29%;   
  max-width: 29%;  
}

 .carousel-item img{
  height: 120px;
 }
 .carousel-item h3{
  font-size: 1.1em;
 }
 }


/* 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;
}

.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: 25em;
}
.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 {
    max-height: 1015px; /* cant open all at same time */
  }

  .MobileNav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-bottom: .75em;
  }

  .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: 510px;
  }


.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.5em;
}


.KPI-Viewport {
  min-height: 22em;
}
.KPI-item{
  min-height: 6.5em;
}
.KPI-Page {            
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 0.65em;
}
.KPI-item p{
  font-size: 1.9em;
}


/*VIDEO BOX STYLE */
.Video-Welcome-RF {
    min-height: 35em;    
}

.Video-Container {
    width: 100%;
    max-width: 40em;      
    margin-top: 4em;             
}

/* 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 {
  height: auto;
}
.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.2;
 }
  .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) { 

.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: 22em;
}
.KPI-Page{
  gap: .4em;
}
.KPI-item{
  min-height: 5.5em;
}
.KPI-item p{
  font-size: 1.5em;
}

/*VIDEO BOX STYLE */
.Video-Welcome-RF {
    min-height: 17.5em;    
}

.Video-Container {
    width: 100%;
    max-width: 20em;      
    margin-top: 1.5em;             
}

.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.3;
 }
  .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;
}

}














