.category-box {
    text-align: center;
    padding: 15px;
}

.catee {
    text-align: center !important;
}

.category-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .25s;
}

.category-box img:hover {
    transform: scale(1.03);
}

.category-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: #222;
}

@media (max-width:480px) {
    .category-box img {
        height: 160px;
    }

    .category-name {
        font-size: 15px;
    }
}



.text-cent {
    display: block;
    width: 100%;
    text-align: center !important;
    margin: 0 auto;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* CARD */
.product-card {
    width: 250px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s, box-shadow 0.4s;
    perspective: 1000px;
    position: relative;
}

.product-card:hover {
    transform: rotateY(10deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* IMAGE */
.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotateZ(1deg);
}

/* INFO */
.product-info {
    padding: 15px;
    text-align: center;
}

.category-label {
    display: inline-block;
    background: #E44D26;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 5px 0;
    color: #333;
}

.product-price {
    font-weight: bold;
    color: #E44D26;
    margin-bottom: 10px;
}

.btn-view {
    display: inline-block;
    padding: 6px 15px;
    background: #333;
    color: #fff;
    border-radius: 30px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-view:hover {
    background: #E44D26;
}

/* VIEW ALL BUTTON */
.btn-view-all {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-view-all:hover {
    background: #E44D26;
    color: #fff;
}


.customer {
    display: block;
    width: 100%;
    text-align: center !important;
    margin: 0 auto;
}

.testimonial-card {
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    border-radius: 20px;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.testimonial-message {
    color: #555;
    font-size: 0.95rem;
}

.testimonial-name {
    color: #333;
    font-weight: bold;
}

.testimonial-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 5px;
    background: linear-gradient(90deg, #E44D26, #FF9900);
    border-radius: 5px;
}




/* TIMELINE WRAPPER */
.timeline {
    position: relative;
    padding: 10px 0;
    width: 90%;
    margin: auto;
}

/* HEADING */
.timeline-heading {
    font-weight: 700;
    display: block;
    font-size: 60px;
    color: #2d3e50;
    text-align: center !important;
}

/* CENTER LINE */
.timeline:before {
    content: "";
    position: absolute;
    width: 4px;
    background: #1d8cf8;
    top: 120px;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 4px;
}

/* TIMELINE ITEM */
.timeline-item {
    width: 50%;
    padding: 1px 40px;
    position: relative;
}

/* LEFT / RIGHT POSITIONING */
.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

/* CONNECTOR DOT */
.timeline-item:before {
    content: "";
    position: absolute;
    top: 30px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid #1d8cf8;
    border-radius: 50%;
    z-index: 10;
}

.timeline-item.left:before {
    right: -10px;
}

.timeline-item.right:before {
    left: -10px;
}

/* CONTENT BOX */
.timeline-content {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

/* HOVER EFFECT (3D feel) */
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* YEAR BADGE */
.timeline-content .year {
    background: #1d8cf8;
    color: #fff;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(29,140,248,0.4);
}

/* TITLE */
.timeline-content h3 {
    margin-top: 5px;
    font-size: 20px;
    font-weight: 700;
    color: #2d3e50;
}

/* DESCRIPTION */
.timeline-content p {
    font-size: 14px;
    margin-top: 10px;
    color: #555;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {  
    .timeline:before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        padding-left: 50px;
    }

    .timeline-item:before {
        left: 18px;
    }

    /* content align normal on mobile */
    .timeline-item.left,
    .timeline-item.right {
        text-align: left;
        left: 0;
    }
}
