.process-box {
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    position: relative;
    transition: .3s;
    height: 100%;
}

.process-box:hover {
    transform: translateY(-8px);
    border-color: #F26223;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
}

.process-box h4 {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 700;
}

.process-box p {
    margin: 0;
    color: #3b3838;
    line-height: 1.8;
}


/*=========================================
        OutSource SEO FAQ
=========================================*/

.osseo-faq .accordion-item {
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
    background: #fff;
}



.osseo-faq .accordion-button:focus {
    box-shadow: none;
}

.osseo-faq .accordion-button:not(.collapsed) {
    background: #F26223;
    color: #fff;
}

.osseo-faq .accordion-button::after {
    transition: .3s;
}

.osseo-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}


/*=========================================
        OutSource SEO Service Card
=========================================*/

.osseo-card {
    background: #fff;
    border: 1px solid #ececec;
    border-left: 5px solid #F26223;
    border-radius: 12px;
    padding: 18px 28px 5px 28px;
    height: 100%;
    transition: .35s ease;
}

.osseo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    border-color: #F26223;
}

.osseo-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
    transition: .3s;
}

.osseo-card:hover h4 {
    color: #F26223;
}



@media(max-width:767px) {
    .osseo-card {
        padding: 22px;
    }

    .osseo-card h4 {
        font-size: 20px;
    }
}

/*=========================================
        White Label SEO Form
=========================================*/

.wlseo-form-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
}

.wlseo-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 10px 0 5px;
}

.wlseo-form-text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.wlseo-input {
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 16px;
    box-shadow: none !important;
    transition: .3s;
}

.wlseo-textarea {
    height: 90px;
    padding: 15px 16px;
    resize: none;
}

.wlseo-input:focus {
    border-color: #F26223;
    box-shadow: 0 0 0 3px rgba(242, 98, 35, .12) !important;
}

.wlseo-form-box .theme-btn {
    width: 100%;
    margin-top: 5px;
}

@media(max-width:767px) {

    .wlseo-form-box {
        padding: 22px;
    }

    .wlseo-form-title {
        font-size: 24px;
    }

}





/* Hide Bootstrap Default Arrow */
.osseo-faq .accordion-button::after {
    display: none;
}

.osseo-faq .accordion-button {
    position: relative;
    padding-right: 50px;
}

.osseo-faq .accordion-button::before {
    content: "\F282";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #120101;
    transition: .3s;
}

.osseo-faq .accordion-button:not(.collapsed)::before {
    transform: translateY(-50%) rotate(180deg);
}



/*=============================
    SEO COMPANY SECTION
==============================*/

.seo-company-section {
    background: #f8fafc;
    position: relative;
}

.seo-company-box {
    background: #fff;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
    border: 1px solid rgba(15, 23, 42, .08);
    position: relative;
    overflow: hidden;
}

.seo-company-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #F26122, #FE9C09);
}


.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff7f2;
    border-left: 4px solid #F26122;
    border-radius: 12px;
    padding: 24px;
    margin: 35px 0;
}

.highlight-box i {
    font-size: 28px;
    color: #F26122;
}

.highlight-box p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #13231D;
    line-height: 1.7;
}

@media(max-width:991px) {

    .seo-company-box {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 34px;
    }

}

@media(max-width:576px) {

    .seo-company-box {
        padding: 30px 22px;
        border-radius: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-content p {
        font-size: 16px;
        line-height: 1.85;
    }

    .highlight-box {
        flex-direction: column;
        gap: 12px;
    }

}

.seo-section-title {
    font-size: 40px;
    font-weight: 700;
    color: #13231D;
    line-height: 1.25;
    margin-bottom: 18px;
}

.seo-feature-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 18px;
    padding: 28px;
    transition: .35s;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.seo-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.seo-feature-card i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff3ec;
    color: #F26122;
    font-size: 26px;
    margin-bottom: 18px;
}

.seo-feature-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #13231D;
    margin-bottom: 12px;
}

.seo-feature-card p {
    color: #666;
    line-height: 1.8;
}

@media(max-width:768px) {

    .seo-section-title {
        font-size: 30px;
    }

}

.mnxnxnxn {
    font-size: 20px;
}

.seo-right-form {
    position: sticky;
    top: 100px;
    /* Header ke hisab se adjust kare */
    align-self: flex-start;
}

.seo-section-t {
    font-size: 25px;
}

.seo-page-btn:hover {
    background-color: #F16224;
}

















/* blog page */


/*======================================
BLOG WRAPPER
======================================*/

.blog-wrapper {
    background: #f5f7fb;
}

/*======================================
COMMON
======================================*/

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 152, 0, .12);
    color: #ff9800;
    font-size: 13px;
    font-weight: 600;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    /*padding: 30px;*/
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
    border: 1px solid #eef2f7;
}

.search-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px 30px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
    border: 1px solid #eef2f7;
}

.sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 10px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
    border: 1px solid #eef2f7;
}

.cta-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
    border: 1px solid #eef2f7;
}

