body {
  margin: 0;
  font-family: 'MinionPro';
  box-sizing: border-box;
}

.hero,
body,
html {
  background: none;
    overflow-x: hidden;
}



.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;

}



@font-face {
  font-family: 'Gibson';
  src: url('../fonts/Gibson.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'Refrigerator Deluxe';
  src: url('../fonts/RefrigeratorDeluxe.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Refrigerator Deluxe ExtraBold';
  src: url('../fonts/RefrigeratorDeluxe-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Refrigerator Deluxe Heavy';
  src: url('../fonts/RefrigeratorDeluxe-Heavy.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}


/*header*/
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: linear-gradient( rgba(0, 94, 173, 0.6), rgba(0, 94, 173, 0.3));
  transition: all 0.3s ease;

}

.main-header.scrolled {
  background: rgba(0, 94, 174, 1);
  box-shadow: 0 2px 10px rgba(0, 94, 173, 0.2);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  position: relative;
 
}


.nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: 'Refrigerator Deluxe ExtraBold';
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0 10px;
  
  
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: #ffcc4e;
  transform: scaleX(0);
  transform-origin: left; 
  transition: transform 0.3s ease;
      
}
.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}


.nav-links a:not(:hover):not(:focus)::after {
  transition: transform 0.3s ease;
  transform-origin: right;
}
 


.nav-icons {
  display: flex;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo img {
  max-width: 180px;
  height: 150%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.icon-button {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}


.icon-button[aria-label="Search"]:hover {
  transform: scale(1.3);
}


.icon-button.hamburger-icon:hover {
  transform: scaleY(1.4);
}

/*hero*/

.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}


.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient( rgba(0, 94, 173, 0.2), rgba(0, 94, 173, 0.2));
  z-index: -1;
}
.hero-content {
  position: absolute;
  top: 0;
  left: 90px;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}


.hero-content img {
  max-width: 100%;
  height: auto;
}

.circle-wrapper {
  position: absolute;

  left: 50%;
  transform: translate(0, -50%);
  z-index: 10;
}
.section-wrapper {
  position: relative;
 
}

.scroll-indicator {
  width: 70px;
  height: 70px;
  background-color: #fecc4f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  cursor: pointer;
  

}
.scroll-indicator i {
  font-size: 32px;
  color: white;
}


@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}


.about {
  background-image: url('../media/gold-radial.jpg');
 background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  text-align: center;
  margin: 0 auto;
  padding: 80px 20px 60px 20px;
  position: relative;
  z-index: 1;
  
}

.about p {
  max-width: 1000px;
  font-size: 22px;
  line-height: 1.5;
  font-family: 'Gibson';
  font-weight: 400;
  color: #003265;
  text-align: center;
   margin: 0 auto;
   padding: 0 20px;

}


/*full screen*/
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200vh;
  background: rgba(0, 94, 174, 1);
  color: #fff;
  display: flex;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 80px 40px;
  box-sizing: border-box;
  
}


.fullscreen-menu.show {
  opacity: 1;
  pointer-events: auto;
}
.fullscreen-menu ul {
  list-style: none;
  margin: 0;
  
}
.fullscreen-menu li {
  margin: 20px 0;
}
.fullscreen-menu a {
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.fullscreen-menu a:hover {
  color: rgba(254, 204, 79, 1);
}

.close-button{
position: absolute;
top: 40px;
right: 40px;
 background: none;
 border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

.close-button:hover {
  color: rgba(254, 204, 79, 1);
}


.modal-content__quicklinks {
  display: flex;
  gap: 100px;
  max-width: 1200px;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: nowrap;
}


.quick-links a{
 
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  word-spacing: .15em;
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding-bottom: 8px; 
}

.quick-links i{
  margin-left: 10px;
}
.quick-links a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 16px;
  background: #fecc4f;
  transition: width 0.3s;
  z-index: 0;
}


.quick-links a:hover::after,
.quick-links a:focus::after {
  width: 100%;
  background: white;
}

.quick-links h3{
  position: relative;
  padding-bottom: 18px;
 
}
.quick-links h3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #fecc4f;
  transition: width 0.3s;
  z-index: 1;
}
.submenu {
 
  max-height: 0;
  overflow: visible;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    
}
.submenu.show::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ccc;
}
.submenu.show {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}


.submenu li a {
  font-size: 19px;
  text-transform: none;
}

.modal-content li {
  position: relative;
   margin-bottom: 20px;
}

.fullmenu-item-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
 
}

.toggle-submenu i {
  font-size: 36px;

}
.toggle-submenu {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}


