@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}

header {
  background-color: #1b5da9;
  padding: 0.5rem 1rem;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .logo img {
  width: 10rem;
  height: auto;
}
header .nav-links {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 3.5rem;
  margin: 0;
  padding: 0;
}
header .nav-links li a {
  font-family: "Martel", serif;
  text-decoration: none;
  color: white;
  font-size: 1.25rem;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  header .nav-links {
    gap: 1rem;
  }
  header .nav-links li a {
    font-size: 1rem;
  }
}
header .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  order: 2;
  transition: transform 0.3s;
}
header .menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}
header .close-button {
  display: none;
}
@media (max-width: 1024px) {
  header .close-button {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1000;
  }
}
@media (max-width: 1024px) {
  header .menu-toggle {
    display: flex;
  }
  header .nav-links.active ~ .close-button {
    display: block;
  }
  header .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1b5da9;
    padding: 2rem 0;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  header .nav-links li a {
    font-size: 1.5rem;
  }
  header .nav-links.active {
    display: flex;
  }
}
@media (max-width: 576px) {
  header .logo {
    order: 1;
  }
  header .menu-toggle {
    order: 2;
  }
}

footer {
  font-family: "Noto Sans", sans-serif;
  color: white;
  background-color: #1b5da9;
}
footer .address {
  display: grid;
  grid-template-columns: 4fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 4rem;
}
footer .address .info {
  font-weight: 200;
}
footer .address .address-info h2 {
  font-size: 1.5rem;
}
footer .address .address-info h2:nth-of-type(2) {
  font-weight: 400;
}
footer .address a {
  display: flex;
  text-decoration: none;
  color: white;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
footer .socials {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 1rem;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 400px;
}
footer .socials p {
  margin: 0;
}
@media (max-width: 576px) {
  footer .address {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
  footer .address .address-info {
    text-align: center;
    font-size: 1rem;
  }
  footer .address .address-info h2 {
    font-size: 1.25rem;
  }
  footer .address .info {
    text-align: center;
  }
  footer .address .info a {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  footer .socials p {
    font-size: 1rem;
    text-align: center;
  }
}

.landing {
  background: rgb(25, 93, 168);
  background: linear-gradient(180deg, rgb(25, 93, 168) 0%, rgba(255, 255, 255, 0) 100%);
}
.landing .landing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.landing .landing-content .landing-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  text-align: left;
  align-content: center;
  color: white;
  margin-left: 6rem;
}
.landing .landing-content .landing-hero {
  margin-inline: 3rem;
}
.landing .landing-content .landing-hero img {
  width: 100%;
  align-content: center;
}

@media (max-width: 1024px) {
  .landing-text {
    font-size: 0.75rem !important;
    margin-left: 2rem !important;
  }
  .landing-hero {
    margin-inline: 2rem !important;
  }
}
@media (max-width: 576px) {
  .landing-content {
    padding-top: 5rem;
  }
  .landing-text {
    margin-left: 1rem !important;
  }
  .landing-text h1 {
    font-size: 0.75rem;
  }
  .landing-hero {
    margin-inline: 1rem !important;
  }
  .landing-hero img {
    align-content: center;
    width: 100%;
  }
}
.about-us {
  font-family: "Noto Sans", sans-serif;
  font-weight: 800;
  margin: 4rem 0;
}
.about-us h1 {
  text-align: center;
  margin-bottom: 3rem;
  color: #1759A6;
  font-weight: 900;
  font-size: 3rem;
}
.about-us .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem;
  background-color: #6894c5;
  position: relative;
}
.about-us .about-content .about-info {
  text-align: justify;
  margin-inline: 5rem;
  color: white;
}
.about-us .about-content .about-info p {
  font-size: 1.25rem;
}
.about-us .about-content .about-info .links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.about-us .about-content .about-hero {
  position: relative;
  text-align: center;
}
.about-us .about-content .about-hero iframe {
  width: 540px;
  height: 350px;
}

@media (max-width: 1024px) {
  .about-info {
    margin-inline: 0 !important;
  }
  .about-hero iframe {
    width: 400px !important;
    height: 240px !important;
  }
}
@media (max-width: 576px) {
  .about-us {
    margin-top: 2rem;
  }
  .about-us h1 {
    margin: 0;
    font-size: 2rem;
  }
  .about-us .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #6894c5;
  }
  .about-us .about-content .about-info {
    margin-inline: 0;
    /* Remove extra margin */
    text-align: center;
    /* Center text */
  }
  .about-us .about-content .about-info p {
    font-size: 1rem;
  }
  .about-us .about-content .about-hero {
    display: block;
    width: 100%;
    text-align: center;
  }
  .about-us .about-content .about-hero iframe {
    width: 280px !important;
    height: 180px !important;
  }
}
.services {
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
  margin: 4rem 5rem;
}
.services h1 {
  text-align: center;
  color: #1759A6;
  font-weight: 900;
  font-size: 3rem;
}
.services .services-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 3rem;
}
.services .services-content .services-card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  outline: solid 1px black;
  border-radius: 1rem;
  outline-offset: 1rem;
  align-items: stretch;
  height: 100%;
  width: 100%;
}
.services .services-content .services-card .services-text h2 {
  text-align: center;
}
.services .services-content .services-card .services-text ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1rem;
}
.services a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  background-color: #1759A6;
  color: white;
  width: 10rem;
  padding: 1rem;
  margin: 3rem auto 0rem auto;
  font-weight: 700;
}
.services h3 {
  margin-top: 2.5rem;
  text-align: center;
}

