
      
          .btn-group {
    margin-top: auto;
    display: flex;
    gap: 10px;
    padding: 10px 15px 15px;
}

.btn-custom {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #EE2F5A, #ff6a88);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.btn-custom:hover {
    background: linear-gradient(135deg, #ef355f, #380917);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 47, 90, 0.4);
    color: white;
}
.btn-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-custom:hover::before {
    left: 100%;
}

.section-title p {
    font-size: 24px;
    font-weight: 700;
    color: #e63946;
}

.section-title h3 {
    color: #666;
   
}

/* Hover */
.btn-custom:hover {
    linear-gradient(135deg, #EE2F5A, #000000);
  
}

/* CARD STRUCTURE */
.bxpp11 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* IMAGE */
.bxpp11 img {
    height: 200px;
    object-fit: contain;
}

/* TEXT */
.bxpp11 h3 {
    min-height: 48px;
}

.bxpp11 p {
    min-height: 24px;
    margin-bottom: 10px;
}

/* BUTTON COMMON */
.bxpp11 button {
    border: none;
    border-radius: 8px;
    padding: 10px;
    background: #ff3b5c;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

/* HOVER */
.bxpp11 button:hover {
    background: #e6003d;
}

/* CASE 1: BUTTONS WITHOUT GROUP (STACK FIX) */
.bxpp11 > button {
    width: 100%;
    margin-top: 5px;
}

/* CASE 2: BUTTONS WITH GROUP (SIDE BY SIDE FIX) */
.bxpp11 .btn-group {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.bxpp11 .btn-group button {
    flex: 1;
    width: 50%;
}

/* FORCE ALL BUTTONS TO BOTTOM */
.bxpp11 .btn-group,
.bxpp11 > button:last-child {
    margin-top: auto;
}

/* CARD FLEX */
.bxpp11 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* BUTTON RESET */
.bxpp11 button {
    border: none;
    border-radius: 8px;
    padding: 10px;
    background: #ff3b5c;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* FORCE BUTTONS IN ROW (EVEN WITHOUT .btn-group) */
.bxpp11 {
    gap: 5px;
}

/* TARGET LAST 2 BUTTONS */
.bxpp11 button {
    width: 48%;
}

/* WRAP BUTTONS AUTOMATICALLY */
.bxpp11 {
    flex-wrap: wrap;
}

/* FIX BUTTON ALIGNMENT */
.bxpp11 button:nth-last-child(2),
.bxpp11 button:last-child {
    display: inline-block;
}

/* FORCE ROW */
.bxpp11 button {
    display: inline-block;
}

/* ALIGN SIDE BY SIDE */
.bxpp11 button:nth-last-child(2) {
    margin-right: 4%;
}

/* PUSH BUTTONS TO BOTTOM */
.bxpp11 button:nth-last-child(2),
.bxpp11 button:last-child {
    margin-top: auto;
}

/* CARD FIX */
.bxpp11 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* TEXT AREA */
.bxpp11 h3 {
    min-height: 48px;
}

.bxpp11 p {
    margin-bottom: 10px;
}

/* BUTTON CONTAINER AUTO CREATE EFFECT */
.bxpp11 button {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 10px;
    background: #ff3b5c;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

/* FORCE BUTTON ROW */
.bxpp11 {
    justify-content: space-between;
}

/* BUTTON WRAP FIX */
.bxpp11 button {
    width: 48%;
}

/* ALIGN BOTH BUTTONS IN ONE ROW */
.bxpp11 button:nth-last-child(2),
.bxpp11 button:last-child {
    display: inline-block;
}

/* GAP BETWEEN BUTTONS */
.bxpp11 button:nth-last-child(2) {
    margin-right: 4%;
}

/* PUSH BUTTONS TO BOTTOM */
.bxpp11 button:nth-last-child(2),
.bxpp11 button:last-child {
    margin-top: auto;
}

/* HOVER */
.bxpp11 button:hover {
    background: #e6003d;
}
.para:hover{
    color:#EE2F5A;
    font-weight:500;
}
     
.testimonials {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #777;
    margin-bottom: 40px;
}

.testimonial-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.client-info h4 {
    font-size: 18px;
    margin: 0;
    color: #222;
}

.client-info span {
    font-size: 14px;
    color: #888;
}