/* ===========================
   Progress Pilot v1.0
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f5f7fb;

    color:#1f2937;

    overflow-x:hidden;

}

/* ===========================
   HEADER
=========================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    background:#08172d;

    z-index:999;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

}

.logo img{
    height:95px;
    display:block;
    transition:.3s;
}

nav{

    display:flex;

    align-items:center;

    gap:40px;

}

nav a{

    text-decoration:none;

    color:white;

    font-weight:600;

    font-size:17px;

    transition:.3s;

}

nav a:hover{

    color:#20d5b4;

}

.login-btn{

    border:2px solid #20d5b4;

    padding:12px 24px;

    border-radius:10px;

}

.login-btn:hover{

    background:#20d5b4;

    color:#08172d;

}

/* ===========================
   HERO
=========================== */

.hero{

    position:relative;

    height:100vh;

    background:url("../images/hero.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(6,18,38,.72),
        rgba(6,18,38,.55),
        rgba(6,18,38,.75)
    );
}

.hero-content{

    position:relative;

    z-index:5;

    max-width:900px;

    padding:20px;

    color:white;

}

.hero h1{

    font-size:82px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:22px;

    line-height:1.8;

    margin-bottom:45px;

}

.primary-btn{

    display:inline-block;

    padding:20px 50px;

    border-radius:12px;

    background:linear-gradient(135deg,#1489ff,#20d5b4);

    color:white;

    font-weight:700;

    text-decoration:none;

    font-size:18px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 25px 45px rgba(20,137,255,.35);

}

/* ===========================
   SERVICES
=========================== */

.services{

    padding:120px 8%;

    text-align:center;

}

.services h2{

    font-size:42px;

    margin-bottom:60px;

}
.section-intro{

    max-width:760px;

    margin:0 auto 60px;

    font-size:20px;

    line-height:1.8;

    color:#6b7280;

}

.cards{

    display:flex;

    gap:35px;

    justify-content:center;

    flex-wrap:wrap;

}

.card{

    width:340px;

    background:white;

    border-radius:18px;

    padding:45px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-10px);

}
.icon{

    font-size:56px;

    margin-bottom:25px;

}
.card h3{

    color:#08172d;

    margin-bottom:20px;

    font-size:28px;

}

.card p{

    line-height:1.8;

}

/* ===========================
   HOW IT WORKS
=========================== */

.how{

    background:#eef4fb;

    padding:120px 8%;

    text-align:center;

}

.how h2{

    font-size:42px;

    margin-bottom:60px;

}

.steps{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

}

.step{

    width:300px;

}

.step span{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    border-radius:50%;

    background:#20d5b4;

    color:#08172d;

    font-size:28px;

    font-weight:bold;

    margin-bottom:25px;

}

.step h3{

    margin-bottom:15px;

}

/* ===========================
   COACH
=========================== */

.coach{

    padding:120px 15%;

    text-align:center;

}

.coach h2{

    font-size:42px;

    margin-bottom:30px;

}

.coach p{

    font-size:20px;

    line-height:1.9;

}

/* ===========================
   CTA
=========================== */

.cta{

    background:#08172d;

    color:white;

    text-align:center;

    padding:100px 20px;

}

.cta h2{

    font-size:48px;

    margin-bottom:20px;

}

.cta p{

    font-size:22px;

    margin-bottom:45px;

}

/* ===========================
   FOOTER
=========================== */

footer{

    background:#06111f;

    color:white;

    text-align:center;

    padding:50px 20px;

}

footer img{

    height:70px;

    margin-bottom:20px;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:900px){

header{

    flex-direction:column;

    gap:20px;

}

nav{

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

}

.hero h1{

    font-size:46px;

}

.hero p{

    font-size:18px;

}

.services h2,
.how h2,
.coach h2,
.cta h2{

    font-size:34px;

}

}
/*=========================
LOGIN PAGE
==========================*/

.login-page{

    background:url("../images/hero.png") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

}

.login-page::before{

    content:"";

    position:fixed;

    inset:0;

    background:rgba(8,23,45,.82);

}

.login-container{

    position:relative;

    z-index:5;

    width:420px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    padding:50px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.15);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.login-logo{

    width:180px;

    margin-bottom:25px;

}

.login-container h1{

    color:white;

    margin-bottom:10px;

    font-size:38px;

}

.login-container p{

    color:#d8e3ef;

    margin-bottom:35px;

}

.login-container form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.login-container input{

    padding:18px;

    border:none;

    border-radius:10px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

}

.login-container button{

    padding:18px;

    border:none;

    border-radius:10px;

    background:linear-gradient(135deg,#1489ff,#20d5b4);

    color:white;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.login-container button:hover{

    transform:translateY(-3px);

}

.login-links{

    margin-top:30px;

    display:flex;

    justify-content:space-between;

}

.login-links a{

    color:white;

    text-decoration:none;

    font-size:14px;

}