* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #FBFBFB;
    color: #333;
}

/* particle body */
#particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #1a1a1d;
}

/* header navbar */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #b46444;
    border-radius: 1px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
}

.navbar-custom .navbar-brand {
    color: #1B1B1B;
    font-size: 20px;

}

.navbar-custom .navbar-nav .nav-link {
    color: #f4ba6b;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar-custom .navbar-brand img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: none;
}


.navbar-custom .nav-link {
    color: #878787;
    margin-right: 20px;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.navbar-custom .nav-link:hover {
    color: #262626;
}

.navbar-custom .nav-link.active {
    color: #f4ba6b;
    background-color: #FBFBFB;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    border-radius: 10px;
}

.navbar-custom .logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 10px;
}

.brand-name {
    background: linear-gradient(to right, #f4ba6b, #FBFBFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-custom .brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffc107;
}

.navbar-custom .navbar-toggler {
    border: none;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Cpath stroke="rgba%28255, 255, 255, 1%29" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

.navbar-custom .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* dark dropdown */
.dropdown-menu-black {
    background-color: #FBFBFB;
    margin-right: 120px;
    color: #b46444;
}

.dropdown-menu-black .dropdown-item {
    color: #b46444;
}

.dropdown-menu-black .dropdown-item:hover {
    background-color: #b46444;
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .navbar-custom {
        padding: 10px 20px;
    }

    .navbar-custom .navbar-brand {
        font-size: 16px;
    }

    .navbar-custom .nav-link {
        font-size: 14px;
    }
}

/* jumbotron */
.jumbotron {
    display: flex;
    height: 650px;
    position: relative;
    padding: 10rem;
    margin-top: 80px;
    background-color: #FBFBFB;
    color: #ffffff;
    background-size: 400% 400%;
    animation: gradient-bg 10s ease infinite;
    width: 100%;
}


.jumbotron-content {
    display: flex;
    align-items: center;
}

.jumbotron-logo {
    position: relative;
    margin-right: 2rem;
    max-width: 60%;
}

#welcomeTitle {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(to right, #f15a24, #f7941e, #fccb38);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jumbotron-logo {
    animation: breathe 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .jumbotron {
        height: auto;
        padding: 5rem 2rem;
        margin-top: 50px;
    }

    .jumbotron-content {
        flex-direction: column;
        text-align: center;
    }

    .jumbotron-logo {
        margin-right: 0;
        max-width: 80%;
        margin-bottom: 2rem;
    }

    #welcomeTitle {
        font-size: 2rem;
    }

    .more-info {
        margin-top: 1rem;
    }
}

/* Further responsiveness for very small screens (mobile phones) */
@media (max-width: 480px) {
    .jumbotron {
        padding: 3rem 1rem;
    }

    #welcomeTitle {
        font-size: 1.5rem;
    }

    .more-info {
        font-size: 1.2rem;
    }
}


@keyframes gradient-bg {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


@keyframes breathe {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}



#welcomeDescription {
    position: relative;
    color: #1B1B1B;
    z-index: 3;
    font-size: 25px;
}

.typed-cursor {
    display: inline-block;
    color: white;
    font-size: 30px;
    width: 3px;
    margin-left: 2px;
    z-index: 10;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    50% {
        opacity: 0;
    }
}

@media (min-width: 576px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .jumbotron-content {
        flex-direction: column;
        text-align: center;
    }

    .jumbotron-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* button more info */
.more-info {
    position: relative;
    z-index: 10;
    width: 10em;
    justify-content: center;
    align-items: center;
}

.cube {
    color: #ccc;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: all 0.85s cubic-bezier(.17, .67, .14, .93);
    transform-style: preserve-3d;
    transform-origin: 100% 50%;
    width: 10em;
    height: 4em;
}

.cube:hover {
    transform: rotateX(-90deg);
}

.more-info-side {
    box-sizing: border-box;
    position: absolute;
    display: inline-block;
    height: 4em;
    width: 10em;
    text-align: center;
    text-transform: uppercase;
    padding-top: 1.5em;
    font-weight: bold;
}

.more-info-top {
    background: #fccb38;
    color: #222229;
    transform: rotateX(90deg) translate3d(0, 0, 2em);
    box-shadow: inset 0 0 0 5px #fff;
}

.more-info-front {
    background: #b46444;
    color: #fff;
    box-shadow: inset 0 0 0 5px #fff;
    transform: translate3d(0, 0, 2em);
}

/* ABOUT US */
#aboutUs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

/* Hapus margin default pada heading */
#titleAboutUs {
    margin-bottom: 2rem;
    font-weight: bold;
    color: #b46444;
}

