.elementor-1479 .elementor-element.elementor-element-5328fe9{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d489ae8 *//* Tools Hero Section */
.tools-hero {
    background: linear-gradient(135deg, #0f172a, #334155);
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}
.tools-hero-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.tools-hero-text h1 { margin: 0 0 15px 0; font-size: 32px; font-weight: 800; color: #38bdf8; }
.tools-hero-text p { margin: 0; font-size: 16px; line-height: 1.6; color: #cbd5e1; }
.tools-hero-bg {
    position: absolute;
    right: -20px;
    top: -30px;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.05);
    transform: rotate(15deg);
    z-index: 1;
}

/* Section Titles */
.section-title { margin-bottom: 25px; border-bottom: 2px solid #e2e8f0; padding-bottom: 10px; }
.section-title h2 { margin: 0 0 5px 0; font-size: 22px; color: #1e293b; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.section-title h2 i { color: #64748b; }
.section-subtitle { margin: 0; font-size: 14px; color: #64748b; font-weight: 500; }

/* Tools Grid Layout */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Tool Card Design */
.tool-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}
.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

/* Top Border Colors */
.border-top-blue { border-top: 4px solid #3b82f6; }
.border-top-red { border-top: 4px solid #ef4444; }
.border-top-purple { border-top: 4px solid #8b5cf6; }
.border-top-green { border-top: 4px solid #10b981; }
.border-top-orange { border-top: 4px solid #f97316; }
.border-top-dark { border-top: 4px solid #334155; }

/* Tool Icons */
.tool-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}
.bg-light-blue { background: #eff6ff; } .text-blue { color: #3b82f6; }
.bg-light-red { background: #fef2f2; } .text-red { color: #ef4444; }
.bg-light-purple { background: #f5f3ff; } .text-purple { color: #8b5cf6; }
.bg-light-green { background: #ecfdf5; } .text-green { color: #10b981; }
.bg-light-orange { background: #fff7ed; } .text-orange { color: #f97316; }
.bg-light-dark { background: #f1f5f9; } .text-dark { color: #334155; }

/* Tool Info */
.tool-info { flex-grow: 1; margin-bottom: 20px; }
.tool-info h3 { margin: 0 0 10px 0; font-size: 18px; color: #1e293b; font-weight: 700; }
.tool-info p { margin: 0; font-size: 14px; color: #64748b; line-height: 1.5; }

/* Action Buttons */
.btn-tool {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
}
.btn-blue { background: #eff6ff; color: #3b82f6; } .btn-blue:hover { background: #3b82f6; color: #fff; }
.btn-red { background: #fef2f2; color: #ef4444; } .btn-red:hover { background: #ef4444; color: #fff; }
.btn-purple { background: #f5f3ff; color: #8b5cf6; } .btn-purple:hover { background: #8b5cf6; color: #fff; }
.btn-green { background: #ecfdf5; color: #10b981; } .btn-green:hover { background: #10b981; color: #fff; }
.btn-orange { background: #fff7ed; color: #f97316; } .btn-orange:hover { background: #f97316; color: #fff; }
.btn-dark { background: #f1f5f9; color: #334155; } .btn-dark:hover { background: #334155; color: #fff; }

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .tools-hero { flex-direction: column; text-align: center; padding: 30px 20px; }
    .tools-hero-bg { display: none; }
    .tools-grid { grid-template-columns: 1fr; }
}/* End custom CSS */