.toggle-submenu.rotate i {
  transform: rotate(45deg); 
  transition: transform 0.3s ease;
}


/*stats*/

.stats-section
{  margin: 0 auto ;
   z-index: 5;
  justify-content: space-between;
  width: 100%;
  top: 0;
  left: 0; 
  display: none !important;
    flex-wrap: wrap;

}
.stats-section.active{
  display: flex !important;
}


.stat-block {
  flex: 1;
  text-align: center;
  position: relative;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px; 
  padding: 20px;
  height: 280px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;

 
}
.stat-block.animate {
  opacity: 1;
   transform: translateX(0);
}


.stat-image {
  width:auto;
  height: auto;
  display: block;
}


.number {
  font-size: 128px;
  font-family: 'Refrigerator Deluxe Heavy';
  position: relative;
  z-index: 1;
  color:   #003265;
  line-height: 1;
  
}
.description{
  font-size: 36px;
  font-family: 'Refrigerator Deluxe';
  font-weight: 400;
  position: relative;
  z-index: 1;
  color: #005eac;
  text-transform: uppercase;
  line-height: 1;
  padding-top: 20px;
 
 
}
.where {
  font-size: 54px;
  font-family: 'Refrigerator Deluxe Heavy';
   position: relative;
  z-index: 1;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  margin-top: 40px;
  
 }


 .blue .description,
 .blue-dark .description
{
  color: white;
}



.gold {
   background-image: url('../media/sport.webp');
  background-size: cover;
  background-position: center;
 
  position: relative;
  color: rgba(0, 94, 174, 1);
}
.dark-gold{
     background-image: url('../media/arts.webp');
  background-size: cover;
  background-position: center;
 
  position: relative;
  color: rgba(0, 94, 174, 1);
}

.dark-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffcc4e;
  z-index: 0;
  background-color: rgba(253, 185, 19, 0.8);

  color: white;
}
.gold::before{
    content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffcc4e;
  z-index: 0;
  background-color: rgba(255, 204, 78, 0.8);

  color: white;

}

.blue {
  background-image: url('../media/iStock-502281790expand.webp');
  background-size: cover;
  background-position: center;
 
  position: relative;

}


.blue::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 94, 173, 0.8);
  z-index: 0;
  border-radius: inherit;
  color: white;
}
.blue-dark::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 50, 101, 0.8);
  z-index: 0;
  border-radius: inherit;
  color: white;
}

