/* font-family: 'Nunito', sans-serif;
font-family: 'Poppins', sans-serif; */

/* Section styling for demo */
.section-demo {
    padding: 50px 0;
  }
  
  /* Center the title */
  .main-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center; /* Center the title */
  }
  
  /* Center the description text and make sure it's wrapped */
  .description-text {
    font-size: 1rem;
    text-align: center; /* Center the description text */
    margin-bottom: 20px; /* Add space between description and button */
  }
  
  /* Styling the button */
  .preview-btn {
    position: relative;
    font-size: 0.9rem;
    padding: 8px 16px; /* Make the button smaller */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    color: white;
    border: 2px solid #007bff;
    border-radius: 4px;
    transition: all 0.3s ease; /* Smooth transition for button effect */
    overflow: hidden; /* Prevent the bubble from overflowing */
  }
  
  /* Bubble effect on hover */
  .preview-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease, width 0.6s ease, height 0.6s ease;
  }
  
  .preview-btn:hover::before {
    transform: translate(-50%, -50%) scale(1); /* Expand the bubble */
    width: 400%;
    height: 400%; /* Make the bubble expand */
  }
  
  .preview-btn:hover {
    color: #007bff; /* Change text color on hover */
    background-color: white; /* Change background color */
    border-color: #007bff; /* Border stays same but visible */
  }
  
  .preview-btn svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
  }
  
  /* Adjust image size if necessary */
  .demo-image {
    width: 100%; /* Make the image responsive */
    max-width: 90%; /* Limit the max width if needed */
    height: auto;
  }
  
  /* Ensure both the title, description, and button are vertically aligned */
  .title-work {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  

.section-title-left {
    text-align: center; /* Pusatkan teks */
    margin: 40px 0; /* Beri jarak vertikal */
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.clients-logo img {
    max-width: 50%; /* Perkecil ukuran logo lebih jauh lagi */
    height: auto;
    transition: transform 0.3s ease-in-out; /* Efek saat hover */
    margin: 10px;
}

.clients-logo img:hover {
    transform: scale(1.05); /* Sedikit perbesar saat hover */
}

.section-clients {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px;
}



.management-profile {
    display: flex; /* Mengatur elemen teks dan gambar dalam satu baris */
    align-items: flex-start; /* Menjaga elemen sejajar di atas */
    gap: 20px; /* Menambahkan jarak antar elemen */
}

.profile-info {
    flex: 1; /* Membuat teks memanjang */
    text-align: justify; /* Merapikan teks */
    margin-right: 20px; /* Memberikan jarak ke gambar */
}

.profile-image {
    flex-shrink: 0; /* Menghindari gambar mengecil */
    max-width: 30%; /* Mengatur ukuran gambar */
}


#contact-us-btn {
    padding: 6px 12px !important; /* Pastikan properti ini diutamakan */
    font-size: 14px !important;  /* Ukuran font lebih kecil */
    background-color: #007bff;   /* Warna latar belakang */
    color: #fff;                 /* Warna teks */
    border-radius: 5px;          /* Membuat sudut melengkung */
    text-decoration: none;       /* Hilangkan garis bawah */
    transition: all 0.3s ease;   /* Efek transisi saat hover */
}

#contact-us-btn:hover {
    background-color: #0056b3;   /* Warna saat hover */
    transform: scale(1.05);      /* Efek zoom saat hover */
}

/* Ensure full-page background */
.photo-resize-fullpage {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
}

/* Transparent overlay */
.overlay {
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Ensure the parent container is centered */
.landing-page-text-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; /* Center content horizontally */
    z-index: 2;
    max-width: 90%; /* Responsive width for smaller devices */
}

.btn-learn-more {
    display: inline-block;
    padding: 0.4rem 1.2rem; /* Adjust button size */
    font-size: 0.95rem; /* Slightly increase button font size */
    font-weight: bold;
    background-color: #007bff;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 0.8rem; /* Adjust spacing above the button */
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-learn-more:hover {
    background-color: #0056b3;
}
/* Styling the title */
.title-work {
    font-size: 3.5rem; /* Increase title font size */
    font-weight: 700; /* Make text bold */
    margin-bottom: 0.3rem; /* Reduce space between title and tagline */
    line-height: 1.2; /* Compact the line spacing */
}

/* Menggunakan font khusus Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Gunakan font Poppins untuk tampilan lebih modern */
.tagline small {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}


/* Styling for Management Profile */
.management-profile {
    display: flex;
    justify-content: center;
    align-items: center;  /* Menambahkan untuk memusatkan secara vertikal */
    margin-top: 30px;
}

.profile-card {
    background: rgba(0, 0, 0, 0.6);  /* Memberikan latar belakang transparan yang lebih gelap untuk kontras */
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    width: 350px;  /* Membuat card sedikit lebih lebar */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.profile-image {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 200px;  /* Ukuran gambar lebih besar */
    height: 200px;  /* Ukuran gambar lebih besar */
    margin-left: auto;
    margin-right: auto;  /* Memusatkan gambar */
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.7); /* Efek bubble */
}

.profile-info {
    margin-top: 10px;
}

.profile-name {
    font-size: 1.8rem;  /* Ukuran nama lebih besar */
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);  /* Memberikan bayangan pada teks agar lebih terlihat */
}

