/* start section body */
html {
    scroll-behavior: smooth;
}

body{
    font-family: "Plus Jakarta Sans", sans-serif;
}

a{
    text-decoration: none;
}

/* start section banner */
.banner-carousel {
    position: relative;
}

.image-banner{
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-postition: center;
    z-index: 1;
}

.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 2;
}

.carousel-caption {
    position: absolute;
    left: auto;
    z-index: 3;
    text-align: left;

    right: 0;
    bottom: 0;

    max-width: 450px; /* Sesuaikan lebar maksimum sesuai kebutuhan */
    padding-right: 150px;
    padding-bottom: 200px;
}

.carousel-caption p{
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
}

.down-arrow {
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: white;
    transform: translateX(-50%);
    z-index: 4;
    font-size: 20px;
    color: #FE7777;
    font-weight: 800;
}

.carousel-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    z-index: 5;
}

.carousel-control-next{
    z-index:50;
}

.carousel-control-prev{
    z-index:50;
}

/* start section navbar */
.nav-item{
    color: black !important;
}

.nav-item a:hover{
    color: #FE7777 !important;
}

.navbar {
    transition: all 0.5s ease;
    padding: 0;
}

.navbar .navbar-nav .nav-item .nav-link {
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar .navbar-brand {
    font-size: 0;
    padding: 0;
    width: 100px;
    height: 70px;
    line-height: 50px;
}

.navbar .navbar-brand img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* Menjamin gambar menutupi area tanpa mengubah rasio aspek */
    object-position: center; /* Memusatkan gambar dalam kontainer */
}

.navbar .navbar-toggler {
    padding: 0px;
    border: none;
    font-size: 32px;
    color: #000;
}

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


/* start section about */
.about-col1{
    background-color: #FFCC33 !important;
    height: auto;
}

.about-col2 {
    postition: relative;
    display: flex;
    flex-direction: column; /* Mengubah arah flex items menjadi vertikal */
    padding: 0; /* Menghilangkan padding default jika ada */
    background-color: #FFCC33 !important;
}

.about-img{
    width: 100%; /* Membuat gambar memenuhi lebar kontainer */
    height: 100%; /* Menjaga aspek rasio gambar */
    margin-bottom: 0; /* Menghilangkan margin bawah default jika ada */
    object-fit: cover; /* Menjamin gambar menutupi area tanpa mengubah rasio aspek */
    object-position: center; /* Memusatkan gambar dalam kontainer */
    z-index: 1;
}

