.main-layout-container {
    display: grid;
    grid-template-columns: 1fr 0.1fr 1fr; 
    gap: 25px;
    padding: 30px 20px;  

}

.layout-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Card pairs ko vertically balance karne ke liye */
    gap: 25px;
    width: 100%;
}

/* ================= INCREASED HEIGHT BLOG CARDS ================= */
.blog-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 24px 20px; /* Vertical padding badha di height gain karne ke liye */
    display: grid;
    grid-template-columns: 150px 1fr; /* Image width thodi si tweak ki balance ke liye */
    gap: 20px;
    align-items: center;
    border: 1px solid #eef2f0;
    box-shadow: 0px 8px 24px rgb(92 87 87 / 45%);
    transition: transform 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
}

/* Image section ki height bodi kar di */
.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 170px; /* Height badha kar 170px kar di gayi hai (Bigger Cards) */
    border-radius: 14px;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #109d48;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 7px 14px;
    border-top-right-radius: 12px;
}

.blog-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center; /* Content vertically centered rahega image ke sath */
}

.blog-meta-info {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b6475;
}

.blog-meta-info i {
    color: #109d48;
    margin-right: 3px;
}

.blog-title {
    color: #033b32;
    font-size: 1.15rem; /* Font size thoda perfect large kiya */
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #033b32;
    font-weight: 700;
    font-size: 0.85rem;
}

.blog-arrow-circle {
    background-color: #109d48;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    outline: 2px solid #109d48;
    outline-offset: 2px;
    transition: all 0.2s ease;
}

.blog-read-more-btn:hover .blog-arrow-circle  {
    background-color:#e9a00f;
    outline-color:#e9a00f;
}

.blog-decorative-line {
    flex-grow: 1;
    height: 1px;
    background-color: #cbdad2;
}


/* ================= CENTER COLUMN: MAIN BANNER ================= */
.center-banner-column {
    position: relative;
    background-color: #005a43;
    border-radius: 12px;
    overflow: hidden;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.view-more-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    border: 1px solid #f2a93b;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #f2a93b;
    cursor: pointer;
    z-index: 2;
}

.view-more-badge span { font-size: 1.1rem; }
.view-more-badge p { font-size: 0.6rem; text-align: center; }

.banner-img {
    width: 100%;
    height: 82%;
    object-fit: cover;
    display: block;
}

.banner-footer {
    width: 90%;
    background: linear-gradient(180deg, #087d5c 0%, #467623 100%);
    padding: 18px 20px;
    text-align: right;
    color: white;
}

.support-text { font-size: 0.8rem; color: #e0e0e0; }
.phone-number { font-size: 1rem; font-weight: bold; margin-top: 2px; }


/* ================= RESPONSIVE MEDIA QUERIES ================= */

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1400px){

    .center-banner-column{
       
    }

}

/* Laptop */
@media (max-width:1250px){

    .main-layout-container{
        grid-template-columns:1fr 1fr;
    }

    .center-banner-column{
        grid-column:1 / -1;
        order:-1;
        width:100%;
        min-height:500px;
    }

    .banner-img{
        height:420px;
    }
    .banner-footer {
    width: 100%;
    margin-right:38px;
    }
}

/* Tablet */
@media (max-width:992px){

    .main-layout-container{
        grid-template-columns:1fr;
        padding:20px 15px;
    }

    .layout-column{
        gap:20px;
    }

    .center-banner-column{
        min-height:auto;
        width:100%;
    }

    .banner-img{
        height:350px;
    }

    .blog-card{
        grid-template-columns:130px 1fr;
        gap:15px;
        padding:18px;
    }

    .blog-image-wrapper{
        height:140px;
    }

    .blog-title{
        font-size:1rem;
    }
}

/* Mobile */
@media (max-width:768px){

    .main-layout-container{
        gap:18px;
        padding:15px;
    }

    .blog-card{
        grid-template-columns:1fr;
        text-align:center;
    }

    .blog-image-wrapper{
        width:100%;
        height:220px;
    }

    .blog-content-wrapper{
        align-items:center;
    }

    .blog-meta-info{
        justify-content:center;
        flex-wrap:wrap;
    }

    .blog-card-footer{
        justify-content:center;
    }

    .blog-decorative-line{
        display:none;
    }

    .banner-img{
        height:300px;
    }

    .banner-footer{
        text-align:center;
    }
}

/* Small Mobile */
@media (max-width:576px){

    .main-layout-container{
        padding:10px;
    }

    .blog-card{
        padding:15px;
        border-radius:15px;
    }

    .blog-image-wrapper{
        height:180px;
    }

    .blog-title{
        font-size:0.95rem;
        line-height:1.5;
    }

    .blog-meta-info{
        font-size:0.7rem;
        gap:8px;
    }

    .blog-read-more-btn{
        font-size:0.8rem;
    }

    .banner-img{
        height:240px;
    }

    .view-more-badge{
        width:55px;
        height:55px;
    }

    .view-more-badge span{
        font-size:0.9rem;
    }

    .view-more-badge p{
        font-size:0.55rem;
    }
}

/* Extra Small Mobile */
@media (max-width:380px){

    .blog-image-wrapper{
        height:160px;
    }

    .blog-title{
        font-size:0.9rem;
    }

    .blog-meta-info{
        flex-direction:column;
        gap:5px;
    }

    .banner-img{
        height:200px;
    }

    .phone-number{
        font-size:0.9rem;
    }
}