.steel-auction-hero{
    padding:100px 0;
    background:#f5faff;
    overflow:hidden;
}

.auction-hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#eaf4ff;
    color:#2f8be6;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:25px;
}

.auction-hero-content h1{

    font-size:52px;
    line-height:1.2;
    color:#163b65;
    margin-bottom:25px;
}

.auction-hero-content h1 span{

    color:#2f8be6;
}

.hero-text{

    font-size:17px;
    line-height:30px;
    color:#5d6b7d;
    margin-bottom:20px;
}

.hero-buttons{

    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-primary{

    background:#2f8be6;
    color:#fff;
    padding:15px 34px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
}

.btn-primary:hover{

    background:#1b70c2;
}

.btn-secondary{

    border:2px solid #2f8be6;
    color:#2f8be6;
    padding:15px 34px;
    border-radius:40px;
    text-decoration:none;
}

.auction-hero-image{

    position:relative;
}

.auction-hero-image img{

    width:100%;
    border-radius:25px;
    box-shadow:0 25px 70px rgba(0,0,0,.15);
}

.floating-card{

    position:absolute;
    background:#fff;
    padding:15px 20px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    font-weight:600;
}

.card-one{

    top:20px;
    left:-40px;
}

.card-two{

    bottom:50px;
    right:-30px;
}

.card-three{

    bottom:180px;
    left:-30px;
}

@media(max-width:991px){

.auction-hero-wrapper{

grid-template-columns:1fr;
}

.auction-hero-content{

order:2;
}

.auction-hero-image{

order:1;
}

.auction-hero-content h1{

font-size:40px;
}

.hero-buttons{

flex-wrap:wrap;
}

}

/*--------------------------------------------------------------
Latest Auctions
--------------------------------------------------------------*/

.steel-auctions-preview{

    padding:90px 0;

}

.section-heading{

    text-align:center;

    max-width:700px;

    margin:auto auto 60px;

}

.section-heading h2{

    font-size:42px;

    color:#163b65;

    margin:15px 0;

}

.section-heading p{

    color:#6d7785;

    line-height:28px;

}

.auction-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.auction-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    border:1px solid #e8eef6;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.35s;

}

.auction-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(47,139,230,.15);

}

