*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
scroll-behavior:smooth;
}

body{
background:#f4f6f9;
padding-top:90px;
color:#1f2937;
}

/* ================= HEADER ================= */

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
background:#0f172a;
padding:20px 60px;
box-shadow:0 4px 20px rgba(0,0,0,0.15);
}

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
width:100%;
}

.logo{
color:white;
font-size:24px;
font-weight:700;
letter-spacing:1px;
}

.logo a{
color:white;
text-decoration:none;
}

.nav-links{
list-style:none;
display:flex;
gap:40px;
margin-left:auto;
}

.nav-links a{
color:white;
text-decoration:none;
font-size:16px;
transition:0.3s ease;
}

.nav-links a:hover,
.nav-links .active{
color:#ff2e63;
}

.header-btn{
background:#ff2e63;
color:white;
text-decoration:none;
padding:14px 32px;
font-size:16px;
font-weight:600;
border-radius:40px;
transition:0.3s ease;
margin-left:40px;
}

.header-btn:hover{
background:#e11d48;
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(255,46,99,0.3);
}

/* ================= HERO ================= */

.services-hero{
background:linear-gradient(to right, #0f172a, #1e293b);
color:white;
padding:160px 80px 130px;
text-align:center;
}

.services-hero h1{
font-size:48px;
font-weight:800;
margin-bottom:25px;
line-height:1.3;
}

.services-hero span{
color:#ff2e63;
}

.services-hero p{
max-width:750px;
margin:auto;
color:#cbd5e1;
line-height:1.7;
font-size:17px;
}

/* ================= SERVICES ================= */

.services-section{
background:linear-gradient(to right, #111827, #1f2937);
color:white;
padding:120px 80px;
}

.section-title{
text-align:center;
font-size:42px;
font-weight:800;
margin-bottom:70px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}

.service-card{
background:rgba(255,255,255,0.05);
padding:35px;
border-radius:16px;
backdrop-filter:blur(10px);
transition:all 0.3s ease;
}

.service-card:hover{
background:rgba(255,255,255,0.1);
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.service-card .icon{
font-size:30px;
margin-bottom:20px;
color:#ff2e63;
}

.service-card h3{
margin-bottom:15px;
}

.service-card p{
color:#cbd5e1;
line-height:1.7;
}

/* ================= NICHES SECTION ================= */

.niches-section{
background:linear-gradient(to right, #0f172a, #1e293b);
color:white;
padding:120px 80px;
text-align:center;
}

.niches-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
max-width:1100px;
margin:60px auto 0;
}

.niche-card{
background:rgba(255,255,255,0.05);
padding:35px 25px;
border-radius:14px;
backdrop-filter:blur(10px);
transition:all 0.3s ease;
cursor:pointer;
}

.niche-card:hover{
background:rgba(255,255,255,0.1);
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.niche-card h3{
font-size:18px;
font-weight:600;
color:#ff2e63;
}

/* ================= PROCESS ================= */

.process-section{
background:linear-gradient(to right, #111827, #1f2937);
color:white;
padding:120px 80px;
text-align:center;
}

.process-steps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:60px auto 0;
}

.step{
background:rgba(255,255,255,0.05);
padding:35px;
border-radius:16px;
backdrop-filter:blur(10px);
transition:all 0.3s ease;
}

.step:hover{
background:rgba(255,255,255,0.1);
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.step h3{
color:#ff2e63;
margin-bottom:15px;
}

.step p{
color:#cbd5e1;
line-height:1.7;
}

/* ================= CTA ================= */

.services-cta{
background:linear-gradient(135deg, #0f172a, #111827);
padding:120px 20px;
text-align:center;
color:white;
}

.services-cta h2{
font-size:40px;
margin-bottom:20px;
}

.services-cta p{
color:#cbd5e1;
margin-bottom:35px;
font-size:17px;
}

.cta-btn{
background:#ff2e63;
color:white;
padding:16px 40px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:0.3s;
display:inline-block;
}

.cta-btn:hover{
background:#e11d48;
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(255,46,99,0.3);
}

/* ================= FOOTER ================= */

.footer{
background:linear-gradient(135deg, #0f172a, #111827);
color:white;
padding-top:80px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:50px;
padding:0 80px 60px;
}

.footer-col h3{
margin-bottom:20px;
}

.footer-col h4{
color:#ff2e63;
margin-bottom:20px;
}

.footer-col p,
.footer-col a{
color:#cbd5e1;
font-size:14px;
text-decoration:none;
line-height:1.7;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col a:hover{
color:#ff2e63;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.1);
text-align:center;
padding:25px;
font-size:13px;
color:#9ca3af;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.services-hero{
padding:140px 40px 100px;
}

.services-section,
.niches-section,
.process-section{
padding:90px 40px;
}

}

@media(max-width:768px){

header{
padding:15px 20px;
}

.nav-links{
display:none;
}

.services-hero h1{
font-size:32px;
}

.section-title{
font-size:28px;
}

.services-section,
.niches-section,
.process-section{
padding:80px 25px;
}

}