/* ==========================
   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:#fff;
color:#333;
line-height:1.7;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ==========================
   NAVBAR
========================== */

.navbar{
position:sticky;
top:0;
z-index:999;
background:#ffffff;
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{
font-size:22px;
font-weight:700;
color:#c2185b;
}

.logo i{
margin-right:8px;
color:#e91e63;
}

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}

.nav-links a:hover{
color:#e91e63;
}

.call-btn{
background:#e91e63;
color:#fff;
padding:12px 24px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.call-btn:hover{
background:#c2185b;
}

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#e91e63;
}

/* ==========================
   HERO
========================== */

.hero{
height:100vh;
background:url("../images/hero.jpg") center/cover no-repeat;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background-position:center;
background-size:cover;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
z-index:2;
max-width:800px;
padding:20px;
color:#fff;
}

.hero-content h1{
font-size:58px;
font-weight:700;
margin-bottom:20px;
line-height:1.2;
}

.hero-content p{
font-size:18px;
margin-bottom:30px;
}

.hero-btn{
display:inline-block;
background:#e91e63;
color:#fff;
padding:15px 35px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:0.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 10px 30px rgba(0,0,0,0.1);
}

.about-content h2{
font-size:38px;
margin-bottom:20px;
color:#c2185b;
}

.about-content h2 i{
color:#e91e63;
margin-right:10px;
}

.about-content p{
margin-bottom:15px;
color:#555;
}

/* ==========================
   SERVICES
========================== */

.services{
padding:100px 0;
background:#fff5f8;
}

.services h2{
text-align:center;
font-size:38px;
margin-bottom:60px;
color:#c2185b;
}

.services h2 i{
color:#e91e63;
margin-right:10px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:#fff;
padding:35px 25px;
border-radius:25px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-icon{
width:80px;
height:80px;
background:#fde7ef;
margin:auto;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:20px;
}

.service-icon i{
font-size:35px;
color:#e91e63;
}

.service-card h3{
margin-bottom:15px;
font-size:22px;
color:#c2185b;
}

.service-card p{
color:#666;
}

/* ==========================
   CONTACT
========================== */

.contact{
padding:100px 0;
background:#fff;
}

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:40px;
align-items:center;
}

.contact-box{
background:linear-gradient(135deg,#c2185b,#e91e63);
padding:40px;
border-radius:25px;
color:#fff;
}

.contact-box h2{
font-size:34px;
margin-bottom:15px;
}

.contact-box h2 i{
margin-right:10px;
}

.contact-box p{
margin-bottom:20px;
}

.contact-item{
margin-bottom:18px;
line-height:1.8;
}

.contact-item i{
margin-right:10px;
}

.contact-item a{
color:#fff;
text-decoration:none;
}

.contact-btn{
display:inline-block;
margin-top:15px;
background:#fff;
color:#c2185b;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

.map-box iframe{
width:100%;
height:500px;
border:none;
border-radius:25px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* ==========================
   FOOTER
========================== */

footer{
background:#111827;
padding:25px 15px;
text-align:center;
color:#fff;
}

footer p{
margin-bottom:8px;
}

footer a,
footer a:link,
footer a:visited,
footer a:hover,
footer a:active{
color:#e91e63 !important;
text-decoration:none;
font-weight:600;
}

/* ==========================
   MOBILE VIEW
========================== */

@media(max-width:768px){

.menu-toggle{
display:block;
}

.call-btn{
display:none;
}

.logo{
font-size:16px;
max-width:220px;
line-height:1.4;
}

.nav-links{
display:none;
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
flex-direction:column;
gap:0;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
z-index:999;
}

.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:70vh;
background-size:full;
background-color:#f8f8f8;
}

.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-content{
text-align:center;
}

.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{
grid-template-columns:1fr;
}

.contact-box{
padding:30px;
}

.contact-box h2{
font-size:28px;
}

.map-box iframe{
height:300px;
}

footer{
font-size:14px;
}

.floating-call{
width:55px;
height:55px;
font-size:22px;
right:15px;
bottom:15px;
}

}