/* General Settings */

 :root {
    --bg-black: #080808;
    --accent-blue: #00a1ff;
    --text-gray: #a0a0a0;
    --tab-border: #222;
}

html,
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    height: 100%;
    background-color: #f3f3f6;
}

body {
    /* display: flex; */
    flex-direction: column;
}

a {
    text-decoration: none;
    color: #106eea;
}

#main {
    flex: 1 0 auto;
    padding: 15px 0 0 0;
    background-color: #f3f3f6;
}


/* Top Bar */

#topbar {
    /* background: #fff; */
    height: 40px;
    font-size: 12px;
    transition: all 0.5s;
    border-bottom: 0px solid #eee;
}


/* Header */

#header {
    background: #3609cc;
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0;
    height: 50px;
    /* top: 40px; Di bawah topbar */
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 15px;
    margin: 0;
    padding: 0;
    /* line-height: 1; */
    font-weight: 200;
    /* letter-spacing: 0.5px; */
    text-transform: uppercase;
}


/* Navbar */

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar a {
    padding: 10px 0 10px 20px;
    font-size: 14px;
    /* font-weight: 500; */
    font-weight: 400;
    color: #fbf8f8;
    transition: 0.3s;
}

.navbar a:hover,
.navbar .active {
    color: #bbd7fb;
}


/* Styling Dasar Dropdown */

.navbar .dropdown {
    position: relative;
}

.navbar .dropdown ul {
    margin: 0;
    padding: 15px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
    padding: 15px 0;
    /* Memberi ruang di bagian atas dan bawah dalam kotak */
    min-width: 220px;
    /* Mengatur lebar kotak agar teks tidak terlalu mepet */
    /*box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);*/
    border: 1px solid #f0f0f0;
}

.navbar .dropdown ul li {
    min-width: 280px;
}

.navbar .dropdown ul a {
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nav-dropdown-color);
    display: flex;
    align-items: center;
    line-height: 1.2;
    justify-content: space-between;
    width: 100%;
    transition: 0.3s;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    display: block;
    color: #ffffff;
    background-color: #12447c;
    margin: 0 0px;
    border-radius: 4px;
    width: 100%;
    position: relative;
}

.navbar .dropdown ul .bi-chevron-right {
    float: right;
    margin-top: 3px;
    margin-right: 15px;
}


/* Memunculkan Dropdown saat Hover */

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}


/* Styling Sub-menu (Deep Dropdown) */

.navbar .dropdown .dropdown ul {
    min-width: 280px;
    /*top: 0;
    left: -90%;*/
    visibility: hidden;
    top: 0;
    left: 100%;
    /* Pas di samping menu utama */
    margin-left: 0;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    /* Bergeser ke kanan saat hover */
    visibility: visible;
}


/* Responsif untuk Mobile (Opsional) */

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/* Hero Section */

#hero {
    width: 100%;
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1400') center center;
    background-size: cover;
    position: relative;
    margin-top: 50px;
    padding: 0;
}

#hero:before {
    content: "";
    /* background: rgba(255, 255, 255, 0.8); */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    position: relative;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #222;
}

#hero h2 {
    color: #555;
    margin: 5px 0 30px 0;
    font-size: 24px;
    font-weight: 400;
}


/* Content section */

.content-section {
    max-width: 1800px;
    margin: 1rem auto;
    background: white;
    padding: 1.5rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgb(0 0 0 / 0.1);
}

.content-section2 {
    max-width: 1800px;
    color: #474748;
    /* margin: 1rem auto; */
    /* background: white; */
    padding: 0.5rem 1rem;
    /* border-radius: 0.5rem; */
    /* box-shadow: 0 0 15px rgb(0 0 0 / 0.1); */
}

.content-section1 {
    max-width: 1800px;
    margin: 1rem auto;
    background: white;
    /* padding: 2.5rem 2rem; */
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgb(0 0 0 / 0.1);
}

.content-section p {
    text-align: justify;
}

.content-section1 p {
    text-align: justify;
}

.content-section2 p {
    text-align: justify;
}

.btn-get-started {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #106eea;
}

.btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: #222;
    font-weight: 600;
}

.btn-watch-video i {
    color: #106eea;
    font-size: 32px;
    margin-right: 8px;
}


/* Featured Services */

.featured-services {
    padding: 60px 0;
    position: relative;
    z-index: 10;
    margin-top: -70px;
    /* Membuat card agak naik ke hero */
}

.icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    /* box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12); */
    box-shadow: 0 0 40px 10px rgba(68, 88, 144, 0.2);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    text-align: center;
    margin-top: -30px;
    /* tambahkan ini */
}

.icon-box .number {
    margin-bottom: 15px;
    display: block;
    font-size: 48px;
    /* Ukuran angka besar */
    font-weight: 700;
    /* Tebal */
    color: #106eea;
    /* Warna biru tema */
    line-height: 1;
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
    /* opacity: 0.3; */
    /* Membuatnya agak transparan agar elegan */
}

.icon-box:hover {
    transform: translateY(-10px);
}