.blog-card,
.search-card,
.sidebar-card {
    transition: .35s ease;
}

.blog-card:hover,
.search-card:hover,
.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, .12);
}

/*======================================
SEARCH
======================================*/

.search-card h3 {
    font-weight: 700;
    margin-bottom: 12px;
}

.search-card p {
    color: #64748b;
}

.search-form .input-group {
    overflow: hidden;
    border-radius: 12px;
}

.search-form .input-group-text {
    background: #fff;
    border: 1px solid #dee2e6;
    border-right: 0;
    color: #ff9800;
}

.search-form .form-control {
    border-left: 0;
    height: 58px;
    box-shadow: none;
}

.search-form .form-control:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.btn-search {
    background: #ff9800;
    color: #fff;
    padding: 0 30px;
    font-weight: 600;
}

.btn-search:hover {
    background: #0b1220;
    color: #fff;
}

/*======================================
BLOG
======================================*/

.blog-featured {
    width: 100%;
    border-radius: 15px 15px 0 0;
    /*margin-bottom: 15px;*/
}

.blog-body{
    padding:15px 20px;
}

.blog-body h4 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
    /*margin: 20px 0;*/
}

.blog-body h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-body p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.blog-meta span {
    font-size: 14px;
    color: #64748b;
}

.blog-meta i {
    color: #ff9800;
    margin-right: 6px;
}

/*======================================
TOC
======================================*/

.toc-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    margin: 35px 0;
}

.toc-card h5 {
    margin-bottom: 18px;
    font-weight: 700;
}

.toc-card ul {
    margin: 0;
    padding-left: 18px;
}

.toc-card li {
    margin-bottom: 12px;
}

.toc-card a {
    color: #0b1220;
    text-decoration: none;
}

.toc-card a:hover {
    color: #ff9800;
}

/*======================================
HIGHLIGHT BOX
======================================*/

.highlight-box {
    display: flex;
    gap: 20px;
    background: #fff7e9;
    border-left: 5px solid #ff9800;
    border-radius: 14px;
    padding: 22px;
    margin: 35px 0;
}

.highlight-box i {
    font-size: 35px;
    color: #ff9800;
}

/*======================================
SIDEBAR
======================================*/

.blog-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-card h4 {
    font-weight: 700;
    margin-bottom: 22px;
}

/*======================================
CATEGORY
======================================*/

.category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: 12px;
    background: #f8fafc;
    color: #0b1220;
    text-decoration: none;
    transition: .35s;
}

.category-list a:hover {
    background: #ff9800;
    color: #fff;
}

.category-list span {
    background: rgba(255, 255, 255, .25);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 12px;
}

/*======================================
RECENT POSTS
======================================*/

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-post img {
    width: 90px;
    height: 75px;
    object-fit: cover;
    border-radius: 12px;
}

.recent-post a {
    color: #0b1220;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.recent-post a:hover {
    color: #ff9800;
}

.recent-post small {
    color: #888;
}

/*======================================
CTA
======================================*/

.cta-card {
    background: linear-gradient(135deg, #0b1220, #16213d);
    color: #fff;
    text-align: center;
}

.cta-card span {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    padding: 8px 18px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.cta-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-card p {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 30px;
}

.cta-card .theme-btn {
    border-radius: 10px;
}

/*======================================
RESPONSIVE
======================================*/

@media (max-width:991px) {

    .blog-sidebar {
        position: relative;
        top: 0;
        margin-top: 30px;
    }

    .blog-body h1 {
        font-size: 34px;
    }

    .blog-body h2 {
        font-size: 26px;
    }

}

@media(max-width:767px) {

    .search-card,
    .blog-card,
    .sidebar-card,
    .cta-card {
        padding: 20px;
    }

    .blog-body h1 {
        font-size: 28px;
    }

    .blog-body h2 {
        font-size: 22px;
    }

    .blog-meta {
        gap: 10px;
    }

    .highlight-box {
        flex-direction: column;
    }

    .recent-post img {
        width: 75px;
        height: 65px;
    }

    .btn-search {
        padding: 0 20px;
    }

}








/* Latest Blog Scroll */

.latest-blog-list {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
}

/* Custom Scrollbar */

.latest-blog-list::-webkit-scrollbar {
    width: 6px;
}

.latest-blog-list::-webkit-scrollbar-thumb {
    background: #ff9800;
    border-radius: 20px;
}

.latest-blog-list::-webkit-scrollbar-track {
    background: #f2f2f2;
}

/* Recent Post */
/* Latest Blog Scroll */

.latest-blog-list {
    max-height: 430px;
    overflow-y: auto;
    padding-right: 5px;
}

.latest-blog-list::-webkit-scrollbar {
    width: 6px;
}

.latest-blog-list::-webkit-scrollbar-thumb {
    background: #ff9800;
    border-radius: 30px;
}

.latest-blog-list::-webkit-scrollbar-track {
    background: #f2f2f2;
}


/* Recent Post */

.recent-post {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #222;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 14px;
    background: #fff;
    transition: .35s ease;
    border: 1px solid #ececec;
}

.recent-post:last-child {
    margin-bottom: 0;
}

.recent-post img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.recent-content {
    flex: 1;
}

.recent-content h6 {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    color: #222;
    transition: .3s;
}

.recent-content small {
    color: #777;
    font-size: 13px;
}

.recent-content small i {
    color: #ff9800;
    margin-right: 5px;
}


.latest-blog-list {
    max-height: 430px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
}

.recent-post:hover {
    transform: translateX(5px);
}

.recent-post:hover h6 {
    color: #ff9800;
}




#blogSearch {
    border-left: none;
    padding-left: 0 !important;
    box-shadow: none;
}






.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 16px;
    font-weight: 700;

    color: #222;
    text-decoration: none;

    transition: all .3s ease;
}

