body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fffdf7;
}

/* ===== Stats Section ===== */

.stats-section {
	width: 100%;
	height:500px;
    padding: 60px 20px;
    text-align: center;
	justify-content:center;
	align-items:center;
	margin-bottom:-50px;
}

.stats-section1 {
	width: 100%;
	height:200px;
    padding: 60px 20px;
    text-align: center;
	justify-content:center;
	align-items:center;
	 background-image: url('img/bgblr.jpg');
	 background-size:cover;
	margin-top:-200px;
}

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.stat-box {
    background: #e5c9a5;
    width: 250px;
	height:250px;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #6a4a2f;
}

.stat-box h3 {
    margin: 10px 0 5px;
    font-size: 20px;
    color: #4a331f;
}

.stat-box p {
    margin: 0;
    color: #5a4634;
    font-size: 24px;
}

/* ===== Tagline ===== */

.tagline {
    margin-top: 40px;
    font-size: 28px;
    color: #744c1f;
    font-family: "Shadows Into Light", cursive;
}

/* ===== Floating Buttons ===== */

.floating-btn {
    position: fixed;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

.call-btn {
    bottom: 120px;
    background: #7a3e29;
}

.whatsapp-btn {
    bottom: 60px;
    background: #25D366;
}

.floating-btn:hover {
    transform: scale(1.1);
}
