/*  ==============================================================
    Button Setting Global > 0px border-radius
    ==============================================================   */

.wr-tabasidebar.wr-single-freelancer,
.wr-asidebox,
.wr-asidebox-content,
.wr-btn, .wr-secondary-btn, button.wr-btn-solid-lg, .wr-btnviewpro .wr-btn-solid-lg,
.wr-share-section .wr-recommend, .wr-advancebtn, .wr-sidebarpkg__btn > span, .wr-btn-solid-lg-lefticon /*all buttons*/
.wr-blog-tags,
.wr-portfolio-item,
.wr-themeaccordion_item,
.wr-themeaccordion_content {
    border-radius: 0px !important; /* Total removal of rounded corners */
}


/*  ==============================================================
    Client/Employer Verified Badge 
    ==============================================================   */
.wr-verified-info i {
    position: relative;
		display: inline-block;
}

.wr-verified-info i::before {
    content: "\f3ed";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;

    /* gradient */
    background: linear-gradient(135deg, #323ec5, #4fd1ff)
;
		/* clip gradient to icon */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/*  ==============================================================
    Consultant -- Freelancer Verified Badge 
    ==============================================================  */
.wr-author-name > i, .wr-frelancer-v2 .wr-profile-basic .wr-profile-title > h1 > i,
.wr-bestservicedetail__title h6 > i,
.wr-card-title .wr-asideprostatus .wr-freelancer-details h4 .wr-icon-check-circle {
    position: relative;
    display: inline-block;
    color: transparent !important; /* make sure gradient shows */
}

.wr-author-name > i::before, .wr-frelancer-v2 .wr-profile-basic .wr-profile-title > h1 > i::before,
.wr-bestservicedetail__title h6 > i::before,
.wr-card-title .wr-asideprostatus .wr-freelancer-details h4 .wr-icon-check-circle::before {
    content: "\f3ed"; /* shield */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    line-height: 26px;
	
		/* premium green gradient */
    background: linear-gradient(250deg, #f600ff, #04e3d5);
		text-shadow: 0 0 2px rgba(0,0,0,0.05);

    /* clip gradient to icon */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    display: inline-block;
    vertical-align: middle;
}


/*  ==============================================================
    Consultant Description Bullet Points
    ==============================================================  */
.wr-singleservice-tile .wr-text-wrapper ul li, /* consultant task description*/
.wr-jobdescription > ul li  /* client task description*/ {
    position: relative;
    padding-left: 28px;
    line-height: 1.6;
    margin-bottom: 10px;
    list-style: none;
}

.wr-singleservice-tile .wr-text-wrapper ul li:before,  /* consultant task description*/
.wr-jobdescription > ul li:before  /* consultant task description*/ {
    content: "\2726"; /* Your Four Pointed Star */
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    
    /* THE SHARP GRADIENT TRICK */
    background: linear-gradient(150deg, #f600ff 20%, #04e3d5 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    
    /* Sharpness & Anti-aliasing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Font Selection */
    font-family: "Segoe UI Symbol", "Apple Color Emoji", sans-serif;
    
    /* Note: Text-shadow often breaks background-clip gradients, 
       so we use a subtle filter drop-shadow instead for depth */
    filter: drop-shadow(0px 2px 2px rgba(246, 0, 255, 0.15));
}
/*end/




/* 
 * Task Page Banner Container ==========================================================================
   1. MAIN BANNER CONTAINER
   ========================================================================== */
.wr-serviesbann {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

/* Subtle accent for featured tasks */
.wr-serviesbann::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #235eb0;/* Brand Blue */
}

/* ==========================================================================
   2. PRO / FEATURED BADGE
   ========================================================================== */
.wr-featureditem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #235eb0 0%, #1a468a 100%);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin: 0px 0px 20px 0px !important;
    box-shadow: 0 4px 10px rgba(35, 94, 176, 0.3);
    cursor: help;
    font-size: 16px;
}

/* 3. Title Adjustment*/
.wr-serviesbann__content .wr-contentleft > h3 {
		margin-bottom: 14px;
		margin-left: 15px;
}



/* Apply White Background on Core Pages */
.wr-main-section, .wr-searchresult-section {
    padding: 30px 0;
    background-color: #ffffff;
}

/* Hide search result count */
.wr-sort h3 {
		display: none;
}


/* Search Page filter and sort by redesign */
/* ===============================
   Project Grid Border Stlying
================================ */
.wr-tabasidebar.wr-single-freelancer {
    border-radius: 10px !important;
    border: 2px solid blueviolet;
}

.wr-project-wrapper {
  position: relative;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  transition: 
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.wr-project-wrapper:hover {
  border-color: #c9a14a; /* premium accent */
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}  /*end*/


/* Search Page filter and sort by redesign */
/* ===============================
   MAIN SEARCH BAR – LIGHT POLISH
================================ */
.wr-formsearch {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: px;
}

/* hover – no color override */
.wr-btn-solid-lg:hover,
.wr-advancebtn:hover {
  filter: brightness(0.97);
} /*end*/


