/* font */
@font-face{
    font-family: 'poppins-regular';
    src: url('../font/Poppins-Regular.ttf');
    src: url('../font/Poppins-Regular.ttf') format('ttf'),
        url('../font/Poppins-Regular.ttf') format('truetype');
}

@font-face{
    font-family: 'poppins-semibold';
    src: url('../font/Poppins-SemiBold.ttf');
    src: url('../font/Poppins-SemiBold.ttf') format('ttf'),
        url('../font/Poppins-SemiBold.ttf') format('truetype');
}

@font-face{
    font-family: 'poppins-bold';
    src: url('../font/Poppins-Bold.ttf');
    src: url('../font/Poppins-Bold.ttf') format('ttf'),
        url('../font/Poppins-Bold.ttf') format('truetype');
}

.goog-te-banner-frame, .goog-te-menu-frame, .goog-te-gadget {
    display: none !important;
}

body {
    top: 0px !important;
}


/* pertama */
.hero-wmp {
    position: relative;
    height: 70vh;
    background: url('/image/display/imagesuvey1.jpg') center/cover no-repeat;
}

.hero-overlay {
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.3)
    );
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
    max-width: 900px;
    padding: 0 10%;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-content p {
    margin-top: 15px;
    font-size: 18px;
    opacity: 0.95;
}

.content-wmp {
    padding: 80px 0;
    background: #f9fafb;
}

.content-wmp .container {
    max-width: 1100px;
    margin: auto;
}

.content-text p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #333;
    text-align: justify;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 24px;
    margin: 60px 0;
}

.highlight-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.highlight-card h3 {
    font-size: 30px;
    color: #f97316;
    margin-bottom: 8px;
}

.highlight-card p {
    font-weight: 600;
    color: #555;
}

.wmp-image-text {
    padding: 60px 0;
    background: #ffffff;
}

.single-image-wrap {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.single-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .single-image-wrap img {
        height: 260px;
    }
}


/* kedua */
.hero-service {
    height: 65vh;
    background: url('/image/display/imagesuv2.jpg') center/cover no-repeat;
}

.hero-service-overlay {
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.45),
        rgba(0,0,0,.25)
    );
    display: flex;
    align-items: center;
}

.hero-service-content {
    padding: 0 10%;
    max-width: 900px;
    color: #fff;
}

.hero-service-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-service-content p {
    margin-top: 14px;
    font-size: 18px;
}

.service-links {
    margin-top: 70px;
}

.service-links h3 {
    margin-bottom: 22px;
    font-size: 22px;
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-card {
    position: relative;
    padding: 18px 50px 18px 20px;
    background: #f8fafc;
    border-radius: 14px;
    font-weight: 600;
    color: #1e3a8a;
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.link-card::after {
    content: "↗";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.6;
}

.link-card:hover {
    background: #eef2ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.service-contact {
    margin-top: 80px;
}

.service-contact h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
    max-width: 900px;
}

.contact-unit {
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.contact-row .label {
    font-weight: 700;
    color: #475569;
}

.contact-row .value {
    line-height: 1.7;
}

.contact-row a {
    color: #1e40af;
    font-weight: 600;
    text-decoration: none;
}

.contact-row a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
    .contact-row {
        grid-template-columns: 1fr;
    }
}


.service-page {
    padding: 80px 0;
    background: #f9fafb;
}

.service-page .container {
    max-width: 1100px;
    margin: auto;
}

.service-text p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    text-align: justify;
}

.service-text h3 {
    margin: 40px 0 16px;
}

.service-image-break {
    margin: 60px 0;
}

.service-image-break img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.service-highlight {
    background: #eef2f7;
    padding: 30px;
    border-radius: 18px;
    margin: 40px 0;
}

.service-highlight ul li {
    margin-bottom: 10px;
}

.service-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-col ul li {
    margin-bottom: 10px;
}

.service-links {
    margin-top: 60px;
    padding: 30px;
    background: #f1f5f9;
    border-radius: 18px;
}

.service-links a {
    font-weight: 600;
    color: #1e40af;
    text-decoration: none;
}

.service-links a:hover {
    text-decoration: underline;
}

