*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#111827;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    width:100%;
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:1000;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#111827;
    text-decoration:none;
}

.logo span{
    color:#2563eb;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#111827;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#2563eb;
}

.hero{
    padding:120px 0;
    text-align:center;
}

.hero h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    max-width:750px;
    margin:auto;
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

.btn{
    display:inline-block;
    margin-top:40px;
    padding:16px 36px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#1d4ed8;
}

@media(max-width:768px){

header .container{
    flex-direction:column;
    gap:20px;
}

nav ul{
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero{
    padding:80px 0;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

}
.tools{
    padding:100px 0;
    background:#f8fafc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    margin-bottom:15px;
}

.section-title p{
    color:#6b7280;
    max-width:700px;
    margin:auto;
}

.tools-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.tool-card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:30px;
    transition:0.3s;
}

.tool-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.tool-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.tool-card p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:20px;
}

.badge{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}
.faq{
    padding:100px 0;
}

.faq-item{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:25px;
    margin-bottom:20px;
}

.faq-item h3{
    font-size:22px;
    margin-bottom:12px;
}

.faq-item p{
    color:#6b7280;
    line-height:1.8;
}
footer{
    background:#111827;
    color:#ffffff;
    padding:70px 0 30px;
    margin-top:100px;
}

.footer-logo{
    text-align:center;
    margin-bottom:30px;
}

.footer-logo h2{
    font-size:34px;
}

.footer-logo span{
    color:#2563eb;
}

.footer-logo p{
    color:#d1d5db;
    margin-top:10px;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    margin:35px 0;
}

.footer-links a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#2563eb;
}

.copyright{
    text-align:center;
    color:#9ca3af;
    font-size:15px;
}
.tools-section {
    padding: 50px 20px;
    text-align: center;
}


.tools-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
    margin-top: 30px;
}


.tool-card {
    background: #111;
    color: white;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}


.tool-card:hover {
    transform: translateY(-8px);
}


.tool-card h3 {
    font-size: 24px;
}


.tool-card p {
    color: #ccc;
    line-height: 1.6;
}


.tool-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #ff5c00;
    color: white;
    text-decoration: none;
    border-radius: 8px;
}


.tool-card a:hover {
    opacity: 0.8;
}
.tool-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: white;
    padding: 10px;
}
