*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:#0b0b0b;

color:#fff;

overflow-x:hidden;

}

/* Header */

header{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 8%;

background:#111;

border-bottom:1px solid rgba(255,255,255,.08);

position:sticky;

top:0;

z-index:1000;

}

header h2{

color:#FFD700;

font-size:28px;

}

.homeBtn{

text-decoration:none;

color:#fff;

padding:10px 18px;

background:#1d1d1d;

border-radius:10px;

transition:.3s;

}

.homeBtn:hover{

background:#FFD700;

color:#111;

}

/* Hero */

.hero{

text-align:center;

padding:50px 20px;

}

.hero h1{

font-size:55px;

color:#FFD700;

margin-bottom:10px;

}

.hero p{

font-size:18px;

color:#cfcfcf;

}

/* Search */

.search{

width:90%;

max-width:700px;

margin:20px auto;

}

.search input{

width:100%;

padding:15px 20px;

border:none;

outline:none;

border-radius:12px;

background:#1b1b1b;

color:white;

font-size:16px;

}

/* Tool Grid */

.tools{

width:92%;

max-width:1500px;

margin:40px auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:25px;

}

/* Card */

.card{

background:#151515;

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

padding:30px 20px;

text-align:center;

text-decoration:none;

color:white;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.card:hover{

transform:translateY(-8px);

border-color:#FFD700;

box-shadow:0 0 25px rgba(255,215,0,.35);

}

.card i{

font-size:55px;

color:#FFD700;

margin-bottom:20px;

}

.card h3{

font-size:24px;

margin-bottom:10px;

}

.card p{

font-size:15px;

color:#c9c9c9;

line-height:1.6;

}

/* Footer */

footer{

margin-top:70px;

padding:25px;

text-align:center;

background:#111;

color:#999;

}

/* Responsive */

@media(max-width:768px){

header{

flex-direction:column;

gap:15px;

}

.hero h1{

font-size:38px;

}

.tools{

grid-template-columns:1fr;

}

}