@media (max-width: 576px) {
  .services {
    margin: 0rem 5rem !important;
  }
  .services h1 {
    font-size: 3rem !important;
  }
  .services .services-content {
    display: flex;
    flex-direction: column;
  }
  .services .services-content .services-card .services-text h2 {
    font-size: 2rem;
  }
  .services .services-content .services-hero img {
    width: 100%;
  }
}
@media (max-width: 320px) {
  .services {
    margin: 0rem 1.5rem !important;
  }
  .services h1 {
    font-size: 2rem !important;
  }
  .services .services-text h2 {
    font-size: 1.25rem !important;
  }
  .services .services-content {
    display: flex;
    flex-direction: column;
  }
  .services .services-content .services-hero img {
    width: 100%;
  }
}
.faqs {
  font-family: "Noto Sans", sans-serif;
  margin: 4rem 5rem;
}
.faqs h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1759A6;
  font-size: 3rem;
  font-weight: 900;
}
.faqs .faq-card {
  border-radius: 1rem;
  margin-inline: 4rem;
  margin-bottom: 1.5rem;
}
.faqs .faq-card .faq-content {
  border: 1px solid black;
  border-radius: 3rem;
  padding: 1rem;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  font-size: 1.25rem;
  background-color: white;
  color: black;
}
.faqs .faq-card .faq-content ol {
  padding: 1.25rem 3rem;
  font-weight: 700;
}
.faqs .faq-card .faq-content ol li {
  margin-bottom: 1.5rem;
}
.faqs .faq-card .faq-content ul li {
  font-weight: normal;
}
.faqs .faq-card.active {
  background-color: white;
  box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.5);
}
.faqs .faq-card.active .faq-collapse {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faqs .faq-card.active .faq-content {
  display: block;
}
.faqs .faq-card.active .faq-collapse img {
  transform: rotate(180deg);
}
.faqs a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  background-color: #1759A6;
  color: white;
  width: 10rem;
  padding: 1rem;
  margin: 0 auto;
  font-weight: 700;
}
.faqs .faq-link {
  display: inline-block;
  background-color: white;
  color: black;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0rem;
}
.faqs .faq-link:hover {
  color: #1759A6;
}

