/* Hero section  */
.hero {
background: #0b1e37;
padding: 150px 0px 50px;
}

.hero-container {
 width: min(1200px, 92%);
 margin: 0 auto;
  text-align: center;
}


.hero-title {
  margin: 0;
  color: #c0a34d;
  /* max-width: 1100px; */
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.title-white {
  color: #c0a34d;
  display: inline;
}

.title-gold {
  color: #c0a34d;
  display: inline;
}

.hero-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
    width: 70%;
    margin: 10px auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
    justify-content: center;
}

/* staged reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.title-kingsford {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.title-kingsford.show {
  opacity: 1;
  transform: translateY(0);
}

.title-gateway {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  transform: translateY(26px);
}

.title-gateway.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons a{
  text-decoration: none;
}

.scroll-bottom {
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.scroll-bottom a {
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  font-weight: 100;
  font-family: 'Glacial Indifference';
  display: inline-block;
}

.scroll-bottom.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-bottom.bounce a,
.scroll-bottom.bounce {
  animation: floatArrow 1.8s ease-in-out infinite;
}

@keyframes floatArrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-text {
    font-size: 20px;
     width: 80%;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }

  .hero-title {
    font-size: 46px;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.65;
     width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    text-align: center;
        align-items: center;
  }

  .hero-badge {
    gap: 5px;
    padding: 10px;
    font-size: 12px;
    letter-spacing: normal;
}
}
.woolf-btn{
    background: white;
    color: #0b1e37;
    cursor: pointer;
    font-size: 16px;
    width: fit-content;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    border: 2px solid #0b1e37;
}

.woolf-btn:hover {
    background: #c0a34d;
    color: #fff;
    transition: background 1s ease;
}



/* Academic Board Section  */

.academic-board {
    background: #fff;
    padding: 50px 70px 0px 70px;
    font-family: Georgia, "Times New Roman", serif;
    color: #071a3a;
}

.academic-container {
    max-width: 1010px;
    margin: 0 auto;
}

.academic-title {
    text-align: center;
    margin-bottom: 40px;
}

.academic-title h2 {
    font-size: 34px;
    line-height: 1;
    margin: 0 0 20px;
    color: #06275a;
    font-weight: 700;
}

.gold-line {
    width: 96px;
    height: 4px;
    background: #bd9144;
    margin: 0 auto;
}

.academic-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    column-gap: 0;
    align-items: center;
    margin-bottom: 96px;
}

.academic-profile {
    text-align: center;
}

.academic-profile img {
    width: 174px;
    height: 174px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px;
}

.academic-profile h3 {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    color: #001f4f;
    margin: 0;
}

.academic-profile p {
    font-size: 15px;
    margin: 5px 0 0;
    color: #001f4f;
}

.academic-content {
    max-width: 655px;
}

.academic-content p {
    font-size: 17px;
    line-height: 1.42;
    margin: 0;
    color: #071a3a;
    text-align: justify;
}

.academic-content strong {
    font-weight: 700;
}

.academic-content em {
    font-style: italic;
}

@media (max-width: 768px) {
    .academic-board {
    background: #fff;
    padding: 50px 20px 0px 20px;
    font-family: Georgia, "Times New Roman", serif;
    color: #071a3a;
   }
    .academic-container {
        padding: 0 20px;
    }

    .academic-title {
        margin-bottom: 50px;
    }

    .academic-title h2 {
        font-size: 30px;
    }

    .academic-row {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 65px;
    }

    .academic-content {
        max-width: 100%;
    }

    .academic-content p {
        font-size: 16px;
    }
}
/* team-section */
.team-section {
    background: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    color: #001f4f;
}

/* section spacing */
.team-block {
    padding: 35px 0 48px;
}

/* title */
.team-title {
    text-align: center;
    margin-bottom: 52px;
}

.team-title h2 {
    font-size: 27px;
    line-height: 1;
    margin: 0 0 15px;
    color: #06275a;
    font-weight: 700;
}

.team-line {
    width: 72px;
    height: 3px;
    background: #bd9144;
    margin: 0 auto;
}

/* directors section */
.directors-grid {
    max-width: 700px;
    margin: 0 auto;
}

.directors-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 95px;
    justify-content: center;
}

/* staff section */
.staff-grid {
    max-width: 980px;
    margin: 0 auto;
}

.staff-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 105px;
    justify-content: center;
}

/* common card */
.team-card {
    text-align: center;
}

/* directors image size */
.directors-card .team-card img {
    width: 174px;
    height: 174px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 18px;
}

/* staff image size */
.staff-card .team-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;  
    display: block;
    margin: 0 auto 18px;
}

/* name */
.team-card h3 {
    font-size: 17px;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
    color: #001f4f;
}

/* designation */
.team-card p {
    font-size: 13px;
    line-height: 1.2;
    margin: 5px 0 0;
    color: #001f4f;
}

/* divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: #eeeeee;
}

/* staff spacing */
.staff-block {
    padding-top: 50px;
    padding-bottom: 50px;
}

.staff-block .team-title {
    margin-bottom: 52px;
}

/* responsive */
@media (max-width: 768px) {

    .directors-card,
    .staff-card {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .team-block {
        padding: 35px 20px 45px;
    }

    .team-title {
        margin-bottom: 38px;
    }

    .directors-card .team-card img {
        width: 150px;
        height: 150px;
    }

    .staff-card .team-card img {
        width: 120px;
        height: 120px;
    }
}