@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  background-color: #FFFFF0;
  color: #132245;
}

header {
  position: sticky;
  width: 100%;
  padding: 1rem 9%;
  background-color: #132245;
  border: 2px solid #132245;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 3rem;
  color: #FEDE42;
  font-weight: 800;
  cursor: pointer;
  transition: 0.5s ease;
}

.logo:hover {
  transform: scale(1.1);
  color: #FF791F;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

nav a {
  font-size: 1.8rem;
  color: #E9EDC8;
  margin-left: 4rem;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
}

nav a:hover, nav a.active {
  color: #FF791F;
  border-bottom: 3px solid #FEDE42;
}

hr {
  border: none;
  height: 2px;
  background-color: #f6250a;
  margin: 40px 0;
}

footer {
  background-color: #132245;
  color: #E9EDC8;
  padding: 2rem 9%;
  text-align: center;
  border-top: 2px solid #891f1100;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 1rem;
}

.footer-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #FEDE42;
}

.footer-section p {
  font-size: 1.4rem;
  color: #E9EDC8;
}

.footer-section a {
  color: #E9EDC8;
  font-weight: 600;
}

.footer-section a:hover {
  color: #FEDE42;
}

.footer-section a i {
  font-size: 2.5rem;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.footer-section a i:hover {
  transform: scale(1.9);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #132245;
  min-width: 160px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  overflow: hidden;
  display: none;
  z-index: 200;
  padding: 0;
  margin: 0;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  text-align: left;
  white-space: nowrap;
  color: #E9EDC8;
  transition: background 0.3s ease-in-out;
}

.dropdown-content a:hover {
  background: #005A8B;
  color: #FEDE42;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.home {
  min-height: 100vh;
  padding: 5rem 9%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  background-color: #FFFFF0;
}

.home .home-content .home-header {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #132245;
  position: sticky;
  top: 0;
  background-color: #FFFFF0;
  z-index: 99;
  padding: 10px 0;
}

.home-content p {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: #50403E;
}

.home-img img {
  width: 32vw;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0, 90, 139, 0.3);
  cursor: pointer;
  transition: 0.2s linear;
}

.about {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #FFFFF0;
  padding: 5rem 9%;
  min-height: 100vh;
  overflow: hidden;
}

.about-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;                   /* behind icons & content */
  pointer-events: none;
}

.about-content {
  max-width: 600px;
  text-align: right;
  margin-left: auto;
  z-index: 3;
}

.about-header {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #132245;
  margin: 0 0 1rem;
}

.about-content p {
  font-size: 2.6rem;
  margin: 0;
  color: #50403E;
}

.about-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
  text-align: center;
}

.mountain-section {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: 4rem;
}

