:root {
    --artiman-primary: #0f3d3e;
    --artiman-neutral: #f1f1f1;
    --artiman-secondary: #53585f;
    --artiman-accent: #d4af5d;
    --luxury-gold: var(--artiman-accent);
    --luxury-gold-soft: rgba(212, 175, 93, 0.1);
    --luxury-dark: #0f3d3e;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}


.image-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-box img {
    display: block;
    transition: filter 0.5s ease;
}

.image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    top: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    z-index: 1;
    transition: opacity 0.4s ease;
}


.image-box .content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    z-index: 2;
    transition: opacity 0.3s ease;
    background-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.08));
}


.image-box .hover-content {
    position: absolute;
    inset: 0;
    background: #0f3d3e;
    color: #ffffff;
    transform: translateY(100%);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease;
    z-index: 3;
}

.image-box:hover::before {
    opacity: 0;
}

.image-box:hover .content {
    opacity: 0;
}

.image-box:hover .hover-content {
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .image-box:hover::before {
        opacity: 1;
    }

    .image-box:hover .content {
        opacity: 1;
    }

    .image-box:hover .hover-content {
        transform: translateY(100%);
    }
}

.limit-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#galleryModal .modal-body {
    height: 90vh;
}

.idea-input:focus-visible {
    outline: none;
    box-shadow: 0.5px 0.5px 2px #ababab;
}

.border-dashed {
    border: 1px dashed #aaaaaa;
}

.modal-report-details .btn-close:focus {
    box-shadow: 0.5px 0.5px 2px #ababab;
}

.position-unset {
    position: unset;
}

.modal-report-details .carousel-indicators [data-bs-target] {
    text-indent: unset;
}

.modal-detail {
    background-color: rgba(0, 0, 0, 0.65);
}


.carousel-indicators button img {
    opacity: 0.7;
    transition: 0.3s;
}

#accordionMenu.accordion-button:focus {
    outline: none;
    box-shadow: none;
}



.accordion-item:focus {
    border: none;
    outline: none;
}



.w-90 {
    width: 90% !important;
}

.w-10 {
    width: 10% !important;
}

.footer-detail-modal {
    display: flex;
    align-items: center;
    overflow: scroll;
    justify-content: center;
}

.h-max {
    height: max-content !important;
}

.h-100vh {
    height: 100vh;
}

.carousel-indicators button.active img {
    opacity: 1;
}

#galleryModal .carousel-item {
    height: 90vh;
}


html.light-mode .description p {
    color: black;
}

.description img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    width: 100%;
    display: block;
    margin: auto;
    text-align: center;
}



@media (max-width:992px) {
    .hero-section {
        margin-top: -70px;
    }

    .description p {
        font-size: 16px;
        color: white;
        /* margin-top: 30px;
        margin-bottom: 30px; */
        line-height: 1.8;

    }

}

@media (min-width:992px) {
    .hero-section {
        width: 100%;
        margin-top: -120px;
    }

    .description p {
        font-size: 16px;
        color: white;
        /* margin-top: 60px;
        margin-bottom: 60px; */
        line-height: 1.8;
    }

    .description img {
        border-radius: 30px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        border: 1px solid var(--glass-border);
        width: 60%;
        margin: auto;
        display: block;
        text-align: center;
    }

    .sticky-sidebar {
        top: 130px !important;
        margin-top: -170px;
        z-index: 2 !important;
    }
}

.bg-lineaer-green {
    background-image: linear-gradient(#0f3d3e, #0f3d3e50);
}

.info-pro-detail>span:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.scroll-mobile {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.scroll-mobile::-webkit-scrollbar {
    display: none;
}

.scroll-mobile .breadcrumb-item {
    flex: 0 0 auto;
}

.comment-form-custom .form-control-custom {
    width: 100%;
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.comment-form-custom .form-control-custom::placeholder {
    color: #53585f;
    font-size: 14px;
}

.comment-form-custom .form-control-custom:focus {
    border-color: #d4af5d;
    box-shadow: 0 0 0 3px rgba(212, 175, 93, 0.2);
    outline: none;
}

.textarea-custom {
    resize: none;
}


.comment-form-custom label {
    font-size: 14px;
    margin-bottom: 6px;
    transition: 0.3s;
}

.comment-form-custom .form-group:focus-within label {
    color: #d4af5d;
}

.btn-comment {
    background-color: #d4af5d;
    color: #000;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.btn-comment:hover {
    background-color: #c4a04d;
    transform: translateY(-2px);
}

.btn-comment:active {
    transform: translateY(0);
}

.comment-card {
    background: #1c1c1c;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    transition: 0.3s ease;
    border-left: 4px solid #d4af5d;
}

html.light-mode .comment-card {

    background-color: white;
    border: 1px solid;
}

html.light-mode .reply-box {
    background-color: white;
    border: 1px solid grey;
}

.bg-toggle-custom {
    background-image: linear-gradient(#0f3d3e, #0f3d3e50);
}

.breadcrumb-item .bi.bi-house {
    color: white;
}

html.light-mode .breadcrumb-item .bi.bi-house {
    color: black;
}

html.light-mode .breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

html.light-mode .bg-toggle-custom {
    background-image: none;
    background-color: #bcbcbc;
}

.comment-card {
    background: #1c1c1c;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    transition: 0.3s ease;
    border-left: 4px solid #d4af5d;
}

.comment-card .customer-name {
    font-weight: 600;
    color: #fff;
}

.comment-card .comment-date {
    font-size: 13px;
    color: #aaa;
}

.comment-text {
    color: #53585f;
    line-height: 1.6;
    font-size: 14px;
    margin-top: 0px;
}

.btn-reply {
    background: transparent;
    border: 1px solid #d4af5d;
    color: #d4af5d;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-reply:hover {
    background: #d4af5d;
    color: #000;
}

.reply-box {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
    margin-right: 40px;
    border-right: 3px solid #d4af5d;
}

.reply-box .customer-name {
    color: #fff;
    font-weight: 500;
}

.reply-text {
    color: #53585f;
    margin-top: 10px;
    line-height: 1.7;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
}






#galleryModal.show {
    display: block;
    padding-right: 0px;
}

.modal-report-details .modal-content {
    height: 100vh !important;
}

#mainReportCarousel {
    height: 80vh !important;
}

.footer-detail-modal {
    height: 15vh;
}

.footer-detail-modal button {
    width: 80px;
}

#galleryModal .modal-body {
    height: 80vh;
}


#galleryModal .carousel-item {
    height: 90vh;
}

#galleryModal .carousel-item img {
    height: 80vh;
}

.rounded-right-4 {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 8px;
}

.green {
    color: #0f3d3e;
}

.reply-avatar-size {
    width: 45px !important;
    height: 45px !important;
}

.pro-details-button {
    width: 80px;
}

.swiper-project-detail-mobile .custom-nav::after {
    font-size: 15px;
    font-weight: bold;
}

.swiper-project-detail-mobile .custom-nav {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 35px;
    height: 35px;
    border-radius: 50%;

}

.swiper-project-detail-mobile {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

#galleryModal {
    background-color: rgb(0, 0, 0);
}

html.light-mode #galleryModal {
    background-color: rgb(255, 255, 255);
}