.topbaar{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 7px;
    background: #193949;
    color: white;
}

.sticky-header {
  background: #faa652;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.2s ease;
}
.sticky-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  flex-wrap: wrap;
  max-width: 1200px;
    margin: auto;
}
.logo a {
  text-decoration: none;
}
.logo img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}
.logo h2 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1E3A5F, #2A6F8F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}
.logo span {
  color: #e6b31e;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding-right: 25px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #1e2a3e;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e6b31e;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: #2a6f8f;
}
.menu-icon {
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  .menu-icon { display: block; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    background: white;
    width: 70%;
    height: calc(100vh - 70px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    transition: 0.3s ease-in-out;
    gap: 1.8rem;
    z-index: 999;
  }
  .nav-links.active { left: 0; }
  .nav-links li a { font-size: 1.2rem; }
  .nav-links a::after { display: none; }
  .logo img { max-height: 45px; }
  .logo h2 { font-size: 1.4rem; }
}
footer {
  background: #0f2a38;
  color: #cddfe7;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 10px 15px;
}
.footer-about h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #e6b31e;
  position: relative;
  display: inline-block;
}
.footer-about h4::after,
.footer-contact h4::after,
.footer-social h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #e6b31e;
}
.footer-about p,
.footer-contact p {
  line-height: 1.6;
  margin-top: 0.5rem;
}
.footer-contact p i {
  margin-right: 8px;
  color: #e6b31e;
  width: 25px;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.social-links a {
  color: #cddfe7;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.social-links a:hover {
  color: #e6b31e;
  transform: translateY(-3px);
  background: rgba(230,179,30,0.2);
}
.copyright {
  text-align: center;
  border-top: 1px solid #2c5568;
  padding-top: 1.5rem;
  font-size: 0.9rem;
}
.copyright i {
  color: #e6b31e;
  margin: 0 4px;
}
.pageslink{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 5px;
    flex-wrap: wrap;
    gap: 20px;
}
.pageslink a{
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
  footer { padding: 2rem 0 1.5rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-about h4::after,
  .footer-contact h4::after,
  .footer-social h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-links { justify-content: center; }
  .footer-contact p i { width: auto; }
  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}