.profile-position {
    font-size: 1.2rem;  /* Ukuran jabatan sedikit lebih besar */
    font-style: italic;
    color: #f1f1f1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);  /* Memberikan bayangan pada teks agar lebih terlihat */
}


/* Universal styling for section titles */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #808080; 
    text-align: center;
    margin-bottom: 20px;
}


.portfolio-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.portfolio-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.portfolio-image:hover img {
    transform: scale(1.1);
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease-in-out;
}

.portfolio-image:hover::after {
    opacity: 1;
    transform: scale(2);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: auto;
    text-align: center;
    animation: fadeIn 0.3s;
    position: relative;
}

.modal-content h3 {
    color: #007bff;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.section-services {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.title-work h2 {
    color: #007bff;
    font-size: 2rem;
    font-weight: bold;
}

.portfolio-desc {
    font-size: 0.9rem;
    text-align: center;
    color: #333;
}

.section-clients p {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #333;
}

body {
    font-family: "Nunito", sans-serif;
    background-color: #F8F8F8 !important;
}

/* ANIMATION NAVBAR */
/***** Top menu *****/
.nav-pills .nav-link {
    letter-spacing: 1px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #0068bd !important;
}

.navbar-toggler {
    background-color: transparent;
    border: 1px solid transparent;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    border: 0;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0b86a8;
}

.navbar-light .navbar-nav .nav-link:focus {
    color: #fff;
    outline: 0;
}

.navbar-light .navbar-toggler {
    border: none;
}

.navbar-light .navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

.navbar-light .navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 8px auto;
    background: #fa7070;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.navbar-light .navbar-toggler:hover span,
.navbar-light .navbar-toggler:focus span {
    background: #820000;
    /* border: ; */
}

/* rotate first span */
.navbar-light .navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-light .navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
.navbar-light .navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-light .navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}

.navbar-light .navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: #fa7070;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* rotate first span */
.navbar-light .navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-light .navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}

/* rotate third span */
.navbar-light .navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-light .navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}
/* ANIMATION NAVBAR */

/* index */

.nav-item {
    margin: 0px 10px;
}

.link-client {
    padding: 10px 40px;
    border-radius: 5px;
    background-color: #ffd384;
    color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
    letter-spacing: 0.05em;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
    color: #0068bd;
    font-weight: 700;
    border-bottom: 1px solid #9c4146;
    letter-spacing: 0.05em;
}

.title-banner {
    top: 22%;
    left: 6%;
}

.title-banner p {
    font-size: 5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #0068bd;
    letter-spacing: 0.05em;
}

.title-banner small {
    font-size: 1.5rem;
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.btn-do {
    width: 250px !important;
    height: auto !important;
    font-size: 18px !important;
    padding: 10px 20px !important;
    font-family: "Poppins", sans-serif !important;
    border: 1px solid #000000 !important;
    background-color: #ed6a5e !important;
    color: #000000 !important;
    font-weight: bold !important;
    border-radius: 8px !important;
    box-shadow: 0px 4px 2px #808080 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 48px !important;
}

.btn-do:hover {
    background-color: #850000 !important;
    transition: 0.3s;
}

.title-work p {
    /* font-weight: 500; */
    font-size: 42px !important;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.04em;
    font-weight: bold !important;
    /* font-size: 40px; */
    color: #4a4a4a !important;
    line-height: 1.5;
}

.title-sub-work p {
    font-weight: 300;
    letter-spacing: 0.04em;
}

.title-sub-work h4 {
    font-family: "Poppins", sans-serif;
}

.section-offering {
    background-color: #fff;
}

.content-offering {
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 50px;
    position: relative;
    left: 12%;
}

.content-offering p {
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0.04em;
    font-family: "Poppins", sans-serif;
}

.content-offering small {
    font-weight: 300;
    font-size: 16px;
    color: #9f9f9f;
    letter-spacing: 0.04em;
}

.section-product {
    background-color: #fff;
    display: block !important;
}

.section-product ul li {
    list-style: none;
    margin: 20px 0px;
}

.section-product ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.04em;
    font-family: "Poppins", sans-serif;
}

