.view_all_btn{
  margin-top: 20px;
  text-transform: uppercase;
  background-color: #c21975;
  padding: 14px 33px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: inline-block;
  -webkit-transition: all 300ms ease-in-out 0ms;
  transition: all 300ms ease-in-out 0ms;
  border-radius: 50px;
  color: #fff;
}
.view_all_btn a{ 
  color: #fff;   
  text-transform: uppercase;
}
.view_all_btn:hover {
  background-color: #ff6699;
}

/************************************
.after-banner-section {
  background: #f86ca7; 
    border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
}

.after-banner-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.after-banner-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  padding: 15px;
  border-right: 2px solid rgba(255,255,255,0.3);
}

.after-banner-item:last-child {
  border-right: none;
}

.icon-wrap {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap img {
  width: 28px;
  height: 28px;
}

.text-wrap h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 5px;
}

.text-wrap p,
.text-wrap a {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

.arrow-link {
  margin-left: auto;
  font-size: 18px;
  color: #fff;
}

.arrow-link i {
  transition: transform 0.3s ease;
}

.arrow-link:hover i {
  transform: translateX(4px);
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .after-banner-list {
    flex-direction: column;
    gap: 20px;
  }

  .after-banner-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .after-banner-item:last-child {
    border-bottom: none;
  }
}
