/* Warna Kustom */
:root {
    --bs-black: #0D0D19;
    --bs-darker: #101015; /* Warna latar belakang yang lebih gelap dari hitam */
    --bs-darkgrey: #18181b;
    --bs-card: #0b0809;
    --bs-purple: #9047FF; /* Warna utama untuk highlight */
    --bs-text-muted: #999;
    --bs-text-white: #fff;
    --ts-trend: 'Trend Sans One Custom', sans-serif;
}
/* Global Styles */
body {
    background-color: var(--bs-black) !important;
    color: var(--bs-text-white) !important;
    font-family: var(--ts-trend) !important; /* Ganti dengan font yang sesuai jika ada */
}
/* desktop screen */
@media only screen and (min-width: 992px) {
    .hero-section{
        min-height: 100vh;
    }
    .title-hero{
        font-size: 72px;
    }
    .sub-t-hero{
        font-size: 24px;
    }
    .title-h2{
        font-size: 48px;
    }
}
/* tablets screen */
@media only screen and (max-width: 991px) {
    .hero-section{
        min-height: 100vh;
    }
    .title-hero{
        font-size: 60px;
    }
    .sub-t-hero{
        font-size: 24px;
    }
    .title-h2{
        font-size: 48px;
    }
    .navbar-collapse .d-flex {
        /* Tambahkan margin di atas button agar terpisah dari link */
        margin-top: 1rem; 
        /* Pastikan button mengisi seluruh lebar */
        width: 100%;
    }
    .navbar-collapse .btn-purple {
        width: 100%;
        text-align: center;
    }
}
/* mobile screen */
@media only screen and (max-width: 768px) {
    .hero-section{
        min-height: 100vh;
    }
    .title-hero{
        font-size: 48px;
    }
    .sub-t-hero{
        font-size: 20px;
    }
    .title-h2{
        font-size: 36px;
    }
    .navbar-collapse .navbar-nav {
        display: flex;
        flex-direction: column; /* Link akan tersusun vertikal */
        gap: 0.5rem; /* Jarak antar link */
    }
}
/* Custom Utilities */
.article-card:hover {
    box-shadow: 0 0 0 1px var(--bs-purple); /* Border ungu saat hover */
}
.bg-darker {
    background-color: var(--bs-darker) !important;
}
.btn-mainmenu{
    background-color: transparent;
    color: var(--bs-text-white) !important;
    transition: all 0.3s;
}
.btn-mainmenu:hover{
    color: var(--bs-purple) !important;
}
.btn-services{
    color: var(--bs-text-white);
    text-decoration: none;
    cursor: pointer;
}
.btn-services:hover{
    color: var(--bs-purple) !important;
    background-color: var(--bs-darkgrey);
}
.btn-purple {
    background-color: var(--bs-purple);
    border-color: var(--bs-purple);
    color: #fff;
    transition: background-color 0.3s;
}

.btn-purple:hover {
    background-color: #6a1aef; /* Ungu sedikit lebih gelap */
    border-color: #6a1aef;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--bs-black) !important;
}

.card-img-top {
    height: 180px; /* Tinggi gambar hero card */
    object-fit: cover;
}

/* Card Styling */
.card {
    background-color: var(--bs-darker) !important;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(144, 71, 255, 0.2);
}
.font72{
    font-size: 72px;
}
.font48{
    font-size: 48px;
}
.font30{
    font-size: 30px;
}
.font24{
    font-size: 24px;
}
.font20{
    font-size: 20px;
}
/* 1. Hero Section */
.hero-section {
    background: url('../images/biru.jpg') no-repeat center center/cover; /* Ganti dengan gambar hero Anda */
    position: relative;
}

/* Overlay untuk kontras teks */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Sedikit gelap */
    z-index: 1;
}

.hero-section > * {
    z-index: 2; /* Pastikan konten di atas overlay */
}
.img-thumb {
    width: 80px;
    height: 100%;
    object-fit: cover;
}
/* 4. Industries Section & Footer Links */
.industry-list li, .footer-links li {
    padding: 5px 0;
}

.industry-list a, .footer-links a {
    color: var(--bs-text-muted);
    transition: color 0.3s;
}

.industry-list a:hover, .footer-links a:hover {
    color: var(--bs-purple);
}
.navbar-collapse {
    z-index: 1000; 
    /* background-color: rgba(13, 13, 25, 0.95);  */
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px);
    padding: 1rem;
    width: 100%;
}
.navbar-collapse .navbar-nav {
    display: flex;
    gap: 0.5rem; /* Jarak antar link */
}
.navbar-collapse .btn-mainmenu {
    text-align: left; /* Teks rata kiri */
    padding: 0.5rem 0.25rem;
}
.solution-card{
    border: 1px #ffffff1a solid;
    background-color: var(--bs-darkgrey);
}
.solution-card:hover{
    border: 1px var(--bs-purple) solid;
}
.text-white{
    color: var(--bs-text-white) !important;
}
.text-grey {
    color: var(--bs-text-muted) !important;
}
.text-purple {
    color: var(--bs-purple) !important;
}
.text-xl{
    font-size: 1.5rem;
}