html{
    scroll-behavior: smooth;
}
.hero h1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 43px;
    line-height: 60px;
    margin-bottom: 20px;
    color: #000000;
}
.hero{
    width: 100%;
    height: 70vh;
    background: no-repeat center center/cover;
    min-height: 502px;
    margin: 0 0 40px 0;
    position: relative;
}
.hero p{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 48px;
}
.hero-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 70vh;
}
.hero-content{
    width: 700px;
}
.blogBtn{
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 15px;
    color: white;
    background: #000000;
}
.blogs{
    margin: 40px 0;
}
.allBlogs{
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.card {
    max-width: 300px;
    border: 2px solid #B6BABE;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 370px;
    display: block;
}
.card-content {
    padding: 16px;
}
.card-content h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #5D5D5D;
    font-weight: 500;
}
.card-content p {
    font-size: 12px;
    color: #444242;
    margin: 0;
}

.card-footer {
    display: flex;
    padding: 16px;
    align-items: center;
    font-size: 0.875rem;
    color: #888;
}
hr{
    height: 1px;
    background: #B6BABE;
    margin: 0 16px;
}
.card-footer .views {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    margin: 0 10px 0;
}
@media (max-width: 768px) {
    .hero-content {
        width: 100%;
    }
}