/* 🔴 HERO SECTION */
.supplier-hero{
    background: linear-gradient(135deg,#11998e,#38ef7d);

    /* HEIGHT SMALL */
    padding: 45px 20px;

    position: relative;
    overflow: hidden;

    /* REMOVE BIG HEIGHT */
    min-height: 280px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT BOX */
.hero-content{
    position: relative;
    z-index: 2;

    max-width: 650px;

    margin: auto;
    text-align: center;

    /* SMALLER BOX */
    background: rgba(255,255,255,0.08);

    padding: 30px 30px;

    border-radius: 20px;

    backdrop-filter: blur(8px);
}

/* BADGE */
.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,0.2);
    color:#fff;
    padding:6px 16px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

/* TITLE */
.hero-title{
    color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
}

/* TEXT */
.hero-text{
    color:#fff;
    font-size:16px;
    line-height:1.6;
    opacity:0.95;
}

/* BUTTON */
.hero-btn{
    margin-top:22px;
    background:#fff;
    color:#198754;
    padding:12px 28px;
    border-radius:50px;
    font-weight:700;
    transition:0.3s;
    border:none;
}

/* 🔴 MOBILE TEXT FIX */
@media(max-width:768px){

    .hero-content{

        width: 100% !important;

        max-width: 100% !important;

        padding: 18px 10px !important;

        text-align: center;
    }

    /* TITLE */
    .hero-title{

        font-size: 22px !important;

        font-weight: 700;

        line-height: 1.5 !important;

        margin-bottom: 8px !important;

        white-space: normal !important;

        overflow-wrap: break-word !important;

        word-break: normal !important;

        width: 100%;
    }

    /* PARAGRAPH */
    .hero-text{

        font-size: 12px !important;

        line-height: 1.7 !important;

        width: 100%;

        max-width: 260px;

        margin: auto;

        white-space: normal !important;

        overflow-wrap: break-word !important;
    }

}
/* 🔴 SUPPLIER CARD */
.supplier-card{
    padding: 35px 25px;
    border-radius: 20px;
    color: #fff;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* HOVER EFFECT */
.supplier-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ICON BOX */
.icon-box{
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* CARD COLORS */
.card1{
    background: linear-gradient(135deg,#11998e,#38ef7d);
}

.card2{
    background: linear-gradient(135deg,#fc4a1a,#f7b733);
}

.card3{
    background: linear-gradient(135deg,#396afc,#2948ff);
}

/* MOBILE */
@media(max-width:768px){

    .supplier-card{
        padding: 30px 20px;
    }

}

/* 🔴 HOW IT WORKS SECTION */
.how-work-section{

    background: #f8fafc;
}

/* BADGE */
.work-badge{

    display: inline-block;

    background: #dcfce7;

    color: #15803d;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 15px;
}

/* TITLE */
.work-title{

    font-size: 42px;

    font-weight: 800;

    color: #111827;

    margin-bottom: 10px;
}

/* SUBTITLE */
.work-subtitle{

    color: #6b7280;

    font-size: 17px;
}

/* CARD COMMON */
.work-card{

    padding: 40px 25px;

    border-radius: 25px;

    position: relative;

    overflow: hidden;

    transition: 0.4s;

    height: 100%;

    color: #fff;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* DIFFERENT CARD COLORS */
.work-card1{

    background: linear-gradient(135deg,#11998e,#38ef7d);
}

.work-card2{

    background: linear-gradient(135deg,#ff512f,#f09819);
}

.work-card3{

    background: linear-gradient(135deg,#396afc,#2948ff);
}

/* HOVER */
.work-card:hover{

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* STEP NUMBER */
.step-number{

    position: absolute;

    top: 15px;

    right: 20px;

    font-size: 50px;

    font-weight: 800;

    color: rgba(255,255,255,0.15);
}

/* ICON */
.work-icon{

    width: 90px;

    height: 90px;

    background: rgba(255,255,255,0.18);

    margin: auto;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 40px;

    margin-bottom: 25px;

    backdrop-filter: blur(5px);
}

/* HEADING */
.work-card h4{

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 15px;

    color: #fff;
}

/* TEXT */
.work-card p{

    color: rgba(255,255,255,0.9);

    line-height: 1.7;

    margin-bottom: 0;
}

/* MOBILE */
@media(max-width:768px){

    .work-card{

        padding: 30px 20px;
    }

    .work-icon{

        width: 75px;
        height: 75px;
        font-size: 32px;
    }

}

/* 🔴 TERMS CARD IMPROVED */
.terms-card{

    background: linear-gradient(135deg,#ffffff,#f0fdf4);

    border-radius: 28px;

    padding: 30px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    border: 1px solid #dcfce7;

    position: relative;

    overflow: hidden;
}

/* TOP GLOW */
.terms-card::before{

    content: '';

    position: absolute;

    top: -80px;

    right: -80px;

    width: 180px;

    height: 180px;

    background: rgba(34,197,94,0.08);

    border-radius: 50%;
}

/* TERM ITEM */
.term-item{

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px 15px;

    margin-bottom: 15px;

    border-radius: 18px;

    background: rgba(255,255,255,0.7);

    transition: 0.3s;

    border: 1px solid #ecfdf5;

    position: relative;

    z-index: 2;
}

/* HOVER EFFECT */
.term-item:hover{

    transform: translateX(8px);

    background: #ffffff;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.term-item span{

    width: 55px;

    height: 55px;

    min-width: 55px;

    border-radius: 16px;

    background: linear-gradient(135deg,#16a34a,#4ade80);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    color: #fff;

    box-shadow: 0 8px 20px rgba(34,197,94,0.25);
}

/* TEXT */
.term-item p{

    margin: 0;

    font-size: 16px;

    font-weight: 600;

    color: #1f2937;

    line-height: 1.6;
}

/* MOBILE */
@media(max-width:768px){

    .terms-card{

        padding: 20px 15px;
    }

    .term-item{

        gap: 12px;

        padding: 14px 12px;
    }

    .term-item span{

        width: 45px;
        height: 45px;
        min-width: 45px;

        font-size: 18px;
    }

    .term-item p{

        font-size: 14px;
    }

}

/* 🔴 CTA SECTION */
.supplier-cta{

    background: linear-gradient(135deg,#11998e,#38ef7d);

    padding: 60px 20px;

    color: #fff;

    text-align: center;
}

.supplier-cta h3{

    font-size: 38px;

    font-weight: 800;

    margin-bottom: 15px;
}

.supplier-cta p{

    font-size: 17px;

    opacity: 0.95;

    margin-bottom: 30px;
}

/* BUTTON */
.cta-btn{

    display: inline-block;

    background: #fff;

    color: #198754;

    padding: 14px 35px;

    border-radius: 50px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s;
}

.cta-btn:hover{

    background: #111827;

    color: #fff;
}

/* MOBILE */
@media(max-width:768px){

    .terms-title{

        font-size: 30px;
    }

    .terms-card{

        padding: 15px 18px;
    }

    .term-item{

        align-items: flex-start;
    }

    .term-item p{

        font-size: 14px;
    }

    .supplier-cta h3{

        font-size: 28px;
    }

    .supplier-cta p{

        font-size: 14px;
    }

    .cta-btn{

        width: 100%;
    }

}

