/* =========================
   SECTION BACKGROUND
========================= */

.printing-services,
.design-services{
    background: #ffffff;
    padding: 60px 0;
}

/* HEADER SPACING */
body.homepage .printing-services{
    margin-top: 115px;
}

/* =========================
   TITLE STYLE
========================= */

.printing-services h2,
.design-services h2{
    font-size: 32px;
    font-weight: 700;
    color: #f15a00; /* 🔥 updated */
}

.printing-services p,
.design-services p{
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.design-services .product{
    border: 1px solid #f1f1f1;
}

/* =========================
   LOAD MORE BUTTON
========================= */

#loadMoreBtn,
#loadMoreDesignBtn{
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    color: #fff;
    margin-top: 20px;
    border: none;
    transition: all 0.3s ease;
}

#loadMoreBtn:hover,
#loadMoreDesignBtn:hover{
    transform: translateY(-2px);
    border: none;
    color: #fff;
    box-shadow: none !important;
}

/* 🔥 Bootstrap override (IMPORTANT) */
#loadMoreBtn, #loadMoreDesignBtn.btn-primary {
    --bs-btn-border-color: transparent;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-border-color: transparent;
    --bs-btn-focus-shadow-rgb: none;
}

/* =========================
   PRODUCT GRID
========================= */

.productWrap{
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 25px;
}

/* ONLY PRINTING HIDE */
.printing-services .productWrap .product:nth-child(n+5){
    display: none;
}

/* ONLY DESIGN HIDE */
.design-services .productWrap .product:nth-child(n+5){
    display: none;
}

/* =========================
   PRODUCT CARD
========================= */

.product{
    position: relative;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    width: 100%;
    min-width: 0;
    height: 100%;
}

.product:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE */

.product a{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5ef;  /* 🔥 updated */
    aspect-ratio: 1/1;
    padding: 12px;
    border-radius: 14px 14px 0 0;
    border: none;
    position: relative;
}

.product img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.product a::after{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(241,90,0,0.08), transparent 70%); /* 🔥 updated */
    opacity: 0;
    transition: 0.4s;
	
}

.product:hover a::after{
    opacity: 1;
}

/* =========================
   DETAILS
========================= */

.product-dtls{
    padding: 15px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    flex: 1;
}

.product-name{
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.product-dtls p{
    font-size: 13px;
    color: #777;
    margin-bottom: 4px !important;
}

.pprice{
    font-weight: 800;
    font-size: 17px;
    color: #166534;
    padding: 0px 0px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 6px;
}

.product:hover .pprice{
    transition: all 0.25s ease;
}

/* UNIT TEXT */
.unit-text{
    font-size: 12px;
    color: #777;
    font-weight: 500;
    margin-left: 1px;
    position: relative;
    top: 0;
}

/* =========================
   BUTTON SECTION
========================= */

.card-actions{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: auto;
    gap: 8px;
}

.card-actions > div:first-child{
    display: flex;
    gap: 8px;
    align-items: stretch;
}

/* BUTTON BASE */

.card-actions .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
    border-radius: 8px;
    white-space: nowrap;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    min-height: 40px;
}

/* 🔥 DEFAULT (DESKTOP) */
.more-btn .mobile-text{
    display: none;
}

/* MORE BUTTON */

.card-actions .btn-outline-primary{
    background: #ffffff;
    color: #f15a00; /* 🔥 updated */
    border: 2px solid #f15a00; /* 🔥 updated */
}

.card-actions .btn-outline-primary:hover{
    background: #f15a00; /* 🔥 updated */
    color: #fff;
}

/* ORDER BUTTON */

.order-btn{
    background: #f15a00 !important; /* 🔥 updated */
    color: #fff !important;
}

.order-btn:hover{
    background: #d84300 !important; /* 🔥 updated */
}

/* =========================
   ICON BUTTONS
========================= */

