/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f8fafc;
color:#222;
line-height:1.7;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

section{
scroll-margin-top:90px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
position:sticky;
top:0;
z-index:999;
background:#fff;
box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
position:relative;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:22px;
font-weight:700;
text-decoration:none;
color:#e91e63;
}

.logo i{
font-size:24px;
}

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:#222;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:#e91e63;
}
.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#e91e63;
}

/* =========================
   HERO
========================= */

.hero{
height:100vh;
background:url("../images/hero.jpg") center center/cover no-repeat;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.50);
}

.hero-content{
position:relative;
z-index:2;
max-width:750px;
padding:20px;
color:#fff;
}

.hero-content h1{
font-size:58px;
line-height:1.2;
margin-bottom:20px;
}

.hero-content p{
font-size:18px;
margin-bottom:30px;
}

.hero-btn{
display:inline-block;
background:#e91e63;
color:#fff;
padding:14px 35px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.hero-btn:hover{
background:#c2185b;
}

/* =========================
   ABOUT
========================= */

.about{
padding:100px 0;
background:#fff;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:20px;
box-shadow:0 15px 30px rgba(0,0,0,0.10);
}

.about-content h2{
font-size:38px;
color:#e91e63;
margin-bottom:20px;
}

.about-content h2 i{
margin-right:10px;
}

.about-content p{
margin-bottom:15px;
color:#555;
}

/* =========================
   FACILITIES
========================= */

.services{
padding:100px 0;
background:#fdf4f8;
}

.services h2{
text-align:center;
font-size:38px;
color:#e91e63;
margin-bottom:60px;
}

.services h2 i{
margin-right:10px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.service-card{
background:#fff;
padding:35px 25px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
border-top:4px solid #e91e63;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card i{
font-size:50px;
color:#e91e63;
margin-bottom:20px;
}

.service-card h3{
font-size:22px;
margin-bottom:15px;
}

.service-card p{
font-size:15px;
color:#666;
}

/* =========================
   CONTACT
========================= */

.contact{
padding:100px 0;
background:#fff;
}

.contact-wrapper{
max-width:800px;
margin:auto;
background:#fff;
padding:50px;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
border-left:6px solid #e91e63;
}

.contact-wrapper h2{
text-align:center;
font-size:36px;
color:#e91e63;
margin-bottom:35px;
}

.contact-info{
display:flex;
flex-direction:column;
gap:25px;
}

.contact-row{
display:flex;
align-items:flex-start;
gap:15px;
}

.contact-row i{
font-size:22px;
color:#e91e63;
margin-top:4px;
min-width:25px;
}

.contact-row span,
.contact-row a{
color:#444;
font-size:17px;
text-decoration:none;
line-height:1.8;
}

/* =========================
   FOOTER
========================= */

footer{
background:#111827;
color:#fff;
text-align:center;
padding:25px 15px;
}

footer p{
margin-bottom:8px;
}

footer a{
color:#e91e63;
text-decoration:none;
font-weight:600;
}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:768px){

.menu-toggle{
display:block;
}

.call-btn{
display:none;
}

.logo{
font-size:15px;
max-width:220px;
line-height:1.4;
}

.logo i{
font-size:18px;
}

.nav-links{
display:none;
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
flex-direction:column;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.nav-links.active{
display:flex;
}

.nav-links li{
width:100%;
text-align:center;
border-bottom:1px solid #eee;
}

.nav-links li a{
display:block;
padding:15px;
}

.hero{
height:80vh;
}

.hero-content h1{
font-size:34px;
}

.hero-content p{
font-size:15px;
}

.about{
padding:70px 0;
}

.about-container{
grid-template-columns:1fr;
gap:35px;
}

.about-image{
order:1;
}

.about-content{
order:2;
}

.about-content h2{
font-size:30px;
}

.services{
padding:70px 0;
}

.services h2{
font-size:30px;
}

.service-grid{
grid-template-columns:1fr;
}

.contact{
padding:70px 0;
}

.contact-wrapper{
padding:30px 20px;
}

.contact-wrapper h2{
font-size:28px;
}

.contact-row{
flex-direction:column;
align-items:center;
text-align:center;
}

.contact-row span,
.contact-row a{
font-size:15px;
}

footer{
font-size:14px;
}

}