body {
    font-family: 'Albert Sans', sans-serif;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    animation: marquee 30s linear infinite;
}
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .slider-content {
        padding: 1rem;
    }
    .slider-title {
        font-size: 2rem;
    }
    .mega-menu {
        width: 100%;
        left: 0;
        right: 0;
    }
    .header-buttons {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 0.5rem 1rem;
        background: white;
        border-bottom: 1px solid #e5e7eb;
    }
    .header-button {
        display: flex;
        align-items: center;
        padding: 0.5rem;
        border-radius: 0.5rem;
        transition: all 0.3s;
    }
    .header-button:hover {
        background: #f3f4f6;
    }
    .header-button i {
        font-size: 1.25rem;
    }
    .header-button span {
        margin-left: 0.5rem;
        font-size: 0.875rem;
    }
}
.kategori-menu {
    width: 320px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.kategori-menu .menu-item {
    padding: 14px 24px;
    display: flex;
    align-items: center;
    color: #4b5563;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8fafc;
    font-size: 15px;
}

.kategori-menu .menu-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.kategori-menu .menu-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom: none;
}

.kategori-menu .menu-item:hover {
    background-color: #f8fafc;
    color: #2563eb;
    padding-left: 28px;
}

.kategori-menu .menu-item i {
    margin-right: 16px;
    width: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 16px;
}

.kategori-menu .menu-item:hover i {
    color: #2563eb;
}

.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
} 

.submenu-content {
    display: none;
    transition: all 0.3s ease;
}

.submenu-content.active {
    display: block;
}

.submenu-trigger i.bx-chevron-down {
    transition: transform 0.3s ease;
}

.submenu-trigger i.bx-chevron-down.rotate-180 {
    transform: rotate(180deg);
}

.mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background-color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 51;
    overflow-y: auto;
}

.mobile-filter-sidebar.active {
    transform: translateX(0);
}

.mobile-filter-header {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-filter-content {
    padding: 1rem;
}

@media (min-width: 768px) {
    .mobile-filter-overlay,
    .mobile-filter-sidebar {
        display: none;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #1a365d 0%, #2c5282 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.blog-content h2 {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}
.blog-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #1a365d 0%, #2c5282 100%);
    border-radius: 3px;
}

.m-show{
    display: none;
}
@media screen and (max-width: 767px) {
    .m-show {
      display: block;
    }
  }