*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:Arial;

}

body{

background:#f5f5f5;

}

header{

background:#0b3ca8;

color:white;

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 50px;

}

nav a{

color:white;

text-decoration:none;

margin-left:20px;

}

.hero{

background:#0b3ca8;

color:white;

text-align:center;

padding:80px 20px;

}

.hero button{

padding:12px 30px;

margin-top:20px;

background:white;

color:#0b3ca8;

border:none;

border-radius:5px;

cursor:pointer;

}

.rooms{

padding:50px;

text-align:center;

}

.room-container{

display:flex;

gap:25px;

justify-content:center;

flex-wrap:wrap;

margin-top:30px;

}

.card{

background:white;

width:300px;

border-radius:10px;

overflow:hidden;

box-shadow:0 5px 15px rgba(0,0,0,.2);

}

.card img{

width:100%;

height:200px;

object-fit:cover;

}

.card h3{

margin:15px;

}

.card p{

margin-bottom:15px;

}

.card button{

margin-bottom:20px;

padding:10px 20px;

background:#0b3ca8;

color:white;

border:none;

border-radius:5px;

cursor:pointer;

}

footer{

background:#0b3ca8;

color:white;

text-align:center;

padding:30px;

margin-top:40px;

}
footer{
    background:#0b3ca8;
    color:white;
    text-align:center;
    padding:30px;
    margin-top:40px;
}

/* Paste below this line */

/* Phone Button */
.phone-btn{
    position:fixed;
    left:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#007bff;
    color:white;
    font-size:30px;
    text-decoration:none;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 0 15px rgba(0,0,0,0.3);
    animation:blink 1s infinite;
    z-index:999;
}

/* WhatsApp Button */
.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    font-size:30px;
    text-decoration:none;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 0 15px rgba(0,0,0,0.3);
    animation:blink 1s infinite;
    z-index:999;
}

@keyframes blink{
    0%{
        transform:scale(1);
        opacity:1;
    }
    50%{
        transform:scale(1.15);
        opacity:0.6;
    }
    100%{
        transform:scale(1);
        opacity:1;
    }
}