@media (min-width: 577px) and (max-width: 1024px) {
  .faq-collapse {
    padding: 0.5rem 4rem !important;
  }
}
@media (max-width: 576px) {
  .faqs {
    margin: 0rem 2rem !important;
  }
  .faqs h2 {
    font-size: 2rem !important;
  }
  .faqs h3 {
    font-size: 1rem !important;
  }
  .faqs .faq-card {
    margin-inline: 0rem !important;
  }
  .faqs .faq-card .faq-collapse {
    padding: 0.5rem 1rem !important;
  }
  .faqs .faq-card .faq-collapse img {
    width: 1rem !important;
    height: 1rem !important;
  }
  .faqs .faq-card .faq-content ol {
    font-size: 0.8rem !important;
    padding: 0.5rem 1.5rem !important;
  }
}
.featured {
  font-family: "Noto Sans", sans-serif;
  padding: 4rem 5rem;
  background-color: #2961a1;
  margin-bottom: 2rem;
}
.featured h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 900;
  font-size: 3rem;
}
.featured .video-carousel-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 60px 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.featured .video-player-display {
  grid-column: 1/2;
  background-color: #2961a1;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.featured .video-player-display .active-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* Taller ratio for external embeds */
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
}
.featured .video-player-display .active-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  min-width: 100%;
  min-height: 100%;
}
.featured .mobile-controls-and-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-column: 2/3;
}
.featured .slider-controls {
  display: flex;
  flex-direction: column; /* DESKTOP: Vertical stack */
  gap: 20px;
  align-items: center;
}
.featured .slider-controls #prevBtn::before {
  content: "▲";
}
.featured .slider-controls #nextBtn::before {
  content: "▼";
}
.featured .slider-controls button {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
}
.featured .slider-controls button:hover {
  background-color: #1759A6;
  color: white;
}
.featured .slider-controls button::before {
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.featured .slider-controls #slideCounter {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}
.featured .video-nav-list {
  grid-column: 3/4;
  max-height: 500px;
  overflow-y: hidden; /* HIDDEN to clip sliding text */
  padding: 1rem;
  background-color: #2961a1;
  border-radius: 1rem;
  position: relative; /* Needed for transform origin */
}
.featured .video-nav-list h3, .featured .video-nav-list p.video-caption-display {
  transition: transform 0.35s ease-out, opacity 0.35s ease-out;
  position: relative;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}
.featured .video-nav-list p.video-caption-display {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: justify;
}
.featured .video-nav-list .featured-card, .featured .video-nav-list .video-nav-track {
  display: none;
}
.featured .slide-up-exit, .featured .slide-down-enter {
  transform: translateY(-100%);
  opacity: 0;
}
.featured .slide-down-exit, .featured .slide-up-enter {
  transform: translateY(100%);
  opacity: 0;
}

@media (max-width: 992px) {
  .featured {
    padding: 2rem 0.5rem;
    margin: 2rem 0;
  }
  .featured .video-carousel-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .featured .video-player-display {
    grid-column: 1/-1;
    padding: 0.5rem 0;
  }
  .featured .mobile-controls-and-caption {
    grid-column: 1/-1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    order: 2;
  }
  .featured .slider-controls {
    flex-direction: row;
    gap: 10px;
  }
  .featured .slider-controls #prevBtn::before {
    content: "◀";
  }
  .featured .slider-controls #nextBtn::before {
    content: "▶";
  }
  .featured .video-nav-list {
    grid-column: 1/-1;
    max-height: none;
    overflow-y: visible;
    padding: 1rem;
    order: 3;
  }
  .featured .video-nav-list .slide-up-exit, .featured .video-nav-list .slide-down-exit, .featured .video-nav-list .slide-up-enter, .featured .video-nav-list .slide-down-enter {
    transform: none;
  }
  .featured .video-nav-list .slide-left-exit, .featured .video-nav-list .slide-right-enter {
    transform: translateX(-100%);
    opacity: 0;
  }
  .featured .video-nav-list .slide-right-exit, .featured .video-nav-list .slide-left-enter {
    transform: translateX(100%);
    opacity: 0;
  }
  .featured .video-nav-list h3 {
    text-align: center;
  }
  .featured .video-nav-list p.video-caption-display {
    text-align: center;
  }
  .featured .video-nav-list h3, .featured .video-nav-list p.video-caption-display {
    display: block !important;
  }
}
@media (max-width: 576px) {
  .featured {
    padding: 1rem 0.25rem;
    margin-bottom: 0.5rem;
  }
  .featured h2 {
    font-size: 2.2rem;
  }
  .featured .video-carousel-wrapper {
    gap: 0.75rem;
  }
  .featured .video-player-display {
    padding: 0.25rem 0;
  }
  .featured .mobile-controls-and-caption {
    padding: 0.5rem 0;
  }
  .featured .video-nav-list {
    padding: 0.75rem;
  }
  .featured .video-nav-list h3 {
    font-size: 1.2rem;
    text-align: center;
  }
  .featured .video-nav-list p.video-caption-display {
    font-size: 0.8rem;
    text-align: center;
  }
}
.contact {
  font-family: "Noto Sans", sans-serif;
  margin: 4rem 5rem;
}
.contact h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1759A6;
  font-weight: 900;
  font-size: 3rem;
}
.contact .contact-content {
  display: grid;
  gap: 6rem;
}
.contact .contact-content .content-details {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Space between contact cards */
  justify-content: center;
  align-items: flex-start; /* Align content to the left */
}
.contact .contact-content .content-details .content-card {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background-color: #f9f9f9;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact .contact-content .content-details .content-card a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1.5rem;
  color: black;
  width: 100%;
}
.contact .contact-content .content-details .content-card a .icon-circle {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background-color: #1759A6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .contact-content .content-details .content-card a .icon-circle img {
  width: 2rem;
  height: auto;
}
.contact .contact-content .content-details .content-card a p {
  margin: 0;
  font-size: 1rem;
}
.contact .contact-content .content-details .content-card a p span {
  font-weight: bold;
  color: #1759A6;
}
.contact .contact-content .content-details .content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .contact {
    margin: 4rem 0rem !important;
  }
  .contact h1 {
    font-size: 3rem !important;
  }
  .contact h2, .contact p {
    text-align: center;
  }
  .contact .contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact .contact-content .contact-form {
    width: 75% !important;
    display: flex;
    align-content: center;
  }
  .contact .contact-content .content-details .content-card {
    width: 20rem;
  }
  .contact .contact-content .content-details .content-card a {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 320px) {
  .contact h1 {
    font-size: 2rem !important;
  }
  .contact-content .content-details .content-card {
    display: inline-block;
    margin-inline: auto;
    width: 75% !important;
  }
  .contact-content .content-details .content-card a {
    display: inline-block;
    margin-inline: auto;
    width: 75% !important;
  }
  .contact-content .content-details .content-card a p {
    font-size: 0.8rem !important;
  }
}
.facility {
  font-family: "Noto Sans", sans-serif;
  margin: 4rem 0;
}
.facility h2 {
  text-align: center;
  margin: 0rem 0rem 2rem 0rem;
  color: #1759A6;
  font-size: 3rem;
  font-weight: 900;
}
.facility .carousel-frame.facility-frame {
  overflow: hidden;
  background-color: #6894c5;
  padding: 24px;
}
.facility .facility-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}
.facility .facility-card {
  flex-shrink: 0;
  margin-right: 24px;
  width: calc(33.3333333333% - 16px);
}
.facility .facility-card img {
  display: block;
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

@media screen and (max-width: 992px) {
  .facility .facility-card {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 576px) {
  .facility {
    margin: 0;
  }
  .facility h2 {
    font-size: 2rem;
    margin: 1rem 0 1.5rem 0;
  }
  .facility .carousel-frame.facility-frame {
    padding: 24px;
  }
  .facility .facility-card {
    width: 100%;
  }
}
.testimonials {
  font-family: "Noto Sans", sans-serif;
  margin: 5rem 0;
  font-weight: 500;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #1759A6;
  font-weight: 900;
  font-size: 3rem;
}
.testimonials .checked {
  color: orange;
}
.testimonials .testimonial-content {
  margin: 2rem 0rem 2rem 0rem;
}
.testimonials .testimonial-text {
  margin-inline: 4rem;
}

.testimonial-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s ease-in-out;
}

.testimonial-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.testimonial-head img {
  width: 15%;
}
.testimonial-head .star {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-card {
  flex: 0 0 33.333%;
  border: 1px solid black;
  border-radius: 3rem;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}
@media (max-width: 576px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

.testimonial-name {
  font-weight: 800;
  font-size: 1.75rem;
}
.testimonial-name p {
  margin: 0;
}

@media (max-width: 576px) {
  .testimonials h2 {
    font-size: 2rem;
  }
  .testimonials .testimonial-card .testimonial-content .testimonial-head img {
    width: 30%;
  }
  .testimonials .testimonial-card .testimonial-content .testimonial-text p {
    font-size: 1rem;
  }
}
.virtual-tour {
  font-family: "Noto Sans", sans-serif;
  margin: 4rem 5rem;
}
.virtual-tour h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1759A6;
  font-size: 3rem;
  font-weight: 900;
}
.virtual-tour .tour-container {
  width: 100%;
  height: 600px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.3);
}
.virtual-tour .tour-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (min-width: 577px) and (max-width: 1024px) {
  .virtual-tour {
    margin: 3rem 3rem;
  }
  .virtual-tour h2 {
    font-size: 2.5rem;
  }
  .virtual-tour .tour-container {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .virtual-tour {
    margin: 2rem 1.5rem !important;
  }
  .virtual-tour h2 {
    font-size: 2rem !important;
  }
  .virtual-tour .tour-container {
    height: 350px;
    border-radius: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */