    /* Bootstrap 5.1.3 Compatible CSS for Service Details Layout */

        /* Custom CSS Variables */
       

:root {
    /* Core brand colors - enhanced for logo visibility */
    --clr-common-white: #ffffff;
    --clr-common-black: #1a202c; /* deeper dark for better contrast */
    --clr-common-primary: #3182ce; /* blue that complements your logo */
    --clr-common-gray: #718096;
    --clr-common-border: #e2e8f0;
    
    /* Text colors */
    --clr-body-heading: #1a202c; /* strong dark for headings */
    --clr-body-text: #4a5568;
    
    /* Theme colors optimized for logo prominence */
    --clr-theme-primary: #3182ce; /* primary blue - matches logo tone */
    --clr-theme-primary-2: #2c5282; /* darker blue for hover states */
    --clr-theme-primary-4: #bee3f8; /* light blue for accents */
    --clr-theme-primary-5: #2b6cb0; /* medium blue for buttons */
    
    /* Background colors */
    --clr-bg-gray: #f7fafc;
    --clr-bg-gray-2: #edf2f7;
    --clr-bg-gray-3: #cbd5e0;
    
    /* Special colors for better logo visibility */
    --clr-logo-contrast-bg: #f8fafc; /* very light background behind logo */
    --clr-network-primary: #4299e1; /* brighter blue for network lines */
    --clr-network-secondary: #63b3ed; /* lighter blue for secondary network elements */
    --clr-accent-bright: #38b2ac; /* teal accent for geometric shapes */
}
        /* Override Bootstrap defaults where needed */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        /* Section Spacing */
        .tj-blog-section {
            padding: 80px 0;
        }

        .section-gap {
            margin-bottom: 40px;
        }

        /* Post Details Wrapper - Uses Bootstrap's card component */
        .post-details-wrapper {
            background: white;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-light);
            overflow: hidden;
        }

        /* Blog Images */
        .blog-images {
            margin-bottom: 2rem;
        }

        .blog-images img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 300px;
            object-fit: cover;
        }

        /* Placeholder for missing images */
        .image-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }

        .image-placeholder::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        /* Custom Title Styling */
        .post-details-wrapper .title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        /* Blog Text Content */
        .blog-text {
            padding: 2.5rem;
        }

        .blog-text p {
            font-size: 1rem;
            color: var(--text-muted);
            margin-bottom: 1.25rem;
            line-height: 1.8;
        }

        /* Custom List Styling with Font Awesome Icons */
        .blog-text ul {
            list-style: none;
            padding-left: 0;
            margin: 2rem 0;
        }

        .blog-text ul li {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            font-size: 1rem;
            color: var(--text-muted);
        }

        .blog-text ul li span i {
            color: var(--success-color);
            font-size: 1.1rem;
            margin-right: 1rem;
            width: 20px;
        }

        /* Images Wrap - Uses Bootstrap Grid */
        .images-wrap {
            margin: 2.5rem 0;
        }

        .images-wrap .image-box {
            margin-bottom: 1.25rem;
        }

        .images-wrap .image-box img {
            width: 100%;
             height: 250px; 
    object-fit: cover; 
    border-radius: var(--border-radius);
        }

        .images-wrap .image-placeholder-small {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #4A90E2 0%, #7BB3F0 50%, #A8D0FF 100%) !important;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
        }




        /* Subheadings */
        .blog-text h3 {
            font-size: 1.75rem;
            color: var(--text-dark);
            margin: 2rem 0 1.25rem 0;
            font-weight: 600;
        }

        /* Details Content Box */
        .details-content-box {
            margin: 2.5rem 0;
            background: var(--bg-light);
            padding: 2rem;
            border-radius: var(--border-radius-lg);
        }

        .service-details-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
           
        }

        .service-details-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .service-details-item .number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-right: 1.25rem;
            min-width: 50px;
            flex-shrink: 0;
        }

        .service-details-item .title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.625rem;
            line-height: 1.4;
        }

        .service-details-item .desc p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }

        /* Bootstrap Accordion Customization */
        .accordion.tj-faq {
            margin-top: 2rem;
        }

        .accordion.tj-faq .accordion-item {
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .accordion.tj-faq .accordion-item.active {
            border-color: var(--primary-color);
        }

        .accordion.tj-faq .faq-title {
            width: 100%;
            padding: 1.25rem 1.5rem;
            background: transparent;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion.tj-faq .faq-title:hover {
            background: var(--bg-light);
        }

        .accordion.tj-faq .faq-title:not(.collapsed)::after {
            transform: rotate(180deg);
        }

        .accordion.tj-faq .faq-title::after {
            content: '▼'; /* Font Awesome chevron-down */
           
            color: var(--primary-color);
            transition: transform 0.3s ease;
            font-size: 0.8rem;
        }

        .accordion.tj-faq .accordion-body {
            padding: 0 1.5rem 1.5rem 1.5rem;
            background: white;
        }

        .accordion.tj-faq .faq-text p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.7;
        }

        /* Post Navigation */
        .tj-post__navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 3rem;
            padding: 2rem 2.5rem;
            border-top: 1px solid var(--border-color);
            background: white;
        }

        .tj-nav__post a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .tj-nav__post a:hover {
            color: var(--primary-color);
        }

        .tj-nav__post a i {
            margin: 0 0.5rem;
        }

        .tj-nav-post__grid a {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .tj-nav-post__grid a:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Sidebar Styling */
        .tj-main-sidebar.sticky-lg-top {
            top: 2rem;
        }

       .tj-sidebar-widget.widget-feature-item {
     background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}
        .tj-sidebar-widget + .tj-sidebar-widget {
            margin-top: 2rem;
        }

        .tj-sidebar-widget .widget-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
            padding: 1.5rem 1.5rem 1rem 1.5rem;
          
        }

        /* Service Categories Widget */
        /* Service Categories Sidebar Styling */