.contactInfo{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.contactInfo .btn,
.card-actions .btn{
    transition: all 0.25s ease;
}

.contactInfo .btn{
    height: 40px;
    padding: 0;
    border: 1px solid #e5e7eb;
}

/* PHONE */

.contactInfo .btn-outline-primary{
    background: #ffffff;
    color: #f15a00; /* 🔥 updated */
    border: 2px solid #f15a00; /* 🔥 updated */
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.contactInfo .btn-outline-primary:hover{
    background: #f15a00; /* 🔥 updated */
    color: #fff;
    border: 2px solid #f15a00;
}

/* WHATSAPP */

.whatAppBtn{
    background: #25D366 !important;
    color: #fff !important;
}

.whatAppBtn:hover{
    background: #1ebe5d !important;
}

.whatAppBtn i{
    color: #fff;
}

/* =========================
   EXTRA
========================= */

.product::before{
    content: "Popular";
    position: absolute;
    background: #f15a00; /* 🔥 updated */
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    top: 12px;
    left: 12px;
    border-radius: 6px;

    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
    z-index: 2;
}

.product:hover::before{
    opacity: 1;
    transform: translateY(0);
}

/* DESIGN LINE */

.design-services::before{
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #f15a00; /* 🔥 updated */
    margin: 0 auto 20px;
    border-radius: 10px;
}

.card-actions .btn:hover,
.contactInfo .btn:hover{
    border-color: #f15a00 !important; /* 🔥 updated */
}

/* 🔥 FINAL FIX */

.design-services .order-btn{
    background: #f15a00 !important;
    color: #fff !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* default (desktop) */
.mobile-btn-text{
    display: none;
    font-size: 12px;
    font-weight: 600;
}










/* MOBILE */
@media (max-width:768px){

    /* SECTION */
    .printing-services,
    .design-services{
        padding: 40px 0;
    }

    body.homepage .printing-services{
        margin-top: 40px !important;   /* small gap only */
    }
	
	
	 .contactInfo .btn i{
        display: none !important;
    }
	
	/* 🔥 SECTION DIFFERENT BACKGROUND (MOBILE ONLY) */

.printing-services{
    background: #fff7f2;   /* light orange */
    border-top: 1px solid #fde2d3;
    border-bottom: 1px solid #fde2d3;
}

.design-services{
    background: #f8fafc;   /* light grey */
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
	
	.pprice{
    font-weight: 800;
	font-size: 17px;	/* 🔥 extra bold */
    color: #166534;
    padding: 0px 0px;
    border-radius: 6px;
    display: inline-block;
	font-weight: 800;
    margin-bottom: 10px; /* 🔥 balanced gap */
}
	.product-name{
    font-size: 18px;
    font-weight: 700;   /* 🔥 equal strength */
}
	
	
	.main-content{
        padding-top: 10px;
    }

	body{
        padding-bottom: 80px;
    }

    /* TITLE */
    .printing-services h2,
    .design-services h2{
        font-size: 26px;
    }
	
	.order-btn{
        flex: 1;
    }

    .printing-services p,
    .design-services p{
        font-size: 16px;
        margin-bottom: 25px;
        
    }

    /* GRID */
    .productWrap{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 10px;

    padding: 0 12px;   /* 🔥 LEFT RIGHT GAP FIX */
	}	
	
	

    /* CARD */
    .product{
    border-radius: 14px;
    margin-bottom: 12px;
	background: #ffffff;

    border: 1.5px solid #f0cbb5;   /* 🔥 stronger but soft */
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
	}

	/* 🔥 subtle divider effect */
	.product + .product{
		margin-top: 8px;
	}

	


    .product:hover{
        transform: none; /* 🔥 disable heavy hover for mobile */
    }

    /* IMAGE */
    .product a{
        aspect-ratio: 1/1;
        padding: 10px;
		
    }

    /* DETAILS */
    .product-dtls{
        padding: 16px;
    }

    

    .product-dtls p{
        font-size: 16px;
    }

    

    /* BUTTON SECTION */
    .card-actions{
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .card-actions > div:first-child{
        width: 100%;
        display: flex;
        gap: 8px;
    }

    .card-actions .btn{
    flex: 1;
    height: 42px;
    font-size: 15px;   /* 🔥 bigger */
		}
    

  

    /* LOAD MORE */
    #loadMoreBtn,
	#loadMoreDesignBtn{
    width: 90%;
    font-size: 18px;   /* 🔥 bigger */
	}
	


    .more-btn .desktop-text{
        display: none;
    }

    .more-btn .mobile-text{
        display: inline;
    }
.card-actions > div:first-child .btn{
    flex: 1;
}



.product:last-child{
    margin-bottom: 20px;
}
/* ALL BUTTON TEXT SAME */
    .card-actions .btn,
    .contactInfo .btn{
        font-size: 16px !important;
        font-weight: 600 !important;
    }
	/* 🔥 FIX INNER TEXT (SPAN ISSUE) */
    .contactInfo .btn span{
        font-size: 15px !important;
        font-weight: 600 !important;
    }



/* 🔥 STROKE VISIBILITY FIX */
    .contactInfo .btn-outline-primary{
        border: 2px solid #ff6a00 !important;
    }
	
	.main-header{
    background: linear-gradient(135deg, #F24300, #ff6a00);
}


.contactInfo .btn{
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 42px;

    font-size: 15px !important;
    font-weight: 600 !important;

    white-space: nowrap;
}

.mobile-btn-text{
    display: inline;
}

}

























/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonials{
    background: linear-gradient(180deg,#fff7f0,#fdf1e6);
        padding: 80px 0 90px;

    margin-bottom: 0 !important;
    position: relative;
}

/* REMOVE GAP WITH FOOTER */
footer{
    margin-top: 0 !important;
	padding-top: 30px;   /* 🔥 little more space */

}

/* =========================
   MAIN CARD
========================= */


.testicont{
    background: #fffdfb; /* 🔥 slight warm white */
    border: 1px solid #ffe6d6; /* 🔥 softer border */
    padding: 30px 25px;
    max-width: 650px;
    margin: auto;
    text-align: center;
    margin-bottom: 10px;

    border-radius: 20px;

    box-shadow: 0 10px 25px rgba(241,90,0,0.08); /* 🔥 orange soft shadow */

    transition: all 0.3s ease;
}

.testicont:hover{
    transform: translateY(-6px);
}



/* =========================
   TOP RATING LINE
========================= */

.overallRate{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;

    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.overallRate img{
    width:16px;
    height:16px;
}

/* ⭐ STARS */
.customer-review-stars{
    display: inline-flex;
    gap: 4px;
    color: #ffb400;
    font-size: 14px;
}

/* ⭐ RATING NUMBER */
.overallRate small{
    background: #ff6a00;
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
}

/* TRUST TEXT */
.trust-text{
    margin-left: 4px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}



/* =========================
   STAR BELOW NAME
========================= */

.starRating{
    display: flex;
    justify-content: center;
    margin-bottom: 12px;   /* 🔥 more breathing space */
}

.starRating .customer-review-stars{
    font-size: 16px;
}

/* =========================
   REVIEW TEXT
========================= */

.feedback{
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 15px;
}

/* =========================
   BUTTON
========================= */

.view-review-btn{
	all: unset;   
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;

    box-shadow: 0 10px 25px rgba(255,106,0,0.4);
    transition: all 0.3s ease;
}

.view-review-btn:hover{
    background: #F24300;
	color: #fff !important;   /* 🔥 FORCE WHITE TEXT */
    transform: translateY(-2px);
}

/* =========================
   SWIPER ARROWS
========================= */

.swiper-button-next,
.swiper-button-prev{
    color: #ff6a00 !important;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
	top: 50% !important;
	transform: translateY(-50%);
    transition: 0.3s;

}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background: #ff6a00;
    color: #fff !important;
}

.swiper-button-next{
    right: 20px !important;
}

.swiper-button-prev{
    left: 20px !important;
}


.testicont .name{
    font-size: 19px;
    font-weight: 800;   /* 🔥 STRONG BOLD */
    color: #000;        /* 🔥 full black */
    margin: 12px 0;
	margin-bottom: 8px;
}


/* =========================
   FORCE CENTER ALIGN ALL SLIDES
========================= */

.testiSlider .swiper-wrapper{
    align-items: center;
}

.testiSlider .swiper-slide{
    display: flex;
    justify-content: center;
}

.testiSlider{
    padding: 30px 0;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 16px;
    font-weight: bold;
}



@media (max-width:768px){
    .testicont{
        padding: 25px 18px;
    }

    .feedback{
        font-size: 14px;
    }
	.trust-text{
		font-size: 13px;
    }
	
	.overallRate{
		font-size: 13px;
    }
	.testicont{
        background: #fffefc; /* 🔥 even lighter */
        box-shadow: 0 6px 16px rgba(241,90,0,0.06); /* 🔥 very soft */
    }
}