:root{

--primary:#003930;
--secondary:#00584b;
--light:#f5fffc;
--white:#ffffff;
--text:#062b25;
--shadow:0 20px 50px rgba(0,57,48,.12);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Poppins',sans-serif;

background:linear-gradient(180deg,#f7fffc,#eefbf7,#ffffff);

overflow-x:hidden;

position:relative;

}

/* Background */

.bg-circle{

position:absolute;

border-radius:50%;

filter:blur(30px);

z-index:-1;

}

.one{

width:300px;

height:300px;

background:#0c9f7d22;

top:-120px;

left:-120px;

}

.two{

width:260px;

height:260px;

background:#00393022;

right:-80px;

top:180px;

}

.three{

width:350px;

height:350px;

background:#00a88418;

bottom:-120px;

left:-150px;

}

.hero{

padding:30px 15px 60px;

}

.main-card{

text-align:center;

}

/* Badge */

.top-badge{

display:inline-flex;

align-items:center;

gap:8px;

padding:10px 24px;

border-radius:40px;

background:linear-gradient(135deg,#003930,#006d5b);

color:#fff;

font-size:13px;

font-weight:700;

box-shadow:0 10px 30px rgba(0,57,48,.35);

animation:float 3s infinite;

}

.logo-box{

width:120px;

height:120px;

margin:30px auto;

border-radius:20px;

background:#fff;

display:flex;

align-items:center;

justify-content:center;

box-shadow:

0 20px 60px rgba(0,57,48,.15),

inset 0 2px 6px rgba(255,255,255,.9);

transition:.4s;

}

.logo-box:hover{

transform:translateY(-8px);

}

.logo-box img{

width:85px;

}

h1{

font-size:46px;

font-weight:800;

color:var(--primary);

margin-bottom:12px;

}

.main-card p{

color:#5f6f69;

font-size:16px;

line-height:30px;

margin-bottom:25px;

}

/* Download */

.download-btn{
    position:relative;
    overflow:hidden;
    width:100%;
    height:64px;
    border:3px solid #f8d56d;
    border-radius:50px;
    cursor:pointer;

    background:linear-gradient(135deg,#003930,#006d5b);
    color:#fff;
    font-size:18px;
    font-weight:700;

    box-shadow:0 10px 30px rgba(0,57,48,.35);

    animation:pulseGlow 2s infinite;
    transition:.3s ease;
}

.download-btn:hover{
    transform:translateY(-4px) scale(1.03);
    animation-play-state:paused;
    box-shadow:
        0 15px 35px rgba(0,57,48,.45),
        0 0 30px rgba(0,184,148,.35);
}

@keyframes pulseGlow{

    0%{
        transform:scale(1);
        box-shadow:
            0 0 0 0 rgba(0,184,148,.45),
            0 10px 30px rgba(0,57,48,.35);
    }

    70%{
        transform:scale(1.03);
        box-shadow:
            0 0 0 18px rgba(0,184,148,0),
            0 18px 40px rgba(0,57,48,.45);
    }

    100%{
        transform:scale(1);
        box-shadow:
            0 0 0 0 rgba(0,184,148,0),
            0 10px 30px rgba(0,57,48,.35);
    }
}

/* Cards */

.feature{

margin-top:22px;

background:rgba(255,255,255,.82);

backdrop-filter:blur(18px);

border-radius:24px;

padding:18px;

display:flex;

align-items:center;

box-shadow:var(--shadow);

transition:.35s;

border:1px solid rgba(0,57,48,.08);


height:88px;

}

.feature:hover{

transform:translateY(-8px);

border-color:#00b894;

}

.icon{

width:65px;

height:65px;

background:linear-gradient(135deg,#003930,#00896c);

border-radius:20px;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

color:#fff;

margin-right:18px;

box-shadow:0 15px 30px rgba(0,57,48,.25);

}

.feature h5{

margin:0;

font-size:22px;

font-weight:700;

color:var(--text);

text-align:left;

}

.feature span{

display:block;

font-size:14px;

margin-top:4px;

color:#7d8d87;

text-align:left;

}

.arrow{

margin-left:auto;

width:42px;

height:42px;

border-radius:50%;

background:#ecfaf5;

display:flex;

justify-content:center;

align-items:center;

color:#003930;

font-size:22px;

}

/* Stats */

.stats{

margin-top:35px;

display:flex;

justify-content:space-between;

background:linear-gradient(135deg,#003930,#00584b);

padding:25px;

border-radius:28px;

color:#fff;

box-shadow:0 20px 40px rgba(0,57,48,.30);

}

.stats h3{

font-size:34px;

font-weight:800;

}

.stats p{

margin:0;

font-size:14px;

color:#d8ebe6;

}

/* Bottom */

.bottom-pill{

margin:30px auto;

display:inline-flex;

gap:10px;

align-items:center;

padding:14px 30px;

background:#fff;

border-radius:40px;

font-weight:600;

color:#003930;

box-shadow:0 12px 35px rgba(0,57,48,.12);

}

/* Floating */

@keyframes float{

50%{

transform:translateY(-5px);

}

}

/* Mobile */

@media(max-width:576px){

h1{

font-size:36px;

}

.feature h5{

font-size:19px;

}

.download-btn{

font-size:18px;

}

.stats{

padding:18px;

}

.stats h3{

font-size:24px;

}

}