/* ===================== */
/* RESET */
/* ===================== */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, sans-serif;
background:#f4f7fb;
}

/* ===================== */
/* NAVBAR */
/* ===================== */
nav{
background:#34495e;
text-align:center;
padding:12px;
position:sticky;
top:0;
z-index:1000;
}

nav a{
color:white;
margin:0 12px;
text-decoration:none;
font-weight:bold;
font-size:14px;
}

/* ===================== */
/* HERO (COLORFUL + ANIMATION) */
/* ===================== */
.hero{
height:260px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
font-size:26px;

/* 🔥 GRADIENT ANIMATION */
background: linear-gradient(270deg,#4facfe,#00f2fe,#43e97b,#f9d423);
background-size:800% 800%;
animation:gradientMove 10s ease infinite;
}

/* 🔥 BACKGROUND ANIMATION */
@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

/* ===================== */
/* LOGO ANIMATION */
/* ===================== */
.hero img{
width:580px;   /* 🔥 बड़ा logo */
margin-top:10px;

/* 🔥 FLOAT ANIMATION */
animation:floatLogo 3s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes floatLogo{
0%{transform:translateY(0);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0);}
}

/* ===================== */
/* CONTAINER */
/* ===================== */
.container{
padding:20px;
text-align:center;
}

/* ===================== */
/* SERVICES */
/* ===================== */
.services{
display:flex;
flex-wrap:wrap;
gap:15px;
justify-content:center;
}

/* FLEXIBLE CARD */
.card{
flex:1 1 250px;
max-width:300px;
background:white;
padding:15px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.card img{
width:100%;
border-radius:10px;
}

/* HOVER */
.card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* ===================== */
/* FORM */
/* ===================== */
form{
max-width:450px;
margin:30px auto;
display:flex;
flex-direction:column;
gap:10px;
}

input,select,textarea{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:6px;
}

button{
background:#2c3e50;
color:white;
padding:10px;
border:none;
cursor:pointer;
border-radius:6px;
}

button:hover{
background:#1a252f;
}

/* ===================== */
/* FOOTER */
/* ===================== */
footer{
background:#2c3e50;
color:white;
text-align:center;
padding:15px;
margin-top:20px;
}

/* ===================== */
/* FLOAT BUTTONS */
/* ===================== */
.whatsapp-btn, .call-btn{
position:fixed;
right:15px;
padding:10px 15px;
border-radius:30px;
color:white;
text-decoration:none;
font-weight:bold;
box-shadow:0 4px 6px rgba(0,0,0,0.3);
}

.whatsapp-btn{
bottom:80px;
background:#25D366;
}

.call-btn{
bottom:140px;
background:#007BFF;
}

/* ===================== */
/* MOBILE */
/* ===================== */
@media(max-width:768px){

.hero{
height:200px;
font-size:20px;
padding:10px;
}

/* LOGO SMALL */
.hero img{
width:150px;
}

.card{
flex:1 1 100%;
max-width:100%;
}

nav a{
display:inline-block;
margin:5px;
font-size:12px;
}
}
/* ===== FINAL FOOTER FIX ===== */
body{
min-height:100vh;
position:relative;
padding-bottom:60px; /* footer space */
}

footer{
position:absolute;
bottom:0;
left:0;
width:100%;
height:60px;
}