.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;
    }
}



/* Section center */
.deck-section {
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Center heading */
.main-header {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #111;
    width: 100%;
}

/* Center grid */
.deck-grid {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

/* Animated 3D Card */
.cube-card {
    padding: 20px;
    border-radius: 20px;
    background: #f4f4f4;
    box-shadow: 
        8px 8px 20px rgba(0,0,0,0.25),
        -8px -8px 20px rgba(255,255,255,0.8);
    transition: 0.3s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    text-align: center;
}

/* Hover animation */
.cube-card:hover {
    transform: translateY(-12px) rotateX(8deg) rotateY(-8deg) scale(1.05);
    box-shadow:
        0 20px 35px rgba(0,0,0,0.25),
        inset -5px -5px 15px rgba(255,255,255,0.8);
}

/* Image center */
.cube-image {
    margin: 0 auto;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: inset 3px 3px 10px rgba(0,0,0,0.1),
                inset -3px -3px 10px rgba(255,255,255,1);
}

.cube-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.4s ease;
}

/* Zoom image on hover */
.cube-card:hover .cube-image img {
    transform: scale(1.07);
}

/* Tag center */
.cube-tag {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 14px;
    background: #111;
    color: #fff;
    border-radius: 40px;
    font-size: 12px;
}

/* Title + price */
.cube-title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 14px;
    color: #222;
}

.cube-price {
    font-size: 18px;
    font-weight: 600;
    margin-top: 6px;
    color: #444;
}

/* Responsive Center */
@media (max-width: 992px) {
    .deck-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .deck-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .deck-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* Section Background */
.management-section {
    padding: 60px 0;
}

/* Card Style */
.management-box {
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

/* Text Section */
.management-text h2 {
    font-size: 28px;
    font-weight: 700;
}
.management-text p {
    font-size: 16px;
    margin-top: 10px;
}

/* Image */
.management-img img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width: 767px) {
    .management-box {
        flex-direction: column;
        text-align: center;
    }
    .management-img img {
        width: 100%;
        height: auto;
        max-height: 260px;
    }
}




/* private-label page css */

.split-section {
    padding: 80px 20px;
}

.split-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.split-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.split-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.split-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.split-content ul {
    margin-top: 20px;
    padding-left: 18px;
}

.split-content ul li {
    margin-bottom: 10px;
}

/* ================= VISUAL PROCESS ================= */
.process-section {
    padding: 90px 20px;
    color: #fff;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.process-header h2 {
    font-size: 34px;
}

.process-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.process-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.process-card div {
    padding: 20px;
}

.process-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* ================= IMAGE WHY PARTNER ================= */
.why-image-section {
    padding: 90px 90px;
    background: #f6f6f6;
    margin-bottom: 0 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.why-image-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.why-image-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.why-overlay h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
/* ================= WHITE CTA ================= */
.cta-white {
    background: #ffffff;
    padding: 70px 20px 40px; /* bottom less to avoid footer gap */
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: auto;
}

.cta-white h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 15px;
}

.cta-white p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* CTA BUTTON */
.cta-btn-white {
    display: inline-block;
    padding: 14px 40px;
    background: #7a1f2b; /* wine color */
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(122, 31, 43, 0.25);
}

.cta-btn-white:hover {
    background: #5e1721;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(122, 31, 43, 0.35);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {
    .cta-white h2 {
        font-size: 26px;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .split-container {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-image-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .split-content h2 {
        font-size: 26px;
    }
}



/* ================= LOGISTICS PAGE ================= */
.logistics-section {
    padding: 80px 20px;
    background: #ffffff;
}

.logistics-container {
    max-width: 1200px;
    margin: auto;
}

/* INTRO */
.logistics-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.logistics-intro h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.logistics-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* ================= 3D SERVICE CARDS ================= */
.logistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.logistics-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.logistics-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.logistics-img {
    height: 220px;
    overflow: hidden;
}

.logistics-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.logistics-card:hover img {
    transform: scale(1.1);
}

.logistics-content {
    padding: 30px;
}

.logistics-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.logistics-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.logistics-content ul {
    padding-left: 18px;
    margin-top: 15px;
}

.logistics-content ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* ================= GLOBAL SUPPORT STRIP ================= */
/* ================= GLOBAL STRIP ================= */
.global-strip {
    background: #f3f4f6;
    padding: 80px 20px 70px;
}

.global-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.global-header {
    text-align: center;
    margin-bottom: 50px;
}

.global-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1f1f1f;
}

.global-header p {
    max-width: 700px;
    margin: 10px auto 0;
    font-size: 16px;
    color: #555;
}

/* GRID */
.global-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* CARD */
.global-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.global-item:hover {
    transform: translateY(-12px) rotateX(6deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ICON */
.global-item i {
    font-size: 34px;
    color: #7a1f2b;
    margin-bottom: 15px;
    transition: transform 0.4s;
}

.global-item:hover i {
    transform: translateZ(25px);
}

/* TEXT */
.global-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1f1f1f;
}

.global-item span {
    font-size: 13px;
    color: #666;
}


/* ================= WHY CHOOSE ================= */
.why-choose {
    padding: 80px 20px 50px;
}

.why-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.why-box:hover {
    transform: translateY(-6px);
}

.why-box h4 {
    font-size: 16px;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .logistics-grid {
        grid-template-columns: 1fr;
    }
    .global-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .logistics-intro h2 {
        font-size: 26px;
    }
    .global-grid {
        grid-template-columns: 1fr;
    }

    .global-header h2 {
        font-size: 26px;
    }
}




/* ================= BLOG SECTION ================= */
.blog-section {
    padding: 70px 20px;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* BLOG CARD */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.blog-img {
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.blog-content {
    padding: 22px;
    flex-grow: 1;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.blog-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* READ MORE */
.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #7a1f2b;
    text-decoration: none;
    transition: 0.3s;
}

.read-more:hover {
    color: #000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-img {
        height: 200px;
    }
}