.about-desc{
    position: absolute;
    z-index: 3;
    color: #000; /* Mengatur warna teks menjadi hitam */
    font-size: 22px; /* Mengatur ukuran font */
    font-weight: 600;
    text-align: justify;
    margin-top: 496px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 25px;
    height: 130px;
    background-color: rgba(255, 255, 255, 0.5);
    .backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.stat-card {
    display: flex;
    align-items: center; /* This will vertically align the children */
    background: #FFCC33;
    border: none;
    height: 100%; /* You may need to set a specific height or make sure parent's height is defined */
}

.stat-figure {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    padding: 0.5rem 0rem;
}

.stat-label {
    color: #000;
    font-size: 1.4rem;
    font-weight: 400; 
    padding: 0.5rem 0rem;
}

.source {
    color: #000;
    font-size: 1.7rem;
    font-weight: 700;
    padding: 0.5rem 0rem;
    align-self: center; /* Keeps the text vertically centered */
    justify-self: start; /* Aligns the text to the start (left) */
    width: 100%; /* Ensures the text container takes full width of the column for proper alignment */
}

.title-about{
    color: #000;
    font-size: 3.5rem;
    font-weight: 800;
}

/* start section work */
.work-col1{
    background-color: #CCCCCC !important;
    padding-left: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 50px;
}

.work-col2{
    background-color: #CCCCCC !important;
    padding-top: 50px;
    padding-left: 0px;
    padding-right: 100px;
    padding-bottom: 50px;
}

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

.work-sub-title{
    font-size: 24px;
}

.work-desc{
    font-size: 16px;
}

/* Custom carousel buttons styling */
.carousel-buttonsm {
    position: relative;
    display:none;
    text-align: center;
    margin-top: 20px;
}

.carousel-buttonspc {
    position: relative;
    display:block;
    text-align: center;
    margin-top: 20px;
}

.custom-prev, .custom-next {
    width: 50px; /* Adjust width as needed */
    height: 50px; /* Adjust height as needed */
    background-color: #FF9934 !important; /* Orange background */
    color : #fff;
    border: none; /* Remove border */
    border-radius: 0; /* Square shape */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute; /* Ensure buttons are positioned correctly */
    top: 50%; /* Vertically center the buttons */
    transform: translateY(-50%);
    opacity: 1;
}

.custom-prev:hover, .custom-prev:focus, .custom-next:hover, .custom-next:focus {
    opacity: 0.5;
}

.custom-prev {
    top : 130px;
    left: 415px; /* Adjust the position from the left edge */
}

.custom-next {
    top : 130px;
    right: -60px; /* Adjust the position from the right edge */
}

.custom-prev .custom-icon, .custom-next .custom-icon {
    display: inline-block;
    width: 20px; /* Adjust icon size as needed */
    height: 20px; /* Adjust icon size as needed */
    background-size: contain;
    background-repeat: no-repeat;
}

/* start section product*/
.product-mobile {
    display: none;  /* Sembunyikan pada desktop */
}

.product-pc {
    display: block;  /* Tampilkan pada desktop */
}

.prod-img{
    height: 500px;
}

.prod-img img{
    height: 500px;
    object-fit: cover; 
    object-position: center; 
}

.prod-desc{
    background-color: #FF9934 !important;
    height: 500px !important;
}

.prod-desc-title {
    font-size: 20px;
    font-weight: 700;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 80%;
}

.prod-desc-desc {
    font-size: 16px;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 80%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10; /* Number of lines to show */
    overflow: hidden;
}

.prod-desc-desc a{
    color: #fff;
}

.prod-desc-desc a:hover{
    color: #000;
}


.prod-desc-btn {
    font-size: 16px;
    padding: 8px;
    color: #fff;
    background-color: #000 !important;
    margin-left: 50px;
    margin-right: 50px;
    max-width: 80%;
    border: 1px solid #000;
}

.prod-desc-btn:hover{
    font-size: 16px;
    padding: 8px;
    color: #000;
    background-color: #fff !important;
    margin-left: 50px;
    margin-right: 50px;
    max-width: 80%;
    border: 1px solid #000;
}


/* start section review testimoni */
.home-testimonial{
    background-color: #fff;
    height: auto;
}

.testimoni-mobile {
    display: none;  /* Sembunyikan pada desktop */
}

.testimoni-pc {
    display: block;  /* Tampilkan pada desktop */
}

.home-testimonial-bottom{
    background-color: #EDF3F3;
    border-radius: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    height: auto;
    width: 100%;

    padding-top: 50px;
    padding-bottom: 50px;
}
    
.home-testimonial h3{
    color: var(--orange);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.home-testimonial h2{
    color: white;
    font-size: 28px;
    font-weight: 700;
}

.testimonial-inner{
    position: relative;
}

.testimonial-pos p{
    position: relative;
    padding-bottom: 50px;
    color: #000;
    font-size: 32px;
    font-weight: 800;
}

.testimonial-inner .tour-desc{
    border-radius: 25px;
    padding: 40px;
    width: 100%;
    height: 480px;
}

.color-grey-3{
    font-size: 16px;
    color: #000;
}

.testimonial-inner img.tm-people{
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
}

.link-name{
    font-size: 16px;
    color: #000;
    font-weight: 700;
}

.link-position{
    font-size: 16px;
    color: #000;
}

.custom-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background: none;
    border: none;
}

.custom-carousel-control-prev {
    left: -2%;
}

.custom-carousel-control-next {
    right: -2%;
}

.custom-carousel-control-prev-icon,
.custom-carousel-control-next-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-carousel-control-prev-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke="%23FF9934" fill="none"><path d="M10 2l-6 6 6 6" stroke-width="2" stroke-linecap="round"/></svg>');
}

