*{
    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;
   }
 
.fulconta{
    height: auto;
    width: 100%;
    /* margin-top: 100px; */
    display: flex;
    justify-content: center;
    align-items: center;
}



/* --- Main Page Container --- */
        .page-container {
            width: 80%;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        /* --- Breadcrumb & Back Section --- */
        .nav-division {
            width: 840px;
            height: 50px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            font-size: 13px;
        }
        .breadcrumbs { color: #888; }
        .breadcrumbs span { color: #2e7d32; }
        .back-link {
            color: #2e7d32;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* --- Hero Product Section (Split View) --- */
        .hero-division {
            width: 100%;
            height: 480px;
            display: flex;
            gap: 40px;
        }

        /* Left Side: Gallery */
        .gallery-division {
            width: 50%;
            height: 480px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .main-image-holder {
            width: 100%;
            height: 380px;
            background-color: #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }
        .main-image-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-counter {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0,0,0,0.6);
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 11px;
        }
        .thumbnails-strip {
            width: 400px;
            height: 70px;
            display: flex;
            gap: 8px;
            overflow-x: auto;
        }
        .thumb {
            width: 70px;
            height: 55px;
            background-color: #eaeaea;
            border-radius: 4px;
            cursor: pointer;
            border: 2px solid transparent;
            object-fit: cover;
            flex-shrink: 0;
        }
        .thumb.active {
            border-color: #2e7d32;
        }

        /* Right Side: Product Meta & Purchase Call-to-Action */
        .product-meta-division {
            width: 45%;
            height: 480px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

        }
        .badge {
            background-color: #e8f5e9;
            color: #2e7d32;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            width: fit-content;
        }
        .product-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-top: 5px;
            line-height: 1.3;
        }
        .product-description {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
            margin: 8px 0;
        }
        
        /* Features Grid */
        .features-grid {
            width: 400px;
            height: 90px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            font-size: 12px;
            color: #333;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .feature-item::before {
            content: "✓";
            color: #2e7d32;
            font-weight: bold;
        }

        /* Trust Badges Strip */
        .trust-badges-division {
            width: 400px;
            height: 60px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 10px;
            color: #666;
            text-align: center;
        }
        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        .trust-icon {
            font-size: 16px;
        }

        /* Action/Quote Button Container */
        .action-division {
            width: 400px;
            height: 75px;
            text-align: center;
        }
        .btn-quote {
            width: 400px;
            height: 45px;
            background-color: rgb(45, 107, 4);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.2s;
        }
        .btn-quote:hover {
            background-color: #059669;
        }
        .action-division span {
            font-size: 11px;
            color: #888;
            display: block;
            margin-top: 6px;
        }

        /* --- Divider Line --- */
        .divider {
            width: 840px;
            height: 1px;
            background-color: #eee;
            margin: 10px 0;
        }

        /* --- Informational Content Section --- */
        .info-division {
            width: 840px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .info-division h2 {
            font-size: 18px;
            color: #1a1a1a;
        }
        .info-division h3 {
            font-size: 14px;
            color: #333;
            margin-top: 5px;
        }
        .info-division p {
            font-size: 13px;
            color: #555;
            line-height: 1.6;
        }

        /* --- Applications Tags Section --- */
        .applications-division {
            width: 840px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-item {
            background-color: #edf7ed;
            color: #1e4620;
            padding: 10px 16px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 500;
        }

        /* --- Core Product Benefits Section --- */
        .benefits-division {
            width: 840px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .benefit-line {
            font-size: 13px;
            color: #444;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .benefit-line::before {
            content: "✓";
            color: #2e7d32;
            font-weight: bold;
        }

        /* --- Related Cross-Sell Products Section --- */
        .related-division {
            width: 840px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .related-grid {
            width: 840px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .product-card {
            border: 1px solid #eef2ee;
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .card-img-holder {
            width: 100%;
            height: 130px;
            background-color: #eaeaea;
        }
        .card-img-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-body {
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .card-title {
            font-size: 13px;
            font-weight: 600;
            color: #1a1a1a;
        }
        .card-desc {
            font-size: 11px;
            color: #777;
            line-height: 1.4;
        }






































.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(83, 133, 50);         /* 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(83, 133, 50);         /* Bright light shift on focus tracking pointer */
    transform: translateY(-3px);       /* Vertical pop motion layout alteration response */
}

/* Responsive breakout logic constraints for small screen viewports */
/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {

    .page-container{
        width: 95%;
        padding: 20px;
    }

    .nav-division,
    .divider,
    .info-division,
    .applications-division,
    .benefits-division,
    .related-division,
    .related-grid{
        width: 100%;
    }

    .hero-division{
        flex-direction: column;
        height: auto;
    }

    .gallery-division,
    .product-meta-division{
        width: 100%;
        height: auto;
    }

    .main-image-holder{
        height: 400px;
    }

    .thumbnails-strip,
    .features-grid,
    .trust-badges-division,
    .action-division,
    .btn-quote{
        width: 100%;
    }

    .related-grid{
        grid-template-columns: repeat(2,1fr);
    }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .page-container{
        width: 100%;
        padding: 15px;
        border-radius: 0;
    }

    .nav-division{
        width: 100%;
        height: auto;
        gap: 10px;
    }

    .hero-division{
        flex-direction: column;
        gap: 25px;
    }

    .gallery-division,
    .product-meta-division{
        width: 100%;
        height: auto;
    }

    .main-image-holder{
        height: 280px;
    }

    .thumbnails-strip{
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .thumbnails-strip::-webkit-scrollbar{
        display: none;
    }

    .product-title{
        font-size: 22px;
    }

    .product-description{
        font-size: 14px;
    }

    .features-grid{
        width: 100%;
        grid-template-columns: 1fr;
        height: auto;
    }

    .trust-badges-division{
        width: 100%;
        height: auto;
        padding: 15px 0;
        gap: 15px;
        flex-wrap: wrap;
    }

    .action-division,
    .btn-quote{
        width: 100%;
    }

    .divider,
    .info-division,
    .applications-division,
    .benefits-division,
    .related-division{
        width: 100%;
    }

    .related-grid{
        width: 100%;
        grid-template-columns: 1fr;
    }

    .tag-item{
        font-size: 12px;
        padding: 8px 12px;
    }
}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

    .page-container{
        padding: 12px;
    }

    .main-image-holder{
        height: 220px;
    }

    .product-title{
        font-size: 20px;
        line-height: 1.4;
    }

    .badge{
        font-size: 11px;
    }

    .btn-quote{
        height: 50px;
        font-size: 13px;
    }

    .card-img-holder{
        height: 180px;
    }

    .card-title{
        font-size: 14px;
    }

    .card-desc{
        font-size: 12px;
    }
}

/* =========================
   FOOTER TABLET
========================= */
@media (max-width: 1024px) {

    .footer-block-container{
        height: auto;
        padding: 50px 30px;
    }

    .footer-content-grid-row{
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-brand-column-div{
        width: 100%;
        height: auto;
        gap: 25px;
    }

    .footer-navigation-column-div,
    .footer-products-column-div{
        width: calc(50% - 20px);
        height: auto;
    }

    .footer-separator-line-divider,
    .footer-bottom-copyright-strip-row{
        width: 100%;
    }

    .copyright-textual-info-stack{
        width: auto;
    }
}


/* =========================
   FOOTER MOBILE
========================= */
@media (max-width: 768px) {

    .footer-block-container{
        height: auto;
        padding: 40px 20px;
        gap: 30px;
    }

    .footer-content-grid-row{
        width: 100%;
        flex-direction: column;
        gap: 35px;
    }

    .footer-brand-column-div,
    .footer-navigation-column-div,
    .footer-products-column-div{
        width: 100%;
        height: auto;
    }

    .footer-logo-layout-box,
    .footer-contact-directory-box,
    .footer-social-wrapper-box{
        width: 100%;
        height: auto;
    }

    .contact-info-line-row{
        width: 100%;
        height: auto;
        align-items: flex-start;
    }

    .brand-text-identity-stack{
        width: 100%;
    }

    .directory-links-vertical-stack{
        height: auto;
        gap: 12px;
    }

    .footer-separator-line-divider{
        width: 100%;
    }

    .footer-bottom-copyright-strip-row{
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .copyright-textual-info-stack{
        width: 100%;
        height: auto;
        gap: 8px;
    }

    .floating-utilities-alignment-box{
        width: 100%;
        justify-content: center;
    }
}


/* =========================
   FOOTER SMALL MOBILE
========================= */
@media (max-width: 480px) {

    .footer-block-container{
        padding: 30px 15px;
    }

    .footer-company-name-heading{
        font-size: 17px;
    }

    .footer-company-tagline-text{
        font-size: 12px;
    }

    .contact-item-label-span,
    .directory-anchor-link{
        font-size: 13px;
    }

    .directory-column-header-title{
        font-size: 15px;
    }

    .social-squares-layout-row{
        width: 100%;
        flex-wrap: wrap;
    }

    .social-media-square-link{
        width: 40px;
        height: 40px;
    }

    .copyright-declaration-paragraph{
        font-size: 12px;
        line-height: 1.5;
    }

    .nature-attribution-paragraph{
        font-size: 11px;
        line-height: 1.5;
    }

    .utilities-back-to-top-circle-btn{
        width: 38px;
        height: 38px;
    }
}