/* ==========================================
   TOOLS SECTION (Inside Scrollable Area)
   ========================================== */
.tools-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUpProject 0.6s ease forwards;
}

.tool-item:nth-child(1) {
    animation-delay: 0.1s;
}

.tool-item:nth-child(2) {
    animation-delay: 0.15s;
}

.tool-item:nth-child(3) {
    animation-delay: 0.2s;
}

.tool-item:nth-child(4) {
    animation-delay: 0.25s;
}

.tool-item:nth-child(5) {
    animation-delay: 0.3s;
}

.tool-item:nth-child(6) {
    animation-delay: 0.35s;
}

.tool-item:nth-child(7) {
    animation-delay: 0.4s;
}

.tool-item:nth-child(8) {
    animation-delay: 0.45s;
}

/* Tool Icon */
.tool-icon {
    width: 48px;
    height: 48px;
    background: #1F1F1F;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
    transition: background 0.3s ease;
}

.tool-item:hover .tool-icon {
    background: #2A2A2A;
}

/* Tool Info */
.tool-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tool-name {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.2px;
}

.tool-desc {
    font-size: 13px;
    color: #9A9A9A;
    margin: 0;
}

/* ==========================================
   RESPONSIVE DESIGN - TOOLS SECTION
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .tools-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Tools section styles handled in tablet view */
}

@media (max-width: 480px) {
    .tools-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .tools-section .section-title {
        text-align: center;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 36px;
    }

    .tool-icon {
        width: 44px;
        height: 44px;
    }

    .tool-name {
        font-size: 15px;
    }

    .tool-desc {
        font-size: 12px;
    }
}