.custom-carousel-control-next-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" stroke="%23FF9934" fill="none"><path d="M6 2l6 6-6 6" stroke-width="2" stroke-linecap="round"/></svg>');
}

/* Custom CSS for round carousel indicators */
.carousel-indicators button {
    border: none;
    border-radius: 50%; /* Ensures roundness */
    width: 12px; /* Ensures width is the same as height */
    height: 12px; /* Ensures height is the same as width */
    background-color: #FF9934; /* Default color for inactive indicators */
    margin: 0 5px; /* Spacing between indicators */
    display: inline-block; /* Ensures button maintains its shape */
    opacity: 1; /* Makes indicators more visible */
    padding: 0; /* Resets any default padding */
    transition: background-color 0.6s ease; /* Smooth transition for background color */
}

.carousel-indicators button:hover,
.carousel-indicators button:focus {
    background-color: #FF9934; /* Hover and focus state color */
}

.carousel-indicators .active {
    background-color: #FF9934; /* Color for active indicator */
    width: 12px; /* Active indicator width */
    height: 12px; /* Active indicator height */
}

.carousel-indicators button:not(.active) {
    width: 12px;
    height: 12px;
}

/* Custom CSS for round carousel indicators */
.custom-carousel-indicators button {
    border: none;
    border-radius: 50%; /* Ensures roundness */
    width: 12px; /* Ensures width is the same as height */
    height: 12px; /* Ensures height is the same as width */
    background-color: #C3C3C3; /* Default color for inactive indicators */
    margin: 0 5px; /* Spacing between indicators */
    display: inline-block; /* Ensures button maintains its shape */
    opacity: 1; /* Makes indicators more visible */
    padding: 0; /* Resets any default padding */
    transition: background-color 0.6s ease; /* Smooth transition for background color */
}

.custom-carousel-indicators button:hover,
.custom-carousel-indicators button:focus {
    background-color: #FFFFFF; /* Hover and focus state color */
}

.custom-carousel-indicators .active {
    background-color: #FFFFFF; /* Color for active indicator */
    width: 12px; /* Active indicator width */
    height: 12px; /* Active indicator height */
}

.custom-carousel-indicators button:not(.active) {
    width: 12px;
    height: 12px;
}

/* start section how to order */
.home-order{
    background-color: #fff;
    height: auto;
}

.how-to-row{
    padding-left: 70px;
    padding-right: 70px;
    padding-top: 0px;
    padding-bottom: 60px;
}

