.nirog-footer-wrapper {
	position: relative;
	background: #fff;
	color: #333;
	padding: 40px 20px 0;
	font-family: inherit;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.nirog-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-bottom: 30px;
}
.nirog-logo { max-width: 150px; margin-bottom: 15px; }
.nirog-col h3 { font-size: 20px; margin-bottom: 10px; }
.nirog-col h4 { font-size: 18px; margin-bottom: 15px; color: #4CAF50; }
.nirog-col ul { list-style: none; padding: 0; margin: 0; }
.nirog-col ul li { margin-bottom: 10px; }
.nirog-col ul li a { text-decoration: none; color: inherit; transition: 0.3s; }
.nirog-col ul li a:hover { color: #4CAF50; }
.nirog-bottom-bar {
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid #eee;
	font-size: 14px;
}
.nirog-whatsapp-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25D366;
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
	animation: nirogPulse 2s infinite;
	z-index: 9999;
}
@keyframes nirogPulse {
	0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
	70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
	100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Social Icons Styling */
.nirog-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 15px;
    align-items: center;
}
.nirog-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}
.nirog-social-links a:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
}
.nirog-social-links a i,
.nirog-social-links a svg,
.nirog-social-links a img {
    width: 18px;
    height: 18px;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: currentColor;
    object-fit: contain;
}

/* Mobile Responsiveness for Social Icons */
@media (max-width: 767px) {
    .nirog-social-links a {
        width: 30px;
        height: 30px;
    }
    .nirog-social-links a i,
    .nirog-social-links a svg,
    .nirog-social-links a img {
        width: 16px;
        height: 16px;
        font-size: 16px;
    }
}