/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Blog Section */
.blog-section {
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

.blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;

}

.blog-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}


.custom-button {
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    /* bigger button */
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    /* increased font size */
    cursor: pointer;
    text-decoration: none;
    /* underline removed */
    transition: 0.3s ease;
}

.custom-button:hover {
    background-color: #e65a00;
    transform: translateY(-2px);
    text-decoration: none;
    /* ensure no underline on hover */
}
/* .btn-orange:hover {
    background-color: #e65300;
    color: #fff;
} */
 /* .seo-image {
    width: 824px !important;
    height: auto !important;
}  */

/* Responsive */
@media (max-width: 768px) {
    .blog-section h2 {
        font-size: 1.6rem;
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }
}


.date-card {
    background-color: #fff7e8;
    /* light cream background */
    padding: 18px 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.blog-date {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #ffffff ;
    background: linear-gradient(135deg, #fbb034, #ff3300);
    cursor: pointer;
    transition: 0.3s ease;
}

.arrow-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}


.date-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.text{
    color: #000000;
    font-size: 14px;
    margin-bottom: 15px;

}