/* =========================================
   IMPORT GOOGLE FONTS
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* =========================================
   CORE CSS FILES
========================================= */

@import url("bootstrap.min.css");
@import url("classy-nav.css");
@import url("owl.carousel.min.css");
@import url("animate.css");
@import url("magnific-popup.css");
@import url("font-awesome.min.css");
@import url("elegant-icon.css");


/* =========================================
   ROOT TYPOGRAPHY SCALE
========================================= */

:root{

    --heading-font:'Inter',sans-serif;
    --body-font:'Roboto',sans-serif;

    --primary-text:#202124;
    --secondary-text:#5f6368;
    --light-text:#6b7280;

    --line-height:1.8;

    /* FONT SCALE */
    --fs-xs:0.95rem;
    --fs-sm:1rem;
    --fs-md:1.08rem;
    --fs-lg:1.2rem;
    --fs-xl:1.4rem;
    --fs-2xl:1.8rem;
    --fs-3xl:2.5rem;

}


/* =========================================
   GLOBAL RESET
========================================= */

html{
    font-size:18px;
    -webkit-text-size-adjust:100%;
}

body{
    padding-top:80px;
    background:#e1e2e3;
    font-family:var(--body-font);
    font-size:1.05rem; /* 19px */
    line-height:1.85;
    color:var(--primary-text);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* =========================================
   HEADINGS
========================================= */

h1{
    font-size:3.5rem;
    font-weight:800;
}

h2{
    font-size:2.8rem;
    font-weight:800;
}

h3{
    font-size:2.2rem;
    font-weight:700;
}

h4{
    font-size:1.8rem;
    font-weight:700;
}

h5{
    font-size:1.45rem;
    font-weight:700;
}

h6{
    font-size:1.2rem;
    font-weight:700;
}

/* =========================================
   PARAGRAPH + GENERAL TEXT
========================================= */

p,
span,
li,
td,
label{
    font-size:1.08rem !important;
    line-height:1.9;
}

/* =========================================
   LINKS
========================================= */

a{
    font-size:1.05rem;
}

/* =========================================
   BUTTONS
========================================= */

.btn,
button{
    font-size:1.05rem !important;
    font-weight:600;
    font-family:var(--heading-font);
    transition:0.25s ease;
}


.btn:hover{
    opacity:0.95;
    transform:translateY(-1px);
}

/* =========================================
   INPUTS
========================================= */

input,
textarea,
select,
.form-control{
    font-size:1.08rem !important;
    font-family:var(--body-font);
    color:var(--primary-text);
}

input::placeholder,
textarea::placeholder{
    color:var(--light-text);
}


/* =========================================
   FINAL BOOTSTRAP DROPDOWN FIX
========================================= */

.dropdown-menu {
    z-index: 1055 !important;
}

.header-area .dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute !important;
    z-index: 99999 !important;
}

.header-area,
.header-area * {
    overflow: visible !important;
}






/* =========================================
   FORM CONTROL
========================================= */

.form-control{
    height:52px;
    border-radius:999px !important;
    font-size:1.15rem;
}


/* =========================================
   CARDS
========================================= */

.card,
.sidebar-card,
.feed-card,
.right-card{
    background:#fff;
    border:none;
    border-radius:18px;
    box-shadow:0 4px 25px rgba(0,0,0,0.05);
}

.card-body{
    padding:24px;
}


/* =========================================
   AVATARS
========================================= */

.profile-avatar{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #e9ecef;
}

.post-avatar{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}


/* =========================================
   NAV LINKS
========================================= */

.nav-link-custom,
.sidebar-link,
.miMobileNavLink{
    font-size:1.08rem !important;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 15px;
    border-radius:12px;
    color:var(--primary-text);
    transition:0.3s;
}

.nav-link-custom:hover{
    background:#f1f3f4;
    color:#0d6efd;
}


/* =========================================
   POST ACTION BUTTONS
========================================= */

.post-action,
.post-action-btn{
    font-size:1rem !important;
}

.post-action-btn{
    border:none;
    background:none;
    padding:12px;
    width:100%;
    border-radius:10px;
    font-weight:500;
    color:#5f6368;
    transition:0.3s;
}

