/* =========================
MCS AMBULANCE SERVICE
FULL STYLE.CSS (FINAL CLEAN)
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff;
color:#222;
overflow-x:hidden;
}

/* =========================
HEADER
========================= */

header{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:22px;
font-weight:700;
color:#d40000;
}

nav ul{
display:flex;
gap:25px;
list-style:none;
}

nav ul li a{
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}

nav ul li a:hover{
color:#d40000;
}

.callBtn{
background:#d40000;
color:#fff;
padding:10px 20px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.callBtn:hover{
background:#0057b7;
}

/* =========================
HERO SLIDER (MODERN)
========================= */

.heroSlider{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
margin-top:70px;
}

.heroSlider .slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transform:scale(1.08);
transition:all 1.2s ease;
}

.heroSlider .slide.active{
opacity:1;
transform:scale(1);
}

.heroSlider img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(40%);
}

.heroSlider::after{
content:"";
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
background:linear-gradient(45deg,rgba(212,0,0,0.25),rgba(0,87,183,0.25));
}

/* GLASS TEXT BOX */
.glassBox{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:#fff;

padding:30px 40px;
border-radius:15px;

background:rgba(255,255,255,0.08);
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,0.2);

width:90%;
max-width:600px;
animation:fadeUp 1s ease;
}

.glassBox h1{
font-size:40px;
font-weight:800;
margin-bottom:10px;
}

.glassBox p{
font-size:18px;
margin-bottom:20px;
opacity:0.9;
}

.glassBox a{
display:inline-block;
padding:12px 25px;
background:#d40000;
color:#fff;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.glassBox a:hover{
background:#0057b7;
}

/* =========================
SECTIONS
========================= */

section{
padding:80px 8%;
}

.about{
text-align:center;
}

.about h2{
color:#d40000;
margin-bottom:20px;
font-size:35px;
}

.about p{
max-width:800px;
margin:auto;
line-height:1.8;
}

/* =========================
SERVICES
========================= */

.services{
background:#f8f8f8;
text-align:center;
}

.services h2{
color:#d40000;
font-size:35px;
margin-bottom:40px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card i{
font-size:40px;
color:#d40000;
margin-bottom:15px;
}

/* =========================
COUNTER
========================= */

.counter{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
background:linear-gradient(45deg,#d40000,#0057b7);
color:#fff;
text-align:center;
padding:60px 8%;
}

.counter h2{
font-size:45px;
}

/* =========================
WHY / TESTIMONIAL
========================= */

.why,.testimonial{
text-align:center;
}

.why h2,.testimonial h2{
color:#d40000;
margin-bottom:40px;
font-size:35px;
}

/* =========================
BOOKING PAGE
========================= */

.bookingSection{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
min-height:100vh;
padding:120px 20px 60px;
background:#f5f7fa;
text-align:center;
}

.bookingSection h2{
font-size:38px;
color:#d40000;
margin-bottom:30px;
}

.bookingForm{
width:100%;
max-width:500px;
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
display:flex;
flex-direction:column;
gap:15px;
}

.bookingForm input,
.bookingForm select,
.bookingForm textarea{
padding:14px;
border:1px solid #ddd;
border-radius:10px;
font-size:15px;
outline:none;
}

.bookingForm textarea{
min-height:100px;
resize:none;
}

.bigBtn{
background:linear-gradient(45deg,#d40000,#0057b7);
color:#fff;
padding:18px;
border:none;
border-radius:50px;
font-size:18px;
font-weight:700;
cursor:pointer;
transition:0.3s;
}

.bigBtn:hover{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* =========================
CTA
========================= */

.cta{
background:#f5f5f5;
text-align:center;
}

.cta h2{
font-size:32px;
margin-bottom:15px;
color:#d40000;
}

/* =========================
FOOTER
========================= */

footer{
background:#111;
color:#fff;
text-align:center;
padding:40px;
}

footer p{
margin:8px 0;
}

/* =========================
FLOATING BUTTONS
========================= */

.whatsapp,.phone{
position:fixed;
right:20px;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:24px;
z-index:999;
}

.whatsapp{
bottom:20px;
background:#25d366;
}

.phone{
bottom:85px;
background:#d40000;
}

/* =========================
ANIMATION
========================= */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

.glassBox h1{
font-size:28px;
}

nav ul{
display:none;
}

.heroSlider{
height:70vh;
}

}