/* ===========================
   AddLifeON Premium Website
   =========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#ffffff;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   HEADER
   =========================== */

header{
    position:sticky;
    top:0;
    z-index:999;
    background:#ffffff;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
}

.logo img{
    height:80px;
    width:auto;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#1b1b1b;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#4caf50;
}

.join-btn{
    background:#4caf50;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.join-btn:hover{
    background:#2e7d32;
}

/* ===========================
   HERO
   =========================== */

.hero{
    padding:80px 0;
    background:linear-gradient(
        135deg,
        #f1fff1 0%,
        #ffffff 100%
    );
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    background:#dff4df;
    color:#2e7d32;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
    color:#1b5e20;
    margin-bottom:25px;
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
    color:#555;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#4caf50;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
}

.primary-btn:hover{
    background:#2e7d32;
}

.secondary-btn{
    border:2px solid #4caf50;
    color:#4caf50;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
}

.secondary-btn:hover{
    background:#4caf50;
    color:white;
}

.hero-logo{
    text-align:center;
}

.hero-logo img{
    max-width:450px;
    width:100%;
    height:auto;
    filter:drop-shadow(0 15px 35px rgba(0,0,0,.15));
}

/* ===========================
   SECTIONS
   =========================== */

.section{
    padding:90px 0;
}

.bg-light{
    background:#f7faf7;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#1b5e20;
    margin-bottom:25px;
}

.section-text{
    max-width:950px;
    margin:auto;
    text-align:center;
    font-size:18px;
    color:#555;
}

/* ===========================
   BENEFITS
   =========================== */

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.benefit-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-8px);
}

.benefit-card h3{
    color:#1b5e20;
    margin-bottom:20px;
}

.benefit-card ul{
    padding-left:20px;
}

.benefit-card li{
    margin-bottom:12px;
}

/* ===========================
   PROGRAMS
   =========================== */

.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.program-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.program-card h3{
    color:#1b5e20;
    margin-bottom:20px;
}

.program-card p{
    color:#555;
    margin-bottom:15px;
}

.program-card ul{
    padding-left:20px;
}

.program-card li{
    margin-bottom:10px;
}

/* ===========================
   JOURNEY
   =========================== */

.journey{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.journey div{
    background:white;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.journey h3{
    color:#ff9800;
    margin-bottom:15px;
}

/* ===========================
   FOUNDER
   =========================== */

.founder-name{
    text-align:center;
    color:#4caf50;
    font-size:30px;
    margin-bottom:20px;
}

blockquote{
    max-width:700px;
    margin:40px auto;
    text-align:center;
    font-size:24px;
    font-style:italic;
    color:#1b5e20;
}

/* ===========================
   FORM
   =========================== */

.form-section{
    background:
    linear-gradient(
    135deg,
    #1b5e20,
    #2e7d32
    );
}

.white{
    color:white;
}

#joinForm{
    max-width:900px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

#joinForm input,
#joinForm select,
#joinForm textarea{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    font-size:15px;
}

#joinForm textarea{
    grid-column:1 / 3;
}

#joinForm button{
    grid-column:1 / 3;
    padding:18px;
    background:#ff9800;
    color:white;
    border:none;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

#joinForm button:hover{
    background:#f57c00;
}

/* ===========================
   CONTACT
   =========================== */

.contact-box{
    text-align:center;
    font-size:22px;
}

.contact-box p{
    margin-bottom:15px;
}

/* ===========================
   FOOTER
   =========================== */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.footer-logo{
    height:120px;
    margin-bottom:15px;
}

footer h3{
    margin-bottom:10px;
}

footer p{
    color:#ccc;
}

/* ===========================
   WHATSAPP
   =========================== */

.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:white;
    text-decoration:none;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    z-index:9999;
}

/* ===========================
   MOBILE
   =========================== */

@media(max-width:992px){

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero h1{
    font-size:42px;
}

.hero-buttons{
    justify-content:center;
}

.program-grid,
.benefit-grid,
.journey{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.logo img{
    height:60px;
}

nav{
    display:none;
}

.join-btn{
    display:none;
}

.section-title{
    font-size:32px;
}

.hero{
    padding:50px 0;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

#joinForm{
    grid-template-columns:1fr;
}

#joinForm textarea,
#joinForm button{
    grid-column:auto;
}

.footer-logo{
    height:90px;
}

.contact-box{
    font-size:18px;
}

.whatsapp-btn{
    width:55px;
    height:55px;
    font-size:26px;
}

}
/* Scroll Animation */

.benefit-card,
.program-card,
.journey div{

    opacity:1;
    transform:none;

    transition:
    all .8s ease;

}

.show{

    opacity:1 !important;
    transform:translateY(0px) !important;

}
.benefit-card,
.program-card,
.journey div{
    opacity:1;
    transform:none;
}
.input-group{
    position:relative;
    margin:18px 0;
}

.input-group i{
    position:absolute;
    left:20px;
    top:50%;
    transform:translateY(-50%);
    color:#2E7D32;
    font-size:18px;
    z-index:5;
}

.input-group input,
.input-group select{
    width:100%;
    height:58px;
    padding-left:60px;
    padding-right:18px;
    border-radius:14px;
    border:none;
    outline:none;
    font-size:17px;
}

.input-group textarea{
    width:100%;
    min-height:140px;
    padding:18px 18px 18px 60px;
    border-radius:14px;
    border:none;
    resize:vertical;
}
.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

}

@media(max-width:768px){

.form-row{

grid-template-columns:1fr;

}

}
button{

background:linear-gradient(90deg,#2E7D32,#66BB6A);

color:white;

font-size:22px;

font-weight:bold;

padding:20px;

border:none;

border-radius:60px;

cursor:pointer;

transition:.3s;

}

button:hover{

transform:translateY(-3px);

box-shadow:0 20px 40px rgba(0,0,0,.2);

}
.input-group{

position:relative;

margin:18px 0;

}

.input-group i{

position:absolute;

left:18px;

top:50%;

transform:translateY(-50%);

color:#2E7D32;

font-size:20px;

}

.input-group input,
.input-group select{

padding-left:55px;

}

.input-group textarea{

padding-left:55px;

padding-top:18px;

}