
body {
	margin: 0;
	font-family: 'poppins', sans-serif;
	
}
.navbar {
    background: #ffffff;
    margin: 0;
    padding: 20px 30px;
}


.navbar-brand {
    font-size: 14pt;
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.navbar-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-item {
    margin-right: 10px;
}

.nav-link {
    padding: 10px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #06D001;
}

.nav-link.active {
    color: #06D001 !important; /* Menambahkan !important untuk memastikan prioritas */
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Toggler Button Styles for Mobile */
.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
    background: none; /* Menghilangkan background hijau pada toggler button */
}

/* Override default hover effect */
.navbar-toggler:hover {
    background: none; /* Menghilangkan background hijau saat hover */
    border-color: rgba(0, 0, 0, 0.1); /* Menjaga warna border */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.project-section {
    padding: 20px;
    text-align: center;
}

h1 {
    color: #252525;
}

.buttons {
    margin-bottom: 20px;
}

button {
    border: 2px solid #06D001;
    color: #06D001;
    background-color: white;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

button.active {
    background-color: #06D001;
    color: white;
}

button:hover {
    background-color: #03b800;
    color: white;
}

.project-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 1300px; 
    margin: 0 auto;
    text-align: left;
}

.product {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.product.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.fade-in-element {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in-element.show {
    opacity: 1;
}

.project-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 20px;
}

.project-card img {
    width: 150px;
    margin-right: 20px;
    border-radius: 10px;
}

.product-details h3 {
    color: #333;
    margin-bottom: 10px;
}

.product-details p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.download-button {
    background-color: #06D001;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.download-button:hover {
    background-color: #03b800;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .project-card {
        flex-direction: column; /* Stack image and details vertically */
        align-items: center;
    }

    .project-card img {
        width: 150px;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .product-details h3 {
        font-size: 1.2rem;
    }

    .product-details p {
        font-size: 13px;
    }

    .buttons {
        gap: 8px; /* Adjust button spacing */
        justify-content: center; /* Center buttons */
        flex-wrap: wrap; /* Wrap buttons to the next line */
    }

    button, .download-button {
        padding: 7px 10px; /* Adjust button padding */
        font-size: 10px; /* Adjust font size */
    }
}

@media (max-width: 768px) {
    .project-card {
        flex-direction: column; /* Stack image and details vertically */
        align-items: center;
    }

    .project-card img {
        width: 120px; /* Adjust image width */
        margin-bottom: 10px;
        margin-right: 0;
    }

    .product-details h3 {
        font-size: 1rem; /* Adjust heading size */
    }

    .product-details p {
        font-size: 12px; /* Adjust paragraph size */
    }

    .buttons {
        gap: 10px; /* Adjust button spacing */
        justify-content: center; /* Center buttons */
        flex-wrap: wrap; /* Wrap buttons to the next line */
    }

    button, .download-button {
        padding: 7px 10px; /* Adjust button padding */
        font-size: 10px; /* Adjust font size */
    }
}

@media (max-width: 480px) {
    .project-card {
        flex-direction: column; /* Stack image and details vertically */
        align-items: center;
    }

    .project-card img {
        width: 120px; /* Adjust image width for smaller screens */
        margin-bottom: 10px;
        margin-right: 0;
    }

    .product-details h3 {
        font-size: 0.9rem; /* Adjust heading size */
    }

    .product-details p {
        font-size: 11px; /* Adjust paragraph size */
    }

    .buttons {
        gap: 6px; /* Adjust button spacing for smaller screens */
    }

    button, .download-button {
        padding: 6px 8px; /* Adjust button padding */
        font-size: 9px; /* Adjust font size */
    }
}
