/* community page css start */


.community_Main_page {
    background-color: #f3f2ef;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 80px;
}
        
        .community_Main_page .scroll_commonBox {
            height: 320px;
            overflow-y: auto;
            overflow-x: hidden;
        }

        
        .community_Main_page .post-card {
            background: white;
            max-width: 100%;
            width: 100%;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            overflow: visible;
            position: relative;
        }

        
        .community_Main_page .post-card .Postactivity_title h3 {
            font-size: 14px;
            margin-top: 15px;
            font-weight: 500;
            margin-bottom: 5px;
        }


        .community_Main_page .post-card .Postactivity_title h4 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

        
        .community_Main_page .post-card .Postactivity_title h3 span {
            color: #FF7003;
        }

        
        .community_Main_page .post-card .Postactivity_title h5 {
            font-size: 20px;
            font-weight: 700;
            color: #0163f0;
            margin-bottom: 15px;
        }


        
        .community_Main_page .post-card .likes span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
        }

        
        .community_Main_page .post-card .post-header {
            display: flex;
            justify-content: space-between;
            padding: 12px 16px 0;
        }

        
        .community_Main_page .post-card .user-info {
            display: flex;
            gap: 12px;
        }

        
        .community_Main_page .post-card .profile-pic {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        
        .community_Main_page .post-card .user-name {
            font-size: 14px;
            font-weight: 600;
        }

        
        .community_Main_page .post-card .verified-icon {
            color: #0163F0;
            font-size: 12px;
            margin-left: 2px;
        }

        
        .community_Main_page .post-card .headline {
            font-size: 12px;
            color: #666;
            margin-top: 2px;
            margin: 5px 0;
        }

        
        .community_Main_page .post-card .post-meta {
            font-size: 11px;
            color: #888;
            margin-top: 2px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        
        .community_Main_page .post-card .dropdown {
            position: relative;
        }

        
        .community_Main_page .post-card .menu-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: 0.2s;
            width: 35px;
            display: inline-flex;
            height: 35px;
            align-items: center;
            justify-content: center;
        }

        
        .community_Main_page .post-card .menu-btn:hover {
            background: #f3f3f3;
        }

       
        .community_Main_page .post-card .dropdown-content,
       
        .community_Main_page .rating-dropdown {
            position: absolute;
            background: white;
            min-width: 160px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px) scale(0.95);
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

       
        .community_Main_page .post-card .dropdown-content {
            right: 0;
            top: 40px;
            transform-origin: top right;
        }

       
        .community_Main_page .post-card .dropdown-content.show,
       
        .community_Main_page .rating-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

       
        .community_Main_page .rating-dropdown {
            bottom: 50px;
            left: 10px;
            min-width: 180px;
            padding: 10px;
            display: flex;
            justify-content: center;
            gap: 8px;
            transform-origin: bottom left;
        }

       
        .community_Main_page .rating-dropdown i {
            font-size: 20px;
            color: #ccc;
            cursor: pointer;
            transition: transform 0.2s, color 0.2s;
        }

       
        .community_Main_page .rating-dropdown i:hover,
        .community_Main_page .rating-dropdown i.active {
            color: #ffc107;
            transform: scale(1.2);
        }

       
        .community_Main_page .post-card .dropdown-content a {
            padding: 12px 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #444;
            transition: background 0.2s;
        }

       
        .community_Main_page .post-card .dropdown-content a:hover {
            background: #f3f3f3;
        }

       
        .community_Main_page .post-card .dropdown-content a:first-child {
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }

       
        .community_Main_page .post-card .dropdown-content a:last-child {
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }

       
        .community_Main_page .post-card .delete-opt {
            color: #d11124 !important;
        }

       
        .community_Main_page .post-card .post-body p {
            font-size: 14px;
            font-weight: 400;
        }

       
        .community_Main_page .post-card .post-body {
            padding: 0 16px 12px;
            font-size: 14px;
            line-height: 1.5;
            color: #191919;
        }

       
        .community_Main_page .post-card .post-image img {
            width: 100%;
            display: block;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

       
        .community_Main_page .post-card .post-stats {
            padding: 8px 16px;
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #666;
            border-bottom: 1px solid #eee;
        }

       
        .community_Main_page .post-card .like-icon i {
            background: #FF7003;
            color: white;
            padding: 3px;
            border-radius: 50%;
            font-size: 8px;
            width: 18px;
            display: inline-flex;
            height: 18px;
            justify-content: center;
            align-items: center;
        }

       
        .community_Main_page .post-card .post-actions {
            display: flex;
            padding: 4px;
            position: relative;
        }

       
        .community_Main_page .post-card .action-btn {
            flex: 1;
            border: none;
            background: none;
            padding: 10px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            border-radius: 4px;
            transition: 0.2s;
        }

       
        .community_Main_page .post-card .action-btn:hover {
            background: #f3f3f3;
        }

        
        .community_Main_page .post-card .action-btn i {
            margin-right: 4px;
        }

       
        .community_Main_page .post-card .comment-section {
            display: none;
            padding: 12px 16px;
            border-top: 1px solid #eee;
            animation: slideIn 0.3s ease-out;
        }

       
        .community_Main_page .post-card .comment-section.active {
            display: block;
        }

        
        .community_Main_page .post-card .comment-input-container {
            display: flex;
            gap: 10px;
        }

        
        .community_Main_page .post-card .comment-profile-pic {
            width: 32px;
            height: 32px;
            border-radius: 50%;
        }

        
        .community_Main_page .post-card .textarea-wrapper {
            flex: 1;
        }

        .community_Main_page .post-card .comment-section textarea {
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 20px;
            padding: 10px 15px;
            resize: none;
            font-size: 14px;
            outline: none;
            transition: 0.2s;
            min-height: 40px;
        }

       
        .community_Main_page .post-card .comment-section textarea:focus {
            border-color: #0163F0;
            box-shadow: 0 0 0 1px #0163F0;
        }

       
        .community_Main_page .post-card .post-comment-btn {
            margin-top: 8px;
            background-color: #0163F0;
            color: white;
            border: none;
            padding: 6px 16px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: 0.2s;
        }

       
        .community_Main_page .post-card .comments-shares span {
            font-size: 13px;
            color: #666874;
        }

       
        .community_Main_page .post-card .post-comment-btn:hover {
            background-color: #004182;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 480px) {


            body {
                padding: 0;
            }
        }


      
        .community_Main_page .profile-card {
            width: 100%;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #e0e0e0;
            text-align: center;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
        }

        
        .community_Main_page .profile-card .banner {
            height: 80px;
            background: linear-gradient(to right, #2d64f1, #9400ff);
        }

        
        .community_Main_page .profile-card .avatar-container {
            margin-top: -45px;
            display: flex;
            justify-content: center;
        }

        
        .community_Main_page .profile-card .profile-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            border: 2px solid white;
            object-fit: cover;
            background-color: white;
        }

        
        .community_Main_page .profile-card .info-section {
            padding: 15px 20px 20px;
            border-bottom: 1px solid #f3f2ef;
        }

        
        .community_Main_page .profile-card .user-name {
            font-size: 20px;
            font-weight: 700;
            color: #1d2226;
            margin-bottom: 4px;
        }

       
        .community_Main_page .profile-card .username-handle {
            font-size: 14px;
            color: #666e75;
            margin-bottom: 12px;
            display: block;
        }

        
        .community_Main_page .profile-card .headline {
            font-size: 14px;
            color: #4f5e6a;
            line-height: 1.5;
            font-weight: 400;
        }

        
        .community_Main_page .profile-card .stats-section {
            padding: 12px 0;
            text-align: left;
        }

       
        .community_Main_page .profile-card .stat-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 16px;
            cursor: pointer;
            transition: background 0.2s;
        }

        
        .community_Main_page .profile-card.stat-row:hover {
            background-color: #f3f2ef;
        }

       
        .community_Main_page .profile-card .stat-label {
            font-size: 14px;
            color: #666e75;
            font-weight: 600;
        }

        
        .community_Main_page .profile-card .stat-value {
            font-size: 14px;
            color: #0163F0;
            font-weight: 700;
        }



        
        .community_Main_page .basic-details-card {
            width: 100%;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #e0e0e0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        
        .community_Main_page .basic-details-card .banner {
            height: 90px;
            background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=400&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        
        .community_Main_page .basic-details-card .logo-container {
            position: absolute;
            bottom: -25px;
            left: 20px;
            background: white;
            width: 55px;
            height: 55px;
            padding: 7px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        
        .community_Main_page .basic-details-card .logo-img {
            width: 85%;
            object-fit: contain;
        }

        
        .community_Main_page .basic-details-card .stats-section {
            margin-top: 30px;
        }

        
        .community_Main_page .basic-details-card .stat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
            cursor: pointer;
        }

        
        .community_Main_page .basic-details-card .stat-item:hover {
            background-color: #f9f9f9;
        }

        
        .community_Main_page .basic-details-card .stat-label {
            font-size: 16px;
            font-weight: 700;
            color: #000;
        }

        
        .community_Main_page .basic-details-card .stat-value {
            font-size: 16px;
            font-weight: 700;
            color: #2d64f1;
        }

        
        .community_Main_page .basic-details-card .details-section {
            padding: 20px;
        }

        
        .community_Main_page .basic-details-card .details-title {
            font-size: 16px;
            font-weight: 700;
            color: #001a33;
            margin-bottom: 15px;
        }

        
        .community_Main_page .basic-details-card .detail-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 14px;
        }

        
        .community_Main_page .basic-details-card .detail-label {
            color: #666e75;
        }

        .community_Main_page .basic-details-card .detail-info {
            color: #1d2226;
            font-weight: 500;
            text-align: right;
        }

       
        .community_Main_page .create-post_Box {
            background: white;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            padding: 16px;
            max-width: 100%;
            margin: 20px auto 20px;
        }

        
        .community_Main_page .create-post_Box .post-input-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        
        .community_Main_page .create-post_Box .user-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        
        .community_Main_page .create-post_Box .start-post-btn {
            flex-grow: 1;
            background-color: white;
            border: 1px solid #b2b2b2;
            border-radius: 35px;
            padding: 10px 20px;
            text-align: left;
            color: #666;
            font-size: 14px;
            font-weight: 600;
            transition: 0.2s;
        }

        
        .community_Main_page .create-post_Box .start-post-btn:hover {
            background-color: #f3f3f3;
        }

        
        .community_Main_page .create-post_Box .nav-tabs {
            border-bottom: none !important;
            display: flex;
            justify-content: space-between;
            gap: 5px;
        }

        
        .community_Main_page .create-post_Box .nav-tabs .nav-item {
            flex: 1;
        }

        .community_Main_page .create-post_Box .nav-tabs .nav-link {
            border: none !important;
            padding: 8px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 8px !important;
            transition: 0.2s;
            background: transparent;
            text-align: left;
        }

       
        .community_Main_page .create-post_Box .nav-tabs .nav-link:hover {
            background-color: #f3f3f3 !important;
        }



        
        .community_Main_page .create-post_Box .tab-text {
            font-size: 12px;
            font-weight: 600;
            color: #5e5e5e;
            line-height: 1.2;
            display: block;
        }

        
        .community_Main_page .create-post_Box.nav-link i {
            font-size: 20px;
        }

        
        .community_Main_page .create-post_Box .icon-growth {
            color: #0a66c2;
        }

        .community_Main_page .create-post_Box .icon-reflection {
            color: #057642;
        }

        .community_Main_page .create-post_Box .icon-qa {
            color: #e7a33e;
        }

        .community_Main_page .create-post_Box .icon-milestone {
            color: #f5987e;
        }


        @media (max-width: 576px) {
            .community_Main_page .create-post_Box .nav-tabs {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }

            .community_Main_page .create-post_Box .nav-tabs .nav-link {
                margin-bottom: 5px;
            }
        }

        /*  challenge card css start */


        
        .community_Main_page .challenges-card {
            background: white;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            max-width: 100%;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
        }

        
        .community_Main_page .challenges-card .challenges-header {
            padding: 16px 20px;
            font-size: 20px;
            font-weight: 700;
            color: #001a33;
            border-bottom: 1px solid #f0f0f0;
        }

       
        .community_Main_page .challenges-card .challenge-item {
            padding: 16px 20px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
            cursor: pointer;
        }

        
        .community_Main_page .challenges-card .challenge-item:last-child {
            border-bottom: none;
        }

        .community_Main_page .challenges-card .challenge-item:hover {
            background-color: #f9f9f9;
        }

       
        .community_Main_page .challenges-card .icon-wrapper {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1px solid #e0e0e0;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: white;
            flex-shrink: 0;
        }

        
        .community_Main_page .challenges-card .icon-wrapper img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

       
        .community_Main_page .challenges-card .challenge-info h4 {
            font-size: 16px;
            font-weight: 700;
            color: #000;
            margin: 0 0 5px 0;
        }

       
        .community_Main_page .challenges-card .meta-data {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

       
        .community_Main_page .challenges-card .meta-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #666e75;
            font-weight: 500;
        }

       
        .community_Main_page .challenges-card .meta-row i {
            font-size: 14px;
            width: 16px;
        }

       
        .community_Main_page .challenges-card .icon-calendar {
            color: #2d64f1;
        }

        .community_Main_page .challenges-card .icon-clock {
            color: #f5987e;
        }

        /*  challenge card css end */


        /* course card css start */

        .community_Main_page .courses-card {
            background: white;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            max-width: 100%;
            margin: 0 auto;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .community_Main_page .courses-card .card-header-title {
            padding: 16px 20px;
            font-size: 20px;
            font-weight: 700;
            color: #000;
            border-bottom: 1px solid #f0f0f0;
        }

       
        .community_Main_page .courses-card .course-item img {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 5px;
        }

        .community_Main_page .courses-card .course-item {
            padding: 16px 20px;
            display: flex;
            gap: 15px;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
            cursor: pointer;
        }

        .community_Main_page .courses-card .course-item:last-child {
            border-bottom: none;
        }

        .community_Main_page .courses-card .course-item:hover {
            background-color: #f9f9f9;
        }

        .community_Main_page .courses-card.course-thumb {
            width: 100px;
            height: 65px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .community_Main_page .courses-card .course-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .community_Main_page .courses-card .course-title {
            font-size: 16px;
            font-weight: 700;
            color: #000;
            margin: 0;
            line-height: 1.3;
        }

        .community_Main_page .courses-card .meta-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #666e75;
            font-weight: 500;
        }

        .community_Main_page .courses-card .icon-clock {
            color: #f5987e;
        }

        .community_Main_page .courses-card .icon-calendar {
            color: #2d64f1;
        }





        /* course card css end */

        /* bottom bar css start */

       
        .community_Main_page .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid #e0e0e0;
            padding: 10px 0;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        }

        
        .community_Main_page .bottom-nav .nav-tabs-custom {
            display: flex;
            justify-content: space-around;
            list-style: none;
            margin: 0;
            padding: 0;
        }

       
        .community_Main_page .bottom-nav .nav-item-custom {
            text-align: center;
            cursor: pointer;
            color: #666;
            transition: 0.3s;
            flex: 1;
        }

       
        .community_Main_page .bottom-nav .nav-item-custom i {
            font-size: 20px;
            display: block;
            margin-bottom: 4px;
        }

       
        .community_Main_page .bottom-nav .bottom-nav.nav-item-custom span {
            font-size: 11px;
            font-weight: 600;
        }

        .community_Main_page .bottom-nav .nav-item-custom.active {
            color: #0a66c2;
        }



       
        .community_Main_page .content-section.show {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 991.98px) {
             .community_Main_page .bottom-nav {
                display: block;
            }

             .community_Main_page .content-section {
                display: none;
            }

        }

        /* bottom bar css end */


       
      


        @media (max-width: 992px) {
           
        .community_Main_page .courses-card {
                border-radius: unset;
                border: unset;
                max-width: 100%;
                margin: 0 auto;
                box-shadow: unset;
                height: 100%;
            }

           
        .community_Main_page .community_Main_page {
                padding-bottom: 100px;
                background-color: #ffffff;
            }

           
        .community_Main_page .scroll_commonBox {
                height: 100%;
            }

           
        .community_Main_page .challenges-card {
                border-radius: 0;
                border: unset;
                box-shadow: unset;

            }

        }


        /* --- Responsive Design --- */
        @media (max-width: 768px) {
           
        .community_Main_page .community_header {
                padding: 10px 15px;
            }

            .community_Main_page .community_header .search-wrapper {
                display: none;
                /* Hide search on mobile, or move to a toggle */
            }

            .community_Main_page .community_header .logo-text {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
           
        .community_Main_page .bottom-nav .nav-item-custom {

                font-size: 13px;
            }

           
        .community_Main_page .bottom-nav .nav-item-custom i {
                font-size: 17px;
            }
        }

       
        .community_Main_page .comments-list {
            padding: 15px;
        }

       
        .community_Main_page .comments-list .comment-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 20px;
            padding: 5px 0;
        }

       
        .community_Main_page .comments-list .comm-avatar {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            object-fit: cover;
        }

       
        .community_Main_page .comments-list .comm-content {
            display: flex;
            flex-direction: column;
        }

        .community_Main_page .comments-list .comm-user {
            font-weight: 700;
            font-size: 0.95rem;
            color: #000;
            margin-bottom: 4px;
        }

       
        .community_Main_page .comments-list .comm-text {
            font-size: 0.9rem;
            color: #333;
            line-height: 1.4;
            margin: 0;
        }

       
        .community_Main_page .comments-list .read-more-link {
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 5px 0 15px 44px;
        }

       
        .community_Main_page .comments-list .read-more-link:hover {
            text-decoration: underline;
            color: #000;
        }


       
        .community_Main_page .answer_recommendation_content {
            padding: 20px;
            background: #f8faff;
            font-family: 'Inter', sans-serif;
        }

       
        .community_Main_page .answer_recommendation_content .comparison-wrapper {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

       
        .community_Main_page .answer_recommendation_content .answer_box {
            flex: 1;
            min-width: 300px;
            padding: 24px;
            border-radius: 16px;
            background: #ffffff;
            border: 1px solid #e1e8f0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: transform 0.3s ease;
        }

        
        .community_Main_page .answer_recommendation_content .answer_box:hover {
            transform: translateY(-5px);
        }

       
        .community_Main_page .answer_recommendation_content .answer_box.recommended {
            border: 2px solid #FFA866;
            background: linear-gradient(145deg, #ffffff, #f0f7ff);
        }

       
        .community_Main_page .answer_recommendation_content .box-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

       
        .community_Main_page .answer_recommendation_content .box-header h3 {
            margin: 0;
            font-size: 1.1rem;
            color: #334155;
            font-weight: 700;
        }

       
        .community_Main_page .answer_recommendation_content .original .box-header i {
            color: #64748b;
        }

        .community_Main_page .answer_recommendation_content .recommended .box-header i {
            color: #FFA866;
        }

        .community_Main_page .answer_recommendation_content .answer_box p {
            line-height: 1.6;
            color: #475569;
            font-size: 0.95rem;
            margin: 0;
        }

        .community_Main_page .answer_recommendation_content .badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: #FFA866;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(74, 144, 226, 0.4);
        }

       
        .community_Main_page .sticky_Postion {
            position: sticky;
            top: 20px;
        }

        .community_Main_page .add_post_box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            margin-bottom: 15px;
        }

       
        .community_Main_page .add_post_box h5 {
            font-size: 18px;
            font-weight: 700;
            color: #001a33;
            flex-wrap: wrap;
            margin: 0;
        }

       
        .community_Main_page .add_post_box button {
            border-radius: 35px;
            background: #3959f3;
            border: none;
            font-size: 16px;
            padding: 7px 20px;
            color: #fff;
        }

        
        .community_Main_page .achivement_tabs .nav-pills {
            gap: 10px;
        }

       
        .community_Main_page .achivement_tabs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
            background-color: #0163F0 !important;
            color: white ;
        }

        .community_Main_page .achivement_tabs .nav-link {
            background: #fff;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 400;
            color: #000;
        }


/* community page css end */

.quiz_page .polls_new_box .label{
    padding-left: 10px;
}

.benefits_pricing_sc {
    background-image: url("../img/benefits.webp");
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
.benefits_pricing_sc .benefits_title h2{
    font-size: clamp(26px, 5vw, 55px);   
    font-weight: 600;
    color: #fff;
    margin-bottom: clamp(18px, 3vw, 30px);
}

.benefits_pricing_sc .benefits_title h4{
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 600;
    color: #fff;
}

.benefits_pricing_sc .benefits_title p {
    font-size: clamp(14px, 1.4vw, 18px);
    color: #fff;
    line-height: clamp(22px, 2vw, 28px);
    margin-bottom: clamp(18px, 3vw, 30px);
}