.mountain-path {
  position: absolute;
  top: 140px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.icon-container {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.about-icon {
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.icon-text {
  position: absolute;
  top: -330px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 251, 224, 0.95);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 1.2rem;
  color: #333;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: normal;
  max-width: 300px; /* ✅ restrict width */
  text-align: left;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
}


.mountain-section:hover .icon-text {
  opacity: 1;
}

.begin-label {
  position: absolute;
  bottom: -150px;
  left: -150px;
  font-size: 1.9rem;
  font-weight: bold;
  background-color: #fffbe0;
  color: #132245;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  z-index: 3;
}


#vip {
  padding: 6rem 10%;
  background-color: #FFFFF0; /* your off-white base */
}

.section-title {
  font-size: 3.2rem;
  text-align: center;
  color: #132245; /* main deep blue */
  margin-bottom: 4rem;
  font-weight: 800;
}

.accordion-container {
  max-width: 1100px;
  margin: 0 auto;
}

.accordion-header {
  background-color: #005A8B; /* bold blue */
  color: white;
  cursor: pointer;
  padding: 2rem 2.5rem;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
  transition: background 0.3s ease;
  border-radius: 8px 8px 0 0;
}

.accordion-header:hover {
  background-color: #FF791F; /* bright orange hover */
}

.accordion-content {
  background: #E9EDC8; /* light soft background */
  padding: 2rem 2.5rem;
  display: none;
  font-size: 1.4rem;
  line-height: 2;
  border: 1px solid #50403E;
  border-top: none;
  border-radius: 0 0 8px 8px;
  color: #132245;
}

.accordion-item + .accordion-item {
  margin-top: 2rem;
}

.accordion-content ul {
  padding-left: 2rem;
  margin-top: 1.2rem;
  font-size: 1.3rem;
  line-height: 2;
  color: #132245;
}







/* entrepreneur start */
.entrepreneur {
  min-height: 100vh;
  padding: 5rem 9%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  background-color: #FFFFF0;
}




.entrepreneur .entrepreneur-content .entrepreneur-header {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #132245;
  position: sticky;
  top: 0;
  background-color: #FFFFF0;
  z-index: 99;
  padding: 10px 0;
}




.entrepreneur-content p {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: #50403E;
}




.entrepreneur-img img {
  width: 32vw;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0, 90, 139, 0.3);
  cursor: pointer;
  transition: 0.2s linear;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.entre {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  background-color: #FFFFF0;
}

.entre .entre-content .entre-header {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #132245;
  top: 0;
  background-color: #FFFFF0;
  z-index: 99;
  padding: 10px 0;
}

.entre-content p {
  font-size: 2.6rem;
  color: #50403E;
}

.entre-img img {
  width: 32vw;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0, 90, 139, 0.3);
  cursor: pointer;
  transition: 0.2s linear;
}

.entre-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Teko', sans-serif;
  background: #FFFFF0;
  width: 100vw;
}

.wrapper{
  width: 80%;
  padding: 30px 0;
  text-align: center;
}

.content {
padding: 10%;
}

.content p {
line-height: 1.5;
}
.main-content{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-row-gap: 15px;
  grid-column-gap: 15px;
}
.main-content .box{
  position: relative;
  cursor: pointer;
  margin-bottom: 15px;
  box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
  height: 350px;
  overflow: hidden;    
}
.main-content .box::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.main-content .box:hover:before{
  top: 0;
  right: calc(100% - 5px);
  z-index: 10;
}
.main-content .box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-content .box .img-text {
position: absolute;
  display: flex;
justify-content: center;
align-items: center;
background: rgba(255,255,255,0.9);
width: 100%;
height: 100%;
top: 0;
right: 100%;
transition: all 0.5s ease-in-out;	
}
.main-content .box:hover .img-text{
  top: 0;
  right: 0;
}

/* entrepreneur end */


/* -------------------Alumni Start----------------------- */

.alumni {
   min-height: 1vh;
   justify-content: center;
   padding: 2rem 9%;
   display: flex;
   gap: 8rem;
   background-color: #FFFFF0;
}

.alumni .alumni-content .alumni-header {
   font-size: 6rem;
   font-weight: 700;
   line-height: 1.3;
   color: #132245;
   position: sticky;
   text-align: right;
   top: 0;
   background-color: #FFFFF0;
   z-index: 99;
   padding: 10px 0;
}

.alumni-slider {
   height: 300px;
   margin: auto;
   position: relative;
   width: 100%;
   display: grid;
   place-items: center;
   overflow: hidden;
}

.alumni-slide-track{
   display: flex;
   width: calc(250px * 26);
   animation: scroll 40s linear infinite;
}

.alumni-slide-track:hover{
   animation-play-state: paused;
}

@keyframes scroll {
   0% {
       transform: translateX(0);
   }
   100% {
       transform: translateX(calc(-250px * 13))
   }
}

.alumni-slide{
   height: 200px;
   width: 250px;
   display: flex;
   align-items: center;
   padding: 15px;
   perspective: 100px;
}

.alumni-slide img {
   width: 100%;
   transition: transform 1s;
}

.alumni-slide img:hover{
   transform: translateZ(20px);
}