.section-product p ul li a {
    display: block !important;
    color: inherit !important;
}

.title-work small {
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.05em;
}

footer {
    background-color: #0b86a8;
    color: #fff;
    padding: 40px 0px 10px 0px;
    letter-spacing: 0.05em;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

footer ul li {
    list-style: none;
    font-weight: 200;
    margin-left: -2rem;
}

footer a {
    text-decoration: none;
    color: #fff;
    transition: all 0.5s 0s ease;
}

footer a:hover {
    font-size: 16px;
    color: #fff;
    transition: all 0.5s 0s ease;
}

.btp a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;
}

.copyright p {
    font-weight: 300;
}
/* enf of index */

/* ABOUT US */
.description-aboutus {
    font-weight: 200;
    letter-spacing: 0.05em;
    width: 400px;
    position: sticky;
}
/* END OF ABOUT US */

/* PRODUCT */
.bg-question {
    background-color: #fff;
    border-radius: 10px solid #e7e7e7;
}

.bg-question h3 {
    letter-spacing: 0.05em;
    font-size: 20px;
    line-height: 27px;
}

.bg-question p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.05em;
}

.content-product-page ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.04em;
    font-family: "Poppins", sans-serif;
}

.content-product-page ul li {
    list-style: none;
    margin: 20px 0px;
}
/* END OF PRODUCT */

