
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

/* OFFER BAR */
.offer-bar{
background:linear-gradient(to right,#38bdf8,#22c55e,#a855f7);
color:white;
overflow:hidden;
white-space:nowrap;
padding:8px 0;
}
.offer-track{
display:inline-block;
animation: marquee 15s linear infinite;
}
.offer-track span{
margin:0 40px;
font-weight:500;
}
@keyframes marquee{
0%{transform:translateX(100%);}
100%{transform:translateX(-100%);}
}

/* NAVBAR */
.navbar{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:999;
}
.nav-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 20px;
}
.logo{
font-size:26px;
font-weight:700;
color:#2563eb;
}

/* MENU */
nav{
display:flex;
align-items:center;
}
nav a{
margin:0 12px;
text-decoration:none;
color:#0f172a;
font-weight:500;
transition:.3s;
}
nav a:hover{
color:#2563eb;
}

.btn-login{
background:#2563eb;
color:white !important;
padding:8px 16px;
border-radius:6px;
}

/* MOBILE */
.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

@media(max-width:768px){
.menu-toggle{display:block;}
nav{
position:absolute;
top:100%;
left:0;
background:white;
width:100%;
flex-direction:column;
display:none;
}
nav.show{display:flex;}
nav a{
padding:12px;
border-top:1px solid #eee;
width:100%;
text-align:center;
}
}
.hero-slider{
height:80vh;
position:relative;
overflow:hidden;
background:#0f172a;
}

.slider-wrapper{
height:100%;
position:relative;
}

.slide-img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s ease;
}

.slide-img.active{
opacity:1;
}

.slide-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:white;
text-align:center;
max-width:700px;
opacity:0;
transition:.8s;
z-index:5;
}

.slide-text.active{
opacity:1;
}

.slide-text h1{
font-size:48px;
margin-bottom:15px;
}

.slide-text p{
font-size:18px;
margin-bottom:20px;
}

.slide-btn{
background:#2563eb;
padding:12px 24px;
color:white;
border-radius:6px;
text-decoration:none;
}

/* Responsive */
@media(max-width:768px){
.slide-text h1{font-size:28px;}
.slide-text p{font-size:14px;}
}

.services-section{
padding:60px 20px;
background:#f8fafc;
}

.section-title{
text-align:center;
font-size:32px;
margin-bottom:30px;
color:#0f172a;
}

.services-slider{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
padding-bottom:10px;
}
.services-slider::-webkit-scrollbar{
height:6px;
}
.services-slider::-webkit-scrollbar-thumb{
background:#2563eb;
border-radius:10px;
}

.service-card{
min-width:280px;
background:white;
border-radius:14px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
padding:15px;
transition:.3s;
}
.service-card:hover{
transform:translateY(-5px);
}

.service-card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:10px;
}

.service-card h3{
margin:10px 0;
color:#1e293b;
}

.service-card p{
font-size:14px;
color:#475569;
}

.price{
margin:10px 0;
}
.price del{
color:#94a3b8;
}
.price span{
color:#16a34a;
font-weight:600;
margin-left:8px;
}

.service-btn{
display:inline-block;
background:#2563eb;
color:white;
padding:8px 14px;
border-radius:6px;
text-decoration:none;
}

/* Responsive */
@media(max-width:768px){
.section-title{font-size:24px;}
.service-card{min-width:240px;}
}



.services-section{
padding:70px 20px;
background:#f8fafc;
text-align:center;
}
.services-section h2{
font-size:36px;
margin-bottom:40px;
color:#0f172a;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.service-card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}
.service-card:hover{transform:translateY(-8px);}

.service-card img{
width:100%;
height:180px;
object-fit:cover;
}

.service-card h3{margin:15px;color:#2563eb;}
.service-card p{padding:0 15px;color:#555;}

.btn-group{
display:flex;
flex-wrap:wrap;
gap:10px;
justify-content:center;
padding:15px;
}

.btn{
padding:8px 14px;
border-radius:8px;
text-decoration:none;
border:none;
cursor:pointer;
font-size:14px;
}

.view-btn{background:#0f172a;color:white;}
.wa-btn{background:#22c55e;color:white;}
.get-btn{background:#2563eb;color:white;}

/* POPUP */
.popup{
position:fixed;
top:0;left:0;right:0;bottom:0;
background:rgba(0,0,0,.6);
display:none;
justify-content:center;
align-items:center;
z-index:999;
}

.popup-content{
background:white;
padding:25px;
border-radius:16px;
width:90%;
max-width:400px;
position:relative;
}

.popup-content h3{text-align:center;color:#2563eb;}

.popup-content input,
.popup-content textarea{
width:100%;
padding:10px;
margin:10px 0;
border-radius:8px;
border:1px solid #ccc;
}

.popup-actions{
display:flex;
justify-content:space-between;
gap:10px;
}

.send-btn{background:#2563eb;color:white;width:50%;}

.close{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
}

@media(max-width:600px){
.popup-actions{flex-direction:column;}
}