main {
    font-family: "Poppins", sans-serif;
    padding-top: 7em;
    background-color: #fffbf7;
    overflow-x: hidden;
}
header {
    font-family: "Poppins", sans-serif;
    position: fixed;
    z-index: 20;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
footer {
    font-family: "Poppins", sans-serif;
}
.home1 {
    position: relative;
    overflow: hidden;
    font-size: 1em;
}
.home1 .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.2em;
    padding: 1em;
}
.home1 .content h5 {
    font-size: 1.4em;
}
.home1 .content span {
    font-size: 0.9em;
}
.home1:hover img {
    filter: brightness(0.7);
}
.home1:hover .content {
    opacity: 1;
}
@media (max-width: 768px) {
    .home1 .content {
        font-size: 1em;
        padding: 0.1em;
    }
    .home1 .content h5 {
        font-size: 1em;
    }

    .home1 .content span {
        font-size: 0em;
    }
}
.header {
    background-color: #faf9f6;
    padding: 20px 0;
    width: 100%;
}
.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-content {
    display: flex;
    align-items: center;
}
.logo a {
    list-style: none !important;
    text-decoration: none !important;
}
.logo span {
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: black;
}
.logo img {
    margin-right: 10px;
    display: flex;
    align-items: center;
    max-height: 4em;
}
.navigation {
    flex-grow: 1;
    text-align: center;
    justify-content: center;
    width: 100%;
}
.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
}
.navigation li {
    margin-left: 20px;
}
.navigation a {
    font-weight: bold;
    text-decoration: none;
    color: #333;
    transition: width 0.3s;
    transition: color 0.3s ease;
}
.header-nav-item {
    position: relative;
    margin: 10px;
}
.header-nav-item .underline {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 5px;
    background-color: #fef213;
    transition: width 0.3s;
}
.header-nav-item:hover .underline {
    width: 100%;
}
.membership-link {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    background-color: #fef213;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: background-color 0.5s ease;
    margin-left: auto;
    list-style: none;
    text-decoration: none;
    margin-right: 10px;
}
.membership-link:hover {
    background-color: #e7dd13;
    transition: 0.5s;
}
.header-mobile-toggler {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}
.header-mobile-toggler .bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 10px;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
    }
    .footer .container .footer-content {
        flex: 1 0 100%;
        margin-bottom: 20px;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo-content span {
        display: none;
    }

    .membership-link {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
        background: none;
        border: none;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100%;
        background-color: white;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 20px;
    }

    .navigation.active {
        transform: translateX(0);
    }

    .navigation ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .navigation li {
        margin-bottom: 10px;
    }

    .navigation a {
        display: block;
        padding: 10px;
    }

    .close-menu-button {
        display: block;
        margin-top: 20px;
        padding: 10px 20px;
        color: rgba(255, 255, 255, 0);
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
}
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
    .navigation {
        display: flex;
        transform: translateX(0);
    }

    .navigation ul {
        flex-direction: row;
        justify-content: center;
    }

    .navigation li {
        margin: 0 15px;
    }
}
@media (min-width: 769px) {
    .close-menu-button {
        display: none;
    }
    .mobile-menu-toggle {
        display: none;
    }
}
.footer {
    width: 100%;
    background-color: #00a958;
}
.footer-content .social-links a:hover span {
    font-weight: bold;
}
.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    grid-row: auto;
    align-items: flex-start;
}
.footer .container .footer-content {
    flex: 1 0 200px;
    text-align: left;
    margin-bottom: 20px;
    color: #fdfef0;
    margin: 20px;
}
.social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.social-links a {
    text-decoration: none;
    color: #fdfef0;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.social-links i {
    margin-right: 10px;
    width: 1.2em;
    text-align: center;
}
.social-links span {
    font-family: "Poppins", sans-serif;
}
.footer-content h3 {
    margin-bottom: 15px;
    color: #333;
}
.footer-content form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-content label {
    margin-bottom: 5px;
    color: #555;
}
.footer-content .form-control {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
.footer-content textarea.form-control {
    height: 120px;
    resize: vertical;
}
.footer-content .btn-primary {
    background-color: #fef213;
    color: rgb(0, 0, 0);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}
.footer-content .btn-primary:hover {
    background-color: #e9de18;
    transition: 0.5s;
}
@media (max-width: 768px) {
    .footer-content .form-group {
        width: 100%;
    }
}
.home {
    font-family: "Poppins", sans-serif;
    background-size: cover;
    padding-left: 5px;
    padding-right: 5px;
}
.home .container {
    max-width: 100%;
    background-color: #fbfdf6;
}
.home .container .row {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}
.home .container .row .title {
    margin-bottom: 40px;
    max-width: 100%;
    justify-items: center;
}
.home .container .row .title .atas {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin-top: 30px;
}
.home .container .row .title .atas .isi {
    max-width: 350px;
}
.home .container .row .title .atas .isi span {
    max-width: 50%;
    height: auto;
}
.home .container .row .title .atas .isi img {
    max-width: 100%;
    height: auto;
}
.home .container .row .title .text {
    max-width: 800px;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.home .container .row .title .tombol {
    color: #000000;
    text-decoration: none;
    background-color: #fef213;
    padding: 10px;
    transition: background-color 0.5s ease;
}
.home .container .row .title .tombol:hover {
    background-color: #d4cb10;
    transition: 0.5s;
}
.pilihjob {
    text-align: center;
}
.job {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #70707069;
    padding-bottom: 10px;
    padding: 10px;
}
.job-border {
    padding: 10px;
    border: 5px solid #70707069;
    border-radius: 20px;
    padding-bottom: 10px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 30px;
}
.syarat {
    padding: 5px;
    padding-top: 10px;
    text-align: justify;
    text-justify: inter-word;
}
@media (min-width: 768px) {
    .rincian {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        padding: 20px;
    }
}
.deskripsijob h6 {
    text-align: justify !important;
}
.bannerloker-img {
    max-width: 100% !important;
}
.banner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.banner-img {
    max-width: 100%;
    height: auto;
}
.footer-content .nav-link:hover {
    font-weight: bold;
}
.job-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #ccc;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid green;
    border-radius: 5px;
}
.submit-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.submit-button:hover {
    background-color: #0056b3;
}
.check-button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.check-button:hover {
    background-color: #218838;
}
.bandrol {
    text-align: center;
    padding: 10px;
    border: 2px solid #00000069;
}
.bandrol-form {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: 20px;
    border-radius: 10px;
    padding: 20px;
}
.bandrol-kertas {
    padding: 1%;
}
.bandrol-pilih {
    display: flex;
    width: 98%;
    padding: 1%;
    border: 1px solid #00000054;
}
.job-vacancy {
    border: 0.4em solid rgba(112, 112, 112, 0.397);
    padding-top: 1em;
    border-radius: 1em;
}
.section-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
}
.switch-label {
    padding: 10px 20px;
    background-color: #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.news-section-title.hidden {
    display: none;}
