/* banner start */
.tj-breadcrumb-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 230px 0 120px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.tj-breadcrumb-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(7 124 234 / .5);
    z-index: -2
}

.tj-breadcrumb-area::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(1 15 52 / .3);
    z-index: -1
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tj-breadcrumb-area {
        padding: 200px 0 100px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px
    }
}

@media (max-width:575px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px
    }
}

.tj-breadcrumb-bg-shape {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(4%, -30%);
    -ms-transform: translate(4%, -30%);
    transform: translate(4%, -30%);
    z-index: -1
}

.tj-breadcrumb-title {
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-bold);
    margin-bottom: 12px;
    font-size: var(--tj-fs-h2);
}

.tj-breadcrumb-body {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
    font-size: 18px;
    color: var(--tj-color-common-white);
    margin-bottom: 0
}

.tj-breadcrumb-body .spacing {
    margin: 0 10px 0
}
/* ===== Breadcrumb Area ===== */
/* banner  closed */
 /* Modern Service Cards */
    .service-card-modern {
        background: white;
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        padding: 2rem;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid #eef2f7;
        position: relative;
        overflow: hidden;
    }

    .service-card-modern:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .service-card-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #3498db);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #3498db, #3498db);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: white;
        font-size: 1.8rem;
    }

    .service-title {
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 1.2rem;
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .service-content p {
        color: #5d6d7e;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .service-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .service-features li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 0.8rem;
        color: #34495e;
        line-height: 1.6;
        text-align: left;
    }

    .service-features li i {
        position: absolute;
        left: 0;
        top: 4px;
        color: #3498db;
        font-size: 1.1rem;
    }

    /* Benefits Grid */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .benefit-item {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .benefit-item:hover {
        transform: translateY(-5px);
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3498db, #2980b9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: white;
        font-size: 1.5rem;
    }

    .benefit-title {
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    /* CTA Section */
    .cta-box {
        background: linear-gradient(135deg, #2c3e50, #3498db);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .cta-box::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .cta-box::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -50%;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .btn-cta-primary {
        background: #3498db;
        border: none;
        color: white;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .btn-cta-primary:hover {
        background: #27ae60;
        transform: scale(1.05);
        color: white;
    }

    .btn-cta-secondary {
        background: transparent;
        border: 2px solid white;
        color: white;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .btn-cta-secondary:hover {
        background: white;
        color: #2c3e50;
        transform: scale(1.05);
    }

    /* Text Justify for all paragraphs */
    .text-justify {
        text-align: justify;
        text-justify: inter-word;
    }

    /* Intro Box */
    .intro-box {
        background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
        border-left: 5px solid #3498db;
    }

    /* Title Underline */
    .title-underline {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #3498db);
        margin-bottom: 2rem;
    }

    /* Spacing Utilities */
    .mt-6 {
        margin-top: 5rem !important;
    }

    .py-5 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .service-card-modern {
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cta-box {
            padding: 2rem 1.5rem !important;
        }

        .cta-buttons {
            flex-direction: column;
            gap: 1rem;
        }

        .cta-buttons .btn {
            width: 100%;
            margin: 0.5rem 0 !important;
        }

        .display-5 {
            font-size: 2.2rem !important;
        }

        .display-6 {
            font-size: 1.8rem !important;
        }
    }

    @media (max-width: 576px) {
        .service-card-modern {
            padding: 1.25rem;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }

        .service-title {
            font-size: 1.25rem;
        }

        .btn-lg {
            padding: 0.75rem 1.5rem !important;
            font-size: 1rem;
        }
    }

  

    /* Print Optimization */
    @media print {
        .service-card-modern {
            box-shadow: none;
            border: 1px solid #ddd;
            break-inside: avoid;
        }

        .btn {
            display: none !important;
        }
    }

.tj-team-area {
    padding-top: 30px;
    padding-bottom: 50px;
}
.tj-team-area .tj-section-wrapper {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
    .tj-team-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
.tj-team-top-button {
    display: flex;
    justify-content: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .tj-team-top-button {
        display: inherit;
        margin-bottom: 0;
        justify-content: center;
    }
}
.tj-team-wrapper {
    background: rgb(7 124 234 / 0.17);
    padding: 30px 20px 20px;
    border-radius: 9px;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: 0.4s;
    margin-bottom: 30px;
    height: 400px;
}
.tj-team-wrapper::before {
    content: "";
    position: absolute;
    width: 410px;
    height: 321px;
    border-radius: 100%;
    top: -173px;
    left: -3px;
    background: #ecf1f5;
    z-index: -1;
}
.tj-team-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: var(--tj-color-theme-primary);
    transition: 0.7s;
    z-index: -2;
}
.tj-team-wrapper:hover::after {
    height: 100%;
}
.tj-team-wrapper:hover .tj-team-title {
    color: var(--tj-color-common-white);
}
.tj-team-wrapper:hover .tj-team-title a {
    color: var(--tj-color-common-white);
}
.tj-team-wrapper:hover .tj-team-paragraph {
    color: var(--tj-color-common-white);
}
.tj-team-thumb {
    width: 182px;
    height: 182px;
    margin: auto;
    margin-bottom: 22px;
}
.tj-team-thumb img {
    border-radius: 50%;
}
.tj-team-thumb a {
    display: inline-block;
}
.tj-team-thumb a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--tj-color-common-white);
}
.tj-team-title {
    margin-bottom: 4px;
}
.tj-team-title a {
    display: inline-block;
}
.tj-team-paragraph {
    color: var(--tj-color-theme-primary);
    margin-bottom: 12px;
    transition: 0.4s;
}
.tj-round-btn {
    background: 0 0;
    color: var(--tj-color-theme-primary);
    font-weight: var(--tj-fw-bold);
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 17px 23px;
    line-height: 1;
    display: inline-block;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
}
.tj-round-btn i {
    margin-left: 4px;
    transition: 0.4s;
}
.tj-round-btn::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(7 124 234 / 0.16);
    border-radius: 50px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.tj-round-btn:hover {
    color: var(--tj-color-theme-primary);
}
.tj-round-btn:hover::before {
    width: 100%;
}