﻿/* Alive India Tours - Global Modernisation Injection */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* 1. TYPOGRAPHY MODERNISATION */
body,
td,
th,
p,
font,
a,
b,
i,
u,
span,
div {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

a {
	transition: color 0.2s ease-in-out;
}

a:hover {
	color: #ff3333 !important;
	text-decoration: none !important;
}

/* 2. WHATSAPP FLOATING WIDGET */
.wa-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 25px;
	right: 25px;
	background-color: #25d366;
	color: #FFF !important;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
}

.wa-float:hover {
	transform: scale(1.1);
	box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
	color: #fff !important;
}

.wa-float svg {
	width: 35px;
	height: 35px;
	fill: currentColor;
}