.footer {
  background: #1a2a4a;
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
  padding-top: 0;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 30px 30px 30px;
  background: rgba(26, 42, 74, 0.95);
}
.footer-col {
  flex: 1 1 220px;
  margin: 0 20px;
  min-width: 220px;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  margin-right: 15px;
}
.footer-brand {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.footer-contact li {
  margin-bottom: 12px;
  font-size: 1.08rem;
  display: flex;
  align-items: flex-start;
}
.footer-icon {
  margin-right: 10px;
  font-size: 1.2rem;
}
.footer-social {
  margin-top: 18px;
}
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  background: #2d3e5e;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover {
  background: #3b5998;
}
.footer-social img {
  width: 22px;
  height: 22px;
}
.footer-col h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 1.08rem;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col ul li:hover {
  color: #00bfff;
}
.footer-post {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}
.footer-post img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 14px;
  background: #fff;
}
.footer-post-date {
  font-size: 0.98rem;
  color: #b0b8c9;
  display: block;
  margin-bottom: 4px;
}
.footer-post p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
}
.footer-bottom {
  background: #111c33;
  color: #fff;
  text-align: left;
  padding: 18px 30px 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.08rem;
}
.footer-nav a {
  color: #fff;
  margin-left: 28px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #00bfff;
}
@media (max-width: 1000px) {
  .footer-container {
    flex-direction: column;
    padding: 40px 10px 10px 10px;
  }
  .footer-col {
    margin-bottom: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* Carousel Styles */
#headerCarousel .item {
  position: relative;
  height: 450px;
  overflow: hidden;
}
#headerCarousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
#headerCarousel .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.3);
  padding: 30px 40px;
  border-radius: 12px;
}
#headerCarousel h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#headerCarousel p {
  font-size: 1.3rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  #headerCarousel .item { height: 250px; }
  #headerCarousel h2 { font-size: 1.3rem; }
  #headerCarousel p { font-size: 1rem; }
  #headerCarousel .carousel-caption { padding: 10px 10px; }
}