.blue-dark {
  background-image: url('../media/PT-and-Nursing-37-2.webp');
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

.stat-block .content {
  position: relative;
  z-index: 1;

}

.blue .number,
.blue-dark .number,
.blue .where,
.blue-dark .where {
  color: #ffcc4e;
}

[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
[data-aos].active {
  opacity: 1;
  transform: none;
}

[data-aos="fade-up"] {
  transform: translateY(20px);
}
[data-aos="fade-up-cta"] {
  transform: translateY(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-20px);
}

[data-aos="fade-left"] {
  transform: translateX(20px);
}

[data-aos="fade"] {
  transform: none;
}


/*program-search*/



.program-search-section {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
 overflow: visible;
  margin: 0 auto;
   padding: 80px 0px;
   

}

.star-bg {
  position: absolute;
  left: 94px;
top: -70px;
  height: auto;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  transform: scale(1.4); 
  z-index: 0;
  pointer-events: none;
  opacity: 0;
transition: opacity 1s ease;
  will-change: opacity;
}

.star-bg.visible {
  opacity: 1;
}

.program-search-section-container {
   display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}


.program-search-section h2 {
  font-size: 48px;
  font-family: 'Refrigerator Deluxe ExtraBold';
  line-height: 1.5;
  color: #005eac;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
  padding-bottom: 20px;
}


.search-box {
  width: 100%;
  max-width: 1100px;
  position: relative;
}

.search-input-group {
  display: flex;
  border: 2px solid #fecc4f;
  overflow: hidden;
  background: white;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}


.search-input-group input {
  flex: 1;
  padding: 22px 18px;
  border: none;
  font-size: 16px;
  outline: none;
  background: white;
}
.search-input-group button {
  background-color: #fecc4f;
  border: none;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-dropdown {
position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: none;
  background: white;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
}

.modal-suggestions-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.modal-suggestions-list li {
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 16px;
}

.modal-suggestions-list li:hover {
  background-color: #fecc4f;
}


.program-buttons {
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
  margin-top: 20px; 
  padding: 40px 0px;

}


.program-btn {
  display: flex;

  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  font-family: 'Gibson';
  align-items: center;   
  border: 2px solid rgba(0, 94, 174, 1);
  color: #003265;
  padding: 8px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
 
}

.program-btn img {
  width: 24px;
  height: 26px;
  flex-shrink: 0; 

}

.program-btn span {
  flex-grow: 1; 
  text-align: center; 
 
}

.program-btn:hover {

  background-color: rgba(0, 90, 177, 1);
  color: white;
}

/*close knit campus*/
.close-knit-campus{
  position: relative;
  height: 650px; 
  overflow: hidden;

}
.close-knit-campus-container {
  position: absolute;
  bottom: 0;              
  left: 0;
  width: 100%;            
  z-index: 2;              
  padding: 2rem;
  box-sizing: border-box;
}
.close-knit-campus-container .text-block {
  background-color: rgba(0, 94, 173, 0.75);
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 40px;
  bottom: 20px;
  position: relative;
  
}

.close-knit-campus-container h2 {
  font-size: 48px;
  font-family: 'Refrigerator Deluxe ExtraBold';
  color: #ffcc4e;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
 
}

.close-knit-campus-container p {
  font-size: 22px;
  font-family: 'Gibson';
  font-weight: 400;
  color: white;
  text-align: center;
  margin: 0 auto;
  
}
.background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 1s linear;
  will-change: opacity;
  z-index: 0;
  pointer-events: none; 
}


.bg1 {
  background-image: url("../media/msj_1.webp");
  opacity: 1;
}


.bg2 {
  background-image: url("../media/iStock-503342087_1.webp");
  opacity: 0;
  z-index: 1;
}


/*testimonials*/
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:rgba(0, 94, 174, 1);
  border: none !important;
  color: white;
  font-size: 32px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
   
}
.slider-arrow:hover {
  background: rgba(0, 94, 174, 1);
  opacity: 1;
}
.slider-arrow-prev {
  left: -70px;
}
.slider-arrow-next {
  right: -70px;
}

.mount-moments-section {
  position: relative;
   background-color: #ebeef2;
   padding: 20px;

}


.moments.container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.heading {
  position: relative;
  text-align: center;
  color: #005eac;
  font-size: 48px;
  font-family: 'Refrigerator Deluxe ExtraBold';
  line-height: 1.5;
  text-transform: uppercase;


}

.testimonial-slider-container {
   position: relative;
  overflow: hidden;
  margin-top: 40px;
   width: calc(3 * 300px + 2 * 60px);
   padding: 0 80px;
}

#slider{
   display: flex;
  gap: 60px;
  transition: transform 0.4s ease;
  will-change: transform;
}


.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 60px;
}

.testimonial-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.student-card {
flex: 0 0 300px;
text-align: center;
 
 
}

.student-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center; 
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin: 0 auto;
 
}

.testimonial-text {
 
  color: #003265;
  padding: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-family: 'Gibson';
  display: flex;
  flex-direction: column;
  text-align: center;
 
 
}
.testimonial-text span{
 color: #005eac;

}

.testimonial-text h2 {
  
  font-size: 18px;
  font-weight: 500;
  font-family: 'Gibson';
  color: #005eac;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}


/*news-events*/

.news-events-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: stretch;
  position: relative;
  
}
.news-events-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-block,
.event-column {
  flex: 1;
}
.news-events-section h2{
text-align: center;
color: #005eac;
font-size: 48px;
  font-family: 'Refrigerator Deluxe ExtraBold';
  line-height: 1.5;
text-transform: uppercase;

}


.news-block {
    display: flex;
  flex-direction: column;
  gap: 20px;
 
}

.main-news {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 0;
}
.main-news .news-image {
  width: 100%;
  height: 280px;  
  object-fit: cover;
  display: block;
}
.main-news .news-content {
  display: flex;
  flex-direction: column;
  justify-content: left;
}

.news-content {
  background-color: #fecc4f;
  font-size: 14px;
  font-family: 'Gibson';
  font-weight: 500;
  color: #005eac;
  padding: 10px;
  top: 0;
 
}
.news-content p,
.news-content h3 {
  margin: 0;
}
.news-date {
  font-size: 11px;
  font-family: 'Gibson';
  font-weight: 500;
  color: #003265;
margin: 0;
}



.small-news-row {
  display: flex;
  gap: 20px;
}

.secondary-news {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  align-items: stretch;
}

.news-image-sm {
  width: 100%;
  height: 170px;     
  object-fit: cover;
  display: block;
}