.post-action-btn:hover{
    background:#f1f3f4;
}

.post-btn:disabled{
    opacity:0.7;
    cursor:not-allowed;
}

/* =========================================
   FEED
========================================= */


.feed-card,
.feed-card p,
.feed-card span{
    font-size:1.08rem !important;
}

.feed-image{
    width:100%;
    border-radius:14px;
    object-fit:cover;
}


/* =========================================
   HEADER FIX
========================================= */

.header-area{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:10000;
    background:#fff;
}





.navbar-nav{
    margin:0;
    padding:0;
}



/* =========================================
   SEARCH
========================================= */

.search-input{
    height:48px;
    border-radius:50px;
    font-size:1.02rem;
}

.search-btn{
    width:40px;
    height:40px;
    background:#0d6efd;
    color:#fff;
}




/* =========================================
   TYPOGRAPHY RESPONSIVE
========================================= */

@media(max-width:992px){
    h1{font-size:40px;}
    h2{font-size:32px;}
    h3{font-size:26px;}
    h4{font-size:1.5rem;}
}

/* =========================================
   MOBILE TYPOGRAPHY
========================================= */

@media(max-width:768px){

     html{
        font-size:17px;
    }

    body{
        font-size:1.02rem; 
        padding-top:75px;
    }
    p,
    span,
    li,
    a{
        font-size:1rem !important;
    }

    .sidebar-link,
    .miMobileNavLink,
    .nav-link-custom{
        font-size:1rem !important;
    }

    h1{font-size:2.3rem;}
    h2{font-size:2rem;}
    h3{font-size:1.7rem;}
    h4{font-size:1.45rem;}
    h5{font-size:1.2rem;}
    h6{font-size:1.05rem;}


    .post-textarea{
        font-size:1.35rem !important;
    }
     .btn,
    button{
        font-size:1rem !important;
    }

}

@media(max-width:480px){
    body{font-size:1.02rem;}
    h1{font-size:30px;}
    h2{font-size:26px;}
    h3{font-size:1.5rem;}
}