.icon-box .icon {
    margin-bottom: 15px;
}

.icon-box .icon i {
    font-size: 48px;
    line-height: 1;
    color: #106eea;
}

.icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.icon-box2 {
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 5px 5px rgba(68, 88, 144, 0.2);
    /* box-shadow: 0 0 40px 10px rgba(68, 88, 144, 0.2); */
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    /* text-align: center; */
    margin-bottom: 20px;
    /* tambahkan ini */
    color: #222;
}

.icon-box2 a {
    color: #222;
}

.icon-box2 .number {
    margin-bottom: 15px;
    display: block;
    font-size: 48px;
    /* Ukuran angka besar */
    font-weight: 700;
    /* Tebal */
    /* color: #106eea; */
    /* Warna biru tema */
    line-height: 1;
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
    /* opacity: 0.3; */
    /* Membuatnya agak transparan agar elegan */
}

.icon-box2:hover {
    transform: translateY(-10px);
}

.icon-box2 .icon {
    margin-bottom: 15px;
}

.icon-box2 .icon i {
    font-size: 48px;
    line-height: 1;
    color: #106eea;
}

.icon-box2 .title {
    font-weight: 700;
    /* margin-bottom: 15px; */
    font-size: 18px;
    color: #222;
}


/* ======= Mobile Navigation ======= */

.mobile-nav-toggle {
    color: #222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    /* Sembunyi di desktop */
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
        /* Muncul di mobile */
    }
    .navbar ul {
        display: none;
        /* Sembunyikan menu asli */
    }
    .navbar-mobile ul li a {
        display: flex;
        /* Mengaktifkan flexbox */
        align-items: center;
        /* Memposisikan teks dan ikon sejajar secara vertikal */
        justify-content: space-between;
        /* Mendorong teks ke kiri dan ikon ke kanan */
        padding: 12px 20px;
        width: 100%;
        /* Memastikan link memenuhi lebar layar */
    }
    /* Memberikan sedikit spasi jika teks terlalu panjang */
    .navbar-mobile .dropdown>a i {
        font-size: 18px;
        /* Memperjelas ikon di mobile */
        line-height: 0;
        margin-left: auto;
        /* Memastikan ikon tetap terdorong ke kanan */
    }
}


/* Tampilan Navbar saat Aktif di Mobile */


/*.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 34, 34, 0.9);
  transition: 0.3s;
  z-index: 999;
}*/


/* Background gelap saat menu terbuka */

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(16, 110, 234, 0.9);
    /* Biru khas BizLand dengan transparansi */
    transition: 0.3s;
    z-index: 998;
}


/*.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}*/

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222;
}


/* Dropdown di Mobile */

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    /* Sembunyi sebelum diklik */
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.12);
    border: 1px solid #eee;
}

.navbar-mobile .dropdown .dropdown-active {
    display: block;
    /* Muncul saat di klik di mobile */
}


/* Perubahan Ukuran Font Hero di Mobile */

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
    #hero {
        height: 100vh;
        text-align: center;
    }
    .btn-watch-video {
        margin-top: 15px;
        margin-left: 0;
    }
    #hero .d-flex {
        flex-direction: column;
        align-items: center;
    }
}


/* Styling tombol toggle saat menu mobile terbuka */

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    /* Warna putih agar kontras dengan background gelap */
    z-index: 9999;
}

#footer {
    flex-shrink: 0;
    /* background: #fff; */
    background: #3609cc;
    padding: 0 0 15px 0;
    color: #fff;
    font-size: 14px;
    /* background: #f1f6fe; */
    /* Background biru muda sangat halus */
}

#footer .footer-top {
    padding: 60px 0 25px 0;
    background: #2464dc;
    border-top: 1px solid #e2e8f0;
    /* border-bottom: 1px solid #e2e8f0; */
}

#footer .footer-top .footer-contact h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: #106eea;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer a {
    color: #fff;
}

#footer .footer-top .footer-links ul a:hover {
    color: #fff;
    text-decoration: none;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #106eea;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #247cf0;
}

#footer .copyright {
    text-align: center;
    float: left;
    font-size: 13px;
    color: #fff;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

@media (max-width: 768px) {
    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}


/* ======= Back to Top Button ======= */

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #106eea;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #3b8af2;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.link-custom {
    text-decoration: none;
    font-size: 0.9rem;
    color: #474748;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #474748;
}

.content-section2 a {
    color: #474748;
}

title-content {
    color: #474748;
}


/* body {
        margin: 0;
        font-family: 'Roboto', sans-serif;
        background-color: var(--bg-black);
        color: white;
        padding: 60px 20px;
    } */

.section-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}


/* Container Utama Vertical Layout */

.main-layout {
    display: flex;
    flex-direction: column;
    /* Tab di atas, gambar di bawah */
    gap: 30px;
}


/* Bagian Atas: List Tab */

.tab-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 3 kolom sejajar */
    gap: 10px;
    border-bottom: 1px solid var(--tab-border);
}

.tab-item {
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    /* Border bawah bukan samping */
}

.tab-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.tab-item.active {
    border-bottom-color: var(--accent-blue);
}

