/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    overflow-x: hidden;
}

#searchInput {
    width: calc(100% - 40px); /* Full width minus padding */
    padding: 10px 10px;
    margin: 20px 20px;
    box-sizing: border-box;
    border: 1px solid #00b9ad;
    border-radius: 25px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.gif');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.7;
    filter: blur(2px);
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
}

.logo {
    width: 140px;
    height: auto;
    margin: 0 10px;
    filter: grayscale(70%);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #00b9ad;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    color: #00b9ad;
    font-size: 1.8em;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #333;
}

/* Container for links */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adjusted gap between links */
    position: relative; /* Untuk menempatkan konten link di atas background */
}

.category {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: block; /* Tampilkan kategori secara default */
    position: relative;
    z-index: 0; /* Menempatkan konten link di bawah dropdown */
    margin-bottom: 20px; /* Adjusted margin between categories */
}

.category-title {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
}

.link {
    display: block;
    background-color: #60c0d0;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
}

.link i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.link:hover {
    background-color: #025b6b;
}

/* Footer styles */
.footer {
    background-color: #60c0d0;
    color: #060303;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 1em;
}