 
        :root {
            --primary: #861314; /* Maroon brand color */
            --primary-dark: #5a0d0d;
            --primary-light: #a33a3a;
            --accent: #1a8cff; /* Blue for water association */
            --light: #f8f9fa;
            --dark: #212529;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif; /* Changed font */
            line-height: 1.7;
            color: var(--dark);
            background: var(--light); /* Original light background */
            /* New background image for the body */
            background-image: url('./after.png'); /* Set logo as background */
            background-repeat: no-repeat; /* Repeat the image */
            background-size: 150px; /* Adjust size to make it subtle */
            background-attachment: fixed; /* Optional: keeps background fixed while scrolling */
        }
        .read-more-btn { background: #5a0d0d; color: white; padding: 10px 20px; text-decoration: none; }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        header {
            background: var(--white); /* Solid background for header for readability */
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-main {
    height: 60px; /* Adjust to match your original size */
    width: auto;
}

.brand-name {
    font-size: 24px;
    font-weight: 800; /* Bold design */
    color: #861314; /* Deep blue/black color */
    letter-spacing: 1px;
    margin-left: 12px;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif; /* Change to match your original font */
}
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo-img {
            height: 60px;
            width: auto;
        }
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        .logo-main {
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1;
        }

        /* Logo Styling */
    .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    }
    .logo-img {
    height: 50px; /* Adjust based on your logo size */
    width: auto;
    }
        .logo-tagline {
            font-size: 0.8rem;
            color: var(--dark);
            margin-top: 5px;
        }
        
        /* Fixed Header Styling */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000; /* Stays on top of everything */
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between; /* Pushes logo left and links right */
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-main {
    height: 50px;
    width: auto;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: #861314;
    margin-left: 10px;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #861314;
}

/* IMPORTANT: Add padding to the top of your body 
   so the fixed header doesn't cover your content */
body {
    padding-top: 80px; 
}
        
       /* Hero Section with Background */
.hero-home {
    background: url('../images/after.png') no-repeat center center/cover;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* Darkens image so text is readable */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Button Styling */
 .btn {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--primary);
        }
        .btn:hover {
            background: transparent;
            color: var(--primary);
        }
        .btn-outline {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
            margin-left: 15px;
        }
        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
        }

.btn-primary {
    background-color: #5a0d0d;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s;
}
.btn-primary:hover {
    background-color: #5a0d0d;
}

/* How it Works Styling */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.work-item {
    background: #f9f9f9;
    padding: 25px;
    border-left: 5px solid #5a0d0d;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
        /* How It Works Section */
        .how-it-works, .how-antiscalant-works { /* Added .how-antiscalant-works */
            padding: 80px 0;
            background: var(--white); /* Solid background for readability */
        }
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 15px;
            position: relative;
        }
        .process-step:not(:last-child)::after {
            content: '→';
            position: absolute;
            right: -15px;
            top: 40px;
            font-size: 2rem;
            color: var(--primary);
        }
        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
        }
        
        /* Products Section */
        .products {
            padding: 80px 0;
            background: var(--light); /* Solid background for readability */
        }
        .product-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tab-btn {
            padding: 10px 25px;
            background: var(--white);
            border: 1px solid #ddd;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }
        .tab-btn.active, .tab-btn:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        .product-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .product-card:hover {
            transform: translateY(-10px);
        }
        .product-img-container {
            position: relative;
            height: 320px;
            overflow: hidden;
        }
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
            cursor: zoom-in;
        }
        .product-card:hover .product-img {
            transform: scale(1.1);
        }
        .watermark {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(255,255,255,0.7);
            padding: 3px 8px;
            font-size: 0.7rem;
            border-radius: 3px;
            color: var(--primary);
        }
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #861314;
            color: var(--white);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .product-content {
            padding: 20px;
        }
        .product-category {
            color: #861314;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        .product-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        .product-features {
            margin-bottom: 15px;
        }
        .product-features li {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }
        .product-features li::before {
            content: "✓";
            color: var(--primary);
            margin-right: 8px;
        }
        .specs-btn {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
        }
        
        /* Product Gallery Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            overflow: auto;
        }
        .modal-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 90%;
            margin-top: 50px;
        }
        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: var(--white);
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
        }
        
        /* Comparison Slider */
        .comparison-section {
            padding: 80px 0;
            background: var(--white);
        }
        .comparison-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        .comparison-image {
            width: 100%;
            height: 500px;
            display: block;
        }
        
        .before-image, .after-image {
            width: 50%;
            height: 500px;
        }
        .after-image {
            position: absolute;
            top: 0;
            left: 50%;
            height: 100%;
            overflow: hidden;
            width: 50%;
        }
        .slider-handle {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--white);
            transform: translateX(-50%);
            cursor: ew-resize;
        }
        .slider-handle::after {
            content: '↔';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }
        
        /* About Us Section */
        .about-section {
            padding: 80px 0;
            background: var(--light); /* Solid background for readability */
        }
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start; /* Align items to the start to allow content to flow naturally */
        }
        .about-img {
            /* This style is largely removed/modified to make space for dynamic content */
            display: none; /* Hide the single large image to replace with new content */
        }

        /* New styles for the creative right section */
        .about-right-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center; /* Center content horizontally */
            text-align: center; /* Center text within content blocks */
            padding: 20px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: sticky; /* Make it sticky */
            top: 100px; /* Adjust as needed for sticky positioning */
        }

        .about-right-content .logo-small {
            width: 120px; /* Smaller logo for the creative section */
            height: auto;
            margin-bottom: 20px;
        }

        .achievement-grid {
            display: grid;
            grid-template-columns: 1fr; /* Stack items on small screens */
            gap: 25px;
            width: 100%; /* Take full width of parent */
        }

        .achievement-item {
            display: flex;
            align-items: flex-start; /* Align icon and text to top */
            gap: 15px;
            text-align: left; /* Align text within item to left */
            background: var(--light);
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .achievement-item:hover {
            transform: translateY(-5px);
        }

        .achievement-icon {
            font-size: 1.8rem;
            color: var(--primary);
            flex-shrink: 0; /* Prevent icon from shrinking */
            margin-top: 5px; /* Align icon slightly with text */
        }

        .achievement-text h4 {
            font-size: 1.1rem;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }

        .achievement-text p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }
        
        .about-content h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .about-content p {
            margin-bottom: 20px;
            color: #555;
        }
        .about-features {
            margin-top: 30px;
        }
        .feature-item {
            display: flex;
            margin-bottom: 20px;
        }
        .feature-icon {
            background: var(--primary);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .feature-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        /* Certifications Styling */
        .certifications {
            margin-top: 40px;
            text-align: center; /* Center the icons */
        }
        .certifications h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 25px;
        }
        .cert-grid {
            display: flex; /* Changed to flex for better control of spacing */
            justify-content: center; /* Center items horizontally */
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
            gap: 30px; /* Space between items */
        }
        .cert-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.95rem;
            color: #555;
            text-align: center;
            min-width: 100px; /* Ensure a minimum width */
        }
        .cert-item img { /* Style for actual logo images */
            width: 80px; /* Adjust size as needed */
            height: 80px; /* Keep aspect ratio */
            object-fit: contain; /* Ensure full logo is visible */
            margin-bottom: 10px;
            border-radius: 50%; /* Make them circular */
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            padding: 5px; /* Add padding if logo has tight edges */
            background: var(--white); /* White background for logos */
        }
        
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px; /* Reduced margin */
            color: var(--white);
        }
        .footer-tagline { /* New style for tagline */
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 15px;
        }
        .footer-about p {
            margin-bottom: 20px;
            color: #aaa;
        }
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            color: var(--white);
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: var(--accent);
        }
        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--white);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--white);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }

       .gallerySwiper {
    padding-bottom: 50px;
}