.start-post-card{
    background:#fff;
    border-radius:16px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.start-post-input{
    font-size:1.1rem !important;
    padding:14px 22px;
    border:1px solid #e5e7eb;
    background:#f8f9fa;
    border-radius:50px;
    color:#5f6368;
    transition:0.2s ease;
}

.start-post-input:hover{
    background:#eef1f4;
    cursor:pointer;
}

.post-action{
    flex:1;
    border:none;
    background:transparent;
    padding:10px;
    font-size:1.02rem;
    font-weight:500;
    color:#5f6368;
    border-radius:8px;
    transition:0.2s ease;
}

.post-action:hover{
    background:#f1f3f4;
    color:#202124;
}


/* ============================= */
/*  Users Settings & Privacy UI */
/* ============================= */
 .settings-card{
        border:none;
        border-radius:18px;
        overflow:hidden;
        box-shadow:0 4px 20px rgba(0,0,0,0.06);
    }

    .settings-header{
        color:#111111;
        padding:25px;
    }

    .settings-header h3{
        font-weight:700;
        margin-bottom:5px;
    }

    .settings-menu .nav-link{
        color:#555;
        font-weight:500;
        border-radius:12px;
        padding:12px 15px;
        transition:0.3s ease;
    }

    .settings-menu .nav-link:hover{
        background:#f5f8ff;
        color:#0d6efd;
    }

    .settings-menu .nav-link.active{
        background:#0d6efd;
        color:#fff;
    }

    .profile-info-box{
        background:#f8f9fa;
        border-radius:14px;
        padding:18px;
        margin-bottom:15px;
        transition:0.3s ease;
        border:1px solid #eee;
    }

    .profile-info-box:hover{
        background:#fff;
        transform:translateY(-2px);
        box-shadow:0 4px 12px rgba(0,0,0,0.05);
    }

    .profile-label{
        font-size:0.95rem;
        color:#777;
        margin-bottom:5px;
    }

    .profile-value{
        font-size:1.05rem;
        font-weight:600;
        color:#222;
    }

    .action-btn{
        border-radius:12px;
        padding:10px 18px;
        font-weight:600;
    }

  
/* ========================================= */
/* Responsive Modern Side Menu */
/* ========================================= */

    .sidebar-wrapper{
        margin-top:20px;
    }

    .sidebar-card{
        background:#ffffff;
        border:none;
        border-radius:20px;
        overflow:hidden;
        box-shadow:0 6px 25px rgba(0,0,0,0.08);
        position:sticky;
        top:20px;
    }

    .sidebar-header{
        padding:25px 20px;
        color:#111111;
    }

    .sidebar-header h4{
        margin:0;
        font-weight:700;
        font-size:1.35rem;
    }

    .sidebar-header p{
        margin:5px 0 0;
        opacity:0.9;
        font-size:1.02rem;
    }

    .sidebar-menu{
        padding:15px;
    }

    .menu-title{
        font-size:0.85rem;
        font-weight:700;
        color:#999;
        text-transform:uppercase;
        margin:18px 15px 10px;
        letter-spacing:1px;
    }

    .sidebar-link{
        display:flex;
        align-items:center;
        gap:14px;
        padding:14px 16px;
        margin-bottom:8px;
        border-radius:14px;
        text-decoration:none;
        color:#333;
        transition:all 0.3s ease;
        background:#fff;
    }

    .sidebar-link svg{
        flex-shrink:0;
        transition:0.3s ease;
    }

    .sidebar-link:hover{
        background:#f3f7ff;
        color:#0d6efd;
        transform:translateX(4px);
        text-decoration:none;
    }

    .sidebar-link:hover svg{
        fill:#0d6efd;
    }

    .sidebar-link.active{
        background:#0d6efd;
        color:#fff;
        box-shadow:0 4px 12px rgba(13,110,253,0.25);
    }

    .sidebar-link.active svg{
        fill:#fff;
    }

    .sidebar-divider{
        border-top:1px solid #eee;
        margin:18px 0;
    }

    .sidebar-badge{
        margin-left:auto;
        background:#dc3545;
        color:#fff;
        font-size:0.72rem;
        padding:4px 8px;
        border-radius:30px;
    }


    /* =========================================
       CUSTOM CLASSY NAV MOBILE MENU
    ========================================= */

    #miClassyMobileWrap{
        position:relative;
        z-index:99999;
    }

    #miClassyMobileWrap .miClassyNav{
        background:#ffffff;
        border-radius:0;
        min-height:72px;
        padding:0 12px;
        box-shadow:0 2px 15px rgba(0,0,0,0.05);
    }

    /* =========================================
       BRAND
    ========================================= */

    #miClassyMobileWrap .miBrandLogo{
        font-size:1.2rem;
        font-weight:700;
        color:#111111;
        text-decoration:none;
    }

    /* =========================================
       TOGGLER
    ========================================= */

    #miClassyMobileWrap .classy-navbar-toggler .navbarToggler span{
        background:#111111 !important;
    }

    /* =========================================
       MOBILE MENU PANEL
    ========================================= */

    #miClassyMobileWrap .classy-menu{
        background:#ffffff;
        box-shadow:-5px 0 30px rgba(0,0,0,0.08);
    }

    /* =========================================
       CLOSE BUTTON
    ========================================= */

    #miClassyMobileWrap .classycloseIcon .cross-wrap span{
        background:#111111 !important;
    }

    /* =========================================
       NAV CONTAINER
    ========================================= */

    #miClassyMobileWrap .miClassyInnerNav{
        padding:20px;
    }

    /* =========================================
       USER INFO
    ========================================= */

    #miClassyMobileWrap .miMobileUserBox{
        background:#f8f9fc;
        border-radius:18px;
        padding:18px;
        margin-bottom:22px;
        border:1px solid #edf0f2;
    }

    #miClassyMobileWrap .miMobileUserTitle{
        font-size:1.2rem;
        font-weight:700;
        color:#111111;
        margin-bottom:4px;
    }

    #miClassyMobileWrap .miMobileUserSub{
        font-size:1.02rem;
        color:#777777;
    }

    /* =========================================
       SECTION TITLE
    ========================================= */

    #miClassyMobileWrap .miMobileMenuTitle{
        font-size:0.75rem;
        font-weight:700;
        text-transform:uppercase;
        letter-spacing:1px;
        color:#9aa0a6;
        margin:25px 0 12px;
        padding-left:10px;
    }

    /* =========================================
       MENU LIST
    ========================================= */

    #miClassyMobileWrap .miMobileNavList{
        list-style:none;
        margin:0;
        padding:0;
    }

    #miClassyMobileWrap .miMobileNavList li{
        margin-bottom:10px;
    }

    /* =========================================
       MENU LINK
    ========================================= */

    #miClassyMobileWrap .miMobileNavLink{
        display:flex !important;
        align-items:center;
        gap:14px;
        width:100%;
        padding:15px 16px !important;
        border-radius:16px;
        background:#ffffff;
        border:1px solid #edf0f2;
        color:#202124 !important;
        transition:0.3s ease;
    }

    #miClassyMobileWrap .miMobileNavLink:hover{
        background:#f4f8ff;
        color:#0d6efd !important;
        transform:translateX(4px);
    }

    #miClassyMobileWrap .miMobileNavLink i{
        width:20px;
        text-align:center;
        font-size:1.02rem;
    }

    /* =========================================
       ACTIVE LINK
    ========================================= */

    #miClassyMobileWrap .miMobileNavActive{
        background:#0d6efd !important;
        color:#ffffff !important;
        border-color:#0d6efd !important;
        box-shadow:0 6px 18px rgba(13,110,253,0.22);
    }

    /* =========================================
       BADGE
    ========================================= */

    #miClassyMobileWrap .miMobileBadge{
        margin-left:auto;
        background:#dc3545;
        color:#ffffff;
        font-size:0.72rem;
        font-weight:600;
        padding:4px 9px;
        border-radius:30px;
    }

    /* =========================================
       DIVIDER
    ========================================= */

    #miClassyMobileWrap .miMobileDivider{
        border-top:1px solid #edf0f2;
        margin:25px 0;
    }