.how-to-col{
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.order-info{
    background-color: #C3C3C3;
    border-radius: 25px 25px 0px 0px;
    margin-top: 20px;
    position: relative;
    height: auto;
    width: 100%;
    padding-top: 50px;
}

.head-infocard{
    position: relative;
}

.info-card, .info-card1 {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 250px;
    display: flex;          /* Menjadikan ini sebagai flex container */
    justify-content: center;/* Menyelaraskan anak-anak elemen di tengah secara horizontal */
    align-items: center;    /* Menyelaraskan anak-anak elemen di tengah secara vertikal */
    flex-direction: column; /* Mengatur arah anak-anak elemen menjadi vertikal */
}

.number-odd, .number-odd1 {
    background: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute; /* Absolutely position the number-odd div */
    top: -100px; /* Half of height to move it above the info-card */
    left: 50%; /* Start at the center */
    transform: translateX(-50%); /* Offset by half its width to center it */
    padding: 1rem 0;
    z-index: 10; /* Ensure it sits above the info-card */
}

.number-odd, .number-odd1 span {
    font-size: 2rem;
    font-weight: 800;
}

.number-img{
    width: 180px;
    height: auto;
    margin-left: 100px;
    margin-top: -90px;
}

.number-img2{
    width: 180px;
    height: auto;
    margin-left: 100px;
    margin-top: -90px;
}

.number-img1{
    display: block;
    width: 180px;
    height: auto;
    margin-left: 100px;
    margin-top: -50px;
}

.icon {
    font-size: 1.8rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.icon-bg {
    font-size: 4rem;
    color: #C3C3C3;
    font-weight: 700;
    z-index: 1;
}

.info-header {
    text-align: center;
    font-size: 1.5rem;
    color: #grey;
    font-weight: bold;
    margin-bottom: 2rem;
}

/* start section pricing */
.home-pricing{
    background-color: #fff;
    height: auto;
}

.pricing-bg{
    background-color: #EBEBEB;
    border-radius: 0px 0px 25px 25px;
    margin-bottom: 20px;
    position: relative;
    height: auto;
    width: 100%;
}

.card-pricing{
    height: 500px;
    border-radius: 25px;
    background-color: #ffe06e ;
    color: #000;
    padding: 20px;
}

.best-seller{
    padding: 0.5rem;
    background-color: #da0000;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    width: 150px;
    border-radius: 0 15px 15px 0;
    margin-left:-20px;
}

.best-seller1{
    padding: 0.5rem;
    background-color: #fff;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    width: 150px;
    border-radius: 0 15px 15px 0;
    margin-left:-20px;
}

.btn-pricing{
    border: 1px solid #000;
    border-radius: 50px;
    padding: 7px;
    width: 130px;
    height: 40px;
    background-color: #000;
    color: #fff;
}

.btn-pricing:hover{
    border: 1px solid #000;
    border-radius: 50px;
    background-color: #fff;
    color: #000;
    padding: 9px;
    width: 135px;
    height: 45px;
}

.card-pricing1{
    height: 500px;
    border-radius: 25px;
    background-color: #fff ;
    color: #000;
    padding: 20px;
}

.card-body p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* Number of lines to show */
    overflow: hidden;
}

/* start section CTA1 */
.home-cta1{
    background-color: #fff;
    height: auto;
}

.cta1-bg{
    border-radius: 0px 0px 25px 25px;
    margin-bottom: 20px;
    position: relative;
    height: auto;
    width: 100%;
}

.cta1-title{
    font-size:52px;
    font-weight: bold;
    max-width: 800px;
}

.btn-cta1{
    background-color: #92F400;
    border-color: #92F400;
    font-size: 28px;
    font-weight: 700;
    padding: 10px;
    width: 300px;
    height: 60px;
    border-radius: 50px;
    color: #000;
}

.btn-cta1:hover{
    background-color: #75c300;
    border-color: #75c300;
    font-size: 28px;
    font-weight: 700;
    padding: 12px;
    width: 330px;
    height: 65px;
    border-radius: 50px;
    color: #000;
}

/* start section QnA */
.home-qna{
    background-color: #DEDEDE;
    height: auto;
}

.qna-bg{
    margin-bottom: 20px;
    position: relative;
    height: auto;
    width: 100%;
    background-color: #DEDEDE;
}

.qna-pos p{
    position: relative;
    padding-bottom: 50px;
    color: #000;
    font-size: 32px;
    font-weight: 800;
}

/* start section CTA2 */
.home-cta2{
    background-color: #231834;
}

.btn-cta2{
    background-color: #92F400;
    border-color: #92F400;
    font-size: 28px;
    font-weight: 700;
    padding: 10px;
    width: 380px;
    height: 60px;
    border-radius: 50px;
    color: #000;
}

.btn-cta2:hover{
    background-color: #75c300;
    border-color: #75c300;
    font-size: 28px;
    font-weight: 700;
    padding: 12px;
    width: 400px;
    height: 65px;
    border-radius: 50px;
    color: #000;
}

/* start section artikel */
.artikel-col1{
    padding-left: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 50px;
}

.artikel-col2{
    padding-top: 50px;
    padding-left: 30px;
    padding-right: 50px;
    padding-bottom: 50px;
}

.artikel-col{
    background-color: #fff;
    padding-left: 100px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 50px;
}

.artikel-srch{
    background-color: #fff;
    padding-left: 100px;
    padding-top: 30px;
    padding-bottom: 80px;
    padding-right: 50px;
}

.artikel-head{
    font-size: 94px;
}

.artikel-title{
    font-size: 52px;
}

.artikel-title a{
    color: #000;
}

.artikel-sub-head{
    font-size: 24px;
}

.artikel-desc{
    font-size: 18px;
    font-weight: 500;
}

.artikel-date{
    font-size: 16px;
}

/* start section artikel list */
.artikel-col-list{
    background-color: #fff;
    padding-left: 80px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 50px;
}

.list-artikel-title{
    font-size: 28px;
    font-weight: 500;
}

.list-artikel-lt{
    font-size: 28px;
    font-weight: 500;
}

.list-artikel-desc{
    font-size: 16px;
    font-weight: 400;
}

.list-artikel-date{
    font-size: 14px;
}

/* start section pagination */
.pagination {
    height: 36px;
    margin: 18px 0;
    color: #6c58bF;
}

.pagination ul {
    display: inline-block;
    *display: inline;
    /* IE7 inline-block hack */
    *zoom: 1;
    margin-left: 0;
    color: #ffffff;
    margin-bottom: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

.pagination li {
    display: inline;
    color: #000;
}

.pagination a {
    float: left;
    padding: 0 14px;
    line-height: 34px;
    color: #000;
    text-decoration: none;
    border: 1px solid #fff;
    border-left-width: 0;
}

.pagination a:hover,
.pagination .active a {
    background-color: #8F8F8F;
    color: #ffffff;
}

.pagination a:focus {
    background-color: #000;
    color: #ffffff;
}


.pagination .active a {
    color: #ffffff;
    cursor: default;
}

.pagination .disabled a {
    background-color: #fff !Important;
    border: solid 1px #fff !Important;
}

.pagination .disabled span,
.pagination .disabled a,
.pagination .disabled a:hover {
    color: #999999;
    background-color: transparent;
    cursor: default;
}

.pagination li:first-child a {
    border-left-width: 1px;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.pagination li:last-child a {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.pagination-centered {
    text-align: center;
}

.pagination-right {
    text-align: right;
}

.pagination > .active > a{
    color: white;
    background-color: #000 !Important;
    border: solid 1px #000 !Important;
}

/* start section deatil artikel */
.title-single a{
    color: #000;
    font-size: 52px;
}

.desc-single{
    font-size: 18px;
    font-weight: 500;
}

.desc-single img{
    width: 100%;
}

.desc-single a, img{
    width: 100%;
}

.date-single{
    font-size: 16px;
}

.truncate-desc{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Number of lines to show */
    overflow: hidden;
    width: 250px; /* Adjust width as necessary */
}

.truncate-title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Number of lines to show */
    overflow: hidden;
    width: 250px; /* Adjust width as necessary */
}
/* start section contact */

/* start section footer */
.footer-title p{
    font-size:32px;
    font-weight: 500;
    max-width:250px;
    line-height:1;
}

.footer-title a{
    margin-right: 7px;
}

.footer-title a i{
    font-size: 22px;
}

.ftr-cntr{
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

/* back to top button */
#btn-back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #000;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
}

#btn-back-to-top:hover{
    background-color:#000;
    color:#FFF;
}

#btn-back-to-top i{
    font-size: 20px;
}

/* floating button WA */
.wa-floating{
    display: none;
    position:fixed;
    bottom:20px;
    right:90px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #25d366;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
}

.wa-floating i{
    font-size: 20px;
}

.wa-floating:hover{
    font-size: 20px;
    color: #fff;
    background-color: #1ead53;
}
