body{
    font-family: "Inter", sans-serif;
    background: #f6f8fc;
    color: #111827;
    overflow-x: hidden;
}

/* =========================================
   MODERN HEADER
========================================= */

.modern-header{
    width:100%;
    padding:8px 0;
    background:#f8fbff;
    border-bottom:1px solid #eaf0f6;
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(10px);
}

.modern-navbar{
    min-height:76px;
    background:#ffffff;
    border-radius:24px;
    padding:0 22px;
    box-shadow:0 8px 30px rgba(15,23,42,.05);
}

/* =========================================
   LOGO
========================================= */

.brand-logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo-icon{
    width:52px;
    height:52px;
    border-radius:18px;
    /* background:linear-gradient(135deg,#0f4c81,#2563eb); */
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:800;
}



.logo-text h4{
    font-size:24px;
    font-weight:900;
    color:#0f172a;
    margin:0;
    line-height:1;
}

.logo-text span{
    font-size:11px;
    color:#64748b;
    font-weight:600;
    letter-spacing:.5px;
}

/* =========================================
   MENU
========================================= */

.modern-menu{
    gap:10px;
}

.modern-menu .nav-link{
    height:48px;
    padding:0 18px !important;
    border-radius:14px;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    font-weight:700;
    color:#475569;
    transition:.3s;
}

.modern-menu .nav-link i{
    font-size:16px;
}

.modern-menu .nav-link:hover{
    background:#f1f5f9;
    color:#3b82f6;
}

.modern-menu .nav-link.active{
    background: #3b82f6;
    color:#fff;
    box-shadow:0 10px 20px rgba(15,76,129,.16);
}

/* =========================================
   ACTION BUTTONS
========================================= */

.modern-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.firm-btn{
    height:46px;
    padding:0 18px;
    border-radius:14px;
    background:#eff6ff;
    color:#3b82f6;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.firm-btn:hover{
    background:#dbeafe;
    color:#3b82f6;
}

.header-login-btn{
    height:46px;
    padding:0 18px;
    border-radius:14px;
    border:1px solid #dbe3ee;
    color:#334155;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.header-login-btn:hover{
    border-color:#0f4c81;
    color:#0f4c81;
}

