
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F5F9FF;
}

.header-title{
    font-size: 24px;
    background: linear-gradient(100deg, #2BA5F7, #2366E0) !important;
    color: white;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: bold;
}
.budaya-content{
    padding-bottom: 50px;
}

/* Mobile */
@media (max-width: 480px) {
    .header-title{
        font-size: 14px;
        background: linear-gradient(100deg, #2BA5F7, #2366E0) !important;
        color: white;
        display: inline-block;
        padding: 10px 40px;
        border-radius: 50px;
        font-weight: bold;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 1024px) {
    .header-title{
        font-size: 18px;
        background: linear-gradient(100deg, #2BA5F7, #2366E0) !important;
        color: white;
        display: inline-block;
        padding: 10px 40px;
        border-radius: 50px;
        font-weight: bold;
    }
}


/* Navbar */
    header{
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar {
        background: linear-gradient(100deg, #2BA5F7, #2366E0) !important; 
        padding: 10px 0;
    }

    .nav-link {
        color: white !important;
        margin-right: 15px;
    }

    .nav-link:hover {
        color: #ffa500 !important; 
        
    }

    .navbar-brand {
        display: flex;
        align-items: center; 
    }

    .navbar-brand .logo {
        width: 100%;
        max-width: 100px; 
        object-fit: cover;
        object-position: center;
    }

    .navbar-toggler {
        background-color: #FFB501; 
        border: none;
        margin-right: 10px;
    }

    .navbar-toggler:focus {
        outline: none; /* Menghapus outline saat tombol mendapatkan fokus */
        box-shadow: none; /* Menghapus efek bayangan jika ada */
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important; 
    }

    /* Tablet */
    @media (min-width: 481px) and (max-width: 1024px) {
        .navbar-brand .logo {
            width: 100%;
            max-width: 80px;
            margin-left: 20px; 
        }
    }

    /* Mobile */
    @media (max-width: 480px) {
        .navbar-brand .logo {
            width: 100%;
            max-width: 70px;
            margin-left: 15px;
        }
    }

    
    .dropdown-menu {
        background-color: #fff; 
        border: 1px solid #dee2e6; 
        padding: 6px; 
        width: auto; 
        max-width: 300px; 
        margin: 0 auto; 
    }

    .dropdown-item {
        color: #343a40; 
        padding: 6px 6px; 
        margin-bottom: 5px; 
        white-space: nowrap; 
        
    }


    .dropdown-item:last-child {
        margin-bottom: 0; 
    }


    .dropdown-item:hover {
        background-color: #E6F1FF; 
        color: #0873FF; 
        border-radius: 8px;
    }

    .navbar-nav .active {
        color: #FFB501 !important; 
        font-weight: 500;
    }

    .btn-warning {
        background-color: #ffc107;
        color: white;
        font-weight: bold;
        margin-left: 50px; 
    }
    .location-btn {
        padding: 8px 20px;
        border-radius: 8px;
        align-items: center;  
    }

    .location-btn i {
        margin-right: 8px; 
    }

    @media (min-width: 481px) and (max-width: 1024px) {
        .navbar-nav {
            text-align: center;
        }

        .btn-warning {
            margin: 10px auto;
            margin-top: 10px; 
            width: 50%; 
            text-align: center;
            display: block; 
        }
    }

    @media (max-width: 480px) {
        .dropdown-menu {
            max-width: 50%; 
            margin: 0 auto; 
        }
        .navbar-nav {
            text-align: center;
            justify-content: center;
            display: flex;
        }

        .btn-warning {
            margin: 10px auto;
            margin-top: 10px; 
            width: 40%; 
            text-align: center;
            display: block; 
        }
    }


/* Navbar */

/* video */
.video-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden; /* To apply rounded corners */
}

.video-container video {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px); /* Apply blur effect */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    cursor: pointer;
}

.video-overlay .play-btn {
    color: white;
    background-color: #ED3237;
    width: 70px;  /* Set width and height equal for a perfect circle */
    height: 70px;
    border-radius: 50%; /* Make it a perfect circle */
    display: flex;
    justify-content: center; /* Center the play icon horizontally */
    align-items: center;   /* Center the play icon vertically */
    font-size: 30px;  /* Adjust the size of the play icon */
    padding: 0; /* Remove padding to avoid misalignment */
    box-sizing: border-box; /* Ensure that padding or border don't affect size */
    line-height: 1; /* Ensure that the line-height doesn’t push the icon */
}

/* Hide overlay when video starts */
.video-container video.playing + .video-overlay {
    display: none;
}

/* end video */


/* tentangkami */

.tentangbaleayu-header {
    display: flex; /* Menggunakan flexbox */
    justify-content: center; /* Menempatkan konten secara horizontal di tengah */
    align-items: center; /* Menempatkan konten secara vertikal di tengah */
}

.header-title {
    font-size: 24px;
    background: linear-gradient(100deg, #2BA5F7, #2366E0);
    color: white;
    display: inline-block;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

/* Media Query untuk perangkat dengan lebar maksimal 768px */
@media (max-width: 768px) {
    .header-title {
        font-size: 20px; /* Mengurangi ukuran font untuk layar lebih kecil */
        padding: 10px 30px; /* Mengurangi padding */
    }
}

/* Media Query untuk perangkat dengan lebar maksimal 480px */
@media (max-width: 480px) {
    .header-title {
        font-size: 18px; /* Ukuran font lebih kecil untuk layar sangat kecil */
        padding: 8px 20px; /* Mengurangi padding lebih lanjut */
    }
}


.card-tentang-kami {
    background-color: #e8f8ff; /* Warna latar belakang khusus untuk card */
    border: none; /* Menghilangkan garis tepi */
    padding-top: 2%;
    width: 100%;
    margin-top: 5%;
}

.card-body {
    padding-left: 10%;
    padding-right: 10%;
}

.card-text {
    align-items: center;
    justify-content: center;
    color: #4F4F4F;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.read-more {
    color: #FFB501;
    cursor: pointer;
    display: block;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
}

.d-none {
    display: none;
}

/* end tentang kami */

/* visimisi */

.visimisi-header {
    display: flex; /* Menggunakan flexbox */
    justify-content: center; /* Menempatkan konten secara horizontal di tengah */
    align-items: center; /* Menempatkan konten secara vertikal di tengah */
    margin-top: 5%;
    margin-bottom: 5%;
}

.filosofi-card {
    background-color: #e8f8ff; /* Light blue background for the card */
    padding: 30px 30px;
    border-radius: 20px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.filosofi-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.filosofi-title {
    font-size: 20px;
    font-weight: bold;
    color: #2366E0;
    margin-left: 10px;
}

.filosofi-subtitle {
    font-size: 14px;
    font-weight: normal;
    color: #4F4F4F;
    margin-top: 5px;
    line-height: 2;
}

.filosofi-quote {
    font-style: italic;
    font-size: 14px;
    color: #4F4F4F;
    
    line-height: 2;
    
}

.filosofi-quote-source {
    font-size: 14px;
    color: #4F4F4F;
}

.bale-ayu-visi-misi-container {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.visi-misi-card {
    width: 45%; /* Default width for larger screens */
    background-color: #e8f8ff;
    border-radius: 20px;
    padding: 30px;
    margin: 10px; /* Add margin for spacing */
}

.visi-misi-card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.visi-misi-card-header img {
    width: 40px; /* Icon size */
    height: 40px;
}

.visi-misi-card-header-title {
    font-size: 20px;
    font-weight: bold;
    color: #2366E0;
    margin-left: 10px;
}

.visi-misi-card-content {
    color: #4F4F4F;
    font-size: 14px;
    line-height: 2;
    text-align: justify;
}

.visi-misi-card-content ol {
    padding-left: 10px;
    margin-top: 10px;
}

.visi-misi-card-content ol li {
    margin-bottom: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .bale-ayu-visi-misi-container {
        padding: 20px; /* Reduced padding for mobile */
    }

    .visi-misi-card {
        width: 100%; /* Full width for mobile */
        padding: 20px; /* Reduced padding for mobile */
        margin: 10px 0; /* Vertical margin for spacing */
    }

    .visi-misi-card-header-title {
        font-size: 18px; /* Slightly smaller font size */
    }

    .visi-misi-card-content {
        font-size: 12px; /* Smaller font size for content */
        line-height: 1.6; /* Reduced line height */
    }
}

/* end visi misi */

/* budaya perusahaan */

.budaya-header {
    display: flex; /* Menggunakan flexbox */
    justify-content: center; /* Menempatkan konten secara horizontal di tengah */
    align-items: center; /* Menempatkan konten secara vertikal di tengah */
    margin-bottom: 2%;
}
.value-box {
    background-color: #e8f8ff; /* Light blue background */
    border-radius: 10px;       /* Rounded corners */
    padding: 20px;             /* Padding for better spacing */
    margin: 15px;              /* Margin between boxes */
    text-align: left;          /* Left align for the text */
    display: flex;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow */
}

.value-content {
    display: flex;
    align-items: center;      /* Align first-letter with text in the center vertically */
}

.first-letter {
    font-size: 48px;          /* Larger first letter */
    color: #007bff;           /* Blue color for first letter */
    margin-right: 5px;       /* Space between first letter and text */
    line-height: 1;
    font-weight: bold;
}

.text-column {
    display: flex;
    flex-direction: column;   /* Stack the title and text vertically */
    justify-content: center;  /* Vertically center the text */
}

.value-title {
    font-weight: bold;
    font-size: 18px;
    color: #007bff;      /* Space between title and text */
}

.value-text {
    font-size: 13px;
    color: #333;
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
    .value-box {
        margin: 20px;
    }
}

@media (min-width: 992px) {
    .value-box {
        margin: 30px;
    }
}
/* end budaya perusahaan */

/* Chat Customer */
.chat-container {
    position: fixed;
    bottom: 80px; /* Margin from the bottom */
    right: 20px; /* Margin from the right */
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none; /* Hide by default */
    background-color: white;
    z-index: 1000; /* Make sure it's on top */
}

.chat-header {
    background-color: #2BA5F7;
    color: white;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    padding: 10px;
    max-height: 400px;
    overflow-y: auto; /* Enable scrolling */
}

.messages {
    margin-bottom: 10px;
}

.chat-button {
    position: fixed;
    bottom: 20px; /* Margin from the bottom */
    right: 20px; /* Margin from the right */
    border: none;
    background-color: #FFB501;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000; /* Make sure it's on top */
}

/* End Chat Customer */




/* Footer */
.footer {
    background: linear-gradient(100deg, #2BA5F7, #2366E0) !important; 
    color: white;
    padding: 60px 0;
    font-size: 0.8rem; /* Ukuran font yang nyaman */
}

.footer-link{
    color: white;
    text-decoration: none;
}
.list-unstyled li{
    padding: 5px 0;
}

.kontak-kami p{
    margin: 0;
    padding: 5px 0;
}

.kontak-kami i, .icon-address{
    font-size: 16px;
    padding-right: 5px;
    align-items: center;
}
.footer .logo {
    width: 100%;
    max-width: 130px;
    object-fit: cover;
    object-position: center;
}

.footer .social-icons a {
    color: #f8f9fa;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: #FFB501; 
}

.footer .footer-heading {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.member-logo-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.member-logo {
    width: 100px;
    max-width: 50px;
    padding: 0;
    border-radius: 10%;
}

.footer-link:hover {
    color: #FFB501;
    text-decoration: none;
}

@media (min-width: 769px) {
    .member-logo-grid{
        display: flex;
        gap: 5px;
        justify-content: start;
        margin-bottom: 20px;
    }
    .kontak-kami{
        margin-bottom: 20px;
    }
    .member-logo {
        width: 100px;
        max-width: 45px;
        padding: 0;
        border-radius: 10%;
    }

    .footer .logo {
        width: 100%;
        max-width: 110px;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 768px) {
    .footer-heading {
    font-size: 1.2rem; /* Adjust heading size for small screens */
    }
    .member-logo-grid{
        display: flex;
        gap: 5px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .member-logo {
        width: 100px;
        max-width: 70px;
        padding: 0;
        border-radius: 10%;
    }

    .icon-address{
        display: none;
    }

    .footer .logo {
        width: 100%;
        max-width: 140px;
        object-fit: cover;
        object-position: center;
    }
}
/* End Footer */