/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= ROOT VARIABLES ================= */
:root {
    --font-dm: 'DM Sans', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-sora: 'Sora', sans-serif;

    --primary: #2f6b2f;
    --primary-dark: #1f4d1f;
    --green-light: #ecffe3;
}
/* ================= HERO BANNER ================= */


/* ================= GLOBAL HEADING ================= */
.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-inter);
    letter-spacing: 1px;
}

.section-title span {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}

/* ================= GLOBAL BUTTON ================= */
.primary-btn {
    display: inline-block;
    padding: 10px 22px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.primary-btn:hover {
    background: var(--primary-dark);
}

/* ===== HERO BANNER FIX ===== */


/* ================= SECTION ================= */
.top-winning-section {
    background: #f7f3ef;
    padding: 90px 0;
}

/* ================= TITLE ================= */
.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-inter);
    letter-spacing: 1px;
}

.section-title h2 span {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
}

/* ================= SLIDER ================= */
.product-slider-wrapper {
    position: relative;
}

.product-slider {
    overflow-x: auto;
    scroll-behavior: smooth;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.row.flex-nowrap {
    flex-wrap: nowrap;
}

/* ================= ARROWS ================= */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

.slider-arrow:hover {
    background: var(--primary-dark);
}

.left-arrow {
    left: -18px;
}

.right-arrow {
    right: -18px;
}
/* ================= CARD ================= */
.product-card-urban {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    transition: transform .4s ease, box-shadow .4s ease;
    height: 100%;
}
/* ================= IMAGE ================= */
.product-img-box {
    position: relative;
    height: 290px;
    overflow: hidden;
}

/* All images */
.product-img-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        opacity .45s ease,
        transform .6s cubic-bezier(.25, 1, .5, 1);     
}

/* Default image */
.img-main {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
/* Hover image */
.img-hover {
    opacity: 0;
    transform: scale(1.08);
    z-index: 2;
}

.img-hover-2 {
    opacity: 0;
    z-index: 3;
}

/* Hover Effect */
.product-card:hover .img-main {
    opacity: 0;
    transform: scale(1.12);
}

.product-card:hover .img-hover {
    opacity: 1;
    transform: scale(1);
}

.product-card:hover .img-hover-2 {
    opacity: 1;
    transition-delay: .5s;
}


/* Hover swap + zoom */
.product-card-urban:hover .img-main {
    opacity: 0;
    transform: scale(1.12);
}

.product-card-urban:hover .img-hover {
    opacity: 1;
    transform: scale(1);
}

/* Gradient overlay */
.product-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .05),
            rgba(0, 0, 0, .18));
    opacity: 0;
    transition: .4s;
    /* pointer-events: none; */
}

.product-card-urban:hover .product-img-box::after {
    opacity: 1;
}

/* ================= INFO ================= */
.product-info {
    padding: 14px 16px 18px;
    font-family: var(--font-inter);
}

.product-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    /* color: #000; */
}

/* ================= PRICE & RATING ================= */
.product-bottom {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    margin-bottom: 12px;
}

.product-price {
    /* font-size: 14px; */
    font-weight: 600;
    /* color: #000; */
}

.product-rating span {
    color: #000;
    margin-left: 4px;
}

.product-rating span {
    color: #000;
    margin-left: 4px;
}

/* ================= BUTTON ================= */
.add-cart-btn {
    display: inline-block;
    width: 100%;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s;
}

.add-cart-btn:hover {
    background: var(--primary-dark);
}

/* ================= SHOW MORE ================= */
.show-more-btn {
    background: #0a8f3c;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .3s;
}

.show-more-btn:hover {
    background:  #0a8f3c;
    /* transform: translateY(-2px); */
}


/* Main */
.img-main {
    opacity: 1;
    z-index: 1;
}

/* Hover 1 */
.img-hover {
    opacity: 0;
    z-index: 2;
}

/* Hover 2 */
.img-hover-2 {
    opacity: 0;
    z-index: 3;
}

/* Hover effect */
.product-card-urban:hover .img-main {
    opacity: 0;
    transform: scale(1.1);
}

.product-card-urban:hover .img-hover {
    opacity: 1;
}

/* Optional: second hover image slightly delay */
.product-card-urban:hover .img-hover-2 {
    opacity: 1;
    transition-delay: .50s;
    
}


/* =========================================
   PRODUCT SECTION RESPONSIVE
========================================= */

/* ===== DESKTOP (4 Cards) ===== */
@media (min-width: 1200px) {

    .product-card-urban {
        flex: 0 0 25%;
        /* max-width: 25%; */
    }

    .product-slider .row {
        display: flex;
        flex-wrap: nowrap;
    }
}