.news-events-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50%); 
  width: 1px;
  background: #003265;
  z-index: 1;
}
.event-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-column {
 
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-list {
  padding: 0 0 24px 0;
}

.event-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.event-date-box {
  min-width: 90px;
  max-width: 90px;
  height: 90px;
  border: 2px solid #fecc4f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  background: #fff;
  padding: 5px;
 
}

.event-month {
  font-size: 18px;
  font-family: 'Refrigerator Deluxe';
  font-weight: 700;
  color: #005ead;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.event-day {
  font-size: 64px;
  font-weight: 800;
  font-family: 'Gibson';
  color: #005ead;
  line-height: 1;
}

.event-details {
  flex: 1;
}

.event-title-link {
  font-size: 14px;
  font-family: 'Gibson';
  font-weight: 700;
  color: #005ead;
  text-decoration: underline;
  margin-bottom: 4px;
  display: inline-block;
}

.event-meta {
  font-size: 12px;
  font-family: 'Gibson';
  color: #005ead;
  font-weight: 600;
  margin-bottom: 4px;
}

.event-desc {
  font-size: 12px;
  font-family: 'Gibson';
  color: #222;
  margin-bottom: 0;
  padding-right: 20px;
  max-width: 370px;
}


.view-button {
  margin-top: 10px;
  align-self: flex-start;
  background: white;
  border: 1px solid #005eae;
  color: #003265;
  padding: 20px;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  
}

.view-button:hover {
  background-color: #005eae;
  color: white;
}
.view-more-wrapper {
  margin-top: auto; 
  display: flex;
  justify-content: flex-start;}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }

  .event-image {
    height: 200px;
    max-width: none;
  }
}

/*social*/

.explore-virtually {
  background-color: white;
  padding: 0px 30px;
  grid-column: 1;
  grid-row: 1 / span 2; 
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  color: rgba(0, 50, 102, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
 
}

.explore-virtually h2 {
  font-size: 48px;
  font-family: 'Refrigerator Deluxe ExtraBold';
  margin: 0 0 10px 0;
  line-height: 1.1;
  text-transform: uppercase;
  padding: 20px 0;
  color: #005ead;
  position: relative;
}
.explore-virtually h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: 4px;
  background-color: #fecc4f;
}



.explore-virtually p {
  font-size: 17px;
  font-family: 'Gibson';
  line-height: 1.6;
  font-weight: 400;
 
}


.explore-virtually .social-icons{
  display: flex;
   
  gap: 20px;
  padding-bottom: 20px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
  align-items: stretch;
  padding: 50px 0;

}

.grid-photo-wrapper {
  grid-column: 2 / span 3;
  grid-row: 1 / span 2;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}


.grid-item-large {
  grid-row: span 2;
}

.grid-item img:not(.play-icon):not(.like-count) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}



.social-icons img {
  display: inline-block;
  margin: 0 5px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  text-align: center;
  font-size: 32px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  padding-top: 20px;
}

.grid-item {
  position: relative;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  
}
.grid-item img {
  width: 100%;
  display: block;
}



.post-block {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 1);
  overflow: hidden;
 
  box-shadow:  0 2px 6px rgba(0, 0, 0, 0.1);


}

.post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 10px 15px 15px
}

.post-title {
  margin: 0 0 10px;
  font-size: 22px;
  color: #102854;
}

.post-text {
  flex: 1;
  margin: 0 0 15px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(17, 24, 39, 1);

}

.post-counters {
  display: flex;
  gap: 10px;
 
}

.post-counters .likes,
.post-counters .comments {
  font-size: 12px;
  color: rgba(31, 41, 55, 1);

}


.post-image {

  flex: 2;
  overflow: hidden;
  margin: 16px 8px;
  border-radius: 8px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grid-item.stack {

  grid-row: span 3;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.grid-item.stack-large {

  grid-row: span 3;
  display: grid;
  grid-template-rows: 2fr 1fr;
   gap: 20px;
}

.grid-item.stack-reverse {
  grid-row: span 3;
  display: grid;
  grid-template-rows: 1fr 2fr;
   gap: 20px;
 
}



.grid-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 33%;
  padding: 22px ;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(
    0deg,
    rgba(0, 51, 102, 0.85) 0%,
    rgba(0, 51, 102, 0.60) 40%,
    rgba(0, 45, 114, 0.0) 100%
  );

}


.grid-item .overlay span {
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.grid-item .overlay .like-count {
  color: white !important;
}

.like-count {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff !important;
  font-size: 15px;
  margin: 0;
  padding: 0;
  background: transparent;
}

.like-count img {
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
}

.grid-item iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}


/*footer-cta*/

.footer-cta {
  background-image: url("../media/gold-radial-bottom.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
   
}


.footer-cta-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  height: 400px;
  margin: 0 auto;


}

.footer-cta-title {
  font-size: 34px;
  font-weight: 500;
  line-height: 72px;
  margin-bottom: 20px;
  color: rgba(0, 90, 177, 1);
  text-align: center;
  padding-top: 80px;
  line-height: normal;

}

.footer-cta-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 12px;
  margin-bottom: 30px;
  color: rgba(0, 90, 177, 1);
  text-transform: uppercase;
}