.blog-read-more i {
    font-size: 14px;
    transition: transform .3s ease;
}

.blog-read-more:hover {
    color: #ff9800;
    letter-spacing: 0.5px;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}








/*=========================================
    BLOG DETAILS
=========================================*/

.blog-details-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #ececec;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
}

/* Meta */

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /*margin-bottom: 25px;*/
    /*padding-bottom: 10px;*/
    border-bottom: 1px solid #ececec;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.blog-meta i {
    color: #ff9800;
}

/* Title */

.blog-details-title {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

/* Paragraph */

.blog-details-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 22px;
}

/* Headings */

.blog-details-card h3 {
    font-size: 25px;
    font-weight: 700;
    color: #222;
    margin: 40px 0 20px;
    position: relative;
    padding-left: 18px;
}

.blog-details-card h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 32px;
    border-radius: 30px;
    background: #ff9800;
}

/* Featured Image */

.blog-featured-image {
    overflow: hidden;
    border-radius: 20px;
    margin: 40px 0;
}

.blog-featured-image img {
    width: 100%;
    transition: .5s;
}

.blog-featured-image:hover img {
    transform: scale(1.05);
}

/* List */

.blog-details-card ul {
    padding-left: 22px;
    margin-bottom: 30px;
}

.blog-details-card ul li {
    margin-bottom: 9px;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

.blog-details-card ul li::marker {
    color: #ff9800;
}

/* Blockquote */

.blog-details-card blockquote {
    position: relative;
    margin: 30px 0;
    padding: 20px 35px 20px 80px;

    background: #fff8ef;

    border-left: 5px solid #ff9800;

    border-radius: 16px;

    font-size: 17px;

    font-style: italic;

    color: #222;

    line-height: 1.7;
}

.blog-details-card blockquote::before {

    content: "\f10d";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    position: absolute;

    left: 28px;

    top: 35px;

    font-size: 30px;

    color: #ff9800;

}

/* Links */

.blog-details-card a {
    color: #ff9800;
    font-weight: 600;
    text-decoration: none;
}

.blog-details-card a:hover {
    text-decoration: underline;
}

/* Images */

.blog-details-card img {
    max-width: 100%;
    height: auto;
}

/* Table */

.blog-details-card table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.blog-details-card table th {
    background: #ff9800;
    color: #fff;
    padding: 14px;
}

.blog-details-card table td {
    border: 1px solid #ececec;
    padding: 14px;
}

/* Selection */

.blog-details-card ::selection {
    background: #ff9800;
    color: #fff;
}

/* Responsive */

@media(max-width:991px) {

    .blog-details-card {

        padding: 30px;

    }

    .blog-details-title {

        font-size: 34px;

    }

    .blog-details-card h3 {

        font-size: 26px;

    }

}

@media(max-width:767px) {

    .blog-details-card {

        padding: 25px;

    }

    .blog-details-title {

        font-size: 28px;

    }

    .blog-meta {

        gap: 12px;

    }

    .blog-meta span {

        font-size: 14px;

    }

    .blog-details-card p,
    .blog-details-card li {

        font-size: 16px;

    }

    .blog-details-card blockquote {

        padding: 25px;

        font-size: 18px;

    }

    .blog-details-card blockquote::before {

        display: none;

    }

}



.bbbbnm{
    margin-right:5px;
}


















.branches-section {
    background: #f8fafc;
}

.branch-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 20px 30px;
    height: 100%;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.branch-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #F26122, #FE9C09);
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s ease;
}

.branch-card:hover::before {
    transform: scaleX(1);
}

.branch-card:hover {
    transform: translateY(-8px);
    border-color: #F26122;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.branch-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: #fff3ec;
    color: #F26122;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.branch-badge {
    display: inline-block;
    background: rgba(242, 97, 34, .10);
    color: #F26122;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.branch-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    transition: .3s;
}

.branch-card:hover h4 {
    color: #F26122;
}

.branch-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.branch-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.branch-link i {
    transition: .3s;
}

.branch-link:hover {
    color: #F26122;
}

.branch-link:hover i {
    transform: translateX(5px);
}

@media(max-width:767px){

    .branch-card{
        padding:22px;
    }

    .branch-card h4{
        font-size:20px;
    }

}