 .post-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: #fff;
    }
    .post-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }
    .post-card img {
      height: 200px;
      object-fit: cover;
    }
    .badge-category {
      background-color: #212428;
      color: #fff;
      font-size: 12px;
      border-radius: 12px;
      padding: 4px 10px;
    }
    .badge-date {
      background-color: #28a745;
      color: #fff;
      font-size: 12px;
      border-radius: 12px;
      padding: 4px 10px;
    }
    .btn-read {
      background-color: #fe9e43;
      border: none;
      border-radius: 20px;
      padding: 6px 16px;
      color: #fff;
      font-size: 14px;
    }
    .btn-read:hover {
      background-color: #e88a33;
      color: #fff;
    }
    .badge-date {
  background-color: #28a745;
  color: #fff;
  font-size: 11px; /* smaller text */
  border-radius: 12px;
  padding: 4px 10px;
  opacity: 0.9; /* slightly lighter */
}


/* header */

/* 📜 Dropdown Menu Styling */
.dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 0.4rem 0;
  animation: dropdownFade 0.25s ease;
}

/* ✨ Dropdown Item Hover */
.dropdown-item {
  font-weight: 500;
  transition: all 0.2s ease;
}
.dropdown-item:hover {
  background-color: rgba(245, 148, 92, 0.15);
  transform: translateX(4px);
}

/* 🌟 Animation */
@keyframes dropdownFade {
  from {opacity: 0; transform: translateY(-8px);}
  to {opacity: 1; transform: translateY(0);}
}
/* 🟠 Hover par dropdown dikhaye (sirf lg screens) */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* default Bootstrap ke jump ko prevent kare */
    animation: dropdownFade 0.25s ease;
  }
}




/* .navbar-brand {
  display: flex;

  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  height: 60px;           
  overflow: hidden;     
}

.navbar-brand img {
        max-height: 187%;
    width: 203px;
    max-width: 220px;
} */

/* 
 .navbar-brand {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  height: 60px;
  overflow: hidden;
}
.navbar-brand img {
  width: 180px;     
  height: auto;
  display: block;
  max-height: 100%;
}  */

.navbar-brand {
  display: flex;
  align-items: center;    /* vertical center */
  justify-content: flex-start; /* left align */
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  height: 60px;           /* Navbar ke andar fit karne ke liye */
  overflow: hidden;       /* Image bahar na nikle */
}

.navbar-brand img {
        max-height: 121%;
    width: 203px;
    max-width: 220px;
}