/* ---------------------------
   Global Styles
---------------------------- */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9faff;
  color: #333;
  line-height: 1.6;
}

/* Links */
a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #0056b3;
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-weight: 700;
}

/* ---------------------------
   Navbar
---------------------------- */
.navbar {
  background-color: #004080;
}

.navbar-brand img {
  height: 55px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin-left: 15px;
}

.navbar-nav .nav-link:hover {
  color: #ffd700 !important; /* Gold on hover */
}

/* ---------------------------
   Hero / Banner Section
---------------------------- */
.carousel-item {
  height: 80vh;
  min-height: 400px;
  background: no-repeat center center scroll;
  background-size: cover;
  position: relative;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 30px;
  border-radius: 12px;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.carousel-caption p {
  font-size: 1.2rem;
  color: #f1f1f1;
}

/* ---------------------------
   Announcements
---------------------------- */
.card {
  border: none;
  border-radius: 12px;
}

.card h5 {
  font-weight: 600;
  color: #004080;
}

.card .btn {
  background: #004080;
  color: #fff;
}

.card .btn:hover {
  background: #ffd700;
  color: #004080;
}

/* ---------------------------
   Birthday Section
---------------------------- */
#birthdayCarousel .card {
  border: 2px solid #ffd700;
  border-radius: 15px;
  background: #fffef5;
}

#birthdayCarousel h5 {
  color: #004080;
  font-weight: 600;
}

#birthdayCarousel .text-success {
  color: #28a745 !important;
}

/* ---------------------------
   Highlights
---------------------------- */
.bg-light {
  background-color: #f1f7ff !important;
}

.p-4 h3 {
  color: #004080;
  font-weight: 700;
}

/* ---------------------------
   Call to Action
---------------------------- */
.bg-primary {
  background-color: #004080 !important;
}

.bg-primary h2,
.bg-primary p {
  color: #fff;
}

/* ---------------------------
   Footer
---------------------------- */
footer {
  background: #00264d;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

footer a {
  color: #ffd700;
}

footer a:hover {
  text-decoration: underline;
}
footer .social-icons img {
  transition: transform 0.3s ease;
}

footer .social-icons img:hover {
  transform: scale(1.2);
}