.tab-item h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.tab-item.active h3 {
    color: var(--accent-blue);
}


/* Deskripsi di bawah tab yang aktif (Opsional) */

.tab-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px auto;
    min-height: 50px;
}

.desc-text {
    display: none;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
    animation: fadeIn 0.4s ease;
}

.desc-text.active {
    display: block;
}


/* Bagian Bawah: Visual/Gambar */

.tab-visual {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16 / 9;
    /* Menjaga rasio video/gambar */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.tab-content-img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: scaleIn 0.5s ease;
}

.tab-content-img.active {
    display: block;
}


/* Animasi */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Responsif Mobile */

@media (max-width: 600px) {
    .tab-list {
        grid-template-columns: 1fr;
        /* Tumpuk ke bawah di HP */
    }
    .tab-item {
        border-bottom: 1px solid var(--tab-border);
        border-left: 3px solid transparent;
    }
    .tab-item.active {
        border-left-color: var(--accent-blue);
        border-bottom-color: var(--tab-border);
    }
}

.tab-content-img {
    display: none;
    width: 100%;
    height: auto;
}

.tab-content-img.active {
    display: block;
}

.tab-item {
    cursor: pointer;
    padding: 10px;
}

.tab-item.active {
    background-color: #333;
    color: #fff;
}

.style1 {
    line-height: 1em
}

.style2 {
    font-size: 12px;
    line-height: 1em
}

.style3 {
    line-height: 1.5em
}

.style4 {
    font-size: 10px
}

.btn-container {
    margin-bottom: 10px;
    text-align: center;
}

.greyscaleall {
    webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

.mycheckbox {
    font-size: 12px;
    color: black;
    font-weight: 500;
}

.btn-color-mode-switch {
    display: inline-block;
    margin: 0px;
    position: relative;
}

.btn-color-mode-switch>label.btn-color-mode-switch-inner {
    margin: 0px;
    width: 170px;
    height: 26px;
    background: #E0E0E0;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.btn-color-mode-switch>label.btn-color-mode-switch-inner:before {
    content: attr(data-on);
    cursor: pointer;
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    top: 5px;
    right: 25px;
    margin-bottom: 5px;
}

.btn-color-mode-switch>label.btn-color-mode-switch-inner:after {
    content: attr(data-off);
    cursor: pointer;
    width: 85px;
    height: 22px;
    font-size: 12px;
    background: #fff;
    border-radius: 26px;
    position: absolute;
    left: 2px;
    top: 2px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 6px -2px #111;
    padding: 2px 0px;
    margin-bottom: 10px;
}

.btn-color-mode-switch input[type="checkbox"] {
    cursor: pointer;
    width: 70px;
    height: 25px;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    padding: 2px 0px;
    margin: 0px;
}

.btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner {
    background: #E0E0E0;
    color: black;
    font-weight: bold;
    font-size: 12px;
}

.btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner:after {
    content: attr(data-on);
    left: 83px;
    background: white;
    font-weight: bold;
    font-size: 12px;
}

.btn-color-mode-switch input[type="checkbox"]:checked+label.btn-color-mode-switch-inner:before {
    content: attr(data-off);
    right: auto;
    left: 15px;
    color: black;
    font-weight: bold;
    font-size: 12px;
}

.btn-color-mode-switch input[type="checkbox"]:checked~.alert {
    display: block;
}

.toolbar-disabilitas {
    position: fixed;
    top: 6%;
    left: 0;
    z-index: 999;
    height: 1px;
    width: -180px;
    text-align: center;
    background: transparent !important;
    background-color: transparent !important;
}

.open-toolbar {
    margin-top: 10%;
    padding-top: 8px;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 3px;
    height: 50px;
    border: none;
    width: 50px;
}

.toolbar-disabilitas .open-toolbar {
    background: #4054b2;
}

.toolbar-disabilitas .groupcontenttoolbar {
    transform: translateX(-180px);
    transition: transform 0.6s;
}

.toolbar-disabilitas.show-toolbar .groupcontenttoolbar {
    transform: translateX(0px);
}

.contenttoolbar_disabilitas {
    margin-top: 10%;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    height: max-content;
    border: 1px solid black;
    box-shadow: 0 10px 10px rgb(0 0 0 / 0.2);
    background-color: white;
    width: 180px;
    word-break: break-all;
    overflow: hidden;
}

.groupcontenttoolbar {
    display: flex;
    flex-direction: row;
    height: 1px;
    background-color: transparent !important;
}

.titletools {
    font-size: 13px !important;
    font-weight: bold;
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    color: black;
}

.bodytools {
    left: 0;
    height: max-content;
    width: 100%;
    margin-bottom: 10px;
}

.subtitletools {
    font-size: 12px !important;
    margin-bottom: 5px;
    cursor: pointer;
    left: 0;
    font-family: Arial, Helvetica, sans-serif;
    padding-left: 10px;
    text-align: left;
    color: black
}

@media only screen and (max-width: 900px) {
    .toolbar-disabilitas {
        top: 11%;
    }
}
