/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'newt sanserif demi', sans-serif;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1ea3af;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 8px 24px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    gap: 2.5rem;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.15rem;
    padding: 12px 28px;
    border-radius: 24px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    letter-spacing: 0.5px;
    display: inline-block;
}

nav ul li a:hover,
nav ul li a.active {
    background: linear-gradient(90deg, var(--primary-color) 60%, var(--secondary-color) 100%);
    color: #e0f2fe;
    box-shadow: 0 4px 16px rgba(219, 220, 222, 0.12);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.nav-icons a {
    color: var(--light-color);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-icons a:hover {
   color: var(--light-color); 
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 10%;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.cta-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: var(--secondary-color);
}

.hero-image {
    flex: 1;
    text-align: center;
    top: 100%;
}

.category-grid {
    display: grid;
    max-width: 1500px;
    height: 130px;
    border: 2px solid #e0f2fe;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px;
    background-color: rgb(228, 226, 226);

}

.category-card {
    display: grid;
    max-width: 10px;
    height: 0px;
    padding: 0px;
    margin-top: -10px;
    background-color: rgb(234, 234, 231);
    
}

.container {
    text-align: center;
    display: grid;
    gap: 25px;
}

.card {
    background: #f9f9f9;
    width: 90%;
    margin-top: 3%;
    margin-left: 5%;
    box-shadow: 0 0 10px 7px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    height: 80px;
    text-align: left;
    display: flex;
}

.card-header img {
    width: 60px;
    border-radius: 10px;
    margin: 7px 20px 7px 10px;
}


.card-header {
    position: relative;
    display:flex;
    align-items:left;
    justify-content: left;
}

.tombol-kategori {
    width: 84vw;
    height: 80px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: transparent;
    border-color: transparent;
    cursor: pointer;
    font-size: x-large;
}

.tombol-kategori :hover {
    background-color: var(--primary-color)

