/*
Theme Name: Astra Child
Template: astra
Theme URI: https://example.com/
Description: Astra Child Theme
Author: Your Name
Author URI: https://example.com/
Version: 1.0
*/

.hero-section {
    background-color: #f2f2f2;
    padding: 50px;
    text-align: center;
}

.main-content {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.main-content div {
    width: 30%;
    background-color: #eaeaea;
    padding: 20px;
    border-radius: 5px;
}

.main-content h2 {
    color: #333;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 items per row */
    gap: 20px;
    /* Adjust the space between items */
    margin: 0;
}

.tool-item {
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
    text-align: center;
}

.tool-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 items per row on tablets */
    }
}

@media screen and (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 items per row on smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
        /* 1 item per row on mobile */
    }
}

.tool-item img:hover {
    transform: scale(1.1);
    /* Hover effect */
}

.highlight {
    background-color: #ffff99;
    /* Light yellow */
    border-left: 4px solid #ffa;
    padding-left: 10px;
}


html,
body {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
}