.header-signup-btn{
    height:46px;
    padding:0 22px;
    border-radius:14px;
    background:linear-gradient(135deg,#0f4c81,#2563eb);
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    box-shadow:0 10px 20px rgba(37,99,235,.18);
}

.header-signup-btn:hover{
    color:#fff;
    transform:translateY(-2px);
}

/* =========================================
   TOGGLE
========================================= */

.custom-toggler{
    width:48px;
    height:48px;
    border:none;
    border-radius:14px;
    background:#eff6ff;
    color:#0f4c81;
    font-size:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:none !important;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .modern-navbar{
        padding:14px 18px;
    }

    .navbar-collapse{
        margin-top:18px;
        padding-top:18px;
        border-top:1px solid #eef2f7;
    }

    .modern-menu{
        gap:6px;
    }

    .modern-menu .nav-link{
        justify-content:flex-start;
    }

    .modern-actions{
        margin-top:18px;
        flex-direction:column;
        align-items:stretch;
    }

    .firm-btn,
    .header-login-btn,
    .header-signup-btn{
        width:100%;
        justify-content:center;
    }

}

@media(max-width:576px){

    .logo-text h4{
        font-size:20px;
    }

    .modern-navbar{
        border-radius:18px;
    }

}

/* =========================
   GLOBAL COMMON CSS
========================= */

/* section{
    padding: 90px 0;
} */


/* =========================
   COMMON HEADING CSS
========================= */

.main-heading,
.section-title,
h1{
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    color: #0f172a;
    margin-bottom: 22px;
}

h1 span{
    color: #3b82f6;
}

h2{
    font-size: 42px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

h3{
    font-size: 34px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

h4{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

h5{
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

h6{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

p{
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
    margin-bottom: 0;
    font-weight: 400;
}

.section-subtitle{
    max-width: 700px;
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
}

/* =========================
   COMMON BUTTON CSS
========================= */

.primary-btn,
.secondary-btn,
.search-btn,
.view-link,
.main-btn,
.start-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    outline: none;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
}

.primary-btn{
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: #fff;
    padding: 15px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37,99,235,0.18);
}

.primary-btn:hover{
    transform: translateY(-3px);
    color: #fff;
}

.secondary-btn{
    background: #fff;
    border: 1px solid #dbe3ef;
    color: #111827;
    padding: 15px 26px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
}

.secondary-btn:hover{
    background: #f1f5f9;
}

/* =========================
   COMMON CARD CSS
========================= */

.common-card,
.service-card,
.audit-card,
.feature-box,
.expert-card,
.stat-box,
.testimonial-card,
.pricing-card,
.card-custom{
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #edf1f7;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.common-card:hover,
.service-card:hover,
.audit-card:hover,
.feature-box:hover,
.expert-card:hover,
.stat-box:hover,
.testimonial-card:hover,
.card-custom:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15,23,42,0.08);
}

/* =========================
   COMMON ICON CSS
========================= */

.service-icon,
.feature-icon,
.icon-box,
.rocket-icon,
.check-icon{
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg,#dbeafe,#eff6ff);
    color: #2563eb;
    margin-bottom: 20px;
}

.feature-icon{
    margin: auto;
    margin-bottom: 24px;
}

.icon-box{
    margin-bottom: 0;
}

/* FEATURES */

.feature-list-icon{
    display:flex;
    align-items:flex-start;
    gap:22px;
    align-items: center;
    margin-bottom: 35px;
}

.feature-list-icon-box{
    width:64px;
    height:64px;
    min-width:64px;
    border-radius:18px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-list-icon-box i{
    font-size:28px;
    color:#2563eb;;
}

.feature-list-text h4{
    font-size:22px;
    font-weight:800;
    color:#111827;
    margin-bottom:10px;
}

.feature-list-text p{
    font-size:17px;
    line-height:1.8;
    color:#4b5563;
    margin:0;
}

/* RIGHT CARD */

.revenue-wrapper{
    background:#e5e7eb;
    border-radius:22px;
    padding:50px;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================
   HERO SECTION
========================= */

.hero-section{
    padding-top: 60px;
    padding-bottom: 100px;
    background:
    linear-gradient(to bottom,#f8fbff,#eef4ff);
}

.hero-content p{
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-btns{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.search-wrapper{
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: end;
    gap: 18px;
    flex-wrap: wrap;
    box-shadow: 0 20px 50px rgba(15,23,42,0.06);
}

.search-item{
    flex: 1;
    min-width: 180px;
}

.search-item label{
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #374151;
}

.search-item input,
.search-item select{
    width: 100%;
    height: 54px;
    border-radius: 14px;
    border: 1px solid #dbe3ef;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
    background: #f8fafc;
}

.search-btn{
    background: #0f172a;
    color: #fff;
    height: 54px;
    padding: 0 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
}

.hero-image-box{
    position: relative;
}

.hero-image-box img{
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
}

.floating-box{
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: #fff;
    padding: 24px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.floating-box h3{
    color: #2563eb;
    margin-bottom: 5px;
}

.floating-box span{
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.count-box h3{
    font-size:48px;
    font-weight:900;
    color:#3b82f6;
    margin-bottom:8px;
}

.count-box p{
    font-size:16px;
    color:#6b7280;
    margin-bottom:0;
    font-weight:500;
}

.partner-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 40px;
    background: #eef4ff;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

 .advantage-heading span{
            display:block;
            font-size:14px;
            font-weight:800;
            letter-spacing:3px;
            color:#3b82f6;
            margin-bottom:18px;
        }

/* =========================
   SERVICES SECTION
========================= */

.services-section{
    background: #fff;
}

.service-card{
    height: 100%;
}

.service-card p{
    margin-top: 12px;
}

/* =========================
   AUDIT CARD
========================= */

.audit-card{
    height: 100%;
}

.audit-card.active{
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
}

.audit-card.active h5,
.audit-card.active p,
.audit-card.active .view-link{
    color: #fff;
}

.card-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.rating{
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.tags span{
    background: #f1f5f9;
    color: #334155;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.view-link{
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

/* =========================
   FEATURE BOX
========================= */

.feature-box{
    text-align: center;
    height: 100%;
}

.feature-title{
    margin-bottom: 14px;
}

/* =========================
   FLOW SECTION
========================= */

/* .flow-section{
    background: #0f172a;
} */

.flow-wrapper{
    background: linear-gradient(135deg,#111827,#1e293b);
    border-radius: 36px;
    padding: 70px;
}

.step-item{
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
}

.step-number{
    min-width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content h3{
    color: #fff;
}

.step-content p{
    color: #cbd5e1;
}

.profile-card{
    background: #fff;
    border-radius: 30px;
    padding: 40px;
}

.avatar-icon{
    font-size: 70px;
    color: #2563eb;
}

/* =========================
   EXPERT CARD
========================= */

.expert-card{
    text-align: center;
}

.mini-line{
    width: 80px;
    height: 4px;
    background: #2563eb;
    border-radius: 50px;
    margin: 22px auto;
}

/* =========================
   STATS SECTION
========================= */

.stats-section{
    background: #f8fbff;
}

.stat-box{
    text-align: center;
}

.stat-number{
    font-size: 42px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 10px;
}

.stat-text{
    font-size: 15px;
    color: #64748b;
}

/* =========================
   GROWTH SECTION
========================= */



.feature-list{
    padding: 0;
    margin: 35px 0;
    list-style: none;
}

.feature-list li{
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.pricing-card{
    text-align: center;
}

.rocket-icon{
    margin: auto;
    margin-bottom: 24px;
}

/* =========================
   BLOG / ARTICLE
========================= */

.card-custom{
    border: none;
    background: transparent;
    padding: 0;
}

.card-custom img{
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 26px;
    margin-bottom: 26px;
}

.badge-custom{
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.card-title-custom{
    font-size: 30px;
    line-height: 1.4;
}

.card-text-custom{
    margin-top: 18px;
}

/* =========================
   TESTIMONIAL SECTION
========================= */

/* .testimonial-section{
    background: #fff;
} */

.testimonial-card{
    height: 100%;
}

.stars{
    display: flex;
    gap: 6px;
    color: #f59e0b;
    margin-bottom: 22px;
}

.testimonial-text{
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.user-box{
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.user-name{
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.user-role{
    font-size: 13px;
    color: #64748b;
}

/* =========================
   RESPONSIVE CSS
========================= */

@media(max-width:991px){

    section{
        padding: 70px 0;
    }

    h1{
        font-size: 42px;
    }

    h2{
        font-size: 34px;
    }

    .hero-image-box{
        margin-top: 50px;
    }

    .floating-box{
        left: 20px;
        bottom: 20px;
    }

    .flow-wrapper,
    .growth-section{
        padding: 40px 25px;
    }
}

@media(max-width:767px){

    h1{
        font-size: 34px;
    }

    h2{
        font-size: 28px;
    }

    h3{
        font-size: 24px;
    }

    .search-wrapper{
        padding: 16px;
    }

    .search-item{
        min-width: 100%;
    }

    .search-btn{
        width: 100%;
    }

    .hero-btns{
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-btn,
    .secondary-btn{
        width: 100%;
    }
}




/* ========================= */
/* COMMON SECTION */
/* ========================= */

.section-space{
    padding:60px 0;
    /* background:#f8fafc; */
}

.common-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#e0f2fe;
    color:#0369a1;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
}

.common-title{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.common-text{
    font-size:16px;
    line-height:28px;
    color:#64748b;
    max-width:700px;
}

.common-btn-outline{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border:1px solid #dbe3ef;
    border-radius:14px;
    background:#fff;
    color:#0f172a;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.common-btn-outline:hover{
    background:#0f172a;
    color:#fff;
}

/* ========================= */
/* CARD */
/* ========================= */

.common-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(15,23,42,.06);
    transition:.4s;
    height:100%;
}

.common-card:hover{
    transform:translateY(-8px);
}

.common-card-body{
    padding:30px 5px 10px 5px;
}

.common-card-title{
    font-size:22px;
    line-height:1.4;
    font-weight:800;
    color:#0f172a;
    margin-bottom:16px;
}

.common-card-text{
    font-size:15px;
    line-height:28px;
    color:#64748b;
    margin-bottom:0;
}

/* ========================= */
/* IMAGE */
/* ========================= */

.insight-img{
    position:relative;
    overflow:hidden;
}

.insight-img img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.4s;
}

.insight-card:hover img{
    transform:scale(1.05);
}

/* ========================= */
/* TAG */
/* ========================= */

.insight-tag{
    position:absolute;
    top:20px;
    left:20px;
    padding:10px 18px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
}

.tag-blue{
    background:#dbeafe;
    color:#1d4ed8;
}

.tag-green{
    background:#dcfce7;
    color:#15803d;
}

/* ========================= */
/* META */
/* ========================= */

.article-meta{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:20px;
}

.article-meta span{
    font-size:14px;
    color:#64748b;
    display:flex;
    align-items:center;
    gap:8px;
}

.article-meta i{
    color:#2563eb;
}

/* ========================= */
/* AUTHOR */
/* ========================= */

.author-box{
    display:flex;
    align-items:center;
    gap:14px;
}

.author-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
}

.author-box h6{
    font-size:15px;
    font-weight:700;
    margin-bottom:4px;
    color:#0f172a;
}

.author-box p{
    font-size:13px;
    margin-bottom:0;
    color:#64748b;
}

/* ========================= */
/* BUTTON */
/* ========================= */

.read-btn{
    padding:12px 22px;
    border-radius:12px;
    background:#0f172a;
    color:#fff;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.read-btn:hover{
    background:#2563eb;
    color:#fff;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:991px){

    .common-title{
        font-size:34px;
    }

    .common-card-title{
        font-size:24px;
    }

}

@media(max-width:767px){

    .section-space{
        padding:70px 0;
    }

    .common-title{
        font-size:28px;
    }

    .common-text{
        font-size:15px;
        line-height:26px;
    }

    .common-card-body{
        padding:24px;
    }

    .common-card-title{
        font-size:22px;
    }

    .insight-img img{
        height:240px;
    }

    .article-meta{
        gap:15px;
        flex-wrap:wrap;
    }

}




    /* =========================================
   FOOTER SECTION
========================================= */

.footer-section{
    background:#0f172a;
    padding-top:70px;
    color:#fff;
}

/* TOP */

.footer-top{
    padding-bottom:50px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* BRAND */

.footer-brand{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:22px;
}

.footer-logo{
    width:56px;
    height:56px;
    border-radius:18px;
    background:linear-gradient(135deg,#0f4c81,#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:800;
}

.footer-brand h3{
    font-size:28px;
    font-weight:800;
    margin:0;
}

.footer-brand span{
    font-size:12px;
    color:#94a3b8;
    letter-spacing:.5px;
}

.footer-description{
    font-size:14px;
    line-height:1.9;
    color:#cbd5e1;
    margin-bottom:26px;
    max-width:360px;
}

/* SOCIAL */

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:14px;
    background:rgba(255,255,255,.06);
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    transition:.3s;
}

.footer-social a:hover{
    background:#2563eb;
    transform:translateY(-3px);
}

/* TITLE */

.footer-title{
    font-size:18px;
    font-weight:800;
    margin-bottom:24px;
    color:#fff;
}

/* LINKS */

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links li:last-child{
    margin-bottom:0;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:4px;
}

/* CONTACT */

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:14px;
    color:#cbd5e1;
    line-height:1.7;
}

.footer-contact-item i{
    color:#60a5fa;
    font-size:16px;
    margin-top:3px;
}

/* BOTTOM */

.footer-bottom{
    padding:22px 0;
}

.copyright-text{
    margin:0;
    font-size:13px;
    color:#94a3b8;
}

/* BOTTOM LINKS */

.footer-bottom-links{
    display:flex;
    justify-content:flex-end;
    gap:24px;
}

.footer-bottom-links a{
    font-size:13px;
    color:#94a3b8;
    text-decoration:none;
    transition:.3s;
}

.footer-bottom-links a:hover{
    color:#fff;
}

/* MOBILE */

@media(max-width:991px){

    .footer-bottom-links{
        justify-content:flex-start;
        margin-top:16px;
        flex-wrap:wrap;
        gap:14px;
    }

}

@media(max-width:576px){

    .footer-section{
        padding-top:50px;
    }

    .footer-brand h3{
        font-size:24px;
    }

}

      /* =========================
      SIDEBAR AUDITPRO START PAGE
      ========================= */
      .filter-sidebar{
      background:#fff;
      padding:30px 25px;
      border-radius:18px;
      border:1px solid #e8edf5;
      box-shadow:0 4px 20px rgba(0,0,0,0.04);
      position:sticky;
      top:20px;
      }
      .filter-title{
      font-size:15px;
      font-weight:800;
      color:#3b82f6;
      text-transform:uppercase;
      letter-spacing:2px;
      margin-bottom:5px;
      }
      .filter-subtitle{
      font-size:13px;
      color:#7b8794;
      font-weight:700;
      text-transform:uppercase;
      margin-bottom:35px;
      }
      /* ACCORDION */
      .custom-accordion .accordion-item{
      border:none;
      border-bottom:0px solid #edf1f5;
      background:transparent;
      }
      .custom-accordion .accordion-button{
      background:transparent;
      box-shadow:none;
      padding:0 0 22px;
      font-size:15px;
      font-weight:800;
      color:#3b82f6;
      }
      .custom-accordion .accordion-button:not(.collapsed){
      background:transparent;
      color:#3b82f6;
      }
      .custom-accordion .accordion-body{
      padding:0 0 22px;
      }
      .filter-heading-left{
      display:flex;
      align-items:center;
      gap:12px;
      }
      .filter-heading-left i{
      color:#3b82f6;
      font-size:16px;
      }
      /* CHECKBOX */
      .custom-check{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
      font-size:15px;
      font-weight:500;
      color:#32475b;
      cursor:pointer;
      }
      .custom-check input{
      width:18px;
      height:18px;
      accent-color:#3b82f6;
      }
      /* LOCATION */
      .filter-block{
      padding:28px 0;
      border-bottom:1px solid #edf1f5;
      }
      .filter-heading{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:20px;
      }
      .filter-heading i{
      color:#3b82f6;
      font-size:17px;
      }
      .filter-heading h5{
      margin:0;
      font-size:15px;
      font-weight:800;
      color:#3b82f6;
      text-transform:uppercase;
      letter-spacing:1px;
      }
      .location-box{
      position:relative;
      }
      .location-box input{
      width:100%;
      height:50px;
      border:1px solid #dfe7f0;
      border-radius:10px;
      background:#f9fbfd;
      padding:0 48px 0 16px;
      font-size:15px;
      font-weight:600;
      outline:none;
      }
      .location-icon{
      position:absolute;
      right:16px;
      top:15px;
      color:#3b82f6;
      font-size:17px;
      }
      /* RADIO */
      .firm-radio{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
      font-size:15px;
      font-weight:600;
      color:#32475b;
      cursor:pointer;
      }
      .firm-radio input[type="radio"]{
      appearance:none;
      width:18px;
      height:18px;
      border:2px solid #97a6b6;
      border-radius:50%;
      position:relative;
      }
      .firm-radio input[type="radio"]:checked{
      border-color:#3b82f6;
      }
      .firm-radio input[type="radio"]:checked::after{
      content:"";
      width:8px;
      height:8px;
      background:#3b82f6;
      border-radius:50%;
      position:absolute;
      top:3px;
      left:3px;
      }
      /* RESET BUTTON */
      .reset-filter{
      padding-top:25px;
      }
      .reset-btn{
      width:100%;
      height:52px;
      border:none;
      border-radius:12px;
      background:#3b82f6;
      color:#fff;
      font-size:15px;
      font-weight:800;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      transition:0.3s;
      }
      .reset-btn:hover{
      background:#002b56;
      }
      /* =========================
      SPONSORED
      ========================= */
      .sponsored-banner{
      background:#fff;
      border:2px dashed #cfd8e3;
      border-radius:18px;
      padding:35px;
      margin-bottom:35px;
      position:relative;
      }
      .sponsored-tag{
      position:absolute;
      top:-12px;
      left:18px;
      background:#3b82f6;
      color:#fff;
      padding:5px 14px;
      border-radius:20px;
      font-size:11px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:1px;
      }
      .sponsor-logo h3{
      font-size:20px;
      font-weight:900;
      color:#3b82f6;
      margin-bottom:6px;
      }
      .sponsor-logo p{
      font-size:13px;
      color:#8a96a3;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:2px;
      margin:0;
      }
      .sponsor-content h4{
      font-size:20px;
      font-weight:700;
      margin-bottom:12px;
      }
      .sponsor-content p{
      font-size:16px;
      color:#5a6a7a;
      line-height:1.7;
      }
      .sponsor-btn{
      width:190px;
      height:50px;
      border:none;
      border-radius:8px;
      background:#3b82f6;
      color:#fff;
      font-weight:800;
      }
      /* =========================
      TOP
      ========================= */
      .listing-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:30px;
      flex-wrap:wrap;
      gap:20px;
      }
      .listing-title{
      font-size:30px;
      font-weight:900;
      color:#3b82f6;
      margin-bottom:12px;
      }
      .tag-group{
      display:flex;
      gap:10px;
      }
      .small-tag{
      background:#ffffff;
      color:#3b82f6;
      padding:7px 14px;
      border-radius:20px;
      font-size:12px;
      font-weight:700;
      text-transform:uppercase;
      }
      /* SORT */
      .sort-box{
      display:flex;
      align-items:center;
      gap:15px;
      }
      .sort-box span{
      font-size:14px;
      font-weight:700;
      color:#7b8794;
      text-transform:uppercase;
      }
      .custom-select{
      position:relative;
      }
      .custom-select select{
      width:220px;
      height:48px;
      border:1px solid #dfe7f0;
      border-radius:10px;
      padding:0 45px 0 18px;
      background:#fff;
      font-size:15px;
      font-weight:700;
      color:#3b82f6;
      appearance:none;
      outline:none;
      }
      .custom-select i{
      position:absolute;
      right:16px;
      top:17px;
      color:#7a8795;
      }
      /* =========================
      FEATURED SERVICES
      ========================= */
      .featured-services{
      margin-bottom:35px;
      }
      .section-title-wrap{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:22px;
      }
      .section-title{
      font-size:24px;
      font-weight:800;
      margin:0;
      }
      .view-all{
      text-decoration:none;
      color:#3b82f6;
      font-weight:700;
      }
      .service-box{
      background:#fff;
      border-radius:16px;
      padding:30px;
      border:1px solid #ebf0f5;
      transition:0.3s;
      height:100%;
      }
      .service-box:hover{
      transform:translateY(-5px);
      box-shadow:0 10px 25px rgba(0,0,0,0.06);
      }
      /* .service-icon{
      width:65px;
      height:65px;
      border-radius:14px;
      background:#edf4ff;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:20px;
      }
      .service-icon i{
      font-size:28px;
      color:#3b82f6;
      } */
      .service-box h4{
      font-size:20px;
      font-weight:800;
      margin-bottom:12px;
      }
      .service-box p{
      font-size:15px;
      line-height:1.8;
      color:#5c6b7a;
      }
      /* =========================
      CARD
      ========================= */
      .auditor-card{
      background:#fff;
      border-radius:16px;
      border:1px solid #ebf0f5;
      padding:32px;
      margin-bottom:30px;
      display:flex;
      gap:30px;
      align-items:flex-start;
      box-shadow:0 3px 12px rgba(0,0,0,0.03);
      }
      .company-logo{
      width:110px;
      min-width:110px;
      }
      .company-logo img{
      width:100%;
      border-radius:12px;
      border:1px solid #e8edf5;
      }
      .verified-box{
      margin-top:14px;
      }
      .status-tag{
      display: block;
      width: 100%;
      padding: 5px 10px;
      border-radius: 4px;
      margin-bottom: 8px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      }
      .blue-tag{
      background:#e7f0ff;
      color:#3b82f6;
      }
      .orange-tag{
      background:#fff1e5;
      color:#ff7b00;
      }
      .gray-tag{
      background:#edf1f5;
      color:#0d2340;
      }
      .card-middle{
      flex:1;
      }
      .company-name{
      font-size:24px;
      font-weight:800;
      margin-bottom:10px;
      }
      .rating-row{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:20px;
      flex-wrap:wrap;
      }
      .stars-review{
      color:#ffb400;
      font-size:20px;
      }
      .rating-text{
      font-size:17px;
      font-weight:800;
      }
      .review-text{
      color:#687789;
      font-size:15px;
      }
      .company-desc{
      font-size:14px;
      line-height:1.8;
      color:#415161;
      margin-bottom:24px;
      max-width:700px;
      }
      .service-tags{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      }
      .service-tags span{
      border:1px solid #d7dee8;
      background:#f7f9fc;
      padding:7px 14px;
      border-radius:4px;
      font-size:10px;
      font-weight:800;
      color:#3b82f6;
      text-transform:uppercase;
      }
      .card-right{
      width:240px;
      text-align:center;
      }
      .location-text{
      font-size:13px;
      font-weight:600;
      text-transform:uppercase;
      margin-bottom:10px;
      }
      .contact-box{
      background: #f1f4f8;
      border-radius: 6px;
      padding: 6px;
      font-size: 10px;
      font-weight: 700;
      color: #3b82f6;
      margin-bottom: 10px;
      }
      /* .profile-btn{
      width:100%;
      height:46px;
      border:none;
      border-radius:6px;
      background:#3b82f6;
      color:#fff;
      font-weight:600;
      margin-bottom:16px;
      font-size: 14px;
      } */
       .profile-btn {
    /* width: 100%; */
    height: 46px;
    border: none;
    border-radius: 6px;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
      .action-buttons{
      display:flex;
      gap:10px;
      margin-bottom:22px;
      }
      .chat-btn,
      .whatsapp-btn{
      flex:1;
      height:44px;
      border-radius:6px;
      background:#fff;
      font-size:13px;
      font-weight:800;
      }
      .chat-btn{
      border:1px solid #d2dae3;
      color:#3b82f6;
      }
      .whatsapp-btn{
      border:1px solid #bee5c7;
      color:#19a84e;
      }
      .bottom-icons{
      display:flex;
      justify-content:center;
      gap:20px;
      color:#8391a2;
      font-size:18px;
      }
      /* PAGINATION */
      .custom-pagination{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:14px;
      margin-top:40px;
      }
      .custom-pagination a,
      .custom-pagination span{
      width:42px;
      height:42px;
      border-radius:10px;
      display:flex;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      font-size:15px;
      font-weight:700;
      color:#556576;
      }
      .custom-pagination a.active{
      background:#3b82f6;
      color:#fff;
      }
      .custom-pagination a:hover{
      background:#e9f1fb;
      color:#3b82f6;
      }
      /* RESPONSIVE */
      @media(max-width:991px){
      .auditor-card{
      flex-direction:column;
      }
      .card-right{
      width:100%;
      }
      .listing-top{
      flex-direction:column;
      align-items:flex-start;
      }
      }

        /* =========================
      SIDEBAR AUDITPRO END PAGE
      ========================= */