/* Samples Page Background */
.samplePageOuter {
  background: radial-gradient(
      49.55% 49.55% at 50% 25.06%,
      rgba(78, 132, 209, 0.07) 0%,
      rgba(251, 253, 255, 0.1) 100%
    ),
    linear-gradient(224deg, rgba(255, 255, 255, 0) 57.24%, #E2F3FF 100%),
    linear-gradient(241deg, #E2F3FF 0%, rgba(255, 255, 255, 0) 44.67%),
    #fbfdff;
}

/* Samples Section */
.samples-section {
  padding: 80px 0 100px;
}

.samples-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.samples-header h1 {
  font-weight: 500;
  font-size: 42px;
  line-height: 1.2;
  color: #1E293B;
  margin-bottom: 20px;
}

.samples-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #64748B;
}

.samples-header p a {
  color: #0654E6;
  text-decoration: underline;
}

.samples-header p a:hover {
  text-decoration: none;
}

.samples-header p strong {
  color: #1E293B;
}

@media (max-width: 991px) {
  .samples-section {
    padding: 60px 0 80px;
  }

  .samples-header h1 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .samples-section {
    padding: 50px 0 60px;
  }

  .samples-header {
    margin-bottom: 40px;
  }

  .samples-header h1 {
    font-size: 28px;
  }

  .samples-header p {
    font-size: 15px;
  }
}

/* Filters */
.samples-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 30px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.filter-group label {
  font-size: 14px;
  font-weight: 500;
  color: #1E293B;
  margin-bottom: 0;
}

.filter-group select {
  padding: 12px 16px;
  border: 1px solid #CFDEF0;
  border-radius: 10px;
  font-size: 14px;
  color: #464860;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23464860' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.filter-group select:hover {
  border-color: #0654E6;
}

.filter-group select:focus {
  outline: none;
  border-color: #0654E6;
  box-shadow: 0 0 0 3px rgba(6, 84, 230, 0.1);
}

.clear-filters-btn {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #EF4444;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #EF4444;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clear-filters-btn:hover {
  background: #EF4444;
  color: #fff;
}

/* Results count */
.samples-results-count {
  text-align: center;
  font-size: 14px;
  color: #64748B;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .samples-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    min-width: 100%;
  }

  .clear-filters-btn {
    width: 100%;
  }
}

/* Samples CTA Section */
.samples-cta {
  padding: 0 0 80px;
}

.samples-cta-wrapper {
  padding: 50px 0;
  border-radius: 8px;
  background-color: #117BD4;
  background-image: url('../../assets/images/our-average-bg.webp');
  background-repeat: no-repeat;
  background-position: bottom right;
  position: relative;
}

.samples-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.samples-cta-wrapper p {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  color: #FFF;
  text-align: center;
}

.samples-cta-btn {
  background-color: #FFF;
  border-radius: 100px;
  padding: 13px 30px;
  max-width: max-content;
  text-align: center;
  position: relative;
  color: #117BD4;
  font-weight: 500;
  font-size: 18px;
  display: block;
  line-height: 24px;
  white-space: nowrap;
  transition: all ease 0.1s;
}

.samples-cta-btn:hover {
  transform: scale(1.03);
}

.samples-cta-btn::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 100px;
  animation-name: sampleCtaAnimation;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes sampleCtaAnimation {
  0% {
    box-shadow: 0 0 0 0px #fff;
  }
  100% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}

.samples-cta-vector {
  position: absolute;
  bottom: -26px;
  left: -30px;
}

@media (max-width: 991px) {
  .samples-cta-inner {
    flex-wrap: wrap;
    gap: 25px;
  }
}

@media (max-width: 575px) {
  .samples-cta-wrapper p {
    font-size: 24px;
    line-height: 32px;
  }

  .samples-cta-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}
/* Example Work Card */
.example-work-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
  max-width: 1089px;
  margin: auto;
  margin-top: 79px;
  justify-content: center;
 
}

.example-work-card {
  background: #FFFFFF;
border: 1px solid #CFDEF0;
  border-radius: 30px;
 box-shadow: 0px 0px 16px 0px #469FDF33;
position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  max-width: 310px;
  width: 100%;
}

.example-work-card:hover {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Card Header */
.example-card-header {
    display: flex;
    justify-content: center;
}

.example-category {
background: linear-gradient(180deg, #F8FCFF 0%, #E0EEFF 100%);
position: absolute;
  padding: 7px 10px;
  max-width: max-content;
  width: 100%;
  margin: auto;
  height: 26px;
  border: 1px solid #CFDEF0;
  border-radius: 100rem;
 display: none;
font-weight: 400;
 color: #464860;
font-size: 11px;
 
line-height: 100%;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;

  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top:-12px
}

/* Card Content */
.example-card-content {
  display: flex;
 padding: 39px 20px 15px;
  align-items: center;
  gap: 13px;
    border-radius: 30px 30px 0px 0px;
  overflow: hidden;
  text-align: left;
  background: linear-gradient(180deg, #F8FCFF 0%, #F5F5FF 100%);
}

.example-icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex:0 0 48px;
  box-shadow: 0px 3px 6.9px 0px #D1DAE2;

}
.example-icon::before{
  content:'';
  background-image: url('./images/pdf-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width:32px;
  height: 32px;
  display: flex;
}
.example-title {

font-weight: 500;

font-size: 14px;
leading-trim: NONE;
line-height: 140%;
 color: #464860;
vertical-align: middle;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;

}

/* Card Details */
.example-card-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 21px 21px 36px;
  border-top: 1px solid #E5E7EB;
 
}

.example-detail-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.detail-icon {
  font-size: 13px;
  line-height: 100%;
}

.detail-text {
 
font-weight: 400;
 
font-size: 13px;
 
line-height: 180%;
 color: #464860;

}

/* Card Actions */
.example-card-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.view-sample-example-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 37px;
  padding: 0 20px;
 
  background: transparent;
  border: 1px solid #0654E6;
  border-radius: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #0654E6;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
    max-width: calc(100% - 42px);
    width: 100%;
    margin: auto;
    cursor: pointer;

}

.view-sample-example-btn::before {
  content: '';
 
 display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('./images/eye-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease;
}

.view-sample-example-btn:hover {
  background: #0654E6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 84, 230, 0.3);
}

.view-sample-example-btn:hover::before {
  filter: brightness(0) invert(1);
}

/* Card Footer */
.example-card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
      background: linear-gradient(143deg, #E6F5FF 0%, #ededff85 100%);
  border-radius: 0 0 30px 30px;
}

.example-card-footer .footer-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
font-weight: 400;

font-size: 13px;

line-height: 180%;

text-decoration: underline;

color: #464860;
  transition: color 0.3s ease;
}

.example-card-footer .footer-link:hover {
  
text-decoration: none;
  color: #0654E6;
}
@media (max-width:575px){
  .example-work-cards-wrapper {
    margin-top: 59px;
    justify-content: center;
}
}

 