.alumni-slider::before,
.alumni-slider::after {
   background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
   content: '';
   height: 100%;
   position: absolute;
   width: 15%;
   z-index: 2;
}

.alumni-slider::before {
   left: 0;
   top: 0;
}

.alumni-slider::after {
   right: 0;
   top: 0;
   transform: rotateZ(180deg);
}



/* -------------------Alumni End----------------------- */



.contact {
  margin-top: 100px;
  padding: 5rem 9%;
  background-color: #FFFFF0;
  color: #132245;
}

.contact form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #132245;
  padding: 3rem;
  border-radius: 1.6rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.contact form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #FEDE42;
  font-weight: 500;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 1.4rem;
  margin-bottom: 2rem;
  border: 2px solid #FEDE42;
  border-radius: 1rem;
  font-size: 1.6rem;
  color: #132245;
  background-color: #E9EDC8;
  transition: 0.3s ease;
}

.contact form input:focus,
.contact form textarea:focus {
  border-color: #FF791F;
  background-color: #FFFBEF;
  outline: none;
}

.contact form button {
  width: 100%;
  padding: 1.6rem;
  background-color: #FEDE42;
  color: #132245;
  font-weight: 600;
  font-size: 1.8rem;
  border-radius: 5rem;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.contact form button:hover {
  background-color: #FF791F;
  color: #FFFFF0;
  border-color: #FEDE42;
}

.contact h2 {
  text-align: center;
  font-size: 3.2rem;
  color: #132245;
  margin-bottom: 3rem;
  font-weight: 700;
}

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00274D;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 200;
}
.calendar-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.book-meeting-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  background-color: #FFFFF0;
}

.booking-button-container {
  transform: scale(1.5); 
  text-align: center;
}

