/*==========================================================
 HERO SECTION
 Trade by Ray
==========================================================*/

.hero-section{

    position:relative;

    overflow:hidden;

    padding:180px 0 120px;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8faf8 100%
    );

}

/*========================================
BACKGROUND
========================================*/

.hero-bg-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    z-index:1;

}

.hero-bg-shape-1{

    width:550px;

    height:550px;

    background:rgba(15,81,50,.08);

    top:-250px;

    left:-180px;

}

.hero-bg-shape-2{

    width:600px;

    height:600px;

    background:rgba(212,175,55,.10);

    right:-250px;

    bottom:-250px;

}

/*========================================
GRID
========================================*/

.hero-grid{

    position:relative;

    z-index:5;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:80px;

}

/*========================================
CONTENT
========================================*/

.hero-content{

    max-width:650px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:100px;

    background:#eef7f2;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    margin-bottom:28px;

}

.hero-content h1{

    font-size:68px;

    line-height:1.08;

    font-weight:800;

    color:var(--text);

    margin-bottom:30px;

}

.hero-content h1 span{

    color:var(--primary);

    display:block;

}

.hero-content p{

    font-size:18px;

    line-height:1.9;

    color:var(--text-light);

    margin-bottom:45px;

}

/*========================================
BUTTON
========================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    min-width:190px;

}

.btn-outline{

    background:transparent;

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#ffffff;

}

/*========================================
STATS
========================================*/

.hero-stats{

    display:flex;

    gap:20px;

    margin-top:60px;

}

.hero-stat{

    flex:1;

    background:#ffffff;

    padding:28px;

    border-radius:20px;

    box-shadow:

    0 20px 45px rgba(0,0,0,.06);

    transition:.35s;

}

.hero-stat:hover{

    transform:translateY(-8px);

}

.hero-stat strong{

    display:block;

    font-size:34px;

    color:var(--primary);

    margin-bottom:8px;

}

.hero-stat span{

    color:var(--text-light);

    font-size:14px;

}

/*========================================
IMAGE
========================================*/

.hero-image{

    position:relative;

}

.hero-image-box{

    overflow:hidden;

    border-radius:30px;

    box-shadow:

    0 40px 80px rgba(0,0,0,.14);

}

.hero-image img{

    width:100%;

    display:block;

    transition:1s;

}

.hero-image:hover img{

    transform:scale(1.05);

}

/*========================================
FLOATING CARD
========================================*/

.floating-card{

    position:absolute;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    border-radius:20px;

    padding:20px 24px;

    box-shadow:

    0 18px 45px rgba(0,0,0,.10);

}

.floating-card small{

    display:block;

    color:var(--text-light);

    font-size:12px;

    margin-bottom:6px;

}

.floating-card h4{

    color:var(--primary);

    font-size:20px;

    font-weight:700;

}

.floating-card-top{

    top:30px;

    left:-40px;

}

.floating-card-bottom{

    right:-40px;

    bottom:30px;

}

/*========================================
TABLET
========================================*/

@media(max-width:1100px){

.hero-section{

padding:150px 0 90px;

}

.hero-grid{

grid-template-columns:1fr;

gap:70px;

}

.hero-content{

max-width:100%;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.floating-card-top{

left:20px;

}

.floating-card-bottom{

right:20px;

}

}

/*========================================
MOBILE
========================================*/

@media(max-width:768px){

.hero-section{

padding:120px 0 70px;

}

.hero-grid{

display:flex;

flex-direction:column;

}

.hero-image{

order:1;

}

.hero-content{

order:2;

text-align:center;

}

.hero-content h1{

font-size:42px;

}

.hero-content p{

font-size:15px;

line-height:1.8;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

.hero-stats{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:12px;

margin-top:35px;

}

.hero-stat{

padding:18px 10px;

}

.hero-stat strong{

font-size:22px;

}

.hero-stat span{

font-size:11px;

}

.hero-image-box{

border-radius:20px;

}

.floating-card{

padding:14px 16px;

border-radius:14px;

}

.floating-card h4{

font-size:15px;

}

.floating-card small{

font-size:10px;

}

.floating-card-top{

left:10px;

top:10px;

}

.floating-card-bottom{

right:10px;

bottom:10px;

}

}