 /* Show desktop navigation only on desktop screens */
  @media (min-width: 992px) {
    .navbar-collapse {
      display: flex !important;
    }
    .custom_menu-btn {
      display: none !important;
    }
  }

  /* Hide desktop navigation and show hamburger menu on mobile */
  @media (max-width: 991px) {
    .navbar-collapse {
      display: none !important;
    }
    .custom_menu-btn {
      display: block !important;
    }
  }


    .vlog-card {
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        background: white;
        margin-bottom: 30px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .vlog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .vlog-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .vlog-placeholder {
        width: 100%;
        height: 220px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
    }

    .vlog-content {
        padding: 20px;
    }

    .vlog-title {
        font-size: 1.3em;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .vlog-title a {
        color: #333;
        text-decoration: none;
    }

    .vlog-title a:hover {
        color: #FF5A5F;
    }

    .vlog-excerpt {
        color: #666;
        font-size: 0.95em;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .vlog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85em;
        color: #888;
        margin-bottom: 15px;
    }

    .vlog-category {
        background: #FF5A5F;
        color: white;
        padding: 3px 10px;
        border-radius: 15px;
        font-size: 0.75em;
        font-weight: 600;
    }

    .vlog-stats {
        display: flex;
        gap: 15px;
    }

    .vlog-stat {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .read-more {
        color: #FF5A5F;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.9em;
    }

    .read-more:hover {
        text-decoration: underline;
    }

    .vlogs-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 60px 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .vlogs-header h1 {
        font-size: 2.5em;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .vlogs-header p {
        font-size: 1.2em;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

    .category-filter {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 30px;
    }

    .category-btn {
        padding: 8px 20px;
        border: 2px solid #FF5A5F;
        border-radius: 25px;
        color: #FF5A5F;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .category-btn:hover,
    .category-btn.active {
        background: #FF5A5F;
        color: white;
        text-decoration: none;
    }

    .search-box {
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .breadcrumb {
        background: transparent;
        padding: 15px 0;
        margin-bottom: 0;
    }

    .breadcrumb-item a {
        color: #FF5A5F;
        text-decoration: none;
    }
