*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
       margin: 0;
       padding: 0;
       overflow-x: hidden;
        font-family: "Montserrat", sans-serif;
   }
   body::-webkit-scrollbar{
       display: none;
   }
   /* --- Core Structural Settings From Your Base Code --- */

.bl{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(180deg, #edf7f4 0%, #f8fafc 350px, #ffffff 100%);
}




/* 1. Main Outer Layout Boundaries */
.mpg-news-section {
    width: 100%;
    max-width: 1440px;
    height: auto;
    padding: 60px 40px;
    
    display: flex;
    justify-content: center;
}

.mpg-news-container {
    margin-top: 80px;
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 2. Header Content Block Sizing */
.mpg-news-header-box {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 10px;
}

.mpg-news-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.mpg-text-green {
    color: rgb(45, 107, 4);
}

.mpg-news-sub-lead {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

/* 3. Controls Dashboard Block Sizing */
.mpg-controls-dashboard {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Search Bar Wrapper Block */
.mpg-search-input-frame {
    width: 100%;
    max-width: 680px;
    height: 46px;
    position: relative;
}

.mpg-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #94a3b8;
}

.mpg-search-input-frame input {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 0 20px 0 46px;
    font-size: 14px;
    color: #334155;
    outline: none;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: border-color 0.2s ease;
}

.mpg-search-input-frame input:focus {
    border-color: rgb(45, 107, 4);
}

/* Filter Tags Wrap Box */
.mpg-categories-filter-wrapper {
    width: 100%;
    max-width: 850px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.mpg-filter-pill {
    height: 32px;
    padding: 0 14px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mpg-filter-pill:hover {
    background-color: #f1f5f9;
    color: #1e293b;
}

.mpg-filter-pill.active {
    background-color: rgb(45, 107, 4);
    color: #ffffff;
    border-color: rgb(45, 107, 4);
}

/* Results Counter Block Boundary */
.mpg-results-counter-box {
    width: 100%;
    height: 24px;
    display: flex;
    justify-content: center;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 30px;
    margin-bottom: 10px;
}

#mpgCounterText {
    font-size: 13px;
    color: rgb(45, 107, 4);
    font-weight: 600;
}

/* 4. Articles Flex/Grid Block Layout */
.mpg-articles-grid {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Card Blocks Sizing specifications */
.mpg-article-card {
    background-color: #ffffff;
    border-radius: 16px;
    height: 440px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mpg-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.08);
}

.mpg-card-media-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.mpg-card-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mpg-card-content-box {
    width: 100%;
    height: 240px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.mpg-card-meta-line {
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.mpg-meta-date {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.mpg-meta-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Category Pill Variations mapped to the visual design */
.tag-green { background-color: #e6f9f0; color: rgb(45, 107, 4); }
.tag-blue { background-color: #e0f2fe; color: #0284c7; }
.tag-orange { background-color: #ffedd5; color: #ea580c; }
.tag-teal { background-color: #ccfbf1; color: #0d9488; }
.tag-purple { background-color: #f3e8ff; color: #7c3aed; }
.tag-brown { background-color: #f5f5f4; color: #78716c; }
.tag-olive { background-color: #fef08a; color: #a16207; }
.tag-pink { background-color: #fce7f3; color: #db2777; }

.mpg-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
    margin-bottom: auto; /* Pushes content down evenly */
}

.mpg-card-footer {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    margin-top: 10px;
}

.mpg-author {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.mpg-readmore-btn {
    font-size: 12px;
    font-weight: 700;
    color: rgb(45, 107, 4);
    text-decoration: none;
}

.mpg-readmore-btn:hover {
    color: rgb(83, 133, 50);
}

/* 5. Navigation Footer Module Dimensions */
.mpg-navigation-footer {
    width: 100%;
    height: 130px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.mpg-nav-title-box {
    width: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mpg-nav-title-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.mpg-nav-title-box p {
    font-size: 11px;
    color: #94a3b8;
}

.mpg-nav-buttons-row {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mpg-nav-btn {
    height: 100%;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    color: #94a3b8;
    border-radius: 6px;
    cursor: not-allowed;
}

.mpg-nav-btn.active-next {
    background-color: rgb(45, 107, 4);
    color: #ffffff;
    border-color: rgb(45, 107, 4);
    cursor: pointer;
}

.mpg-page-number {
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
}

.mpg-page-number.active {
    background-color: rgb(45, 107, 4);
    color: #ffffff;
    border-color: rgb(45, 107, 4);
}

/* Responsiveness adjustments layer */
@media (max-width: 1024px) {
    .mpg-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .mpg-articles-grid {
        grid-template-columns: 1fr;
    }
    .mpg-news-header-box {
        height: auto;
    }
}


























.foter{
  height: auto;
  width: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   MAIN STRUCTURAL FOOTER BLOCK DIVISION (Separate height and width rules)
   ========================================================================== */
.footer-block-container {
    background-color: #0b1622;         /* Deep obsidian blue backdrop matching image_a12505.png */
    width: 100%;                       /* Full screen expansion track */
    height: 480px;                     /* Distinct overall segment height constraint */
    padding: 60px 80px 40px 80px;      /* Content edge grid buffers */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Top Section Core Layout Grid Container Row Division */
.footer-content-grid-row {
    width: 1140px;                     /* Locked standard design grid inner width */
    height: 290px;                     /* Separate grid row viewport height */
    margin: 0 auto;                    /* Centered horizontal alignment layout */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* ==========================================================================
   COLUMN 1 DIVISION: BRAND CONTENT & CONNECT DATA PANEL
   ========================================================================== */
.footer-brand-column-div {
    width: 420px;                      /* Large dimension allotment for identity profiles */
    height: 290px;                     /* Explicit height boundary layout */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Corporate Logo Horizontal Combination Header Division Box */
.footer-logo-layout-box {
    overflow: hidden;
    width: 420px;                      
    height: 44px;                      /* Compact locked header row */
    display: flex;
    align-items: center;
    gap: 14px;
    /* background-color: #059669; */
}

/* Emblem Circle Graphics Configuration */
.brand-vector-logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* Typography Identity Stack Box Container */
.brand-text-identity-stack {
    width: 366px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.footer-company-name-heading {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.footer-company-tagline-text {
    font-size: 13.5px;
    font-weight: 600;
    color: rgb(45, 107, 4);                    /* Branding accent green text color */
}

/* Contact List Cluster Stack Structural Box Division */
.footer-contact-directory-box {
    width: 420px;
    height: 106px;                     /* Allocated dimension profile for three lines */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Custom Horizontal Directory Line Rows */
.contact-info-line-row {
    width: 420px;
    height: 24px;                      /* Single content alignment row standard */
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-indicator-svg {
    width: 17px;
    height: 17px;
    color: rgb(45, 107, 4);                    /* Bright green accent node strokes */
    flex-shrink: 0;
}

.contact-item-label-span {
    font-size: 14.5px;
    color: #9cb0c1;                    /* Soft desaturated grey read-color contrast */
}

/* Social Media Controls Base Division Frame Block */
.footer-social-wrapper-box {
    width: 420px;
    height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-header-label-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.social-squares-layout-row {
    width: 200px;                      /* Confined width bounding the horizontal matrix */
    height: 42px;                      
    display: flex;
    gap: 10px;
}

/* Individual Squared Anchor Link Blocks Division Elements */
.social-media-square-link {
    background-color: #16222f;         /* Matte grey tinted base cells */
    width: 42px;
    height: 42px;
    border-radius: 8px;                /* Distinct smooth framing profile curvature */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.social-vector-graphic {
    width: 17px;
    height: 17px;
    color: #9cb0c1;
}

/* Micro-Interaction Hover Shifts for Social Links */
.social-media-square-link:hover {
    background-color: rgb(45, 107, 4);         /* Bright green transformation */
}
.social-media-square-link:hover .social-vector-graphic {
    color: #ffffff;                    /* Pure white graphic highlight transformation */
}

/* ==========================================================================
   COLUMNS 2 & 3 DIVISION: DIRECTORY LINK NAVIGATION MENUS
   ========================================================================== */
.footer-navigation-column-div {
    width: 180px;                      /* Tight vertical catalog width dimension rule */
    height: 260px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-products-column-div {
    width: 220px;                      /* Wider structural buffer zone for content strings */
    height: 260px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.directory-column-header-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    height: 24px;                      /* Header height text standard profile lock */
}

.directory-links-vertical-stack {
    width: 100%;
    height: 214px;                     /* Maximized dynamic layout distribution area */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Separate Action Link Typography Labels Elements */
.directory-anchor-link {
    font-size: 14.5px;
    color: #9cb0c1;
    text-decoration: none;
    height: 22px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.directory-anchor-link:hover {
    color: #ffffff;
    padding-left: 4px;                 /* Dynamic active micro nudge animation effect */
}

/* ==========================================================================
   SEPARATOR DIVISION BOUNDARY
   ========================================================================== */
.footer-separator-line-divider {
    width: 1140px;
    height: 1px;                       /* Razor sharp wireframe dividing line */
    background-color: #162536;
    margin: 0 auto;
}

/* ==========================================================================
   BOTTOM SECTION: COPYRIGHT MANAGEMENT STRIP BLOCK DIVISION
   ========================================================================== */
.footer-bottom-copyright-strip-row {
    width: 1140px;
    height: 44px;                      /* Lower utility profile bar lock */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-textual-info-stack {
    width: 600px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.copyright-declaration-paragraph {
    font-size: 13.5px;
    color: #556b7e;
}

.nature-attribution-paragraph {
    font-size: 12.5px;
    color: #435463;
}

.heart-symbol-icon {
    color: #ef4444;                    /* Blood crimson red heart symbol glyph highlight */
}

/* Utilities Action Components Alignment Block Division */
.floating-utilities-alignment-box {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Back-To-Top Circular Automation Component Frame Division */
.utilities-back-to-top-circle-btn {
    background-color: rgb(45, 107, 4);         /* Vibrant evergreen forest foundation color tint */
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;                /* Full pixel uniform perfect sphere layout */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.utility-arrow-vector {
    width: 16px;
    height: 16px;
    color: #ffffff;
}

.utilities-back-to-top-circle-btn:hover {
    background-color: rgb(45, 107, 4);         /* Bright light shift on focus tracking pointer */
    transform: translateY(-3px);       /* Vertical pop motion layout alteration response */
}

/* Responsive breakout logic constraints for small screen viewports */
@media (max-width: 1200px) {
    .footer-block-container {
        height: auto;
        padding: 50px 20px 30px 20px;
        gap: 40px;
    }
    .footer-content-grid-row,
    .footer-separator-line-divider,
    .footer-bottom-copyright-strip-row {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .footer-brand-column-div,
    .footer-logo-layout-box,
    .brand-text-identity-stack,
    .footer-contact-directory-box,
    .contact-info-line-row,
    .footer-social-wrapper-box,
    .footer-navigation-column-div,
    .footer-products-column-div,
    .copyright-textual-info-stack {
        width: 100%;
        height: auto;
        gap: 16px;
    }
    .directory-links-vertical-stack {
        height: auto;
        gap: 12px;
    }
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width:768px){

    .mpg-news-section{
        padding:40px 15px;
    }

    .mpg-news-header-box{
        height:auto;
    }

    .mpg-news-main-title{
        font-size:28px;
        line-height:1.3;
    }

    .mpg-news-sub-lead{
        font-size:14px;
        padding:0 10px;
    }

    .mpg-search-input-frame{
        max-width:100%;
    }

    .mpg-categories-filter-wrapper{
        justify-content:flex-start;
    }

    .mpg-filter-pill{
        font-size:11px;
        padding:0 12px;
    }

    .mpg-articles-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .mpg-article-card{
        height:auto;
    }

    .mpg-card-media-box{
        height:220px;
    }

    .mpg-card-content-box{
        height:auto;
        min-height:220px;
    }

    .mpg-navigation-footer{
        height:auto;
        padding:20px 15px;
    }

    .mpg-nav-buttons-row{
        flex-wrap:wrap;
        justify-content:center;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:480px){

    .mpg-news-section{
        padding:30px 10px;
    }

    .mpg-news-main-title{
        font-size:24px;
    }

    .mpg-card-content-box{
        padding:18px;
    }

    .mpg-card-title{
        font-size:14px;
    }

    .mpg-card-media-box{
        height:180px;
    }

    .mpg-results-counter-box{
        padding-bottom:20px;
    }
}

@media (max-width:768px){

    .footer-block-container{
        padding:40px 15px;
    }

    .footer-company-name-heading{
        font-size:17px;
    }

    .contact-item-label-span,
    .directory-anchor-link{
        font-size:15px;
    }

    .social-squares-layout-row{
        width:auto;
        flex-wrap:wrap;
    }
}