/*
Theme Name: ToolzGPT
Template: hello-elementor
Theme URI: https://example.com/
Author: Muhammad Soofiyan
Author URI: https://example.com/
Description: Child theme of Hello Elementor for ToolzGPT website.
Version: 1.0.0
Text Domain: toolzgpt
*/


body {
    background: #0b0f19;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.tools-section {
    padding: 80px 20px;
}

.tools-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-header h1 {
    font-size: 42px;
    font-weight: 700;
}

.tools-header p {
    color: #aaa;
    margin-top: 10px;
}

.tool-search {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    width: 300px;
}

/* GRID */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* CARD */
.tool-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.tool-card:hover {
    transform: translateY(-8px);
    border-color: #7c5cff;
}

.tool-card h3 {
    margin-top: 15px;
    font-size: 18px;
}

.tool-card p {
    color: #aaa;
    font-size: 14px;
}

.tool-btn {
    display: inline-block;
    margin-top: 15px;
    color: #7c5cff;
    font-weight: 600;
}

/* ICON */
.tool-icon img {
    width: 50px;
    height: 50px;
}