.events-hero {
  position: relative;
  background: url('your-event-image.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
}
 .events-hero {
  position: relative;
  background: url('University_Hall4-982x698.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FEDE42;
  text-align: center;
}
.events-hero-overlay {
  background-color: rgba(19, 34, 69, 0.7); 
  width: 5000px;
  height: 855px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events-hero-content {
  z-index: 2;
  position: relative;
  text-align: center;
  max-width: 90%;
}
.events-hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #FEDE42;
}
.events-hero-content p {
  font-size: 1.5rem;
  color: #E9EDC8;
  margin-bottom: 2rem;
}

.calendar-overlay iframe {
  width: 800px;
  height: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.contact-hero {
   position: relative;
   background: url('University-of-Massachusetts-Boston-–-University-Hall-exterior.jpg') center/cover no-repeat;
   min-height: 80vh; 
   display: flex;
   align-items: center;
   justify-content: center;
 }
  .contact-hero-overlay {
   position: absolute;
   padding: 8rem;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(19, 34, 69, 0.7); 
   z-index: 1;
 }
 .contact-hero-content {
   position: relative;
   z-index: 2;
   color: #fff; 
   max-width: 600px;
   width: 90%;
   margin: auto;
   padding: 2rem;
   background-color: rgba(255, 255, 255, 0.05); 
   backdrop-filter: blur(5px); 
   border-radius: 12px;
 }
  .contact-hero-content h1 {
  text-align: center;
  margin-bottom: 0.5rem;
}
 .contact-hero-content p {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fff;
}
 .contact-hero form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
 .contact-hero input,
.contact-hero textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
}
 .contact-hero button {
  background-color: #003366;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
 .contact-hero button:hover {
  background-color: #001f4d;
}

.entrepreneur {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #FFFFF0;
  border-radius: 1rem;
}


.entrepreneur-img {
  flex: 1 1 400px;
  text-align: center;
}


.entrepreneur-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}


.entrepreneur-content {
  flex: 1 1 500px;
  max-width: 600px;
}


.entrepreneur-header {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0f0f0e; /* Updated to match the gold accent color */
}


.entrepreneur-header span {
  color: #132245; /* Updated to match the dark blue accent color */
}


.entrepreneur-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #132245; /* Updated to match the dark blue accent color */
}


.entrepreneur-content strong {
  color: #b69f2d; /* Updated to match the gold accent color */
}


.entrepreneur-content em {
  display: block;
  margin-top: 1.5rem;
  font-style: italic;
  color: #8a0707; /* Slight dark red for emphasis */
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .entrepreneur {
      flex-direction: column;
      padding: 2rem 1rem;
  }


  .entrepreneur-header {
      font-size: 2rem;
      text-align: center;
  }


  .entrepreneur-content {
      text-align: center;
  }
}

.lab-vacancies {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: rem 2rem;
  position: relative; /* Essential for absolute children */
  background: 
  linear-gradient(rgba(19, 34, 69, 0.7), rgba(19, 34, 69, 0.7)), 
  url('vertical.jpg') center/cover no-repeat;
  min-height: 100vh;
  align-items: center;
}


.lab-card {
  position: relative;
  width: 600px;   /* wider rectangle */
  height: 400px;  /* slightly shorter */
  border-radius: 25px;
  overflow: hidden; /* make sure rounding shows */
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.3s ease;
}


.lab-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-card h2 {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 100 ;
  color: white;
  font-size: 1.5rem;
  text-shadow: 0 0 10px black;
}

.lab-card:hover img {
  transform: scale(1.05) rotateY(10deg) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lab-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity .8s ease;
  pointer-events: none; /* lets clicks pass through */
}

.lab-card:hover::before {
  opacity: 0;
}

/* Vacancies Intro Section */
.vacancies-intro {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

.vacancies-intro h2 {
  font-size: 2rem;
  color: #ffffff; 
  margin-bottom: 10px;
}

.vacancies-intro p {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
}

.vacancies-intro a {
  color: #FEDE42; /* Gold for link color */
  text-decoration: none;
}

.vacancies-intro a:hover {
  text-decoration: underline;
}

.amenities-page {
  background-color: #FFFFF0; /* Light background */
  padding: 5rem 0;
  display: flex;
  justify-content: center;
}

.amenities-section {
  max-width: 1200px;
  margin: auto;
  padding: 3rem;
  background-color: #FFFFF0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.amenities-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.amenities-text h2, .amenities-text h3 {
  color: #132245;
  margin-bottom: 1rem;
}

.amenities-text h2 {
  font-size: 2.8rem;
  font-weight: bold;
}

.amenities-text h3 {
  font-size: 2rem;
}

.amenities-text ul {
  list-style: disc;
  margin-left: 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #50403E;
}

/* Image Placeholder */
.amenities-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenities-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Layout */
@media (min-width: 768px) {
  .amenities-container {
      flex-direction: row;
      align-items: center;
  }

  .amenities-text {
      flex: 1;
  }

  .amenities-image {
      flex: 1;
      text-align: center;
  }

  .amenities-image img {
      width: 90%;
      max-width: 500px;
  }
}

.amenities-intro {
  background-color: #FFFFF0;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: auto;
}

.umb-logo {
  max-height: 60px;
  margin-bottom: 1rem;
}

.amenities-intro h1 {
  font-size: 2.5rem;
  color: #132245;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.highlighted-text {
  font-size: 1.25rem;
  color: #EF6C00; /* A warm orange */
  font-weight: 600;
  line-height: 1.6;
}

.highlighted-text a {
  color: #000;
  text-decoration: underline;
}

.program-container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.program-intro {
  background-color: #FEDE42;
  color: #132245;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.program-intro h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.program-intro h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.program-intro p {
  font-size: 18px;
  line-height: 1.6;
}

.program-benefits {
  background-color: #FFFFF0;
  color: #132245;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.program-benefits h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.program-benefits ul {
  list-style-type: none;
  padding: 0;
}

.program-benefits li {
  font-size: 18px;
  margin-bottom: 10px;
}

.program-benefits strong {
  font-weight: bold;
}

.cta {
  text-align: center;
  padding: 40px;
  background-color: #FEDE42;
  color: #132245;
  border-radius: 10px;
}

.cta h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  font-size: 18px;
  background-color: #132245;
  color: #FEDE42;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #1a3b5d;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}

.profile-photo img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 0; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.profile-info {
  max-width: 600px;
  width: 100%;
  font-size: 1.9rem;  
  line-height: 1.4;
}

.profile-info p {
  font-size: 1.4rem;   
  line-height: 1.8;
  margin: 1 auto;
  max-width: 600px;
  text-align: center;
}

.profile-buttons .btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.6rem 1.6rem;
  background-color: #132245;
  color: #FEDE42;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.profile-buttons .btn:hover {
  background-color: #FEDE42;  
  color: #132245;             
  cursor: pointer;
}

.application-form {
  background: #FFFFF0;
  padding: 3rem 1rem;
}

.form-container {
  max-width: 800px;
  margin: auto;
  background: #FFFFF0;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.application-form h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #132245;
}

.application-form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.application-form input,
.application-form textarea,
.application-form select {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.3rem;
  border-radius: 6px;
  border: 1px solid #FFFFF0;
  font-family: 'Poppins', sans-serif;
}

.application-form button {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #132245;
  color: #FEDE42;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: block;
  width: 100%;
}

.application-form button:hover {
  background-color: #FEDE42;  
  color: #132245;             
  cursor: pointer;
}

.form-intro {
  background-color: #FFFFF0;
  color: #132245;
  padding: 2rem;
  border-radius: 12px 12px 0 0;
  margin-bottom: 2rem;
  text-align: center;
}

.form-intro h2 {
  color: #132245;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-intro p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.apply-hero {
  position: relative;
  background: url('vertical.jpg') center/cover no-repeat;
  min-height: 320vh; /* or any height you want */
  display: flex;
  align-items: center;
  justify-content: center;
}
 .apply-hero-overlay {
  position: absolute;
  padding: 8rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 34, 69, 0.7); 
  z-index: 1;
}
.apply-hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFF0; 
  max-width: 600px;
  width: 90%;
  margin: auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(5px); 
  border-radius: 12px;
}
 .apply-hero-content h1 {
 text-align: center;
 margin-bottom: 0.5rem;
 color: #FEDE42;
}
.apply-hero-content p {
 text-align: center;
 margin-bottom: 1.5rem;
 color: #FEDE42;
}
.apply-hero form {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}
.apply-hero input,
.apply-hero textarea {
 padding: 0.75rem;
 border: 1px solid #FFFFF0;
 border-radius: 10px;
 font-size: 1rem;
 width: 100%;
}
.apply-hero button {
 background-color: #003366;
 color: #FEDE42;
 padding: 0.75rem;
 border: none;
 border-radius: 10px;
 cursor: pointer;
 transition: background 0.3s ease;
}
.apply-hero button:hover {
 background-color: #001f4d;
}

.accordion-checkbox {
  display: none;
}

.accordion {
  background-color: #132245;
  color: #FFFFF0;
  padding: 10px;
  text-align: left;
  border: none;
  outline: none;
  font-size: 18px;
  width: 100%;
  cursor: pointer;
  margin-bottom: 6px; 
  display: block;
}

.accordion:after {
  content: '+';
  font-size: 20px;
  float: right;
}

.accordion-checkbox:checked + .accordion:after {
  content: '-';
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: #FEDE42;
  margin-bottom: 10px;
}

.accordion-checkbox:checked + .accordion + .panel {
  display: block;
}

.cta ul {
  padding-left: 1.5rem; /* adds proper indentation for bullets */
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem; /* makes text size normal */
  line-height: 1.5;
}

.cta ul li {
  margin-bottom: 0.4rem;
  list-style-type: disc;
}
.cta {
  margin-bottom: 2rem; /* Adjust spacing as needed */
}