/* =========================================
   LINKEDIN STYLE MODAL
========================================= */

.linkedin-modal{
    max-width:680px;
    width:100%;
    margin:auto;
    padding:20px;
}

.linkedin-modal-content{
    border:none;
    border-radius:18px;
    overflow:hidden;
    background:#ffffff;
    box-shadow:0 15px 60px rgba(0,0,0,0.18);
}

/* =========================================
   MODAL HEADER
========================================= */

.editor-header{
    padding:18px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid #edf0f2;
    background:#fff;
}

.user-info{
    display:flex;
    align-items:center;
}

.user-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
    margin-right:12px;
}

.user-name{
    font-size:1.2rem !important;
    font-weight:700;
    color:#111827;
    margin-bottom:2px;
}

.user-role{
    font-size:1.02rem !important;
    color:#6b7280;
}

/* =========================================
   BODY
========================================= */

.editor-body{
    padding:22px;
    max-height:60vh;
    overflow-y:auto;
}

.post-textarea{
    font-size:1.6rem !important;
    line-height:1.7;
    width:100%;
    min-height:220px;
    border:none;
    resize:none;
    outline:none;
    color:#111827;
    background:transparent;
}

.post-textarea::placeholder{
    color:#6b7280;
}

/* =========================================
   IMAGE PREVIEW
========================================= */

.preview-area{
    display:none;
    margin-top:20px;
    position:relative;
}

.preview-image{
    width:100%;
    border-radius:16px;
    max-height:400px;
    object-fit:cover;
    display:block;
}

.remove-image{
    position:absolute;
    top:12px;
    right:12px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,0.7);
    color:#fff;
    font-size:18px;
}

/* =========================================
   FOOTER
========================================= */

.editor-footer{
    border-top:1px solid #edf0f2;
    padding:16px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    flex-wrap:wrap;
    background:#fff;
}