.auction-status{

    display:inline-block;

    background:#eaf4ff;

    color:#2f8be6;

    padding:7px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

.auction-card h3{

    color:#163b65;

    margin-bottom:25px;

    font-size:24px;

}

.auction-meta{

    display:grid;

    gap:18px;

    margin-bottom:30px;

}

.auction-meta strong{

    display:block;

    color:#163b65;

    margin-bottom:4px;

}

.auction-meta span{

    color:#666;

}

.auction-btn{

    display:block;

    text-align:center;

    background:#2f8be6;

    color:#fff;

    padding:14px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.auction-btn:hover{

    background:#0d71d7;

    color:#fff;

}

.auction-view-all{

    text-align:center;

    margin-top:60px;

}

@media(max-width:1200px){

.auction-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.auction-grid{

grid-template-columns:1fr;

}

}

/*==================================================
Ecosystem - Clean Responsive Layout
==================================================*/

.tes-ecosystem{
    padding:110px 0;
    background:#f8fbff;
}

.tes-ecosystem .section-heading{
    max-width:760px;
    margin:0 auto 55px;
    text-align:center;
}

.tes-ecosystem .section-heading h2{
    margin:14px 0 12px;
}

.tes-ecosystem .section-heading p{
    max-width:680px;
    margin:0 auto;
}

/*
 * Desktop layout:
 *
 * Buyer          TechESteel          Seller
 * Facilitators   Referrers           Service Providers
 */
.ecosystem-wrapper{
    width:min(100%,1120px);
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    grid-template-areas:
        "buyer center seller"
        "facilitator referrer service";

    gap:32px 42px;
    align-items:stretch;
}

.ecosystem-center{
    grid-area:center;

    width:240px;
    height:240px;
    align-self:center;
    justify-self:center;

    border-radius:50%;
    background:linear-gradient(145deg,#3897ef,#1977d8);
    color:#fff;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:30px;
    text-align:center;

    box-shadow:0 24px 55px rgba(47,139,230,.25);
}

.ecosystem-logo{
    display:flex;
    justify-content:center;
    align-items:center;
}

.ecosystem-logo img{
    display:block;
    width:92px;
    height:auto;
    max-width:100%;
    margin:0 auto 16px;
}

.ecosystem-center h3{
    margin:0 0 8px;
    color:#fff;
    font-size:22px;
    line-height:1.2;
}

.ecosystem-center p{
    margin:0;
    color:rgba(255,255,255,.92);
    font-size:15px;
    line-height:1.5;
}

.ecosystem-item{
    position:relative;

    width:100%;
    min-height:235px;

    padding:30px 26px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    background:#fff;
    border:1px solid #e1ebf4;
    border-radius:20px;

    text-align:center;

    box-shadow:0 16px 36px rgba(25,88,145,.08);
    transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}

.ecosystem-item:hover{
    transform:translateY(-6px);
    border-color:#b8d9f5;
    box-shadow:0 24px 48px rgba(47,139,230,.14);
}

.ecosystem-item img{
    display:block;

    width:58px;
    height:58px;

    margin:0 auto 18px;

    padding:13px;

    object-fit:contain;

    border-radius:50%;
    background:#eef7ff;
}

.ecosystem-item h4{
    margin:0 0 12px;

    color:#163b65;

    font-size:18px;
    line-height:1.3;
}

.ecosystem-item p{
    margin:0;

    color:#657385;

    font-size:15px;
    line-height:1.65;
}

.ecosystem-item.buyer{
    grid-area:buyer;
}

.ecosystem-item.seller{
    grid-area:seller;
}

.ecosystem-item.facilitator{
    grid-area:facilitator;
}

.ecosystem-item.referrer{
    grid-area:referrer;
}

.ecosystem-item.service{
    grid-area:service;
}


/* Tablet */
@media(max-width:1050px){

    .tes-ecosystem{
        padding:90px 0;
    }

    .ecosystem-wrapper{
        width:min(100%,820px);

        grid-template-columns:repeat(2,minmax(0,1fr));
        grid-template-areas:
            "center center"
            "buyer seller"
            "facilitator service"
            "referrer referrer";

        gap:24px;
    }

    .ecosystem-center{
        width:220px;
        height:220px;
        margin-bottom:8px;
    }

    .ecosystem-item.referrer{
        width:calc(50% - 12px);
        justify-self:center;
    }
}


/* Mobile */
@media(max-width:700px){

    .tes-ecosystem{
        padding:72px 0;
    }

    .tes-ecosystem .section-heading{
        margin-bottom:38px;
    }

    .tes-ecosystem .section-heading h2{
        font-size:34px;
        line-height:1.15;
    }

    .ecosystem-wrapper{
        display:flex;
        flex-direction:column;
        gap:18px;
    }

    .ecosystem-center{
        order:0;

        width:190px;
        height:190px;

        margin:0 auto 8px;

        padding:24px;
    }

    .ecosystem-center h3{
        font-size:20px;
    }

    .ecosystem-center p{
        font-size:14px;
    }

    .ecosystem-item{
        width:100%;
        min-height:0;

        padding:26px 22px;
    }

    .ecosystem-item.buyer{
        order:1;
    }

    .ecosystem-item.seller{
        order:2;
    }

    .ecosystem-item.facilitator{
        order:3;
    }

    .ecosystem-item.referrer{
        order:4;
        width:100%;
    }

    .ecosystem-item.service{
        order:5;
    }
}

/*==================================================
Why Auctions
==================================================*/

.why-auctions{
    padding:100px 0;
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border:1px solid #e8eef6;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.3s;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#2f8be6;
    box-shadow:0 20px 40px rgba(47,139,230,.12);
}

.why-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#eaf4ff;
    color:#2f8be6;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    font-weight:bold;
}

.why-card h3{
    color:#163b65;
    margin-bottom:15px;
    font-size:22px;
}

.why-card p{
    color:#666;
    line-height:28px;
}

@media(max-width:991px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .why-grid{
        grid-template-columns:1fr;
    }
}