*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0f1117;
color:#fff;
overflow-x:hidden;
}

/* Header */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#0f1117;
box-shadow:
8px 8px 20px #08090d,
-8px -8px 20px #161923;
position:sticky;
top:0;
z-index:1000;
}

.logo h2{
color:#FFD700;
font-size:28px;
font-weight:700;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#fff;
transition:.3s;
font-weight:500;
}

nav a:hover{
color:#FFD700;
}

/* Hero */

.hero{
text-align:center;
padding:50px 20px;
}

.hero h1{
font-size:48px;
color:#FFD700;
margin-bottom:12px;
}

.hero p{
font-size:18px;
color:#c9c9c9;
margin-bottom:30px;
}

/* Search */

.search-box{
width:90%;
max-width:700px;
margin:auto;
}

.search-box input{

width:100%;
padding:18px;
font-size:16px;
border:none;
outline:none;
border-radius:18px;
background:#0f1117;
color:white;

box-shadow:
inset 6px 6px 12px #090a0d,
inset -6px -6px 12px #181c26;

}

/* Category */

.category{

width:92%;
max-width:1500px;
margin:60px auto;

}

.category h2{

font-size:34px;
margin-bottom:30px;
color:#FFD700;

}

/* Grid */

.card-container{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

/* Card */

.service-card{

text-decoration:none;

color:white;

padding:30px 20px;

border-radius:25px;

background:#0f1117;

text-align:center;

transition:.35s;

box-shadow:

8px 8px 18px #08090d,

-8px -8px 18px #181c26;

}

.service-card:hover{

transform:translateY(-8px);

box-shadow:

0 0 20px rgba(255,215,0,.25),

8px 8px 18px #08090d,

-8px -8px 18px #181c26;

}

.service-card i{

font-size:55px;

margin-bottom:20px;

color:#FFD700;

}

.service-card h3{

font-size:22px;

margin-bottom:10px;

}

.service-card p{

font-size:15px;

color:#cfcfcf;

line-height:1.6;

}

/* Coming Soon */

.disabled{

cursor:not-allowed;

opacity:.8;

}

.disabled:hover{

transform:none;

}

.disabled span{

display:inline-block;

margin-top:18px;

padding:8px 18px;

border-radius:30px;

background:#FFD700;

color:#111;

font-weight:700;

font-size:14px;

}

/* Footer */

footer{

margin-top:80px;

padding:30px;

text-align:center;

background:#0f1117;

color:#999;

box-shadow:

0 -5px 20px rgba(0,0,0,.35);

}

/* Scrollbar */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:#FFD700;

border-radius:20px;

}

/* Responsive */

@media(max-width:992px){

header{

flex-direction:column;

gap:15px;

}

nav{

flex-wrap:wrap;

justify-content:center;

}

.hero h1{

font-size:38px;

}

}

@media(max-width:768px){

.card-container{

grid-template-columns:1fr;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:15px;

}

.category h2{

font-size:28px;

}

}

@media(max-width:500px){

.logo h2{

font-size:22px;

}

nav{

gap:15px;

}

.search-box input{

padding:15px;

}

.service-card{

padding:22px;

}

.service-card i{

font-size:42px;

}

.service-card h3{

font-size:19px;

}

}