.cta-buttons {

  display: flex;
  justify-content: center;
  gap: 30px;
   flex-wrap: wrap;
  margin-top: 20px; 
  padding: 20px 0px;

}

.cta-button {
 display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid rgba(0, 94, 174, 1);
  color: #003265;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  font-family: 'Gibson';
  transition: all 0.3s ease;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  width: 140px;
    text-align: center;

}

.cta-button i {
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cta-button:hover {
  background-color: rgba(0, 90, 177, 1);
  color: white;
}

.footer-cta-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;       
  object-fit: cover;
  object-position: top;  
  display: block;
  margin: 0;
  z-index: 1;
 
}
.star-bg-cta {
  position: relative;
  bottom: 60px;
  width: 180px;
  height: auto;
  filter: opacity(80%);
 
  pointer-events: none;
}

/*footer*/
.footer {
  background-color: #003265;
  padding: 20px;
  margin-top: -10px;
  padding-top: 0;
 

}

.footer-address {
  color: white;
}

.footer-social-icons {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding-top: 10px;

}

.social-icon {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  color: white !important;
  text-decoration: none;
}

.footer-content {
  display: flex;
  text-decoration: none;
  color: white;
  justify-content: space-between;
  padding: 20px;
  gap: 10px;
  margin: 0 auto;
  
}

.footer-content a{
  text-decoration: none;
  color: white;
}
.footer-content a:hover{
  text-decoration: none;
  color: #fecc4f;
}

.footer-column {
  gap: 0px;
}

.footer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


@media only screen and (max-width: 1280px) {
  .hero-content {
    left: 0;

  }}
@media (min-width: 768px) and (max-width: 1024px) {
  .stats-section.active .stat-block {
    width: calc(40% - 20px)!important;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    margin: 10px 20px;

  }
  .small-news-row {
       gap: 10px;

}

  .testimonial-slider {
    width: 100%;
  }
  .mount-moments-section {
    padding: 0;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .slider-arrow-prev {
    left: -20px;
  }
  .slider-arrow-next {
    right: 10px;
  }
  

}

@media screen and (max-width: 768px) {
  .hero{
    height: 500px;
  }
 
  .nav-links{
    display: none;
  }
  .top-nav{
    padding: 0 10px;
  }
  .search-box{
    max-width: 350px;
  }
  .program-search-section-container h2 {
     line-height:  1.2;
  }
  .program-search-section {
    padding: 20px 0;
  }
  .program-buttons {
    gap: 20px;
    flex-direction: column;
  }
 
 .stats-section {
    flex-direction: column;
    align-items: center;

  }
  .stat-block {

    margin: 20px;
    min-height: 200px;
    width: 100%;
    max-width: 300px;
    padding: 20px;
 
  }
  
 .close-knit-campus {
    height: 500px;
      }
  .close-knit-campus-container {
    padding: 30px;
  }
  .close-knit-campus-container h2 {
    font-size: 36px;
   
  }
  .close-knit-campus-container .text-block {
    padding: 20px;
    max-width: 100%;
  }
  .close-knit-campus-container p {
    font-size: 16px;
  }
  .testimonial-slider-container {
    width: 100%;
    padding: 0 20px;
  }
  .testimonial-slider {
    width: 100%;
  }
  .mount-moments-section {
    padding: 0;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .slider-arrow-prev {
    left: -20px;
  }
  .slider-arrow-next {
    right: 10px;
  }
  
  .news-events-container {
    flex-direction: column;
    align-items: center;
    padding:  0 20px;
  }
 .news-block,
  .event-column {
    width: 100%;
    max-width: 600px;
  }
  .news-events-container::before {
    display: none;
  }

  .event-wrapper {
    width: 100%;
  
  }

.footer-cta-content{
  
  text-align: center;
  height: auto;
}

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-content {
    flex-direction: column;
 
  }

  .social-section .social-grid,
  .grid-photo-wrapper  {
    display: flex;
    flex-direction: column;
  }

 
  .explore-virtually {
    text-align: center;
    padding: 1rem;
  }

  .explore-virtually .social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
  }

  .overlay {
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
  }
  iframe {
    width: 100%;
    height: 100%;
  }


  .post-counters {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
  }
}

