/* 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;
    }
}

.blogs-image{
    /* width: 100% !important; */  
    height: auto !important;
    padding-left: 105px;
    /* border-radius: 15px 15px 15px 15px; */
}  
.latest-text{
    font-size: 36px;
    line-height: 1.2;
}

.text-secondarys{
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    padding-left: 105px;
}
/* Date Card Styles */
.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 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #fbb034, #ff3300);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.arrow-btn:hover {
    background: linear-gradient(135deg, #fbb034, #ff3300);
}

/* .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;

}

/* ========================= */
/* RESPONSIVE FIXES */
/* ========================= */

/* -------- Large Tablets (992px and below) -------- */
@media (max-width: 992px) {

    .blogs-image {
        padding-left: 0;
        margin-top: 20px;
    }

    .text-secondarys {
        padding-left: 0;
        font-size: 16px;
    }

    .latest-text {
        font-size: 30px;
    }

    .blog-section h2 {
        font-size: 42px !important;
        line-height: 1.2;
    }

    .blog-date {
        font-size: 16px;
    }
}

/* -------- Tablets (768px and below) -------- */
@media (max-width: 768px) {

    /* Featured Section */
    .blog-section .row.align-items-center {
        text-align: left;
    }

    .blog-section h2 {
        font-size: 34px !important;
    }

    .blog-section p {
        font-size: 16px !important;
    }

    .blogs-image {
        width: 100%;
        padding-left: 0;
    }

    /* Latest Blog Intro */
    .latest-text {
        font-size: 28px;
    }

    .text-secondarys {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Blog Cards */
    .blog-card {
        height: auto;
    }

    .blog-date {
        font-size: 15px;
    }

    .arrow-btn {
        font-size: 14px;
        padding: 6px 10px;
    }
}

/* -------- Mobile (576px and below) -------- */
@media (max-width: 576px) {

    /* Featured Blog */
    .blog-section h2 {
        font-size: 45px !important;
        line-height: 1.3;
        margin-bottom: 10px;
        padding-top: 50px;
        
    }

    .blog-section p {
        /* font-size: 21px !important; */
    }

    .blogs-image {
        margin-top: 15px;
    }

    /* Blog Cards */
    .blog-card {
        padding: 15px;
    }

    .blog-card h5 {
        font-size: 16px;
    }

    .text {
        font-size: 10px;
    }

    .blog-date {
        font-size: 14px;
    }

    .arrow-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    /* Load More Button */
    .custom-button {
        padding: 10px 22px;
        font-size: 15px;
    }
}