* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f6fb;
    color: #333;
}

/* ================= NAVBAR ================= */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #5b6df6;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li {
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li:hover {
    color: #5b6df6;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
}

.hero h1 {
    font-size: 36px;
    color: #5b6df6;
    margin-bottom: 15px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.search-box {
    margin-top: 30px;
}

.search-box input {
    width: 100%;
    max-width: 500px;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ================= SECTION ================= */
.section {
    padding: 40px 5%;
}

.section h2 {
    margin-bottom: 25px;
    font-size: 22px;
    color: #444;
}

/* ================= TOOL GRID ================= */
.tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.tool-card {
    background: #fff;
    padding: 25px 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.tool-card h4 {
    font-size: 14px;
    font-weight: 500;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 20px;
    background: #fff;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}

/* ================= MOBILE ================= */
@media(max-width:768px) {

    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

.about-section {
    padding: 60px 5%;
    background: #f7f9fc;
}

.about-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.about-title {
    background: #2f6df6;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 18px;
    margin-bottom: 20px;
}

.about-container p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 14px;
}

.why-title,
.faq-title {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.why-list {
    padding-left: 18px;
}

.why-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-item p {
    margin-top: 6px;
    font-size: 14px;
    color: #666;
}

.cta-box {
    margin-top: 25px;
    background: linear-gradient(45deg, #6a5acd, #4b2fc9);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.cta-box p {
    margin-top: 8px;
    font-size: 14px;
    color: #eee;
}

/* Responsive */
@media(max-width:768px) {
    .about-container {
        padding: 20px;
    }
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #6c63ff;
}
