
/* Header Style */
.header {
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
}
.header .header-left-name .header-heading{
    font-size: 50px;
    font-weight: 600;

}
.header .header-left-name .header-heading .stroke-text
 {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1.4px;
    -webkit-text-stroke-color: var(--primary-color);
    font-size: 50px;
    font-family: sans-serif;
}
.header .social-links ul {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.header .social-links ul li a i{
    color: var(--primary-color);
} 
.footer{
    padding-top: 50px;
    padding-bottom: 30px;
}

.footer .site-copy-right {
    color: var(--primary-color);
    display: block;
    text-align: center;
}

/*WhatsApp Contact Btn*/

/* WhatsApp floating button */
#wa-float {
    position: fixed;
    right: 0px;
    bottom: 100px;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px 0px 0px 10px;
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.18);
    font-weight: 600;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    opacity: 0.98;
    backdrop-filter: blur(6px);
}

#wa-float .wa-icon {
  font-size: 1rem;
  line-height: 1;
}
#wa-float .wa-text {
  font-size: 1rem;
}
/* hover effect */
#wa-float:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(18,140,126,0.24);
}