/* Tambahkan gaya opsional pada kolom */
#aboutUs .row .col-md-6 {
    padding: 1rem;
    text-align: center;
}

#logo-about-us {
    max-width: 100%;
    animation: breathe 3s ease-in-out infinite;
}

/* Card customization */
.custom-card {
    border: none;
    border-radius: 20px;
    background-color: #f4ba6b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    margin: 20px;
}

.custom-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#titleVisidanMisi {
    font-weight: bold;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    #aboutUs {
        padding: 1rem;
    }

    #titleAboutUs {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .custom-card {
        padding: 1.5rem;
    }

    #logo-about-us {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    #paragraph-about-us {
        text-align: center;
        font-size: 1rem;
        margin-top: 1rem;
    }
}

/* Further responsiveness for small screens (mobile phones) */
@media (max-width: 480px) {
    #titleAboutUs {
        font-size: 1.8rem;
    }

    #text-about-us {
        font-size: 0.9rem;
    }

    .custom-card {
        padding: 1rem;
    }
}



/* Kustomisasi card visi */
.custom-card-visi-dan-misi {
    background-color: #b46444;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-card-visi-dan-misi .card-body {
    color: #333;
    font-family: 'Arial', sans-serif;
}

.custom-card-visi-dan-misi {
    background-color: #f4ba6b;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-card-visi-dan-misi .card-body {
    color: #444;
    font-family: 'Georgia', serif;
}

.custom-card-visi-dan-misi:hover:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px 5px rgba(244, 186, 107, 1);
}

/* button more and less */
.buttons {
    display: flex;
    justify-content: right;
    top: 20px;
    left: 20px;
}

.buttons button {
    width: 150px;
    height: 50px;
    background-color: #FBFBFB;
    margin: 20px;
    color: #b46444;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.buttons button:before,
.buttons button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #b46444;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.buttons button:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.buttons button:after {
    left: 0;
    bottom: 0;
}

.buttons button span {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.buttons button span:before,
.buttons button span:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 0;
    background-color: #b46444;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.buttons button span:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.buttons button span:after {
    left: 0;
    bottom: 0;
}

.buttons button p {
    padding: 0;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    position: absolute;
    width: 100%;
    height: 100%;
}

.buttons button p:before,
.buttons button p:after {
    position: absolute;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    z-index: 1;
    left: 0;
}

.buttons button p:before {
    content: attr(data-title);
    top: 50%;
    transform: translateY(-50%);
}

.buttons button p:after {
    content: attr(data-text);
    top: 150%;
    color: #b46444;
}

.buttons button:hover:before,
.buttons button:hover:after {
    width: 100%;
}

.buttons button:hover span {
    z-index: 1;
}

.buttons button:hover span:before,
.buttons button:hover span:after {
    height: 100%;
}

.buttons button:hover p:before {
    top: -50%;
    transform: rotate(5deg);
}

.buttons button:hover p:after {
    top: 50%;
    transform: translateY(-50%);
}

.buttons button.start {
    background-color: #b46444;
    box-shadow: 0px 5px 10px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.buttons button.start p:before {
    top: -50%;
    transform: rotate(5deg);
}

.buttons button.start p:after {
    color: white;
    transition: all 0s ease;
    content: attr(data-start);
    top: 50%;
    transform: translateY(-50%);
    animation: start 0.3s ease;
    animation-fill-mode: forwards;
}

@keyframes start {
    from {
        top: -50%;
    }
}

.buttons button.start:hover:before,
.buttons button.start:hover:after {
    display: none;
}

.buttons button.start:hover span {
    display: none;
}

.buttons button:active {
    outline: none;
    border: none;
}

.buttons button:focus {
    outline: 0;
}

/* title visi dan misi */
#titleVisidanMisi {
    margin-bottom: 2rem;
    font-weight: bold;
    color: #b46444;
}

.title-card-visi-dan-misi {
    color: #b46444;
}

#ourproduct {
    margin-bottom: 2rem;
    margin-top: 5rem;
}

/* gallery */
#ourproduct {
    overflow-x: hidden;
}

#ourproducttitle {
    color: #b46444;
}

/* Card styling */
.card-custom {
    --font-color: #323232;
    --font-color-sub: #666;
    --bg-color: #fff;
    --main-color: #323232;
    --main-focus: #2d8cf0;
    width: 230px;
    height: 300px;
    background: var(--bg-color);
    border: 2px solid var(--main-color);
    box-shadow: 4px 4px var(--main-color);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 5px;
    gap: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.card-custom:last-child {
    justify-content: flex-end;
}

.item {
    width: 50px;
}


.card-custom-title {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: var(--font-color);
}

.card-custom-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--font-color-sub);
}

