.logo {
    max-width: 100px;
    margin-right: 20px;
    min-width: 80px;
}

.custom-main-bg-color {
    background-color: #012150;
}

/* Light blue background. Make it a fainter version of the #012150 */
.custom-bg-light-blue {
    background-color: #3b5c94;
    color: #ffffff;
}

/* Button styling */
.btn-light-navy {
  background-color: #ffffff;
  color: #012150;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-light-navy:hover {
  background-color: #fdeb9a; /* your faint yellow accent */
  color: #012150;
  transform: translateY(-2px);
}


/* Card header styling */

.custom-card-header {
    background-color: #012150;
    color: #ffffff;
    padding: 12px 16px;
    /* Insert top border radii to match card */
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border-bottom: 1px solid #fbcc21;
}

.card-content {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.custom-navbar {
   background-color: #ffffff;
}

.director-img {
    max-width: 200px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Call to Action Section. It should have the same width and alignment as the other sections */

.call-to-action {
    background-color: #fdeb9a;
    padding: 2rem 1rem;
    text-align: center;
    /* width: 100%; */
}

.call-to-action h2 {
    margin-bottom: 1rem;
}

.call-to-action p {
    margin-bottom: 1.5rem;
}

/* Navbar divider line. A horizontal line that cuts across the navbar, but does not start exactly from the edges. It must appear below the navbar items. */
.navbar-divider {
    display: block;
    border-bottom: 2px solid #fbcc21; /* yellow line */
    width: calc(100% - 30px); /* adjust width to create margins */
    margin: 0 15px; /* adjust the horizontal margins as needed */
}

.custom-navbar .navbar-brand, 
.custom-navbar .nav-link {
  color: #012150 !important; /* dark blue text */
}

.custom-navbar .nav-link:hover {
  color: #fbcc21 !important; /* optional: a hover color */
}

.custom-bg-warning {
    background-color: #fbcc21; /* yellow background */
    color: #012150; /* dark blue text */
}

.custom-jumbotron {
    background-color: #fdeb9a; /* yellow background */
    color: #012150; /* dark blue text */
    padding: 2rem 1rem;
    /* border-radius: 0.3rem; */
    /* margin-bottom: 2rem; */
}

.director-message {
  max-width: 800px;
}

.custom-btn-primary {
  background-color: #012150; /* same navy as text */
  color: #fdeb9a;            /* echo jumbotron bg for harmony */
  border: none;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.custom-btn-primary:hover {
  background-color: #023173; /* slightly lighter navy */
  color: #ffffff;            /* pure white on hover */
}

.custom-btn-outline-primary {
  border-color: #012150;
  color: #012150;
  border-width: 2px;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.custom-btn-outline-primary:hover {
  background-color: #012150;
  color: #fdeb9a;
}



/* Set maximum height for the carousel/slider */
.carousel {
  max-height: 500px;
  overflow: hidden;
}

.carousel-inner {
  max-height: 500px;
}

.carousel-item img {
  max-height: 500px;
  object-fit: cover;
  width: 100%;
}

/* Mission Card Styling */
.mission-card {
    background-color: #e6f3ff;
    transition: background-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.mission-card:hover {
    background-color: #d4e9ff;
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,.15);
    transform: translateY(-4px);
}

/* Vision Card Styling */
.vision-card {
    background-color: #fff6e0;
    transition: background-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.vision-card:hover {
    background-color: #ffe9b8;
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,.15);
    transform: translateY(-4px);
}

/* Aims card Styling */
.aim-card-1 {
  background: linear-gradient(135deg, #0d3b66, #145da0);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
}
.aim-card-1:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.25), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.aim-card-1:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.aim-card-1:hover:before {
  opacity: 1;
}
.aim-card-1 .card-title {
  font-weight: 600;
  letter-spacing: .5px;
}

/* Aim 2 */
.aim-card-2 {
  background: linear-gradient(135deg, #f95738, #ff784f);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
}
.aim-card-2:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.25), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.aim-card-2:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.aim-card-2:hover:before {
  opacity: 1;
}
.aim-card-2 .card-title {
  font-weight: 600;
  letter-spacing: .5px;
}

/* Aim 3 */
.aim-card-3 {
  background: linear-gradient(135deg, #11999e, #38ef7d);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
}
.aim-card-3:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.25), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.aim-card-3:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.aim-card-3:hover:before {
  opacity: 1;
}
.aim-card-3 .card-title {
  font-weight: 600;
  letter-spacing: .5px;
}

/* Aim 4 */
.aim-card-4 {
  background: linear-gradient(135deg, #fbb034, #ffdd00);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
}
.aim-card-4:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.25), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.aim-card-4:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.aim-card-4:hover:before {
  opacity: 1;
}
.aim-card-4 .card-title {
  font-weight: 600;
  letter-spacing: .5px;
}
/* Aim 5 */
.aim-card-5 {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
}
.aim-card-5:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,.25), transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.aim-card-5:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.aim-card-5:hover:before {
  opacity: 1;
}
.aim-card-5 .card-title {
  font-weight: 600;
  letter-spacing: .5px;
}

/* Footer style */
footer a {
  color: #fdeb9a;
}

footer a:hover {
  text-decoration: none;
  background-color: #fdeb9a;
  color: #012150;
  padding: 5px 10px;
  font-weight: bold;
}