/* START OF CONTACT */
.section-contact {
    margin-top: 0rem;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.background-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-form {
    width: 70%;
}

.form-content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.back-button-form {
    background-color: #ffffff !important;
    border: 1px solid #0068BD;
    border-radius: 5px;
    color: #0068BD !important;
}

.back-button-form button {
    background-color: #fff;
    color: #0068BD;
}

.form-input {
    width: 280px;
}

.contact-map {
    height: 500px;
    width: 30%;
}

.contact-map iframe {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.contact-out {
    height: 650px;
    align-items: center;
    padding-right: 60px;
    padding-left: 60px;
    margin-top: 80px;
}

.half-bg-image {
    width: 65%;
    height: 100%;
}

.half-bg-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.half-bg-color {
    width: 35%;
    background-color: #f8f9fa;
}

.btn-message {
    background-color: #ed6a5e;
    color: #fff;
    border-radius: 5px;
}

.title-contact {
    margin-top: 6rem;
}

.title-contact h3 {
    letter-spacing: 1px;
}

.rectangle-form {
    padding: 0;
    z-index: 2;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-item {
    width: 100%;
    max-width: 350px;
    max-height: 350px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.contact-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    width: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}

.contact-item:nth-child(2) .contact-icon {
    background: #007bff;
}

.contact-text h5 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.contact-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-text {
        max-width: 100%; /* Pastikan text tidak melebihi container */
        word-wrap: break-word; /* Memaksa teks untuk tidak keluar dari kotaknya */
        overflow-wrap: break-word;
        text-align: left; /* Pastikan text tetap rapi */
    }

    .contact-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 90%;
        padding: 10px;
        max-width: 100%;
    }

    .contact-text h5 {
        font-size: 14px; /* Kecilkan ukuran judul */
    }

    .contact-text p {
        font-size: 12px; /* Kecilkan ukuran teks agar pas */
        white-space: normal; /* Pastikan teks tidak memanjang */
    }

    .contact-icon {
        flex-shrink: 0; /* Supaya ikon tidak berubah ukuran */
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-right: 8px;
    }
    .rectangle-form {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

    .contact-form {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .contact-map {
        width: 100%;
        height: 300px;
    }

    iframe {
        height: 300px;
    }

    .title-work {
        font-size: 30px;
    }
}




/* .signin-form {
    gap: 30px;
} */
/* END OFCONTACT */

.transition-fade {
    transition: 0.9s;
    opacity: 1;
}

html.is-animating .transition-fade {
    opacity: 0;
}

.icon-product {
    width: 30px;
}

.position-absolute {
    position: absolute;
}

.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-rectangle {
    width: 100%;
    height: auto;
    border-radius: 20px !important;
    box-shadow: 0px 4px 2px rgba(128, 128, 128, 0.5);
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.photo-resize {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 280px);
    grid-template-rows: repeat(400px);
    justify-content: center !important;
    gap: 60px !important;
}

.image-grid img {
    height: 300px !important;
    object-fit: cover !important;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center !important;
    gap: 40px !important;
}

.client-rectangle {    
    width: 300px !important;
    height: 300px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0px 4px 2px rgba(128, 128, 128, 0.5) !important;
}

.client-grid img {
    object-fit: cover !important;
    max-width: 90%;
    max-height: 100%;
}

.management-name {
    width: 280px !important;
    height: 40px !important;
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    font-size: 25px !important;
    font-weight: bold !important;
    text-align: center !important;
    line-height: 40px !important;
    color: #ffffff !important;
}

.management-structure-shadow {
    border-radius: 8px !important;
    box-shadow: 0px 4px 2px rgba(128, 128, 128, 0.5) !important;
    overflow: hidden;
}

.management-jabatan {
    font-size: 20px;
    color: #000000;
    line-height: 1.5;
}

.management-structure {
    padding: 40px;
}

.bungkus {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 100px;
}

.bungkus-photo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-top: 80px; */
}

.photo-aboutus img {
    /* width: 300px; */
    height: 400px;
    object-fit: cover;
}

.carousel-inner {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
}


.carousel-inner .carousel-item {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-inner .carousel-item.active {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/*  start vm corosel*/

/* Wrapper untuk memastikan carousel berada di tengah */
.carousel-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Container utama carousel */
.carousel-container {
    max-width: 600px; /* Sesuaikan ukuran carousel */
    width: 100%;
    text-align: center;
}

/* Mengatur isi carousel agar tetap di tengah */
.carousel-inner {
    text-align: center;
}

/* Style card di dalam carousel */
.carousel-card {
    background: linear-gradient(135deg, #d4d5d8, #dededf);
    padding: 30px;
    border-radius: 15px;
    color: white;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.carousel-card:hover {
    transform: scale(1.03);
}

/* Style teks dalam carousel */
.vmv-text p {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.vmv-text small {
    font-size: 1.1rem;
    display: block;
    opacity: 0.9;
}

/* Tombol Navigasi Carousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: #6e8efb;
}

/* Posisi tombol di luar carousel */
.prev-btn {
    left: -40px; /* Memindahkan ke luar carousel */
}

.next-btn {
    right: -40px; /* Memindahkan ke luar carousel */
}

/* Responsif: jika layar kecil, tombol tetap dekat carousel */
@media (max-width: 768px) {
    .prev-btn {
        left: -50px;
    }
    .next-btn {
        right: -50px;
    }
}


/* end corosel vm/

/* .vmv-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateY(-20px);
    width: 500px;
}

.vmv-text p {
    font-weight: bold;
    font-size: 3rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.vmv-text small {
    font-weight: 1.25rem;
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.6;
}

.carousel-container {
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    width: 800px;
}

.carousel-content-wrapper {
    align-items: center;
    display: grid;
    padding-bottom: 100px;
}

.center-div {
    margin: auto;
    padding: 20px;
}

.carousel-inner {
    position: relative;
    z-index: 1;
}

.carousel-inner .carousel-item {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-inner .carousel-item.active {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    /* margin: 10px; */
/* } */

/* .carousel-card {
    width: 600px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

/* .carousel-control-prev,
.carousel-control-next {
    background-color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 60px !important;
    height: 150px !important;
    margin: auto;
    opacity: 1 !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
} */

/* .carousel-control-prev::before,
.carousel-control-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.carousel-control-prev svg,
.carousel-control-next svg {
    width: 30px;
    height: 30px;
    color: #4a4a4a;
    pointer-events: none;
}

.carousel-indicator-wrapper {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    transform: translateY(-40px);
}

.carousel-indicators li {
    background-color: #4a4a4a !important;
    color: darkblue !important;
    width: 10px;
    height: 10px;
    margin: 2px;
    cursor: pointer;
} */

.landing-page-text {
    top: 47%;
    left: 16%; 
    transform: translate(-50%, -50%);
}

@media (max-width: 1300px) {
    .floating-rectangle {
        /* width: 700px !important;
        height: 455px !important; */
    }

    .btn-do {
        /* width: 210px !important; */
        height: 48px !important;
        font-size: 16px !important;
        padding: 10px 15px !important;
    }

    .text-center p {
        font-size: 50px !important;
        line-height: 1.2 !important;
        font-family: 'Nunito', sans-serif;
        font-family: 'Poppins', sans-serif;
    }

    .text-center small {
        font-size: 18px !important;
    }

    .desktop-line-break {
        display: inline;
    }
    
    .mobile-space {
        display: none;
    }

    .photo-resize {
        height: 570px;
    }

    .management-structure {
        padding: 40px;
    }
}

@media (max_width: 1300px) and (min-width: 560px) {
    .floating-rectangle {
        width: 90%;
        height: 90%;
        max-width: 700px;
        border-radius: 10px;
    }

    .btn-do {
        width: 90% !important;
        max-width: 210px !important;
    }
}

/* PHONE VIEW */
@media (max-width: 560px) {
    .navbar-collapse {
        background-color: #fdfdfd;
        border-radius: 5px;
    }

    .bg-question h3 {
        font-size: 16px;
    }

    .bg-question p {
        font-size: 12px;
    }
    .navbar-light .navbar-nav .nav-link.active,
    .navbar-light .navbar-nav .show > .nav-link {
        width: 50%;
    }
    .section-product ul li a {
        font-size: 0.8rem;
        margin-left: 0px !important;
    }

    .icon-product {
        width: 3rem;
        margin-right: 1rem !important;
    }

    .clients-logo {
        width: 9rem;
    }

    .title-banner p {
        font-size: 1.6rem;
    }

    .title-banner small {
        font-size: 0.8rem;
    }

    .btn .btn-action:hover {
        color: #fff !important;
    }

    .title-banner {
        top: 10%;
    }

    .tagline {
        background: #f8f8f8;
        border-radius: 4px;
    }

    .title-banner small {
        padding: 0.2rem;
        margin: -10px 0px 0xp 0px;
    }
    .title-work p {
        font-size: 2rem;
        line-height: 1.5;
    }

    .title-sub-work h4 {
        font-size: 1rem;
        letter-spacing: 0.04em;
    }

    .title-sub-work p {
        font-size: 0.7rem;
    }

    .copyright p {
        font-size: 12px;
    }

    .arrow-top {
        width: 20%;
    }

    .btp a {
        font-size: 12px;
    }

    .logo-footer {
        width: 10rem;
    }

    .content-offering {
        left: 0;
        padding: 50px;
    }

    footer {
        font-size: 12px;
    }

    section.section-contact {
        margin-top: 0rem;
    }

    .floating-rectangle {
        /* width: 80% !important;
        height: 80% !important; */
        border-radius: 10px !important;
    }

    .btn-do {
        max-width: 100% !important;
        height: 35px !important;
        font-size: 14px !important;
        padding: 8px 10px !important;
    }

    .text-center p {
        font-size: 20px !important;
        line-height: 1.2 !important;
        font-family: 'Nunito', sans-serif;
        font-family: 'Poppins', sans-serif;
    }

    .text-center small {
        font-size: 15px !important;
    }

    .desktop-line-break {
        display: none;
    }

    .mobile-space {
        display: inline;
    }

    .photo-resize {
        height: 400px;
    }

    .image-grid {
        display: grid;
        grid-template-columns: repeat(1, 280px);
        justify-content: center !important;
        gap: 15px !important;
    }

    .image-grid img {
        width: 280px !important;
        height: 300px !important;
        object-fit: cover !important;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    /* .client-grid {
        display: grid;
        grid-template-columns: repeat(1, 280px);
        justify-content: center !important;
        gap: 15px !important;
    }

    .client-grid img {
        width: 280px !important;
        height: 300px !important;
        object-fit: cover !important;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    } */

    .management-structure {
        padding: 20px;
    }

    .management-jabatan {
        line-height: 1.5;
    }

    /* .image-grid {
        display: grid;
        grid-template-columns: repeat(3, 280px);
        grid-template-rows: repeat(400px);
        justify-content: center !important;
        gap: 60px !important;
    }
    
    .image-grid img {
        height: 300px !important;
        object-fit: cover !important;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    } */

    .rectangle-form {
        padding: 0;
        z-index: 2;
    }

    .contact-out {
        height: 650px;
        align-items: center;
        padding-left: 60px;
        margin-top: 80px;
    }

    .landing-page-text {
        top: 55%;
        left: 35%;
    }

    .bungkus {
        display: flex;
        padding-top: 100px;
        flex-direction: column;
        justify-content: space-between;
    }

    .client-grid {
    display: grid;
    grid-template-columns: repeat(1, 280px);
    justify-content: center !important;
    gap: 40px !important;
    }

    .form-group {
        position: relative;
        width: auto;
    }

    .form-content {
        display: flex;
        gap: 10px;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}
/* PHONE VIEW */