/* =============================
   📱 MOBILE (Default) < 600px
============================= */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Markazi+Text:wght@400..700&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Space+Grotesk:wght@300..700&display=swap');

.navbar {
  background-color: #fff;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: roboto-slab;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-text h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 5px;
  font-weight: 700;
  color: rgb(188, 1, 1);
  font-family: roboto-slab;
}

.logo-text p {
  font-size: 12px;
  margin: 0;
  color: #000000;
}

.nav-links {
  margin-top: 10px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: #001e40;
  font-weight: 500;
  font-size: 14px;
}

/* =============================
   💻 TABLET (600px–991px)
============================= */
@media (min-width: 600px) and (max-width: 991px) {
  .navbar {
    padding: 2px;
  }

  .logo-section {
    gap: 10px;
  }

  .logo-img {
    width: 70px;
    height: 70px;
  }

  .logo-text h2 { font-size: 20px; }
  .logo-text p  { font-size: 12px; }
}

/* =============================
   🖥️ DESKTOP (992px–1199px)
============================= */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar { padding: 6px 10px; }

  .logo-section { gap: 25px; }

  .logo-img { width: 55px; height: 55px; }

  .logo-text h2 { font-size: 20px; }
  .logo-text p  { font-size: 12px; }
}

/* =============================
   🖥️🖥️ LARGE DESKTOP (1200px+)
============================= */
@media (min-width: 1200px) {
  .navbar { padding: 6px 15px; }

  .logo-section { gap: 30px; }

  .logo-img { width: 80px; height: 80px; }

  .logo-text h2 { font-size: 24px; }
  .logo-text p  { font-size: 14px; }
}
