/*award-button-code*/

.award-btn{
    display:inline-flex;
    align-items:center;
    background:#184d12;
    border-radius:40px;
    text-decoration:none;
    overflow:hidden;
    transition:all .3s ease;
    box-shadow:0 2px 5px rgba(0,0,0,.15);
}

.award-btn:hover{
    transform:translateY(-2px);
}

.icon-circle{
    width:58px;
    height:58px;
    background:#f5f5f5;
    border:2px solid #7c9b70;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:4px;
    flex-shrink:0;
}

.icon-circle i{
    font-size:32px;
    color:#a8c93a;
    font-weight:bold;
}

.btn-text{
    color:#ffffff;
    font-size:20px;
    font-weight:700;
    line-height:1.1;
    padding:0 25px 0 10px;
    text-align:center;
}
    
    .thick-arrow{
    font-size:34px;
    color:#a8c93a;
    font-weight:900;
    line-height:1;
}
    
.award-btn,
.award-btn:hover,
.award-btn:focus,
.award-btn:active{
    text-decoration:none !important;
}
    
    .award-btn *{
    text-decoration:none !important;
}

/*award-button-code*/


/* ==========================
   Home Page Circular Economy Awards
   Unique Classes (cea-)
========================== */

.cea-integrity-section{
    background:#ffffff;
}

.cea-title{
    font-size:24px;
    font-weight:700;
    color:#000;
    margin-bottom:15px;
}

.cea-subtitle{
    max-width:950px;
    margin:0 auto;
    font-size:16px;
    font-weight:600;
    line-height:1.4;
    color:#111;
}

.cea-point-wrap{
/*    margin-top:50px;*/
    max-width: 800px;   /* adjust as needed */
    margin: 40px auto 0;
    
}

.cea-point-item{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:35px;
}

.cea-icon-box{
    flex-shrink:0;
}

.cea-check-icon{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#0f6a4b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border:3px solid #0f6a4b;
    box-shadow:0 0 0 3px #d8e7df;
}

.cea-content{
    
    font-size:14px;
    line-height:1.45;
    color:#111;
    text-align: left;
}

.cea-content strong{
    font-weight:700;
}

.cea-learn-link{
    color:#1f7d63;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:all .3s ease;
}

.cea-learn-link:hover{
    color:#145842;
    text-decoration:none;
}

/* Mobile */

@media (max-width:768px){

    .cea-title{
        font-size:24px;
    }

    .cea-subtitle{
        font-size:18px;
    }

    .cea-content{
        font-size:16px;
    }

    .cea-check-icon{
        width:20px;
        height:20px;
    }

    .cea-learn-link{
        font-size:18px;
    }
}


/*countdown css*/

.early-countdown{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:10px;
    margin-bottom:20px;
}

.early-countdown span{
    background:#0d6efd;
    color:#fff;
    padding:8px 15px;
    border-radius:6px;
    font-size:15px;
    font-weight:500;
}

.early-countdown strong{
    font-size:20px;
    font-weight:700;
}

@media(max-width:576px){
    .early-countdown{
        gap:8px;
    }

    .early-countdown span{
        padding:6px 10px;
        font-size:13px;
    }

    .early-countdown strong{
        font-size:16px;
    }
}
/*countdown css*/
/*countdown premium css*/

.premium-countdown{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin:15px 0 25px;
    flex-wrap:wrap;
}

.count-box{
    width:85px;
    height:85px;
    background:linear-gradient(
        135deg,
        #d4af37 0%,
        #f7e7a3 50%,
        #c79a1d 100%
    );
    border-radius:10px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 6px 15px rgba(0,0,0,0.15);
    border:1px solid rgba(255,255,255,0.5);
    position:relative;
    overflow:hidden;
}

.count-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:40%;
    background:rgba(255,255,255,0.25);
}

.count-box span{
    font-size:28px;
    font-weight:800;
    color:#1b1b1b;
    line-height:1;
    position:relative;
    z-index:2;
}

.count-box small{
    margin-top:6px;
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#333;
    position:relative;
    z-index:2;
}

@media (max-width:576px){

    .premium-countdown{
        gap:8px;
    }

    .count-box{
        width:65px;
        height:65px;
    }

    .count-box span{
        font-size:22px;
    }

    .count-box small{
        font-size:9px;
    }
}
/*countdown premium css*/


