/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 06 2026 | 15:17:25 */
/* ===== Amazon Growth Section CSS ===== */
:root {
    --amz-primary: #f26522;
    --amz-dark: #111827;
    --amz-gray: #4b5563;
}

/* Left Text Content */
.amz-text-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 20px 0;
}

.amz-badge {
    display: inline-block;
    background-color: var(--amz-primary);
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.amz-subheading {
    color: var(--amz-primary);
    font-size: 13px;
    letter-spacing: 2px;
    margin: 0 0 12px 0;
    font-weight: 700;
    text-transform: uppercase;
}

.amz-heading {
    font-size: 40px;
    color: var(--amz-dark);
    line-height: 1.2;
    margin: 0 0 25px 0;
    font-weight: 800;
}

.amz-orange {
    color: var(--amz-primary);
}

.amz-desc {
    color: var(--amz-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 18px 0;
}

/* Right Graphic Section */
.amz-graphic-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.amz-circle-diagram {
    position: relative;
    width: 500px;
    height: 500px;
    max-width: 100%;
}

/* SVG Arrows Layer */
.amz-arrows-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Center Amazon Box */
.amz-center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.amz-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(242,101,34,0.35) 0%, rgba(242,101,34,0.1) 40%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.amz-box-svg {
    width: 170px;
    height: 170px;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.25));
    position: relative;
    z-index: 2;
}

/* Icon Items */
.amz-icon-item {
    position: absolute;
    text-align: center;
    z-index: 10;
    width: 130px;
    font-family: 'Inter', sans-serif;
}

.amz-icon-item p {
    font-size: 13px;
    font-weight: 700;
    color: var(--amz-dark);
    margin: 10px 0 0 0;
    line-height: 1.3;
}

.amz-icon-circle {
    width: 75px;
    height: 75px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(242,101,34,0.2);
    border: 1px solid rgba(242,101,34,0.15);
    transition: transform 0.3s ease;
}

.amz-icon-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(242,101,34,0.3);
}

.amz-icon-circle svg {
    width: 36px;
    height: 36px;
}

/* Positioning - 5 icons around the circle */
.amz-item-1 { /* Top */
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.amz-item-2 { /* Right */
    top: 30%;
    right: 0;
}

.amz-item-3 { /* Bottom Right */
    bottom: 5%;
    right: 8%;
}

.amz-item-4 { /* Bottom Left */
    bottom: 5%;
    left: 8%;
}

.amz-item-5 { /* Left */
    top: 30%;
    left: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .amz-heading { font-size: 34px; }
    .amz-circle-diagram {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 767px) {
    .amz-heading { font-size: 28px; }
    .amz-badge { font-size: 12px; padding: 6px 18px; }
    
    .amz-circle-diagram {
        width: 340px;
        height: 340px;
        margin: 30px auto 0;
    }
    
    .amz-center-box {
        width: 140px;
        height: 140px;
    }
    
    .amz-box-svg {
        width: 110px;
        height: 110px;
    }
    
    .amz-glow {
        width: 150px;
        height: 150px;
    }
    
    .amz-icon-item {
        width: 95px;
    }
    
    .amz-icon-circle {
        width: 55px;
        height: 55px;
    }
    
    .amz-icon-circle svg {
        width: 26px;
        height: 26px;
    }
    
    .amz-icon-item p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .amz-circle-diagram {
        width: 300px;
        height: 300px;
    }
}