.editor-tools{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.tool-btn{
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:#f3f4f6;
    color:#374151;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.25s ease;
}

.tool-btn:hover{
    background:#e5e7eb;
}

.post-btn{
    border:none;
    background:#0a66c2;
    color:#fff;
    height:46px;
    padding:0 28px;
    border-radius:30px;
    font-weight:600;
    font-size:1.02rem;
    transition:0.25s ease;
}

.post-btn:hover{
    background:#004182;
}

.char-count{
    font-size:1.02rem;
    color:#6b7280;
}

/* =========================================
   BACKDROP FIX
========================================= */

.modal{
    z-index:999999 !important;
}

.modal-backdrop{
    z-index:999998 !important;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){
    
     body{
            padding-top:82px;
            font-size:1.02rem;
             overflow-x: hidden;
        }
            .sidebar-wrapper{
            margin-top:10px;
            margin-bottom:20px;
        }

        .sidebar-card{
            position:relative;
            top:0;
        }

        .sidebar-menu{
            overflow-x:auto;
            white-space:nowrap;
            display:flex;
            gap:10px;
            padding:15px;
        }

        .sidebar-menu::-webkit-scrollbar{
            height:4px;
        }

        .sidebar-menu::-webkit-scrollbar-thumb{
            background:#ccc;
            border-radius:20px;
        }

        .sidebar-link{
            min-width:max-content;
            margin-bottom:0;
            padding:12px 18px;
            border:1px solid #eee;
        }

        .menu-group{
            display:flex;
            gap:10px;
        }

        .menu-title,
        .sidebar-divider{
            display:none;
        }
        
    .linkedin-modal{
        max-width:95%;
    }

    .post-textarea{
        font-size:20px;
    }
    
     .mobile-feed-spacing {

        margin-top: 0px !important;
        padding-top: 0 !important;

    }
    #feedArea {

        display: block !important;
        width: 100% !important;

    }

    .feed-card {

        display: block !important;
        width: 100% !important;

    }
}

/* =========================================
   FULLSCREEN MOBILE MODAL
========================================= */

@media(max-width:576px){

    .modal{
        padding:0 !important;
    }

    .linkedin-modal{
        width:100vw;
        max-width:100vw;
        height:100dvh;
        margin:0;
        padding:0;
    }

    .linkedin-modal-content{
        width:100%;
        height:100dvh;
        border-radius:0;
        border:none;
        display:flex;
        flex-direction:column;
    }

    .editor-header{
        flex-shrink:0;
        padding:14px 16px;
        background:#fff;
    }

    .editor-body{
        overflow-y:auto;
        padding-bottom:20px;
    }
    
    .preview-area{
        margin-top:15px;
    }

    .post-textarea{
        width:100%;
        min-height:220px;
        font-size:18px;
        line-height:1.6;
    }
     .preview-image{
        width:100%;
        max-height:250px;
        object-fit:cover;
        border-radius:14px;
    }

    .editor-footer{
        position:sticky;
        bottom:0;
        left:0;
        z-index:20;
        background:#fff;
    }

   

    .editor-tools{
        width:100%;
        display:flex;
        justify-content:space-between;
    }

    .tool-btn{
        width:44px;
        height:44px;
        font-size:1.15rem;
    }

    .post-btn{
        width:100%;
        height:48px;
        border-radius:30px;
    }

    /* REMOVE WHITE GAP ON MOBILE */

    body.modal-open{
        overflow:hidden;
        padding-right:0 !important;
    }

    .modal.fade .modal-dialog{
        transform:none !important;
    }

    .modal.show .modal-dialog{
        transform:none !important;
    }
}

/* =========================================
   SEE MORE BUTTON
========================================= */

.see-more-btn{
    border:none !important;
    outline:none !important;
    background:transparent !important;
    box-shadow:none !important;

    color:#65676b;
    font-weight:600;

    padding:0 !important;
    margin-left:4px;

    cursor:pointer;

    display:inline;
}

.see-more-btn:hover{
    text-decoration:underline;
    background:transparent !important;
}

.see-more-btn:focus,
.see-more-btn:active{
    outline:none !important;
    box-shadow:none !important;
    background:transparent !important;
}

/* =========================================
   LINKEDIN STYLE NEW POSTS ALERT
========================================= */

.new-post-alert{
    position:sticky;
    top:90px;
    z-index:999;
    display:flex;
    justify-content:center;
    margin-bottom:15px;
    pointer-events:none;
}

#loadNewPostsBtn{
    border:none;
    outline:none;
    background:#0a66c2;
    color:#fff;

    font-size:1.02rem;
    font-weight:600;

    padding:10px 18px;

    border-radius:30px;

    display:flex;
    align-items:center;
    gap:8px;

    box-shadow:0 6px 20px rgba(0,0,0,0.15);

    transition:0.25s ease;

    pointer-events:auto;
}