/* ===== LAPTOP (3 Cards) ===== */
@media (max-width: 1199px) and (min-width: 992px) {

    .product-card-urban {
        flex: 0 0 33.333%;
        /* max-width: 33.333%; */
    }

    .product-img-box {
        height: 270px;
    }
}


/* ===== TABLET (2 Cards) ===== */
@media (max-width: 991px) and (min-width: 768px) {

    .top-winning-section {
        padding: 70px 0;
    }

    .product-card-urban {
        flex: 0 0 50%;
        /* max-width: 50%; */
    }

    .product-img-box {
        height: 250px;
    }

    .section-title h2 {
        font-size: 24px;
        text-align: center;
    }
}


/* ===== MOBILE (1 Card) ===== */
@media (max-width: 767px) {

    .top-winning-section {
        padding: 50px 15px;
    }

    .section-title h2 {
        font-size: 22px;
        text-align: center;
    }

    .product-slider {
        overflow-x: auto;
    }

    .product-card-urban {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .product-img-box {
        height: 250px;
    }

    .slider-arrow {
        display: none;
    }

}


/* ===== EXTRA SMALL MOBILE ===== */
@media (max-width: 374px) {

    .product-img-box {
        height: 200px;
    }

    .product-info h5 {
        font-size: 13px;
    }

    .add-cart-btn {
        font-size: 11px;
        padding: 6px 0;
    }
}

/* PRODUCTS SECTION end */

/* ================= HIGHLIGHT SECTION ================= */
/* ================= HIGHLIGHT SECTION ================= */
.highlight-section {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Heading */
.highlight-heading h2 {
font-size: 34px;
    font-weight: 600;
    font-family: var(--font-inter);
}

.highlight-heading span {
color: var(--primary);
    font-style: italic;
}

/* Big Image */
.highlight-big-img {
    width: 840px;
    /* max-width: 120%; */
    max-width: none;
}

/* Right Content */
.highlight-product-info h5 {
    font-size: 22px;
    font-weight: 700;

}

.highlight-product-info p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

/* Powder Images */
.highlight-powder-img {
    width: 250px;
}

.green-strip {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 19px;
    height: 430px;
    background: #0b8f3c;
    border-radius: 20px 0 0 20px;
}

@media (min-width: 1200px) {

    .highlight-big-img {
        position: relative;
        left: -80px;
        /* adjust value */
    }

}


@media (max-width: 992px) {

    .highlight-heading h2 {
        font-size: 30px;
        text-align: center;
    }

    .highlight-section {
        padding: 35px 0;
    }

    .highlight-product-info h5 {
        font-size: 20px;
    }

    .highlight-powder-img {
        width: 200px;
    }

}

@media (max-width: 768px) {

    .highlight-section {
        padding: 30px 15px;
    }

    .highlight-heading h2 {
        font-size: 26px;
        text-align: center;
    }

    .highlight-big-img {
        margin-bottom: 25px;
    }

    .highlight-product-info {
        text-align: center;
    }

    .highlight-product-info h5 {
        font-size: 18px;
    }

    .highlight-product-info p {
        font-size: 13px;
    }

    .highlight-powder-img {
        width: 160px;
        margin: 0 auto 10px auto;
        display: block;
    }

    .green-strip {
        display: none;
    }

}

@media (max-width: 576px) {

    .highlight-heading h2 {
        font-size: 22px;
    }

    .highlight-powder-img {
        width: 140px;
    }

}

@media (max-width: 374px) {

    .highlight-heading h2 {
        font-size: 20px;
    }

    .highlight-product-info h5 {
        font-size: 16px;
    }

    .highlight-product-info p {
        font-size: 12.5px;
    }

}
/* HIGHLIGHT SECTION end */
/* HIGHLIGHT SECTION end */

/* ================= PREMIUM INGREDIENTS ================= */
.premium-section {
    background: #fff;
}

.premium-header {
    background: #d71920;
    padding: 50px 20px 40px;
    color: #fff;
    text-align: center;
}

/* .premium-icon {
    width: 60px;
    margin-bottom: 10px;
} */

.premium-header h2 {
    font-size: 32px;
    font-weight: 700;
}
.premium-header p {
    font-size: 16px;
    font-family: var(--font-inter);
    opacity: 0.9;
}
/* .premium-header p {
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-inter);
    color: #fff;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
} */

/* Grid */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.premium-grid img {
    width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
}
.premium-grid img:hover {
    transform: scale(1.08);
}
/* ================= INGREDIENT IMAGE SHINE ANIMATION ================= */

.premium-grid img {
    position: relative;
    overflow: hidden;
    display: block;
    transition: transform 0.6s ease;
}

/* Hover Zoom */
.premium-grid img:hover {
    transform: scale(1.08);
}

/* Wrapper for shine effect */
.premium-grid .img-wrap {
    position: relative;
    overflow: hidden;
}

/* Shine overlay */
.premium-grid .img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0.1));
    transform: skewX(-20deg);
}

