.service-page {
    display: none;
}

.service-page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
}

.page-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 16px;
    margin: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.page-btn:hover {
    background: #2b7eca;
}

.page-btn.active {
    background: #2b7eca;
}

/* animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

/* cursor */
/* IMAGE LINK WRAPPER */
.about-thumb a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: none;
}

/* IMAGE */
.about-thumb a img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* HOVER ZOOM + DARKEN */
.about-thumb a:hover img {
    transform: scale(1.08);
    filter: brightness(0.75);
}

/* OVERLAY */
.about-thumb a::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

/* SHOW OVERLAY */
.about-thumb a:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.about-thumb a:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* OPTIONAL: GLOW BORDER ON HOVER */
.about-thumb a:hover {
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.breadcrumb_description{
    color: #fff;
}

.blog-details-box img{
    width: 330px;
    height: 340px;
}

.tj-blog-title, .blog-wrapper .tj-blog .comment-wrap .comment-header{
    color: var(--tj-color-theme-primary);
}

.blog-wrapper .tj-blog .blog-details-box .blog-details-list li{
    color: var(--tj-color-text-body);
}

/* faq section */

.faq-section {
    position: relative;
    height: auto !important;
    padding: 60px 0 !important;
    background-color: var(--tj-color-theme-bg-dark-light);
}

.faq-accordion {
    border-radius: 12px;
    overflow: hidden;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICON */
.faq-question .icon {
    font-size: 20px;
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #475569;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.sidebar-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* sidebar fixed */
.details-container {
    position: relative;
    align-items: flex-start;
}

.blog-details .col-lg-4 {
    position: relative;
}

.sticky-sidebar {
    position: relative;
    width: 100%;
    will-change: transform;
    transition: transform 0.08s linear;
}

/* optional: smoother feel */
@media (max-width: 991.98px) {
    .sticky-sidebar {
        transform: none !important;
        transition: none;
    }
}
