/* ===============================
   Wellness Care - style.css
   =============================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#f8fbfd;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

header{
   
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    z-index:999;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo h2{
    color:#1ea672;
    font-size:30px;
    font-weight:700;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#1ea672;
}

.btn{
    display:inline-block;
    padding:12px 28px;
    background:#1ea672;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
    border:none;
    cursor:pointer;
}

.btn:hover{
    background:#0e8b5d;
}

/* Hero */

.hero{
    padding:140px 0 80px;
    background:linear-gradient(135deg,#e9fff5,#eef8ff);
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

.hero h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    color:#666;
    margin-bottom:30px;
}

.hero-image img{
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* Sections */

section{
    padding:90px 0;
}

section h2{
    text-align:center;
    font-size:38px;
    color:#222;
    margin-bottom:20px;
}

section> .container>p{
    text-align:center;
    max-width:850px;
    margin:auto;
    color:#666;
}

/* Cards */

.cards{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
}

.card i{
    font-size:50px;
    color:#1ea672;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
    font-size:22px;
}

.card p{
    color:#666;
}

/* Contact */

form{
    max-width:700px;
    margin:auto;
}

form input,
form textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:16px;
}

form input:focus,
form textarea:focus{
    border-color:#1ea672;
}

form button{
    width:100%;
    font-size:17px;
}

/* Footer */

footer{
    background:#132b34;
    color:#fff;
    text-align:center;
    padding:30px 0;
}

/* Responsive */

@media(max-width:992px){

.hero-content{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-image{
    order:-1;
}

nav{
    display:block;
}

header .btn{
    display:block;
}

.hero h1{
    font-size:40px;
}

}

@media(max-width:768px){

.hero{
    padding-top:120px;
}

.hero h1{
    font-size:32px;
}

section h2{
    font-size:30px;
}

.card{
    padding:25px;
}

}