/* Shine on hover */
.premium-grid .img-wrap:hover::after {
    left: 120%;
    transition: 0.8s ease;
}


/* ================= TABLET (≤ 992px) ================= */
@media (max-width: 992px) {
    .premium-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================= SMALL TABLET (≤ 768px) ================= */
@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-grid img {
        height: 220px;
    }
}

/* ================= MOBILE (≤ 576px) ================= */
@media (max-width: 576px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }

    .premium-grid img {
        height: 200px;
    }
}

/* ================= EXTRA SMALL MOBILE (≤ 374px) ================= */
@media (max-width: 374px) {
    .premium-grid img {
        height: 180px;
    }
}

/* ================= PREMIUM INGREDIENTS section end ================= */

/* ================= CORE VALUES SECTION start ================= */
.core-values-section {
    position: relative;
    background: url("images/core-bg.webp") center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
}

/* Dark overlay strip */
.core-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
/* Content above overlay */
.core-values-section .container {
    position: relative;
    z-index: 2;
}

/* .core-content {
    text-align: center;
} */

/* Title */
.core-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

/* Cards */
.core-card {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 30px 20px;
    transition: .3s;
}

.core-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}
.core-card h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-inter);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.core-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #f1f1f1;
    margin: 0;
}


/* ================= CORE CARD RESPONSIVE ================= */

/* Default (Desktop) */
.core-card {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 30px 20px;
    transition: 0.3s;
    height: 100%;
}

.core-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.core-card h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-inter);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.core-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #f1f1f1;
    margin: 0;
}

/* ================= TABLET (≤ 992px) ================= */
@media (max-width: 992px) {

    .core-card {
        padding: 26px 18px;
        text-align: center;
    }

    .core-card h4 {
        font-size: 17px;
    }

    .core-card p {
        font-size: 13px;
    }
}



/* ================= MOBILE (≤ 576px) ================= */
@media (max-width: 576px) {

    .core-card {
        padding: 22px 16px;
        text-align: center;
    }

    .core-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .core-card p {
        font-size: 12.5px;
        line-height: 1.6;
    }
}

/* ================= EXTRA SMALL MOBILE (≤ 374px) ================= */
@media (max-width: 374px) {

    .core-card {
        padding: 20px 14px;
    }

    .core-card h4 {
        font-size: 15px;
    }

    .core-card p {
        font-size: 12px;
    }
}




/* ================= TESTIMONIAL SECTION ================= */
/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
    /* padding: 80px 0; */
    background: #fff;
    text-align: center;
}

.testimonial-heading h2 {
    font-size: 35px;
    font-weight: 600;
    font-family: var(--font-inter);
}

.testimonial-heading span {
    color: #2f6b2f;
    font-style: italic;
}

.testimonial-heading p {
    font-size: 18px;
    color: #666;
    margin-top: 5px;
}

.testimonial-slider-wrapper {
    overflow: hidden;
    margin-top: 40px;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.8s ease;
}

.testimonial-card {
    min-width: 33.3333%;
    background: #ecffe8;
    border-radius: 16px;
    padding: 25px;
    margin: 0 10px;
    position: relative;
    text-align: left;
    /* margin-top: 40px; */
}

.user-img {
    width: 60px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

.testimonial-card h5 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.quote {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 26px;
    color: #2f6b2f;
}

/* Dots */
.testimonial-dots {
    margin-top: 25px;
}

.testimonial-dots .dot {
    height: 8px;
    width: 8px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
}

.testimonial-dots .dot.active {
    background: #2f6b2f;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
        margin: 0;
    }
}

