/*----------------------------------------
    CREATIVE BENTO GRID - About Section
-----------------------------------------*/
/* Header main menu hover color */
.main-menu ul li:hover > a,
.main-menu ul li:hover > a::after {
    color: #08404d;
}

.creative-bento {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.creative-bento__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.creative-bento__item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.creative-bento__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.creative-bento__item:hover img {
    transform: scale(1.06);
}

.creative-bento__item--large {
    height: 340px;
    box-shadow: 0 10px 40px rgba(6, 96, 189, 0.12);
}

.creative-bento__item--small {
    height: 220px;
    box-shadow: 0 8px 30px rgba(6, 96, 189, 0.10);
}

.creative-bento__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 22px;
    background: linear-gradient(to top, rgba(6, 96, 189, 0.88), transparent);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.creative-bento__item:hover .creative-bento__label {
    transform: translateY(0);
}

.creative-bento__label i {
    font-size: 18px;
}

/* decorative shape behind the grid */
.creative-bento::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-color: rgba(6, 96, 189, 0.06);
    border-radius: 50%;
    z-index: -1;
}

.creative-bento::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background-color: rgba(6, 96, 189, 0.08);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive */
@media (max-width: 991px) {
    .creative-bento__item--large {
        height: 280px;
    }
    .creative-bento__item--small {
        height: 180px;
    }
    .creative-bento__label {
        transform: translateY(0);
    }
}

@media (max-width: 575px) {
    .creative-bento__item--large {
        height: 240px;
    }
    .creative-bento__item--small {
        height: 160px;
    }
}

/* Banner breadcrumb text on image-header pages */
.page-id-3 .breadcrumb__title,
.page-id-315 .breadcrumb__title,
.page-id-280 .breadcrumb__title,
.page-id-89 .breadcrumb__title,
.page-id-350 .breadcrumb__title,
.page-id-93 .breadcrumb__title,
.page-id-91 .breadcrumb__title,
body.single-digitalhut-service .breadcrumb__title,
.page-id-3 .breadcrumb__list span,
.page-id-3 .breadcrumb__list a,
.page-id-315 .breadcrumb__list span,
.page-id-315 .breadcrumb__list a,
.page-id-280 .breadcrumb__list span,
.page-id-280 .breadcrumb__list a,
.page-id-89 .breadcrumb__list span,
.page-id-89 .breadcrumb__list a,
body.single-digitalhut-service .breadcrumb__list span,
body.single-digitalhut-service .breadcrumb__list a,
.page-id-350 .breadcrumb__list span,
.page-id-350 .breadcrumb__list a,
.page-id-93 .breadcrumb__list span,
.page-id-93 .breadcrumb__list a,
.page-id-91 .breadcrumb__list span,
.page-id-91 .breadcrumb__list a {
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

/* Privacy Policy content design */
.bd-section__inner-content.policy-text {
    padding: 80px 0;
}

.policy-text .container {
    max-width: 920px;
}

.policy-text h2 {
    color: #08404d;
    font-size: 26px;
    font-weight: 600;
    margin: 45px 0 20px;
    padding-left: 20px;
    border-left: 4px solid #08404d;
    line-height: 1.4;
}

.policy-text h2:first-of-type {
    margin-top: 0;
}

.policy-text h3 {
    font-size: 20px;
    color: #08404d;
    font-weight: 600;
    margin: 24px 0 12px;
}

.policy-text p {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.policy-text a {
    color: #0660bd;
}

.policy-text a:hover {
    color: #08404d;
}

.policy-text .bd-section__inner-list {
    margin-bottom: 24px;
}

.policy-text .bd-section__inner-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-text .bd-section__inner-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #444;
    padding: 11px 16px;
    margin-bottom: 8px;
    background: #f5f8fb;
    border-radius: 10px;
    border-left: 3px solid #08404d;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}

.policy-text .bd-section__inner-list ul li:hover {
    background: #08404d;
    color: #ffffff;
}

.policy-text .bd-section__inner-list ul li span {
    color: #08404d;
    font-size: 14px;
    line-height: 1.6;
}

.policy-text .bd-section__inner-list ul li:hover span {
    color: #ffffff;
}

.policy-contact {
    background: #08404d;
    padding: 32px;
    border-radius: 12px;
    margin-top: 24px;
}

.policy-contact p {
    color: #ffffff;
}

.policy-contact a {
    color: #ffffff;
    text-decoration: underline;
}