Whatsapp Icon Added

This commit is contained in:
rajesh.n 2025-09-30 14:46:05 +05:30
parent e71054b0e1
commit 25fad790e4
2 changed files with 31 additions and 1 deletions

View File

@ -674,6 +674,11 @@
<div class="corces"></div>
</section>
<div class="whatsapp-icon" onclick="getInTouch()">
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg" alt="WhatsApp" />
</div>
<footer class="footer">
<div class="footer-container">
<div class="footer-section company-section">

View File

@ -2215,3 +2215,28 @@
transform: translateY(0);
}
}
.whatsapp-icon {
position: fixed;
bottom: 20px;
right: 20px;
width: 60px;
height: 60px;
cursor: pointer;
z-index: 1000;
border-radius: 50%;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: transform 0.2s;
}
.whatsapp-icon:hover {
transform: scale(1.1);
}
.whatsapp-icon img {
width: 100%;
height: 100%;
object-fit: cover;
}