.text-justify {
    text-align: left !important;
}

.doc-heading-color {
    color: #0077b5;
}

.doc-bg-color {
    background-color: #effafa;
}

.doc-btn-bg-color {
    color: #0077b5 !important;
}

/* go to top button css start here */

.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    background: #046bd2;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.go-to-top.show {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background: #187bcd;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.5);
}

.go-to-top:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .go-to-top {
        width: 35px;
        height: 35px;
        bottom: 20px;
        right: 20px;
    }
}

/* go to top button css ends here */

/* blog page image css starts here */

.doc-blog-img {
    height: 300px;
    object-fit: cover;
    object-position: center;
}

/* blog page image css ends here */