.switch-label.active {
    background-color: #fef213;
    color: rgb(0, 0, 0);
}
.section-content {
    display: none !important;
}
.section-content.active {
    display: block !important;
}
.product {
    text-align: center;
}
.product .atas {
    width: 100%;
}
.product .bawah {
    text-align: center;
    margin-top: -8em;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}
@media (max-width: 768px) {
    .container {
        width: 100%;
    }
    .home1 {
        width: 100%;
    }

    .home1 img {
        width: 100%;
    }

    .home1 .content {
        padding: 1px;
        width: 100%;
        text-align: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
}
.home1 {
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.home1:hover {
    transform: scale(1.03);
}
.home1 .content {
    padding: 15px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.home1:hover .content {
    opacity: 1;
}
@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .section-switcher {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 20px;
        overflow-x: auto;
    }
    .justify-content-center,
    .home1 {
        margin: 0px !important;
        padding: 0px !important;
    }

    .product .bawah {
        visibility: hidden;
    }

    .product-name {
        color: yellow;
        text-align: center;
        font-size: 13px !important;
        font-weight: bold;
        margin-bottom: 0.4rem;
        line-height: 1rem;
    }

    .product-icons {
        display: flex;
        gap: 5px !important;
    }

    .icon-item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px !important;
        height: 20px !important;
    }

    .icon-item i {
        color: white;
        font-size: 15px !important;
    }

    .product-item {
        position: relative;
        aspect-ratio: 1;
        border: 1px solid #333;
        border-radius: 1rem !important;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
}
.product-item {
    position: relative;
    aspect-ratio: 1;
    border: 1px solid #333;
    border-radius: 3rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.product-item:hover {
    transform: scale(1.05);
}
.product-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    overflow: hidden;
}
.product-image.empty-image p {
    color: #666;
    font-size: 1.2rem;
    text-align: center;
    line-height: 200px;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.product-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.product-item:hover .product-image::after {
    opacity: 1;
}
.product-item:hover .product-image img {
    opacity: 1;
}
.product-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.product-item:hover .product-content {
    opacity: 1;
}
.product-name {
    color: yellow;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2rem;
}
.product-icons {
    display: flex;
    gap: 1rem;
}
.icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}
.icon-item i {
    color: white;
    font-size: 1.2rem;
}
.no-products-message {
    text-align: center;
    color: #999;
    margin: 2rem;
}
.news-container {
}
.news-highlight {
    display: flex;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
}
.news-featured {
    flex: 4;
}
.news-secondary {
    flex: 2;
    display: flex;
    flex-direction: column;
}
.news-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.secondary-item {
    height: 50%;
}
.news-image {
    position: relative;
    width: 100%;
    height: 100%;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.no-image {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}
.news-title-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.651),
        rgba(0, 0, 0, 0)
    );
    padding: 10px 15px;
}
.details-title {
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.3;
}
.news-title {
    margin: 0;
    color: white;
    font-size: 20px;
}
.news-featured .news-title {
    font-size: 30px;
}
@media (max-width: 768px) {
    .details-title {
        font-size: 1em;
    }
    .news-title {
        font-size: 7px;
    }

    .news-featured .news-title {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .news-container {
        flex-direction: column;
        height: auto;
    }
    .news-item,
    .secondary-item {
        height: 0;
        padding-bottom: 56.25%;
    }

    .news-image {
        position: absolute;
        top: 0;
        left: 0;
    }
}
.latest-news {
    max-width: 90%;
    margin: 0 auto;
    font-family: sans-serif;
}
.news-details-section {
}
.news-item-row {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e0e0e0;
    align-items: flex-start;
}
.newslatest {
    display: flex;
    border-bottom: 5px solid #fef213;
    margin-bottom: 30px;
}
.news-section-title {
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fef213;
    font-size: 30px;
    
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}
.latest-img {
    width: 500px;
    height: auto;
    margin-right: 15px;
    overflow: hidden;
    flex-shrink: 0;
}
.latest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.no-image {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}
.news-info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.details-tags {
    margin-bottom: 5px;
}
.date-author-row {
    display: flex;
    margin-bottom: 8px;
    font-size: 0.85em;
    color: #888;
}
.details-date {
    margin-right: 15px;
}
.details-title {
    font-size: 30px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    margin-top: 0;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.3;
}
.details-content {
    font-size: 0.95em;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .details-tags {
        font-size: 15px !important;
    }
    .latest-img {
        margin-bottom: 10px;
    }
}
.tagar {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.75em;
    font-weight: bold;
    border-radius: 0;
    margin-right: 5px;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background-color: transparent;
    animation: none;
}
.tagar.yellow-tag {
    background-color: yellow;
    color: black;
}
.tagar.green-tag {
    background-color: green;
}
.tagar.red-tag {
    background-color: red;
}
.news-detail-container {
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
    font-family: "Arial", sans-serif;
    color: #333;
    line-height: 1.6;
}
.news-detail-header {
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.section-heading {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.news-detail-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
}
.news-detail-meta span {
    margin-right: 15px;
}
.news-detail-image {
    margin-bottom: 20px;
    overflow: hidden;
}
.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.no-image {
    background-color: #f0f0f0;
    height: 200px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    font-style: italic;
}
.content-section {
    margin-bottom: 25px;
}
.content-section p {
    margin-bottom: 15px;
}
.content-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    margin-top: 20px;
}
.content-section h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    margin-top: 15px;
}
.item-list {
    list-style: none;
    padding-left: 0;
}
.list-item {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.tagar {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 5px;
    font-size: 0.85em;
    color: white;
}
.yellow-tag {
    background-color: #ffc107;
}
.green-tag {
    background-color: #28a745;
}
.red-tag {
    background-color: #dc3545;
}
.content-section a button {
    background-color: #fef213;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}
.content-section a button:hover {
    background-color: #c5bc12;
}
.details-title,
.latest-img,
.news-item {
    cursor: pointer;
    transition: color 0.5s ease;
}
.details-title:hover {
    color: #fef213;
    transition: 0.5s;
}
.detail-news,
.section-heading {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
}
@media (max-width: 768px) {
    .news-detail-header {
        font-size: 1rem;
    }
}