.gallerySwiper .swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    
}

/* See More Slide Styles */
.gallery-see-more {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blur-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.6); /* Creates the blur and darkens it */
    z-index: 1;
}

.content-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}
.content-overlay i {

    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.content-overlay a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    border: 2px solid #fff;
    padding: 10px 20px;
    transition: 0.3s;
}

.content-overlay a:hover {
    background: #fff;
    color: #861314;
}
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 999;
            transition: transform 0.3s;
            text-decoration: none;
            font-size: 1.8rem;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .process-step {
                min-width: 150px;
                margin-bottom: 30px;
            }
            .process-step:not(:last-child)::after {
                display: none;
            }
            .about-container {
                grid-template-columns: 1fr;
            }
            .about-img { /* Hide on smaller screens if still present */
                display: none; 
            }
            .about-right-content {
                position: static; /* Disable sticky on smaller screens */
                margin-top: 30px; /* Add some space if it was sticky */
            }
            .swiper {
                height: 400px;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px 0;
            }
            .logo {
                margin-bottom: 15px;
            }
           
            .hero {
                height: auto;
                padding: 100px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .btn {
                display: block;
                margin-bottom: 15px;
                width: 100%;
            }
            .btn-outline {
                margin-left: 0;
            }
            .process-step {
                min-width: 100%;
                margin-bottom: 30px;
            }
            .swiper {
                height: 300px;
            }
            .achievement-grid {
                grid-template-columns: 1fr; /* Stack items vertically */
            }
            .achievement-item {
                flex-direction: column; /* Stack icon and text for better mobile layout */
                align-items: center;
                text-align: center;
            }
            .achievement-icon {
                margin-bottom: 10px;
                margin-top: 0;
            }
        }

        /* Product Page Specifics */
.page-banner {
    background: #861314;
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}





.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    
    
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    height: 320px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #861314;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}

.product-info {
    padding: 20px;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    font-size: 14px;
    color: #555;
}

.btn-inquire {
    display: block;
    text-align: center;
    background: #861314; /* WhatsApp Green */
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
}
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 10px;
}

.pag-btn, .pag-num {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.pag-num.active {
    background: #861314;
    color: #fff;
    border-color: #861314;
}

.pag-btn:hover, .pag-num:hover:not(.active) {
    background: #f0f0f0;
}

/* Helper class for JS */
.product-card {
    transition: opacity 0.3s ease-in-out;
}
.product-card:not(.show-pag) {
    display: none !important; /* Forces hide for non-current page items */
} 