/* ========================================== */
/* Reset CSS */
/* ========================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

    /* WhatsApp Floating Button ------------------------*/
.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  transition: transform .3s ease;
}

.whatsapp-float img{
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover{
  transform: scale(1.1);
}

/* Mobile thoda chhota --*/
@media(max-width:768px){
  .whatsapp-float{
    width: 52px;
    height: 52px;
  }
  .whatsapp-float img{
    width: 28px;
    height: 28px;
  }
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.6)}
  70%{box-shadow:0 0 0 15px rgba(37,211,102,0)}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}
}
.whatsapp-float{
  animation: pulse 2s infinite;
}

.whatsapp-float::before{
  content:"Chat on WhatsApp";
  position:absolute;
  right:70px;
  background:#000;
  color:#fff;
  padding:6px 10px;
  border-radius:6px;
  font-size:12px;
  opacity:0;
  white-space:nowrap;
  transition:.3s;
}
.whatsapp-float:hover::before{
  opacity:1;
}