#loadNewPostsBtn:hover{
    background:#004182;
    transform:translateY(-1px);
}

#loadNewPostsBtn:focus,
#loadNewPostsBtn:active{
    border:none;
    outline:none;
    box-shadow:none;
}


.like-count {
    margin-left: 6px;
    color: #536471;
    font-size:1.02rem;
}


/* =========================================
   INTEREST MODAL
========================================= */

.interest-modal{
    overflow-y:auto;
    padding:20px;
    z-index:9999;
}

.interest-modal-backdrop{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,0.65);
    backdrop-filter:blur(6px);
    z-index:-1;
}

.interest-modal-content{
    border:none;
    border-radius:30px;
    overflow:hidden;
    background:#ffffff;
    box-shadow:0 20px 80px rgba(0,0,0,0.15);
}

.interest-modal-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    padding:35px 35px 20px;
    border-bottom:1px solid #edf2f7;
}

.interest-title{
    font-size:32px;
    font-weight:800;
    margin-bottom:10px;
    color:#111827;
}

.interest-subtitle{
    color:#6b7280;
    font-size:1.02rem;
    line-height:1.8;
    margin:0;
    max-width:600px;
}

.interest-skip-btn{
    border:none;
    background:#f3f4f6;
    color:#374151;
    padding:10px 22px;
    border-radius:999px;
    font-weight:600;
    transition:0.3s ease;
    white-space:nowrap;
}

.interest-skip-btn:hover{
    background:#e5e7eb;
}

.interest-modal-body{
    padding:30px 35px 35px;
}

.interest-section{
    margin-bottom:35px;
}

.interest-section-header{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.interest-section-header h5{
    margin:0;
    font-weight:700;
    color:#111827;
}

.interest-section-header p{
    margin:4px 0 0;
    color:#6b7280;
    font-size:1.02rem;
}

.interest-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#111827;
}

.interest-grid{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.interest-pill{
    position:relative;
    cursor:pointer;
}

.interest-pill input{
    display:none;
}

.interest-pill span{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:12px 22px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    color:#374151;
    font-size:1.02rem;
    font-weight:600;
    transition:0.25s ease;
}

.interest-pill:hover span{
    transform:translateY(-2px);
    border-color:#0d6efd;
}

.interest-pill input:checked + span{
    background:#0d6efd;
    color:#ffffff;
    border-color:#0d6efd;
    box-shadow:0 10px 25px rgba(13,110,253,0.25);
}

.interest-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-top:10px;
    padding-top:25px;
    border-top:1px solid #edf2f7;
}

.selected-count{
    color:#6b7280;
    font-weight:600;
}

#selectedInterestCount{
    color:#0d6efd;
    font-weight:800;
}

.interest-continue-btn{
    border:none;
    background:#0d6efd;
    color:#fff;
    min-width:180px;
    height:56px;
    padding:0 28px;
    border-radius:999px;
    font-weight:700;
    transition:0.3s ease;
}

.interest-continue-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(13,110,253,0.25);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .interest-modal{
        padding:12px;
    }

    .interest-modal-content{
        border-radius:24px;
    }

    .interest-modal-header{
        flex-direction:column;
        align-items:flex-start;
        padding:25px 22px 18px;
    }

    .interest-modal-body{
        padding:22px;
    }

    .interest-title{
        font-size:26px;
    }

    .interest-grid{
        gap:10px;
    }

    .interest-pill{
        width:100%;
    }

    .interest-pill span{
        width:100%;
        justify-content:flex-start;
        padding-left:18px;
    }

    .interest-footer{
        flex-direction:column;
        align-items:stretch;
    }

    .interest-continue-btn{
        width:100%; 
    }

    .interest-skip-btn{
        align-self:flex-end;
    }

}


/* FORCE BIGGER LINKEDIN-LIKE TYPOGRAPHY */
 
.small,
small,
.text-muted,
.dropdown-item,
.form-text,
.card-text{
    font-size:1rem !important;
}

.dropdown-menu a{
    font-size:1.05rem !important;
}

.card-body{
    font-size:1.05rem !important;
}




