.elementor-863 .elementor-element.elementor-element-7c82974{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-82px;--margin-bottom:-69px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-8148474 */.hero{
    padding:100px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    min-height:100vh;
    background:
    radial-gradient(circle at top left, rgba(240,106,0,0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(217,27,92,0.12), transparent 35%);
}

.hero-text{
    flex:1;
    animation:slideLeft 1s ease;
}

.tag{
    display:inline-block;
    background:#fff;
    color:#d91b5c;
    padding:10px 20px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.hero-text h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-text h1 span{
    color:#f06a00;
}

.hero-text p{
    font-size:18px;
    color:#555;
    line-height:1.9;
    margin-bottom:35px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.btn-primary{
    background:#f06a00;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(240,106,0,0.25);
}

.btn-primary:hover{
    transform:translateY(-4px);
    background:#d91b5c;
}

.btn-secondary{
    border:2px solid #f06a00;
    color:#f06a00;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.btn-secondary:hover{
    background:#f06a00;
    color:#fff;
}

/* HERO CARD */

.hero-image{
    flex:1;
    position:relative;
    animation:slideRight 1s ease;
}

.hero-card{
    background:#fff;
    border-radius:35px;
    padding:40px;
    position:relative;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.hero-card::before{
    content:'';
    position:absolute;
    top:-80px;
    right:-80px;
    width:220px;
    height:220px;
    background:#f06a00;
    border-radius:50%;
    opacity:0.12;
}

.hero-card::after{
    content:'';
    position:absolute;
    bottom:-60px;
    left:-60px;
    width:180px;
    height:180px;
    background:#d91b5c;
    border-radius:50%;
    opacity:0.1;
}

.card-content{
    position:relative;
    z-index:2;
}

.card-box{
    background:#fafafa;
    padding:25px;
    border-radius:25px;
    margin-bottom:20px;
    border-left:5px solid #f06a00;
    transition:0.4s;
}

.card-box:hover{
    transform:translateX(8px);
}

.card-box h3{
    margin-bottom:10px;
    color:#111;
}

.card-box p{
    color:#666;
    line-height:1.7;
}
/* =========================
   FEATURES SECTION
========================= */

.features{
    padding:100px 8%;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:48px;
    margin-bottom:15px;
}

.section-title span{
    color:#f06a00;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    transition:0.4s;
    border:1px solid #eee;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.feature-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    top:0;
    left:0;
    background:linear-gradient(90deg,#f06a00,#d91b5c);
}

.feature-card:hover{
    transform:translateY(-12px);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#f06a00,#d91b5c);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    margin-bottom:25px;
}

.feature-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:#666;
    line-height:1.8;
}

/* =========================
   STATS
========================= */

.stats{
    padding:90px 8%;
    background:linear-gradient(135deg,#f06a00,#d91b5c);
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
    text-align:center;
}

.stat-box h2{
    font-size:58px;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
}
.counter{
    color: white;
}


@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:950px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-text h1{
        font-size:48px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .nav-links{
        display:none;
    }
}/* End custom CSS */