* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9fbfd;
  color: #1e1e2f;
  line-height: 1.6;
}

.topbar {
  background: linear-gradient(90deg, #0d47a1, #1976d2);
  color: #ffffff;
  padding: 6px 30px; /* Reduced padding */
  font-size: 14px;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-info img {
  width: 16px;
  height: 16px;
}

.social-icons a {
  margin-left: 12px;
  display: inline-block;
}

.social-icons img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

.nav-links a {
  margin-left: 20px;
  color: #0d47a1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1565c0;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

/* Intro */
.intro-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #e3f2fd, #ffffff);
  text-align: center;
}

.intro-content h1 {
  font-size: 2.5rem;
  color: #0d47a1;
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* MVO */
.mvo-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background-color: #f5faff;
}

.mvo-card {
  background: #fff;
  border-left: 5px solid #2196f3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 30px;
  width: 300px;
  transition: transform 0.3s ease;
}

.mvo-card:hover {
  transform: translateY(-5px);
}

.mvo-card h2 {
  color: #0d47a1;
  margin-bottom: 15px;
}

.mvo-card ul {
  padding-left: 20px;
}

/* Videos */
.video-gallery {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.video-gallery .videos iframe {
  width: 300px;
  height: 170px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-gallery h2 {
  color: #0d47a1;
  margin-bottom: 10px;
}

.video-gallery .videos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.video-gallery video {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background-color: #0d47a1;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 30px;
}

.footer-about,
.footer-contact {
  flex: 1 1 300px;
  margin-bottom: 20px;
}

.footer h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.footer-contact p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer a {
  color: #bbdefb;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    padding: 20px;
    position: absolute;
    right: 20px;
    top: 70px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
