@charset "utf-8";

  .btn-block{
    width: 100%;
  }
  .btn-block + .btn-block{
    margin-top: 0.5rem;
  }
  textarea.form-control{
    min-height: calc(3em + 0.75rem + 20px);
  }
  .text-center.padding-top-50{
    padding-top:50px  
  }
  .text-center.padding-bottom-50{
    padding-bottom:50px 
  }
  .message-reply textarea{
    min-height: 44px;
  }
  /* .messages-inbox ul li{
    position: absolute;
    width:100%;
    height: 91px;
    transition: all 1s ease-out;
  } */
  .panel-header.d-flex, .boxed-list-headline.d-flex{
    position: relative;
  }
  #fileinput{
    display: none;
  }


.slick-initialized .slick-slide {
  display: block !important;
}
.slick-prev:before {
  font-family: 'Line-Awesome';
  font-size: 24px;
}
.slick-next:before {
  font-family: 'Line-Awesome';
  font-size: 24px;
}
@media (min-width: 992px) {
  .visible-under-991{
    display:none;
  }
}

/* KEYFRAMES */
@keyframes blink {
  50% {
  opacity: 1;
 }
 }
 
  @keyframes tooltip-bounce {
  0%, 20%, 50%, 80%, 100% {
 transform: translateX(0);
 }
  40% {
 transform: translateX(14px);
 }
  60% {
 transform: translateX(7px);
 }
 }
 
  @keyframes bookmarked-shadow {
  0% {
 box-shadow: 0 0 0 0 rgba(254, 179, 66, 0.8);
 }
  100% {
 box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
 }
 }
 
  @keyframes bookmark-icon {
  0% {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
 }
  50% {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
 }
  100% {
  -webkit-transform: scale(1);
  transform: scale(1);
 }
 }
 
  @keyframes ripple {
  0% {
  -webkit-transform: scale(4);
  transform: scale(4);
 }
  100% {
  opacity: 0;
  -webkit-transform: scale(40);
  transform: scale(40);
 }
 }
 
  @keyframes KeywordIn {
  0% {
  opacity: 0;
  transform: scale(0.9);
 }
  100% {
  opacity: 1;
  transform: scale(1);
 }
 }
 
  @keyframes KeywordOut {
  0% {
  opacity: 1;
 }
  50% {
  opacity: 0;
 }
  100% {
  opacity: 0;
  margin-top: -35px;
 }
 }
 
  @keyframes switch-shadow {
  0% {
 box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
 }
  100% {
 box-shadow: 0 0 0px 10px rgba(0, 0, 0, 0);
 }
 }
  @keyframes switch-shadow-color {
  0% {
 box-shadow: 0 0 0 0 rgba(102, 103, 107, 0.6);
 }
  100% {
 box-shadow: 0 0 0px 10px rgba(0, 0, 0, 0);
 }
 }
 
  @keyframes radius-shadow {
  0% {
 box-shadow: 0 0 0 0 rgba(102, 103, 107, 0.4);
 }
  100% {
 box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
 }
 }
 
  @keyframes bicokAnim {
  0%, 100% {
  box-shadow: 0 0 0 15px rgba(102, 103, 107, 0.07);
 }
  50% {
  box-shadow: 0 0 0 28px rgba(102, 103, 107, 0.12);
 }
 }
 
  @keyframes checkAnim {
   0%, 100% {
     box-shadow: 0 0 0 5px rgba(102, 103, 107, 0.15);
   }
   50% {
   box-shadow: 0 0 0 8px rgba(102, 103, 107, 0.15);
   }
 }
 
 @keyframes typeCheck {
  0% {
 opacity: 0;
 transform: translateY(10px);
 }
  50% {
 opacity: 1;
 transform: translateY(0px);
 }
  100% {
 opacity: 0;
 transform: translateY(-10px);
 }
 }
  @keyframes typeBG {
  0% {
 opacity: 0;
 }
  50% {
 opacity: 1;
 }
  100% {
 opacity: 0;
 }
 }
 
 @keyframes infoBoxAnimation {
  from {
 opacity: 0;
 transform: translateY(-10px);
 }
 to {
   opacity: 1;
   transform: translateY(0px);
 }
 }
 
  @keyframes clusterAnimation {
  0%, 100% {
  box-shadow: 0 0 0 6px rgba(102, 103, 107, 0.15);
 }
  50% {
  box-shadow: 0 0 0 10px rgba(102, 103, 107, 0.15);
 }
 }
 
  @keyframes markerAnimation {
  0%, 100% {
  box-shadow: 0 0 0 6px rgba(102, 103, 107, 0.15);
 }
  50% {
  box-shadow: 0 0 0 8px rgba(102, 103, 107, 0.15);
 }
 }

.freelancers-custom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .freelancers-custom-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .freelancers-custom-grid { grid-template-columns: 1fr; }
}
.freelancer-card {
  background: #0d1b3e;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.freelancer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45,126,247,0.45);
}
.freelancer-card .avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.freelancer-card .avatar-wrap img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255,255,255,0.12);
}
.freelancer-card .verified-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: #2d7ef7;
  border-radius: 50%;
  border: 2.5px solid #0d1b3e;
}
.freelancer-card .fc-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.freelancer-card .fc-name a {
  color: #fff;
  text-decoration: none;
}
.freelancer-card .fc-name .flag {
  width: 18px;
  border-radius: 2px;
}
.freelancer-card .fc-heading {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.freelancer-card .fc-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.freelancer-card .rating-num {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
}
.freelancer-card .fc-skills {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
  flex: 1;
}
.freelancer-card .btn-profile {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: block;
  margin-top: 6px;
  transition: background 0.2s, border-color 0.2s;
}
.freelancer-card .btn-profile:hover {
  background: rgba(45,126,247,0.15);
  border-color: rgba(45,126,247,0.5);
  color: #fff;
  text-decoration: none;
}

/* ── Partners Section ── */
.partners-custom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .partners-custom-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
  }
}
.partner-card-item {
  aspect-ratio: 1;
  background: #0d1b3e;
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.partner-card-item:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.partner-card-item img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: brightness(0.8) grayscale(0.2);
  transition: filter 0.2s;
}
.partner-card-item:hover img {
  filter: brightness(1) grayscale(0);
}

