﻿/* ===================== BANNER ===================== */
.bulk-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: clamp(200px, 40vw, 480px);
    object-fit: cover;
    object-position: center top; 
    display: block;
}

.banner-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 1px; 
    padding: 0 clamp(16px, 8vw, 24px) 0 16px;
    box-sizing: border-box;
}

.banner-content {
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    width: clamp(260px, 42vw, 600px);
    text-align: center;
}

    .banner-content h1 {
        font-size: clamp(20px, 4vw, 50px);
        line-height: 1.2;
        margin: 0;
    }

    .banner-content p {
        font-size: clamp(9px, 2vw, 15px);
        margin-top: 1px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

.banner-btn {
    width: clamp(260px, 42vw, 600px);
    display: flex;
    justify-content: center;
}

.bulk-btn {
    background-color: #6E3FA3;
    color: #fff;
    border: none;
    padding: clamp(8px, 1.6vw, 17px) clamp(14px, 3vw, 22px);
    font-size: clamp(11px, 1.4vw, 16px);
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .bulk-btn:hover {
        background-color: #6E3FA3;
        color: white;
        transform: scale(1.05);
    }
    


/* ===================== GROWTH SECTION ===================== */
.growth-section h2 {
    text-align: center;
    /*    font-weight: bold;
    margin-bottom: 5px;*/
    font-size: clamp(29px, 3vw, 32px);
    font-size: clamp(30px, 3.0vw, 44px);
    line-height: clamp(38px, 5vw, 50px);
    letter-spacing: 0.05em;
}

    
    .growth-section h2 br.mobile-break {
        display: none !important;
    }

@media (max-width: 576px) {
    .growth-section h2 br.mobile-break {
        display: block !important;
    }
}

/*.growth-section .subtitle {
    color: gray;
    margin-bottom: 30px;
    font-size: clamp(13px, 1.4vw, 16px);
}*/

.growth-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

    .growth-card img {
        width: 100%;
/*        height: clamp(180px, 30vw, 350px);*/
        object-fit: cover;
        display: block;
        transition: 0.3s;
    }

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: clamp(10px, 2vw, 20px);
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

    .card-overlay h3 {
        font-size: clamp(19px, 3vw, 32px);
        font-weight: bold;
    }

    .card-overlay p {
        margin: 0;
        font-size: clamp(11px, 1.4vw, 15px);
    }

.growth-card:hover img {
    transform: scale(1.05);
}

/* ===================== PROCESS SECTION ===================== */
.process-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 40px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    row-gap: 30px;
}

    .process-wrapper::before {
        content: "";
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
        height: 4px;
        background: #ddd;
        z-index: 0;
    }

.process-line {
    position: absolute;
    top: 30px;
    left: 0;
    height: 4px;
    width: 0%;
    max-width: 100%;
    background: linear-gradient(90deg, #7da0c9, #5a3fc0);
    transition: width 1s ease-in-out;
}

.step {
    position: relative;
    text-align: center;
    width: 25%;
    z-index: 1;
}

    .step p {
        margin-top: 15px;
        font-size: clamp(11px, 1.4vw, 14px);
    }

.circle {
    width: clamp(44px, 6vw, 60px);
    height: clamp(44px, 6vw, 60px);
    line-height: clamp(44px, 6vw, 60px);
    border-radius: 10px;
    background: #fff;
    border: 2px solid #ccc;
    margin: auto;
    font-size: clamp(15px, 2vw, 20px);
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .circle::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: #6E3FA3;
        z-index: -1;
        transition: height 1s ease-in-out;
    }

    .circle.filled {
        color: #fff;
        transition: 0.3s ease;
    }

    .circle.fill-animation::after {
        height: 100%;
    }

.process-btn {
    background-color: #6E3FA3;
    color: #fff;
    border: none;
    padding: 12px 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    transition: 0.3s ease;
    font-size: clamp(13px, 1.5vw, 16px);
}

    .process-btn:hover {
        background-color: #6E3FA3;
        color: white;
        transform: scale(1.05);
    }

/* ===================== BULK ORDER FORM ===================== */
.bulk-form-section {
    display: none;
    background-image: url("/Images/BulkOrderImages/shopscrub.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: clamp(16px, 4vw, 40px);
    border-radius: 10px;
    opacity: 1;

    .Form-header {
        margin-bottom: 20px;
        font-size: clamp(18px, 2.5vw, 28px);
        text-align: center;
    }

    .bulk-form input {
        width: 100%;
        margin-bottom: 15px;
        padding: 10px;
        border: 1px solid #ccc !important;
        border-radius: 6px;
        font-size: clamp(13px, 1.4vw, 15px);
        accent-color: #6E3FA3;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

        .bulk-form input:focus {
            outline: none;
            border-color: #6E3FA3 !important;
            box-shadow: 0 0 0 3px rgba(110, 63, 163, 0.15);
        }

    .submit-btn {
        background: #6E3FA3;
        color: #fff;
        padding: 10px 20px;
        display: block;
        margin: 0 auto;
        transition: 0.3s ease;
    }

        .submit-btn:hover {
            background: #6E3FA3;
            color: white;
            padding: 10px 20px;
            transform: scale(1.05);
        }
}
    /* ===================== BREAKPOINTS ===================== */
    /* Tablets and below: process steps wrap into 2 columns */
    @media (max-width: 768px) {
        .step {
            width: 45%;
        }

        .process-wrapper::before,
        .process-line {
            display: none;
        }
    }
    /* Mobile: everything stacks single column */
    @media (max-width: 576px) {
        .step {
            width: 100%;
        }

        .process-wrapper {
            flex-direction: column;
            gap: 20px;
        }
    }

    @media (max-width: 576px) {
        .banner-img {
            height: clamp(320px, 75vw, 380px);
            object-position: center top; /* mobile var pan top var alignment */
        }

        .banner-content-wrap {
            align-items: flex-start;
            justify-content: center;
            text-align: left;
            padding: 4px 10px;
            width: 84%;
            margin-top: 96px;
            gap: clamp(1px, 1vw, 28px);
        }

        .banner-content {
            width: clamp(220px, 78vw, 320px);
            text-align: left;
            margin-left: 0;
        }

            .banner-content p {
                font-size: clamp(9px, 2vw, 14px);
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

        .banner-btn {
            justify-content: flex-start;
        }

        .banner-content h1 {
            font-size: clamp(28px, 4vw, 50px);
            line-height: 1.2;
            margin: 0;
        }

        .growth-section h2 {
            /*            font-weight: bold;
            margin-bottom: 5px;*/
            /*            font-size: clamp(29px, 3vw, 32px);*/
            font-size: clamp(23px, 3.0vw, 44px);
            line-height: clamp(34px, 5vw, 50px);
            letter-spacing: 0.05em;
        }
        .subtitle {
            font-size: 17px;
            line-height: 24px;
            text-align: center;
            color: #4a4646;
        }

    }
    /* Default (tablet & desktop): show desktop image, hide mobile image */
    .banner-img-mobile {
        display: none;
    }

    .banner-img-desktop {
        display: block;
    }
/* Mobile: show mobile image, hide desktop image */
@media (max-width: 576px) {
    .banner-img-mobile {
        display: block;
        width: 450px;
        height: auto;
        object-fit: cover;
    }

    .banner-img-desktop {
        display: none;
    }
    .process-section h2 {
        font-size: clamp(23px, 3.0vw, 44px);
        line-height: clamp(34px, 5vw, 50px);
        letter-spacing: 0.05em;
    }
}
.subtitle {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #4a4646;
}
@media (max-width: 380px) {
    .subtitle {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
        color: #4a4646;
    }
}