.card-custom-divider {
    width: 100%;
    border: 1px solid var(--main-color);
    border-radius: 50px;
}

.card-custom-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.card-custom-price {
    font-size: 20px;
    font-weight: 500;
    color: var(--font-color);
}

.card-custom-price span {
    font-size: 20px;
    font-weight: 500;
    color: var(--font-color-sub);
}

.card-custom-btn {
    height: 35px;
    background: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 5px;
    padding: 0 15px;
    transition: all 0.3s;
}

.card-custom-btn svg {
    width: 100%;
    height: 100%;
    fill: var(--main-color);
    transition: all 0.3s;
}

.card-custom-img:hover {
    transform: translateY(-3px);
}

.card-custom-btn:hover {
    border: 2px solid var(--main-focus);
}

.card-custom-btn:hover svg {
    fill: var(--main-focus);
}

.card-custom-btn:active {
    transform: translateY(3px);
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-card {
    width: 25%;
    padding: 10px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 10px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-card:hover .card-title {
    opacity: 1;
}

.navbar-custom .btn-getstarted {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
}


/* getstarted button */
.button2 {
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #090909;
    padding: 0.5em 1.5em;
    cursor: pointer;
    font-size: 18px;
    border-radius: 0.5em;
    background: #e5cca6;
    border: 1px solid #554e50;
    text-decoration: none;
}

.button2:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.button2:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 100%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.button2:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #f4ba6b;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.button2:hover {
    color: #ffffff;
    border: 1px solid #f4ba6b;
}

.button2:hover:before {
    top: -35%;
    background-color: #f4ba6b;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button2:hover:after {
    top: -45%;
    background-color: #f4ba6b;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* Tab container */
.tab {
    overflow: hidden;
    background-color: #b46444;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    width: 80%;
    max-width: 1000px;
}

/* Tab buttons */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 20px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
    color: #f4ba6b;
    width: 33.33%;
    text-align: center;
}

/* Hover effect for tabs */
.tab button:hover {
    background-color: #f0f0f0;
    color: #222;
}

/* Active tab style */
.tab button.active {
    background-color: #f4ba6b;
    color: #b46444;
}

/* Content section */
.tabcontent {
    display: none;
    padding: 30px;
    border: 1px solid #ddd;
    border-top: none;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
}

/* Card container specific to each tab */
.tabcontent .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Custom card layout for each image */
.tabcontent .card-container .custom-card {
    display: inline-block;
    width: 250px;
    margin: 10px;
    border-radius: 25%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f4ba6b;
}

/* Hover effect for the card */
.tabcontent .card-container .custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Card image styling */
.tabcontent .custom-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

/* Card text styling */
.tabcontent .custom-card .card-text {
    padding: 10px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 0 0 25% 25%;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tab button {
        padding: 10px 14px;
        font-size: 14px;
    }

    .tabcontent {
        padding: 20px;
    }

    .tabcontent .custom-card {
        width: 200px;
    }
}

/* footer */
.pc_footer_wrapper {
    background: linear-gradient(to right, #b46444, #f4ba6b);
    padding: 20px 0;
    color: white;
    font-family: Arial, sans-serif;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.pc_footer_content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 30px;
    flex: 1;
}

.pc_footer_logo_section {
    flex: 1;
    min-width: 250px;
}

.pc_footer_company_name {
    font-size: 24px;
    margin-bottom: 5px;
}

.pc_footer_company_tagline {
    font-size: 14px;
    margin-bottom: 20px;
}

.pc_footer_company_logo {
    max-width: 200px;
    height: auto;
}

.pc_footer_nav_section {
    display: flex;
    gap: 30px;
    flex: 2;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
}

.pc_footer_factory_info,
.pc_footer_contact_info,
.pc_footer_social_info {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pc_footer_contact_info {
    text-align: left;
}

.pc_footer_section_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pc_footer_details {
    font-size: 14px;
    line-height: 1.6;
}

.pc_footer_copyright {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.pc_footer_contact_link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pc_footer_contact_link:hover {
    text-decoration: underline;
}

.pc_footer_social_links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pc_footer_social_link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pc_footer_social_link:hover {
    text-decoration: underline;
}

.pc_footer_icon {
    width: 20px;
    text-align: center;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .pc_footer_content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .pc_footer_nav_section {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .pc_footer_logo_section,
    .pc_footer_factory_info,
    .pc_footer_contact_info,
    .pc_footer_social_info {
        text-align: center;
        width: 100%;
    }

    .pc_footer_contact_link,
    .pc_footer_social_link {
        justify-content: center;
    }

    .pc_footer_section_title {
        justify-content: center;
    }
}