.service-categories {
     background: linear-gradient(135deg, #f7fafc 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(49, 130, 206, 0.08);
}

.service-categories .widget-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    padding: 24px 24px 16px 24px;
   
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.service-categories .widget-title::after {
  display: none !important;
}

/* Service buttons styling */
.service-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-categories ul li {
    margin-bottom: 0.5rem;
}

.service-categories ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: var(--clr-body-text);
    text-decoration: none;
    background: var(--clr-common-white);
    border: 1px solid var(--clr-bg-gray-3);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover effect with gradient */
.service-categories ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--clr-theme-primary-4) 0%, var(--clr-network-secondary) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.service-categories ul li a:hover::before {
    left: 0;
}

.service-categories ul li a:hover {
    color: var(--clr-theme-primary-2);
    border-color: var(--clr-theme-primary);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.15);
}

/* Active state styling */
.service-categories ul li a.active,
.service-categories ul li.active a {
    background: linear-gradient(135deg, var(--clr-theme-primary) 0%, var(--clr-theme-primary-2) 100%);
    color: var(--clr-common-white);
    border-color: var(--clr-theme-primary-2);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.25);
    transform: translateX(4px);
}

.service-categories ul li a.active::before,
.service-categories ul li.active a::before {
    display: none;
}

/* Arrow icon styling */
.service-categories ul li a::after {
    content: '→';
    font-size: 1.1em;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.service-categories ul li a:hover::after {
    opacity: 1;
    transform: translateX(4px);
}

.service-categories ul li a.active::after,
.service-categories ul li.active a::after {
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced focus states for accessibility */
.service-categories ul li a:focus {
    outline: 2px solid var(--clr-theme-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1);
}




/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .service-categories {
        padding: 1.5rem;
    }
    
    .service-categories ul li a {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-categories ul li a:hover {
        transform: translateX(4px);
    }
}
        /* Feature Widget */
   .widget-feature-item .feature-box {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

      .feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

    .feature-content {
    position: relative;
    z-index: 2;
    text-align: center;
    /* Force visibility */
    opacity: 1 !important;
    display: block !important;
}
       .feature-content .title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    opacity: 1 !important;
}
       .feature-content .desc {
    font-size: 1rem;
    margin-bottom: 24px;
    color: white;
    opacity: 0.9;
    line-height: 1.6;
}
     .tj-primary-btn {
    display: inline-flex !important;
    align-items: center;
    background: white;
    color: #3182ce;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 1 !important;
    border: none;
}

      .tj-primary-btn:hover {
    color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
        .btn-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}
        .btn-inner .btn-icon {
            transition: transform 0.3s ease;
        }

        .tj-primary-btn:hover .btn-inner .btn-icon:last-child {
            transform: translateX(4px);
        }

      .feature-images {
    margin-top: 20px;
    text-align: center;
    padding: 0;
}

        .feature-images img {
            width: 100%;
            max-width: 200px;
            height: auto;
            border-radius: var(--border-radius);
        }

       .feature-placeholder {
    width: 120px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
}

        /* Responsive Adjustments for Bootstrap Breakpoints */
        @media (max-width: 991.98px) {
            .tj-main-sidebar {
                margin-top: 3rem;
            }
            
            .tj-post__navigation {
                padding: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .title {
                font-size: 2rem;
            }
            
            .blog-text {
                padding: 1.5rem;
            }
            
            .tj-post__navigation {
                flex-direction: column;
                gap: 1.25rem;
                text-align: center;
            }
            
            .service-details-item {
                flex-direction: column;
                text-align: center;
            }
            
            .service-details-item .number {
                margin-right: 0;
                margin-bottom: 0.625rem;
            }
            
            .details-content-box {
                padding: 1.5rem;
            }

            .widget-feature-item .feature-box {
        padding: 24px;
    }
    
    .feature-content .title {
        font-size: 1.5rem;
    }
    
    .feature-content .desc {
        font-size: 0.9rem;
    }
    
    .tj-primary-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
        }

        @media (max-width: 575.98px) {
            .tj-blog-section {
                padding: 40px 0;
            }
            
            .title {
                font-size: 1.75rem;
            }
            
            .blog-text {
                padding: 1.25rem;
            }
            
            .tj-sidebar-widget {
                margin-bottom: 1.5rem;
            }
            
            .tj-sidebar-widget .widget-title {
                padding: 1.25rem 1.25rem 0.75rem 1.25rem;
            }
            
            .service-categories ul {
                padding: 1.25rem;
            }
            
            .widget-feature-item .feature-box {
                padding: 1.5rem;
            }
        }

        /* Animation Classes */
        .fadeInUp {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hover Effects */
        .tj-sidebar-widget {
            transition: transform 0.3s ease;
        }

        .tj-sidebar-widget:hover {
            transform: translateY(-5px);
        }

        /* Additional Bootstrap Utility Overrides */
        .mb-0 {
            margin-bottom: 0 !important;
        }

        .sticky-lg-top {
            position: sticky;
            top: 1rem;
            z-index: 0;
        }

        @media (max-width: 991.98px) {
            .sticky-lg-top {
                position: static;
            }
        }
    

        .eb_h5-video-area{

            margin-top:100px;
            padding-bottom:100px;
            padding-top:100px;
        }

        .tj-sidebar-widget.widget-feature-item .feature-box {
  transform: none !important;
}


    
             