/* desktop mode */
@media (min-width: 1200px) {
    .testimonial-card {
        min-width: 31%;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .testimonial-card {
        min-width: 50%;
    }
}

/* tablet mode */
@media (max-width: 991px) and (min-width: 768px) {

    .testimonial-heading h2 {
        font-size: 30px;
    }

    .testimonial-heading p {
        font-size: 16px;
    }

    .testimonial-card {
        min-width: 80%;
        margin: 0 12px;
    }
}

/* mobile mode */
@media (max-width: 767px) {

    .testimonial-section {
        padding: 40px 15px;
    }

    .testimonial-heading h2 {
        font-size: 26px;
    }

    .testimonial-heading p {
        font-size: 12px;
    }

    .testimonial-slider-wrapper {
        margin-top: 25px;
    }

    .testimonial-card {
        min-width: 98%;
        padding: 20px;
        margin: 10px;
        border-radius: 14px;
        gap: 12px;
    }

    .testimonial-card p {
        font-size: 14px;
        font-family: var(--font-inter);
        color: #000000;
        text-align: justify;
    }

    .user-img {
        width: 50px;
        height: 50px;
    }
}

/* small mobile */
@media (max-width: 360px) {

    .testimonial-heading h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .testimonial-heading span {
        display: block;
        font-size: 14px;
    }

    .testimonial-heading p {
        font-size: 10px;
    }

    .testimonial-card {
        padding: 16px;
    }

    .testimonial-card p {
        font-size: 13px;
        line-height: 1.4;
    }

    .testimonial-card h5 {
        font-size: 13px;
    }

    .quote {
        font-size: 20px;
        bottom: 10px;
        right: 10px;
    }
}

/* TESTIMONIAL SECTION end */


/* TESTIMONIAL SECTION end */

/* ================= LATEST BLOGS SECTION ================= */
.latest-blogs-section {
    padding: 80px 0;
}

/* .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
} */

/* Heading */
.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.section-heading span {
    color: #2f8f46;
    font-style: italic;
    font-weight: 500;
}

/* Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.blog-card {
    border: 1.5px solid var(--primary);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Image */
.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Content */
.blog-content {
    padding: 18px;
}

.blog-category {
    font-size: 12px;
    color: #2f8f46;
    font-weight: 600;
}

.blog-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0;
}

.blog-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Footer */
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.read-btn {
    background: #2f8f46;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.read-btn:hover {
    background: #256f37;
}

.arrow {
    font-size: 18px;
    color: #000;
}

/* Latest Section  */
/* Show More */
.show-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    background: #2f8f46;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.show-more-btn:hover {
    background: #256f37;
}

/* blog section end  */

/* ================= PEOPLE ALSO ASK ================= */
/* ================= FAQ ================= */
.people-ask-section {
    background: linear-gradient(180deg, #f6ffef 0%, #ecffe3 50%, #f6ffef 100%);
    padding: 80px 0;
}

.accordion-button {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--green-light) !important;
    color: var(--primary) !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.accordion-button:hover {
    background-color: #ecffe3 !important;
}


/* Responsive  */
/*  EXTRA SMALL MOBILE (320px – 374px) */
@media (max-width: 374px) {

    .section-title h2 {
        font-size: 20px;
    }
    

    .product-img-box {
        height: 290px;
    }

    .highlight-big-img {
        width: 100%;
        max-width: 100%;
    }

    .highlight-product-info h5 {
        font-size: 16px;
    }
    
    

    .highlight-powder-img {
        width: 120px;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    /* .blogs-grid {
        grid-template-columns: 1fr;
    } */

    /* .testimonial-card {
        min-width: 100%;
    } */

}

/* SMALL+LARGE MOBILE (375px – 576px) */
@media (max-width: 576px) {

    .section-title h2 {
        font-size: 22px;
    }

    .top-winning-section {
        padding: 50px 0;
    }

    .product-img-box {
        height: 290px;
    }

    .highlight-section {
        padding: 30px 0;
    }

    .highlight-big-img {
        width: 100%;
        max-width: 100%;
    }

    .highlight-product-info {
        flex-direction: column;
        text-align: center;
    }

    .highlight-powder-img {
        width: 140px;
        margin-bottom: 10px;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    /* .blogs-grid {
        grid-template-columns: 1fr;
    } */

    /* .testimonial-card {
        min-width: 100%;
    } */

}

/* TABLET (577px – 768px) */
@media (max-width: 768px) {

    .highlight-big-img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .highlight-product-info {
        flex-direction: row;
    }

    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
/* 
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    } */

    /* .testimonial-card {
        min-width: 50%;
    } */

}

/* LARGE TABLET (769px – 992px) */


/* LAPTOP FIX (≤1200px) */
@media (max-width: 1200px) {

    .highlight-big-img {
        width: 100%;
        max-width: 100%;
    }

}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* .premium-grid,
.blogs-grid {
    width: 100%;
} */

/* ================= BLOG MOBILE FIX ================= */
/* ================= BLOG MOBILE FIX ================= */
/* ================= BLOG RESPONSIVE FINAL ================= */

/* Desktop (default) */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tablet */
@media (max-width: 992px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .latest-blogs-section {
        padding: 30px 15px;
    }

    .blog-img img {
        height: 220px;
    }
}

/* testimonial-section */
