.blogs-section{
    width:90%;
    max-width:1200px;
    margin:60px auto;
}

.page-title{
    font-size:42px;
    margin-bottom:40px;
    text-align:center;
}

.posts-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.post-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.post-card:hover{
    transform:translateY(-10px);
}

.post-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.post-content{
    padding:25px;
}

.post-content h2{
    margin-bottom:15px;
}

.post-content a{
    text-decoration:none;
    color:#111;
}

.post-content a:hover{
    color:#4f46e5;
}






*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f7fb;
    color:#222;
}

/* HEADER */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:999;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#4f46e5;
}

nav a{
    text-decoration:none;
    margin-left:25px;
    color:#333;
    transition:0.3s;
}

nav a:hover{
    color:#4f46e5;
}

/* HERO */

.hero{
    height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(135deg,#4f46e5,#9333ea);
    color:white;
    padding:20px;
}

.hero-content{
    max-width:800px;
}

.hero h1{
    font-size:70px;
    margin-bottom:20px;
    line-height:1.2;
}

.hero p{
    font-size:20px;
    line-height:1.8;
    opacity:0.9;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:white;
    color:#4f46e5;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    transition:0.3s;
}

.hero-btn:hover{
    transform:translateY(-5px);
}

/* FEATURES */

.features{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.feature-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:#666;
    line-height:1.7;
}

/* CTA */

.cta{
    margin:80px 8%;
    background:#111827;
    color:white;
    padding:80px 40px;
    border-radius:30px;
    text-align:center;
}

.cta h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    opacity:0.8;
    margin-bottom:30px;
}

/* FOOTER */

footer{
    text-align:center;
    padding:30px;
    background:white;
    margin-top:50px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero h1{
        font-size:45px;
    }

    nav{
        display:none;
    }

    .cta h2{
        font-size:34px;
    }

}