:root {
            --primary-green: #0a846c;
            --trust-green: #37b24d;
            --bg-light: #f4f7f6;
            --text-dark: #333;
            --grey-placeholder: #a0a0a0;
            --border-color: #e0e6e4;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Arial, sans-serif; background-color: var(--bg-light); color: var(--text-dark); padding-bottom: 100px; overflow-x: hidden; }

        /* --- Header & Mega Menu --- */
        .header-wrapper { background: #fff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 2000; }
        
        .header-top {
            max-width: 1440px; margin: 0 auto; padding: 25px 30px;
            display: flex; align-items: center; justify-content: space-between;
        }

        .header-left { display: flex; align-items: center; gap: 15px; }
        .header-right { display: flex; align-items: center; gap: 15px; }
        .header-right { 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    margin-left: auto; /* Force alignment to the far right */
}
        .logo-box { width: 200px; height: 92px; background: var(--white-placeholder); color: #fff; font-size: 10px; display: flex; align-items: center; justify-content: center; font-weight: bold; }
        
        .company-meta h1 { font-size: 16px; font-weight: 700; }
        .badge-row { font-size: 11px; display: flex; align-items: center; gap: 10px; color: #777; }
        .trusted { color: var(--trust-green); font-weight: bold; display: flex; align-items: center; }
        .trusted::before { content: '✓'; background: var(--trust-green); color: #fff; border-radius: 50%; width: 14px; height: 14px; font-size: 8px; display: inline-flex; align-items: center; justify-content: center; margin-right: 4px; }

        /* Navigation Desktop */
        .desktop-nav { 
            background: #fff; 
            border-top: 1px solid #f0f0f0; 
            display: none; 
            position: relative; /* Add this to create a stacking context */
            z-index: 2001; /* Must be higher than header-wrapper if separate, or just very high */
        }
        
       
        .nav-list { max-width: 1440px; margin: 0 auto; display: flex; list-style: none; }
        .nav-item { position: static; } /* Static for full-width mega menu */
        .nav-link { 
            display: block; padding: 15px 20px; text-decoration: none; color: #444; 
            font-size: 14px; font-weight: 600; transition: var(--transition);
        }
        .nav-link:hover { color: #fff; background: #2688ae; }
.mega-menu {
    position: absolute; 
    left: 0; 
    width: 100%; 
    background: #fff; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); /* Slightly deeper shadow for depth */
    border-top: 2px solid var(--primary-green);
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    padding: 30px 10%;
    
    /* Fix Visibility */
    opacity: 0; 
    visibility: hidden; 
    transition: var(--transition); 
    transform: translateY(10px);
    z-index: 3000; /* High z-index to ensure it covers slider/sidebar */
     text-transform: capitalize;
}
       
        .nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        
        .mega-col h3 { font-size: 14px; color: var(--primary-green); margin-bottom: 15px; text-transform: uppercase; border-bottom: 1px solid #eee; padding-bottom: 5px; }
        .mega-col ul { list-style: none; }
        .mega-col li { padding: 5px 0; font-size: 13px; color: #666; cursor: pointer; }
        .mega-col li:hover { color: var(--primary-green); padding-left: 5px; transition: 0.2s; }

        /* Mobile Controls */
        .mobile-toggle { display: block; background: none; border: 1px solid #ddd; padding: 8px; border-radius: 4px; cursor: pointer; }
        .mobile-toggle span { display: block; width: 20px; height: 2px; background: #333; margin: 3px 0; }

        /* --- Side Menu Mobile --- */
        .mobile-sidebar {
            position: fixed; top: 0; left: -100%; width: 100%; height: 100%;
            background: rgba(0,0,0,0.5); z-index: 3000; transition: var(--transition);
        }
        .mobile-sidebar.active { left: 0; }
        .drawer { width: 80%; max-width: 300px; height: 100%; background: #fff; padding: 25px; }

        /* --- Main UI Elements --- */
        .main-container {  margin: 0 auto; padding: 1px; }
        .mains-container { max-width: 1440px; margin: 0 auto; padding: 1px; }
        .hero-slider { position: relative; height: 350px; border-radius: 2px; overflow: hidden; background: #ddd; }
        /*.slides { display: flex; height: 100%; transition: transform 0.5s ease-in-out; }*/
        /*.slide { min-width: 100%; position: relative; background: #ccc; }*/
        /*.slide-content { */
        /*    position: absolute; bottom: 0; width: 100%; background: rgba(0,0,0,0.8); */
        /*    padding: 20px; color: #fff; text-align: center; */
        /*}*/
        .hero-slider{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides{
    display: flex;
    width: 100%;
}

.slide{
    position: relative;
    min-width: 100%;
    height: 354px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/*.slide img{*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/

/*    width: 100%;*/
/*    height: 100%;*/

/*    object-fit: cover;*/
/*    display: block;*/

/*    z-index: 0;*/
/*}*/
/* MOBILE */
@media (max-width:768px){

.hero-slider{
    height:auto;

    overflow:hidden;
}

.slides{
    height:auto;
}

.slide{

    min-width:100%;

    height:auto;

    position:relative;
}

.slide img{

    width:100%;

    height:auto;

    display:block;

    object-fit:contain;

    object-position:center center;
}

.slide-content{

    position:absolute;

    left:15px;

    right:15px;

    bottom:15px;

    padding:10px;

    color:#fff;

    z-index:2;
}

.slide-content h2,
.slide-content h3{
    font-size:18px;
}

.slide-content p{
    font-size:12px;
}

}
.slide::before{
    content: "";
    position: absolute;
    inset: 0;
    /*background: rgba(0,0,0,0.35);*/
    z-index: 1;
}

.slide-content{
    position: absolute;
    /*bottom: 217px;*/
    left: 50px;

    z-index: 999;

    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    padding: 25px 30px;
    border-radius: 18px;

    color: #fff;
    max-width: 520px;

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.slide-content h3{
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.slide-content p{
    font-size: 18px;
    line-height: 1.7;
    color: #f5f5f5;
    margin: 0;
}

/* MOBILE */
@media(max-width:768px){

    .slide{
        height: 350px;
    }

    .slide-content{
        left: 15px;
        right: 15px;
        bottom: 20px;

        padding: 18px;
        max-width: 100%;
    }

    .slide-content h3{
        font-size: 24px;
    }

    .slide-content p{
        font-size: 14px;
    }

}
        .btn-green { background: var(--primary-green); color: #fff; padding: 8px 20px; border-radius: 4px; text-decoration: none; font-weight: bold; border: none; cursor: pointer; }

        .dots { display: flex; justify-content: center; gap: 10px; margin-top: 15px; }
        .dot { width: 10px; height: 10px; background: #ccc; border-radius: 50%; cursor: pointer; }
        .dot.active { background: var(--primary-green); }

        .layout-grid { display: flex; gap: 30px; margin-top: 30px; }
        .sidebar-cats { width: 280px; flex-shrink: 0; }
        .cat-box { background: #fff; border: 1px solid var(--border-color); border-radius: 6px; margin-bottom: 10px; }
        .cat-head { padding: 15px; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; color: var(--primary-green); }
        .cat-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: #fcfcfc; padding: 0 15px; }
        .cat-box.active .cat-body { max-height: 200px; padding: 15px; border-top: 1px solid #f0f0f0; }

        /*.products-view { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; flex-grow: 1; }*/
        /*.p-card { background: var(--grey-placeholder); aspect-ratio: 1/1; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: bold; }*/

        /* --- Bottom Nav Mobile --- */
       
        .nav-wrapper { background: #fff; width: 92%; max-width: 500px; margin: 0 auto; border-radius: 5px; display: flex; justify-content: space-around; align-items: center; padding: 5px; position: relative; box-shadow: 0 -5px 15px rgba(0,0,0,0.05); }
        .nav-link-mobile { text-align: center; color: #000; text-decoration: none; font-size: 10px; flex: 1; }
        .nav-link-mobile.active { color: var(--primary-green); font-weight: bold; }
        .fab { position: absolute; top: -35px; left: 50%; transform: translateX(-50%); background: #eee; padding: 8px; border-radius: 50%; }
        .fab-btn { width: 60px; height: 60px; background: #fff; border: 3px solid var(--primary-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; }

        /* Responsive Logic */
        @media (min-width: 768px) {
            .desktop-nav { display: block; }
            .mobile-toggle { display: none; }
            .bottom-nav { display: none; bottom:0; } /* Hide mobile nav on desktop */
            body { padding-bottom: 0; }
             
        }

        @media (max-width: 800px) {
            .layout-grid { flex-direction: column; }
            .sidebar-cats { width: 100%; }
            .hero-slider { height: 250px; }
             
           
        }
       @media (max-width: 768px) {

            /* Show only first social icon */
            .social-icons a:nth-child(n+2){
                display: none;
            }
        
            /* Hide button */
            .btn-green{
                display: none;
            }
        
            /* Hide complete contact section */
           
        
        }
        @media (max-width: 768px) {
            .contact-info{
                display: none !important;
            }
        }
        /* --- Professional Footer --- */
        .footer-main { background: #0f172a; color: #fff; padding: 60px 4%; display: none; width: 100%; }
        .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }

        /* --- Mirror Mobile Nav --- */
        @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
        .bottom-nav { position: fixed; bottom: 10px; left: 50%; transform: translateX(-50%); width: 92%; max-width: 450px; z-index: 9999; }
        .nav-wrapper { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: space-between; padding: 10px; border-radius: 28px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); position: relative; }
        .nav-link-mobile { flex: 1; text-decoration: none; color: #64748b; font-size: 10px; font-weight: 700; text-align: center; display: flex; flex-direction: column; align-items: center; }
        .fab-container { position: absolute; left: 50%; top: -25px; transform: translateX(-50%); }
        .fab-btn { background: var(--primary-green); width: 60px; height: 60px; border-radius: 20px; display: flex; align-items: center; justify-content: center; color: #fff; border: 5px solid #f8fafc; }

        /* Responsive Logic */
        @media (min-width: 768px) {
            .desktop-nav, .footer-main { display: block; }
            .bottom-nav { display: none; }
            body { padding-bottom: 0; }
        }
        @media (max-width: 800px) {
            .slide { height: 250px; }
             .logo-box { width: 240px; height: 66px;background: var(--white-placeholder); color: #fff; font-size: 10px; display: flex; align-items: center; justify-content: center; font-weight: bold;gap: 15px;}
             
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            body { padding-bottom: 100px; }
            
        }
        
    .company-meta.header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

/* SOCIAL BOX STYLE */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid #0a846c;
    border-radius: 6px;

    color: #0a846c;
    font-size: 16px;
    text-decoration: none;

    transition: 0.3s;
}

/* HOVER EFFECT */
.social-icons a:hover {
    background: #0a846c;
    color: #fff;
    transform: translateY(-2px);
}

/* BUTTON */
.btn-green {
    background: #0a846c;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}
.contact-info{
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 4px 13px;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info a{
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 8px;

    transition: 0.3s ease;
}

.contact-info a:hover{
    color: #0a846c;
    transform: translateY(-2px);
}

.contact-info i{
    width: 34px;
    height: 34px;

    border-radius: 50%;
    background: linear-gradient(135deg,#0a846c,#13b091);

    color: #fff;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

        .drawer {
            width: 80%;
            max-width: 300px;
            height: 100%;
            background: #fff;
            padding: 25px;
            box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        }

        .drawer-list {
            list-style: none;
            padding: 0;
        }

        .drawer-item {
            border-bottom: 1px solid #f1f5f9;
        }

        .drawer-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            color: #1e293b;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .drawer-link:hover {
            color: #0a846c;
        }

        /* Subcategory Styling */
        .submenu {
            max-height: 0;
            overflow: hidden;
            list-style: none;
            padding-left: 15px;
            background: #f8fafc;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .drawer-item.active .submenu {
            max-height: 500px; /* Large enough to fit content */
            padding-bottom: 10px;
        }

        .drawer-item.active .chevron {
            transform: rotate(180deg);
        }

        .submenu-item {
            padding: 12px 0;
            font-size: 14px;
            color: #64748b;
            border-bottom: 1px dashed #e2e8f0;
        }

        .submenu-item:last-child {
            border-bottom: none;
        }

        .chevron {
            font-size: 12px;
            transition: transform 0.3s ease;
            color: #94a3b8;
        }
        /**********/
 .products-view{
    display: grid;

    /* 3 cards in one row */
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
    padding: 50px 20px;
    background: #f5f7fa;
}

/* TABLET */
@media(max-width:992px){
    .products-view{
        grid-template-columns: repeat(2,1fr);
    }
}

/* MOBILE */
@media(max-width:768px){
    .products-view{
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }
}
.p-img{
    height: 236px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.p-img img{
    width: 100%;
    height: 100%;

    /* show full image */
    object-fit: contain;

    transition: 0.4s ease;
}
.p-card{
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    position: relative;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.4s ease;
}

.p-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

/*.p-img{*/
/*    overflow: hidden;*/
/*    height: 240px;*/
/*}*/

/*.p-img img{*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    transition: 0.5s ease;*/
/*}*/

.p-card:hover img{
    transform: scale(1.08);
}

.p-content{
    padding: 20px;
}

.p-content h3{
    font-size: 24px;
    color: #111;
    margin-bottom: 12px;
    font-weight: 700;
}

.p-content p{
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 22px;
}

.p-btns{
    display: flex;
    gap: 12px;
}

.p-btns a{
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.details-btn{
    background: #eef2f5;
    color: #222;
}

.details-btn:hover{
    background: #dfe6eb;
}

.enquiry-btn{
    background: linear-gradient(135deg,#0a846c,#13b091);
    color: #fff;
}

.enquiry-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(10,132,108,0.25);
}

/* MOBILE */
@media(max-width:768px){

    .products-view{
        grid-template-columns: 1fr;
        padding: 25px 15px;
        gap: 22px;
    }

    .p-img{
        height: 250px;
    }

    .p-content{
        padding: 20px;
    }

    .p-content h3{
        font-size: 20px;
    }

    .p-btns{
        flex-direction: column;
    }

}

    /* Fixed Positioning for the Bottom Nav */
    .bottom-nav {
        position: fixed;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 99%;
        max-width: 500px;
        z-index: 9999;
    }

    /* The Mirror/Glass Container */
    .nav-wrapper {
       background: linear-gradient(
            to right,
            rgba(0, 120, 150, 0.6),
            rgba(0, 200, 180, 0.9),
            rgba(0, 120, 150, 0.9)
        );
        
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 8px 10px;
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    /* Individual Links */
    .nav-link-mobile {
        flex: 1;
        text-decoration: none;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: 0.3s;
    }

    .nav-link-mobile.active {
        color: #000; /* Your primary-green */
    }

    .nav-link-mobile .material-symbols-outlined {
        font-size: 24px;
        margin-bottom: 2px;
    }

    /* The Floating FAB Container */
    .fab-center {
        position: absolute;
        top: -35px; /* Adjust height of float */
        left: 50%;
        transform: translateX(-50%);
        background: #f4f7f6; /* Match your page background */
        padding: 8px;
        border-radius: 50%;
        z-index: 10000;
    }

    /* The FAB Icon Box */
    .fab-icon {
        width: 60px;
        height: 60px;
        background: #fff;
        border: 3px solid #0a846c; /* Your primary-green */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        cursor: pointer;
    }

    /* Placeholder to keep the gap in the middle of the nav-wrapper */
    .nav-spacer {
        flex: 0.8;
        pointer-events: none;
    }