.service-gallery {
    margin-top: 70px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

.service-contact {
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.service-documentation {
    margin-top: 70px;
}

.service-documentation h3 {
    margin-bottom: 18px;
    font-size: 22px;
}

.documentation-image {
    max-width: 1000px;
    margin: 0 auto;
}

.documentation-image img {
    width: 100%;
    height: auto;
    display: block;
}



/* =================================== */


.rc-anchor-normal-footer, .smalltext, .rc-anchor-alert, .rc-anchor-invisible-text{
    display: none !important;
}

.grecaptcha-badge { 
    visibility: hidden; 
    display: none;
}

.cke_notification{
    display: none !important;
}

.box-all{
    width: 85%;
    max-width: 1200px;
    margin: auto;
    min-height: 100vh;
    padding: 100px 0;
}

.box-image{
    width: 40%;
}

.box-image img{
    width: 100%;
}

.box-text{
    width: 60%;
}

/*.box-image-text{*/
/*    display: flex;*/
/*}*/



/* tentang kami */
/* tentang kami */
.tentang-kami{
    width: 100%;
}

.bg-tentang-kami{
    width: 80%;
    min-height: 80vh;
    margin: auto;
    display: flex;
    padding: 100px 0;
}

.image-tentang-kami{
    width: 50%;
}

.text-tentang-kami{
    width: 50%;
    padding: 0 20px 0 0;
    margin: auto 0;
}

.image-tentang-kami {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: auto;
}

.image-tentang-kami img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.spesial-text{
    display: flex;
}

.spesial-text .title-text{
    width: 50%;
}

.spesial-text .title-text h1{
    max-width: 300px;
}

.more-text{
    width: 50%;
}

.tentang-kami-text{
    width: 80%;
    margin: auto;
}

.text-tentang-kami h1{
    font-family: 'poppins-semibold';
}

.text-tentang-kami-solo{
    /* background-color: rgb(246, 246, 246); */
    padding: 30px;
    border-radius: 15px;
}

.text-tentang-kami-solo h1{
    padding-bottom: 10px;
    padding-top: 10px;
    font-family: 'poppins-semibold';
}

.spesial-text p{
    line-height: 2;
    font-size: 14px;
}

.bg-tentang-kami .text-tentang-kami-solo:nth-child(1){
    color: white;
    background-color: #F69501;
    height: fit-content;
    padding: 30px;
    border-radius: 15px;
    margin-right: 10px;
    width: 30%;
}

.bg-tentang-kami .text-tentang-kami-solo:nth-child(2){
    height: fit-content;
    padding: 30px;
    width: 70%;
    /* background-color: rgb(248, 248, 248); */
    border-radius: 15px;
    margin-left: 10px;
    /* box-shadow: 0px 10px 10px rgba(10, 2, 3, 0.1); */
}

.another-text{
    min-height: 300px;
}

.out-gallery{
    width: 80%;
    margin: auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

/* Variasi ukuran */
.wide {
    grid-column: span 2;
}

.tall {
    grid-row: span 2;
}

.bg-foto-three{
    /* width: 80%; */
    margin: auto;
}

.foto-three{
    display: flex;
}

.bg-foto-three {
    justify-content: center;
    align-items: center;
    margin: auto;
    /* width: 80%; */
}

.foto-three {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bg-one-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bg-one-image img {
    width: 100%;
    height: 420px; /* Tetapkan tinggi agar seragam */
    object-fit: cover; /* Pastikan gambar memenuhi tanpa distorsi */
    border-radius: 10px;
}

.bg-two-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bg-two-image img {
    width: 100%;
    height: 205px; /* Tetapkan tinggi agar proporsional */
    object-fit: cover; /* Pastikan gambar memenuhi tanpa distorsi */
    border-radius: 10px;
}

.question{
    width: 80%;
    margin: auto;
    padding: 100px 0;
    display: flex;
}

.bg-question{
    margin: auto;
    width: 100%;
}

.bg-question h1{
    font-family: 'poppins-semibold';
}

.question-item .accordion-header .accordion-button{
    /* border: 1px solid black !important; */
    font-size: 20px !important;
    padding: 20px 20px 20px 0;
}

.question-item .accordion-body{
    background-color: rgb(240, 240, 240);
}

.accordion-button:focus, 
.accordion-button:active {
    box-shadow: none !important;
    background-color: transparent !important;
    outline: none !important;
}

@media(max-width:900px){
    .responsive-bg-tentang-kami{
        flex-direction: column !important;
    }

    .responsive-bg-tentang-kami .text-tentang-kami{
        padding: 0 0 50px 0;
    }

    .text-tentang-kami{
        width: 100%;
        padding: 50px 0;
    }

    .image-tentang-kami{
        width: 100%;
    }

    .bg-foto-three{
        width: 100%;
    }

    .spesial-text{
        flex-direction: column;
        padding: 30px 0;
    }

    .title-text{
        width: 100% !important;
    }

    .spesial-text h1{
        max-width: none !important;
    }

    .title-text{
        width: 100%;
    }

    .more-text{
        width: 100%;
    }
}

@media(max-width:560px){
    .foto-three{
        flex-direction: column;
    }

    .foto-three img{
        height: 300px;
    }
}

@media(max-width:1000px){
    .bg-another-text{
        flex-direction: column !important;
    }

    .another-text{
        width: 100% !important;
        min-height: 0;
    }

    .bg-tentang-kami .text-tentang-kami-solo:nth-child(2){
        box-shadow: 0px 10px 10px rgba(10, 2, 3, 0.1);
        margin-left: 0;
        margin-top: 30px;
    }
}
/* close tentang kami */



.number-counter {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.card-for-three h3{
    background-color: #F69501;
    border-radius: 20px;
    color: white;
    padding: 20px 0;
}

.counter {
    display: inline-block;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    /*opacity: 0;*/
    transition: opacity 0.3s ease-in-out;
    margin-bottom: 10px;
}

*{
    margin: 0;
    padding: 0;
    font-family: 'poppins-regular';
}

h3{
    font-size: 30px !important;
    font-family: 'poppins-bold';
}

.styling-new-list{
    display: flex;
    width: 100%;
    /*background-color: blue;*/
}

.background-new-list{
    /*background-color: red;*/
    width: 100%;
}

.image-new-content{
    width: 30%;
    display: flex;
}

.image-new-content img{
    max-width: 300px;
    margin: 0 auto;
    max-height: 400px !important;
    width: 100%;
    height: 100%;
}

.text-new-content{
    padding-left: 30px;
    width: 70%;
    margin: auto 0;
}

@media(max-width: 740px){
    .styling-new-list{
        display: block;
        padding-bottom: 50px;
        width: 100%;
    }
    
    .image-new-content{
        width: 100%;
    }
    
    .image-new-content img{
        max-width: 100%;
        width: 100%;
        max-height: 100%;
    }
    
    .image-new-content{
        width: 100%;
    }
    
    .text-new-content{
        padding-left: 0;
        width: 100%;
    }
}


.button-orange{
    text-decoration: none !important;
    color: white !important;
    background-color: #F79501 !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    border: none !important;
}

/* navbar */
.navbar{
    width: 100%;
    display: flex;
    background-color: #202F5B;
    padding: 0 !important;
}

.bg-navbar{
    width: 85%;
    max-width: 1600px;
    margin: auto;
}

.navbar-atas{
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 13px;
}

.navbar-bawah{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.sticky-navbar{
    position: sticky;
    top: 0;
}

.menu-kanan{
    display: flex;
    margin: auto 0;
    height: fit-content;
}

.navbar a{
    text-decoration: none;
    color: #DDE0E4;
}

.menu-kanan a{
    padding: 0 10px;
}

.icon-menu{
    color: white;
    display: none;
}

.icon-menu-2{
    color: white;
    display: none;
}

.icon-bar-menu{
    color: white;
    font-size: 23px;
    padding: 0 5px;
}

.menu-kiri{
    display: flex;
}

.menu-kiri a{
    padding: 0 5px;
    font-size: 15px;
}

.menu-kiri p{
    padding: 0 10px;
    color: white;
}

.menu-for-desktop{
    display: flex;
}

@media(max-width: 816px){
    .menu-for-desktop{
        display: none;
    }

    .icon-menu{
        display: block;
    }
}

@media(max-width:588px){
    .navbar-atas{
        display: none;
    }

    .icon-menu-2{
        display: block;
    }
}

.card-img-top{
    height: 300px !important;
    object-fit: cover !important;
    object-position: top;
}




/* content pertama */
.first-content{
    width: 100%;
    display: flex;
    min-height: 90vh;
}

.judul-awal{
    font-size: 40px !important;
    width: 100% !important;
}

.bg-first-content{
    display: flex;
    margin: auto;
    width: 80%;
}

.text-content-second{
    width: 50%;
    height: fit-content;
    margin: auto 0;
    padding-right: 20px;
}

.text-content-second h3,
.text-content-second p{
    max-width: 600px;
    width: 100%;
}

.image-content-second{
    width: 50%;
    /* background-color: red; */
    display: flex;
}

.image-content-second img{
    max-width: 500px;
    width: 100%;
    margin: auto;
}

@media(max-width:821px){
    .content-text-image{
        flex-direction: column !important;
    }
    
    .bg-first-content{
        flex-direction: column-reverse;
    }

    .text-left{
        padding: 20px 0 !important;
    }

    .first-content{
        padding: 20px 0;
        min-height: 90vh;
    }

    .image-content-second, .text-content-second{
        width: 100%;
    }

    .image-content-second img{
        padding: 20px 0 50px 0;
    }

    .judul-awal{
        font-size: 30px !important;
        width: 100%;
    }
}

.text-again{
    display: flex;
    justify-content: space-between;
}

.text-again a{
    margin: auto 0;
    color: #F79501;
}


/* three content */
.three-content{
    width: 100%;
    display: flex;
    min-height: 60vh;
    background-color: #202F5B;
}

.bg-three-content{
    /* width: 80%; */
    margin: auto;
}

.bg-three-content .row{
    width: 80%;
    margin: auto;
}

.card-for-three{
    max-width: 280px;
    text-align: center;
    margin: 20px auto;
    padding: 20px 25px;
    border-radius: 20px;
    right: auto;
    background-color: white;
}

.miring-kanan{
    transform: rotate(4deg);
    transition: 0.3s;
}

.miring-tengah{
    width: 300px;
}

.miring-kiri{
    transform: rotate(-4deg);
    transition: 0.3s;
}

.miring-kanan:hover{
    transform: rotate(0);
}

.miring-kiri:hover{
    transform: rotate(0);
}

@media(max-width:1318px){
    .bg-three-content .row{
        width: 100%;
    }

    .miring-kanan, .miring-kiri{
        transform: rotate(0);
    }
}

/* content mitra */
.content-ketiga {
    position: relative;
    padding: 50px 100px;
    overflow: hidden; /* Menyembunyikan gambar yang keluar dari area scroll */
    width: 100%; /* Lebar kontainer 100% */
    height: 300px; /* Tentukan tinggi kontainer */
    display: flex;
}

.bg-content-ketiga {
    position: relative;
}

.bg-content-ketiga h3{
    width: 100vw;
    background-color: red;
    text-align: center;
}

.mitra-kami{
    width: 100%;
}

.mitra-kami h3{
    text-align: center;
}

.isi-content-mitra {
    display: flex;
    flex-wrap: nowrap; /* Menjaga gambar tetap dalam satu baris */
    width: max-content; /* Mengatur lebar berdasarkan total lebar gambar */
    transition: transform 0.1s linear; /* Membuat animasi halus saat berhenti */
}

.isi-content-mitra img {
    height: 80px; /* Menyesuaikan tinggi gambar dengan kontainer */
    width: auto;  /* Menjaga proporsi gambar */
    object-fit: contain; /* Menjaga proporsi gambar */
    margin-right: 50px; /* Memberikan jarak antar gambar */
}

@media(max-width:450px){
    .isi-content-mitra img {
        height: 70px; /* Menyesuaikan tinggi gambar */
        margin-right: 20px; /* Memberikan jarak antar gambar */
    }
}




/* content kedua */
.content-kedua{
    width: 100%;
    display: flex;
    min-height: 70vh;
    padding: 100px 0;
}

.bg-content-kedua{
    width: 80%;
    margin: auto;
}

.bungkus-button{
    padding: 10px 0 20px 0;
}

.text-toko img{
    /* display: none !important; */
}

.text-toko p, .text-more-for-post p{
    width: 300px;             /* Lebar kontainer */
    white-space: nowrap;      /* Mencegah teks membungkus */
    overflow: hidden;         /* Menyembunyikan teks yang tidak terlihat */
    text-overflow: ellipsis;  /* Menambahkan elipsis (...) di akhir teks */
}

.text-more-for-post strong{
    display: none;
}

.nav-item, .dropdown{
    width: fit-content !important;
}

.dropdown-menu, .dropdown-item{
    color: black !important;
}

.dropdown-menu li a{
    padding: 10px 20px;
}

@media(min-width: 576px){
    .dropdown:hover > .dropdown-menu{
        display: block;
    }
}




/* content text image */
.content-text-image{
    width: 100%;
    display: flex;
    background-color: #202F5B;
    min-height: 70vh;
    padding: 50px 0;
}

.content-text-image p, .content-text-image h3,
.content-text-image a{
    color: white;
} 

.bg-content-text-image{
    width: 80%;
    margin: auto;
}

.text-left{
    padding-left: 20px;
}

/* content plus */
.content-plus{
    width: 100%;
    background-color: #202F5B;
    display: flex;
}

.bg-content-plus{
    width: 80%;
    margin: auto;
}
