       .cert-section {
            padding: 40px 20px;
            background: #f2f2f2;
        }

        .cert-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .cert-title h2 {
            color: #000;
            font-size: 30px;
        }

        .cert-title p {
            color: #444;
            font-size: 15px;
        }

        .cert-grid {
            max-width: 1100px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .cert-box {
            background: #fff;
            border-radius: 6px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
            text-align: center;
        }

        .cert-box img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            border: 1px solid #ddd;
            margin-bottom: 15px;
        }

        .cert-box h3 {
            color: #000;
            margin-bottom: 10px;
        }

        .cert-box p {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
        }
	/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

/* ===== Justdial Floating Button with Icon ===== */
.justdial-float {
    position: fixed;
    right: 25px;
    bottom: 100px;       /* WhatsApp se thoda upar */
    width: 60px;
    height: 60px;
    background-color: #fff;   /* white background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    z-index: 99999;
    transition: transform 0.3s ease;
}

.justdial-float img {
    width: 36px;
    height: 36px;
}

.justdial-float:hover {
    transform: scale(1.1);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .justdial-float {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 15px;
    }

    .justdial-float img {
        width: 28px;
        height: 28px;
    }
}

/* ===== IndiaMART Floating Button with Icon ===== */
.indiamart-float {
    position: fixed;
    right: 25px;
    bottom: 170px;       /* WhatsApp + Justdial se thoda upar */
    width: 60px;
    height: 60px;
    background-color: #fff;   /* IndiaMART blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    z-index: 99999;
    transition: transform 0.3s ease;
}

.indiamart-float img {
    width: 36px;
    height: 36px;
}

.indiamart-float:hover {
    transform: scale(1.1);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .indiamart-float {
        width: 50px;
        height: 50px;
        bottom: 150px;     /* WhatsApp + Justdial spacing */
        right: 15px;
    }

    .indiamart-float img {
        width: 28px;
        height: 28px;
    }
}

.highlight {
    background: yellow;
    color: black;
    padding: 2px 4px;
    border-radius: 3px;
}

