.dark-bg {
    background: var(--default-font) !important;
}

@media screen and (max-width: 1200px) {
    .carousel-item p{
        width: 100%;
        padding: 0 20px;
    }
}

.content img {
    width: 100%;
    border-radius: 10px;
}

.text-secondary {
    color: var(--accent-color) !important;
    font-weight: 800;
}

.tab-pane img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.tab-pane img:hover {
    transform: scale(1.01);
}

/* k-social bar icon */
.k-social {
    position: fixed;
    top: 30%;
    right: 0; /* changed from left: 0 */
    z-index: 99;
}
.k-social ul {
    position: absolute;
    padding: 0px;
    right: -265px !important;
    /* transform: translate(270px, 0); */
}
.k-social ul li {
    display: block;
    margin: 10px 20px;
    background: var(--default-color);
    width: 300px;
    text-align: left; /* changed to left-align text */
    padding: 10px;
    border-radius: 30px 0 0 30px; /* flipped corners */
    transition: all 1s;
}
.k-social ul li:hover {
    transform: translate(-110px, 0); /* changed to move it left into view */
    background: var(--accent-color);
}
.k-social ul li:hover a {
    color: #000;
}
.k-social ul li:hover i {
    color: #fff;
    background: rgba(0, 0, 0, 0.36);
    transform: rotate(360deg);
    transition: all 1s;
}
.k-social ul li i {
    margin-right: 10px; /* changed from margin-left */
    color: #000;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    transform: rotate(0deg);
}

.breadcrumb {
    position: relative;
    height: 400px;
    padding: 10px 20px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
}

.breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay */
    z-index: -1;
}

.breadcrumb h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumbs p {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.breadcrumbs .active {
    color: #fff;
    background-color: var(--default-color);
    border-radius: 5px;
    padding: 10px;
}

@media screen and (max-width: 992px) {
    .breadcrumb {
        display: flex;
        align-items: center;
    }
    .breadcrumb h1 {
        font-size: 30px;
    }
    .breadcrumb p {
        font-size: 12px;
    }
    
}

.bc-about .breadcrumb {
    background-image: url(../images/breadcrumb/about.jpg);
}

.bc-contact .breadcrumb {
    background-image: url(../images/breadcrumb/contact.jpg);
}

.bc-grooveline .breadcrumb {
    background-image: url(../images/breadcrumb/grooveline.jpg);
}

.bc-hairline .breadcrumb {
    background-image: url(../images/breadcrumb/hairline.jpg);
}

.bc-desc {
    font-size: 25px;
    font-weight: 500;
}